diff --git a/other/AoWoW-master/.gitattributes b/other/AoWoW-master/.gitattributes new file mode 100644 index 0000000..fdca314 --- /dev/null +++ b/other/AoWoW-master/.gitattributes @@ -0,0 +1,16 @@ +# auto detect text files +* text=auto + +# no trailing space, no tabs, unix line endings +*.php whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol eol=lf +*.css whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol eol=lf +*.js whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol eol=lf +*.html whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol eol=lf +*.tpl whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol eol=lf + +# no trailing space, unix lne endings +*.sql whitespace=trailing-space eol=lf +*.txt whitespace=trailing-space eol=lf +*.md whitespace=trailing-space eol=lf +*.dox whitespace=trailing-space eol=lf +*.conf whitespace=trailing-space eol=lf diff --git a/other/AoWoW-master/.gitignore b/other/AoWoW-master/.gitignore new file mode 100644 index 0000000..02374bd --- /dev/null +++ b/other/AoWoW-master/.gitignore @@ -0,0 +1,28 @@ +# ignore cache +#cache/* + +# backups +*.orig +*.bak +*~ +*.back +*.old + +# patch rejects +*.rej + +# K-Develop files +*.kdev* + +# patches +*.patch +*.diff + +# vim files +*.vim +*.ycm* + +# Mercurial files (foreign dev) +.hg/ +.hgignore +.hgtags diff --git a/other/AoWoW-master/.htaccess b/other/AoWoW-master/.htaccess new file mode 100644 index 0000000..92f2020 --- /dev/null +++ b/other/AoWoW-master/.htaccess @@ -0,0 +1,17 @@ +Order Deny,Allow + + Deny from all + + + Allow from all + +# Запрет просмотра некоторых папок +Options -Indexes +# Поддержка UTF8 +DirectoryIndex index.php +AddDefaultCharset utf8 + + CharsetDisable on + CharsetRecodeMultipartForms Off + +php_value default_charset UTF-8 \ No newline at end of file diff --git a/other/AoWoW-master/account.php b/other/AoWoW-master/account.php new file mode 100644 index 0000000..64a4fab --- /dev/null +++ b/other/AoWoW-master/account.php @@ -0,0 +1,107 @@ +config_load($conf_file,'account'); + +// Создание аккаунта +if (($_REQUEST['account']=='signup') and (isset($_POST['username'])) and (isset($_POST['password'])) and (isset($_POST['c_password'])) and ($AoWoWconf['register']==true)) +{ + // Совпадают ли введенные пароли? + if ($_POST['password'] != $_POST['c_password']) + { + $smarty->assign('signup_error', $smarty->get_config_vars('Different_passwords')); + } else { + // Существует ли уже такой пользователь? + if ($rDB->selectCell('SELECT Count(id) FROM account WHERE username=? LIMIT 1', $_POST['username']) == 1) + { + $smarty->assign('signup_error', $smarty->get_config_vars('Such_user_exists')); + } else { + // Вроде все нормально, создаем аккаунт + $success = $rDB->selectCell('INSERT INTO account(`username`, `sha_pass_hash`, `gmlevel`, `email`, `joindate`, `tbc`, `last_ip`) + VALUES (?, ?, 0, ?, NOW(), 1, ?)', + $_POST['username'], + create_usersend_pass($_POST['username'], $_POST['password']), + (isset($_POST['email']))? $_POST['email'] : '', + (isset($_SERVER["REMOTE_ADDR"]))? $_SERVER["REMOTE_ADDR"] : '' + ); + if ($success > 0) + { + // Все отлично, авторизуем + $_REQUEST['account']='signin'; + } else { + // Неизвестная ошибка + $smarty->assign('signup_error', $smarty->get_config_vars('Unknow_error_on_account_create')); + } + } + } +} + +if (($_REQUEST['account']=='signin') and (isset($_POST['username'])) and (isset($_POST['password']))) +{ + $usersend_pass = create_usersend_pass($_POST['username'], $_POST['password']); + $user = CheckPwd($_POST['username'], $usersend_pass); + if ($user==-1) + { + del_user_cookie(); + if (isset($_SESSION['username'])) + UnSet($_SESSION['username']); + $smarty->assign('signin_error', $smarty->get_config_vars('Such_user_doesnt_exists')); + } elseif ($user==0) { + del_user_cookie(); + if (isset($_SESSION['username'])) + UnSet($_SESSION['username']); + $smarty->assign('signin_error', $smarty->get_config_vars('Wrong_password')); + } else { + // Имя пользователя и пароль совпадают + $_SESSION['username'] = $user['name']; + $_SESSION['shapass'] = $usersend_pass; + $_REQUEST['account'] = 'signin_true'; + $_POST['remember_me'] = (IsSet($_POST['remember_me'])) ? $_POST['remember_me'] : 'no'; + if ($_POST['remember_me']=='yes') + { + // Запоминаем пользователя + $remember_time = time() + 3000000; + SetCookie('remember_me',$_POST['username'].$usersend_pass,$remember_time); + } else { + del_user_cookie(); + } + } +} + + +switch($_REQUEST['account']): + case '': + // TODO: Настройки аккаунта (Account Settings) + break; + case 'signin_false': + case 'signin': + // Вход в систему + $smarty->assign('register', $AoWoWconf['register']); + $smarty->display('signin.tpl'); + break; + case 'signup_false': + case 'signup': + // Регистрация аккаунта + $smarty->display('signup.tpl'); + break; + case 'signout': + // Выход из пользователя + UnSet($user); + session_unset(); + session_destroy(); + $_SESSION = array(); + del_user_cookie(); + case 'signin_true': + default: + // На предыдущую страницу + // Срабатывает при: + // 1. $_REQUEST['account'] = 'signout' (выход) + // 2. $_REQUEST['account'] = 'signok' (успешная авторизация) + // 3. Неизвестное значение $_REQUEST['account'] + $_REQUEST['next'] = (IsSet($_REQUEST['next']))? $_REQUEST['next'] : ''; + if (($_REQUEST['next']=='?account=signin') or ($_REQUEST['next']=='?account=signup')) + $_REQUEST['next']=''; + header('Location: ?'.$_REQUEST['next']); + break; +endswitch; +?> diff --git a/other/AoWoW-master/ajax.php b/other/AoWoW-master/ajax.php new file mode 100644 index 0000000..53b7c19 --- /dev/null +++ b/other/AoWoW-master/ajax.php @@ -0,0 +1,92 @@ +'\\\\',"'"=>"\\'",'"'=>'\\"',"\r"=>'\\r',"\n"=>'\\n',''<\/')); +} + +// Параметры передаваемые скрипту +@list($what, $id) = explode("=", $_SERVER['QUERY_STRING']); +$id = intval($id); + +$x = ''; + +switch($what) +{ + case 'item': + if(!$item = load_cache(6, $id)) + { + require_once('includes/allitems.php'); + $item = allitemsinfo($id, 1); + save_cache(6, $id, $item); + } + $x .= '$WowheadPower.registerItem('.$id.', 0, {'; + if ($item['name']) + $x .= 'name: \''.str_normalize($item['name']).'\','; + if ($item['quality']) + $x .= 'quality: '.$item['quality'].','; + if ($item['icon']) + $x .= 'icon: \''.str_normalize($item['icon']).'\','; + if ($item['info']) + $x .= 'tooltip: \''.str_normalize($item['info']).'\''; + $x .= '});'; + break; + case 'spell': + if(!$spell = load_cache(14, $id)) + { + require_once('includes/allspells.php'); + $spell = allspellsinfo($id, 1); + save_cache(14, $id, $spell); + } + $x .= '$WowheadPower.registerSpell('.$id.', 0,{'; + if ($spell['name']) + $x .= 'name: \''.str_normalize($spell['name']).'\','; + if ($spell['icon']) + $x .= 'icon: \''.str_normalize($spell['icon']).'\','; + if ($spell['info']) + $x .= 'tooltip: \''.str_normalize($spell['info']).'\''; + $x .= '});'; + break; + case 'quest': + if(!$quest = load_cache(11, $id)) + { + require_once('includes/allquests.php'); + $quest = GetDBQuestInfo($id, QUEST_DATAFLAG_AJAXTOOLTIP); + $quest['tooltip'] = GetQuestTooltip($quest); + save_cache(11, $id, $quest); + } + $x .= '$WowheadPower.registerQuest('.$id.', 0,{'; + if($quest['name']) + $x .= 'name: \''.str_normalize($quest['name']).'\','; + if($quest['tooltip']) + $x .= 'tooltip: \''.str_normalize($quest['tooltip']).'\''; + $x .= '});'; + break; + default: + break; +} + +echo $x; + +?> diff --git a/other/AoWoW-master/cache/images/index.html b/other/AoWoW-master/cache/images/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/other/AoWoW-master/cache/images/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/other/AoWoW-master/cache/index.html b/other/AoWoW-master/cache/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/other/AoWoW-master/cache/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/other/AoWoW-master/cache/oregon/index.html b/other/AoWoW-master/cache/oregon/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/other/AoWoW-master/cache/oregon/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/other/AoWoW-master/cache/templates/index.html b/other/AoWoW-master/cache/templates/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/other/AoWoW-master/cache/templates/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/other/AoWoW-master/cache/templates/wowhead/index.html b/other/AoWoW-master/cache/templates/wowhead/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/other/AoWoW-master/cache/templates/wowhead/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/other/AoWoW-master/comment.php b/other/AoWoW-master/comment.php new file mode 100644 index 0000000..ec2a9f9 --- /dev/null +++ b/other/AoWoW-master/comment.php @@ -0,0 +1,83 @@ +query(' + INSERT INTO ?_comments (`type`, `typeid`, `userid`, `commentbody`, `post_date`{, ?#}) + VALUES (?d, ?d, ?d, ?, ?d{, ?d})', + (empty($_POST['replyto'])? DBSIMPLE_SKIP : 'replyto'), + $_GET["type"], + $_GET["typeid"], + (empty($_SESSION['userid'])? 0 : $_SESSION['userid']) , + stripslashes($_POST['commentbody']), + $commentTime, + (empty($_POST['replyto'])? DBSIMPLE_SKIP : $_POST['replyto']) + ); + if (empty($_POST['replyto'])) + $DB->query('UPDATE ?_comments SET `replyto`=?d WHERE `id`=?d LIMIT 1', $newid, $newid); + echo ''; + echo ''; + break; + case 'delete': + // Удаление комментарий (Ajax) + // Номер комментария: $_GET['id'] + // Имя пользователя, удаляющего комментарий: $_GET['username'] + $DB->query('DELETE FROM ?_comments WHERE `id`=?d {AND `userid`=?d} LIMIT 1', + $_GET['id'], + ($_SESSION['roles']>1)? DBSIMPLE_SKIP : $_SESSION['userid'] + ); + break; + case 'edit': + // Редактирование комментария + // Номер комментария: $_GET['id'] + // Новое содержание комментария: $_POST['body'] + // Номер пользователя: $_SESSION['userid'] + if (IsSet($_POST['body'])) + $DB->query('UPDATE ?_comments + SET `commentbody`=?, `edit_userid`=?, `edit_date`=?d + WHERE `id` = ?d + {AND `userid` = ?d} + LIMIT 1', + stripslashes($_POST['body']), $_SESSION['userid'], $commentEdit, $_GET['id'], + ($_SESSION['roles']>1)? DBSIMPLE_SKIP : $_SESSION['userid'] + ); + echo $_POST['body']; + break; + case 'rate': + /* + * Установка собственоого рейтинга (модераторы и т.п.) + * Номер комментария: $_GET['id'] + * Новое значение рейтинга: $_GET['rating'] + * Номер пользователя: $_SESSION['userid'] + */ + // Проверка на хоть какое то значение рейтинга, и на то, что пользователь за этот коммент не голосовал + if (IsSet($_GET['rating']) and !($DB->selectCell('SELECT `commentid` FROM ?_comments_rates WHERE `userid`=?d AND `commentid`=?d LIMIT 1', $_SESSION['userid'], $_GET['id']))) + $DB->query('INSERT INTO ?_comments_rates (`commentid`, `userid`, `rate`) VALUES (?d, ?d, ?d)', + $_GET['id'], $_SESSION['userid'], $_GET['rating']); + break; + case 'undelete': + // Восстановление комментария + // Номер комментария: $_GET['id'] + // Имя пользователя, удаляющего комментарий: $_GET['username'] + default: + break; +endswitch; + +?> diff --git a/other/AoWoW-master/configs/config.php b/other/AoWoW-master/configs/config.php new file mode 100644 index 0000000..c0663a1 --- /dev/null +++ b/other/AoWoW-master/configs/config.php @@ -0,0 +1,25 @@ + diff --git a/other/AoWoW-master/configs/dede.conf b/other/AoWoW-master/configs/dede.conf new file mode 100644 index 0000000..fd7e43b --- /dev/null +++ b/other/AoWoW-master/configs/dede.conf @@ -0,0 +1,244 @@ +# German Translation + +js_err = Stelle bitte sicher, dass JavaScript aktiviert ist. +err_title = Fehler in AoWoW +signin = Anmelden +search = Suche +un_err = Gib bitte deinen Benutzernamen ein +pwd_err = Gib bitte dein Passwort ein +signup_msg = Jetzt einen Account erstellen +signin_msg = Gib bitte deinen Accountnamen ein +un = Login +pwd = Passwort +c_pwd = Passwort wiederholen +r_me = Auf diesem Computer merken +no_acc = Noch keinen Account? +cr_acc = Jetzt einen erstellen! +create_filter = Filter erstellen +loading = Lädt ... +soldby = Verkauft von +droppedby = Gedroppt von +containedinobject = Enthalten in +containedinitem = Enthalten in Item +contain = Enthält +objectiveof = Ziel von +rewardof = Belohnung von +facts = Übersicht +level = Stufe +related = Weitere Informationen: +pickpocketingloot = Gestohlen von +prospectedfrom = Sondiert aus +canbeplacedin = Kann abgelegt werden in +minedfromobject = Abgebaut aus +gatheredfromobject = Gesammelt von +items = Gegenstände +objects = Objekte +quests = Quests +npcs = NPCs +drop = Drop +starts = Startet +ends = Beendet +skinning = Kürschnerei +pickpocketing = Taschendiebstahl +sells = Verkauft +reputationwith = Ruf mit der Fraktion +experience = Erfahrung +uponcompletionofthisquestyouwillgain = Bei Abschluss dieser Quest erhaltet Ihr +reagentfor = Reagenz für +skinnedfrom = Gekürschnert von +disenchanting = Entzaubern +This_Object_cant_be_found = Der Standort dieses Objekts ist nicht bekannt. +itemsets = Sets +Spells = Zauber +Quick_Facts = Kurzübersicht +Alliance = Allianz +Horde = Horde +Related = Weiterführende Informationen +Items = Gegenstände +Quests = Quests +Level = Stufe +Factions = Fraktionen +Item_Sets = Sets +NPCs = NPCs +Objects = Objekte +Sign_in = Anmelden +Contribute = Beitragen +Replying_to__by = Antwort zu einem Kommentar von +Submit = Absenden +Cancel = Abbrechen +Add_your_comment = Einen Kommentar abgeben +My_account = Mein Account +Sign_out = Abmelden +Comments = Kommentare +Latest_Comments = Neuste Kommentare +Language = Sprache +Number_of_MySQL_queries = Anzahl von MySQL-Queries +Time_of_MySQL_queries = Zeit für MySQL-Queries +hr = Std. +min = Min. +sec = Sek. +Respawn = Respawn +Class = Klasse + +[maps] +Link_to_this_map = Link zu dieser Karte +Clear = Zurücksetzen + +[search] +Search = Suche +Search_results_for = Suchergebnisse für +No_results_for = Keine Ergebnisse für +Please_try_some_different_keywords_or_check_your_spelling = Versuche es bitte mit anderen Schlüsselwörtern und überprüfe deine Schreibweise. + +[npc] +This_NPC_can_be_found_in = Dieser NPC befindet sich in +This_NPC_cant_be_found = Der Aufenthaltsort dieses NPCs ist nicht bekannt. +Abilities = Fähigkeiten +Teaches = Lehrt +Level = Stufe +Classification = Einstufung +Faction = Fraktion +Health = Gesundheit +Mana = Mana +Wealth = Vermögen +rank0 = Normal +rank1 = Elite +rank2 = Rar-Elite +rank3 = Boss +rank4 = Rar +React = Einstellung +Waypoint = Wegpunkt +Damage = Schaden +Armor = Rüstung + +[spell] +thisspelldoesntexist = Dieser Zauber existiert nicht. +spell = Zauber +school = Magieart +cost = Kosten +range = Reichweite +Cast_time = Zauberzeit +Cooldown = Abklingzeit +Effect = Effekt +Duration = Dauer +Mechanic = Auswirkung +Dispel_type = Bannart +yards = Meter +manas = Mana +seconds = Sekunden +None = Keine +Value = Wert +Interval = Intervall +Radius = Radius +Reagents = Reagenzien +Tools = Hilfsmittel +Spell_Details = Zauberdetails +Object = Objekt +of_base = von Basis- +Used_by = Verwendet von +See_also = Siehe auch +Taught_by = Gelehrt von +Reward_for_quest = Belohnung von Quest +Class_spells = Klassenfertigkeiten +Weapon_spells = Waffenfertigkeiten +Armor_spells = Rüstungssachverstand +Language_spells = Sprachen +Secondary_spells = Nebenberufe +Profession_spells = Berufe +Pet_spells = Begleiterfertigkeiten +Racial_spells = Völkerfertigkeiten + +[item] +Sells_for = Verkaufspreis +Buy_for = Preis +Teaches = Lehrt +Disenchantable = Kann entzaubert werden +Required_enchanting_skill = Benötigt Entzaubern +Can_be_placed_in_the_keyring = Passt in den Schlüsselbund +Created_by = Erstellt durch +Fished_in = Geangelt in +Disenchanted_from = Entzaubert aus +Contains = Enthält + +[faction] +Group = Gruppe +Side = Fraktion +Members = Mitglieder + +[object] +Key = Schlüssel +Lockpickable = Knackbar +Mining = Bergbau +Herb = Kräuterkunde +Required_lockpicking_skill = Benötigt Schlösserknacken +Required_mining_skill = Benötigt Bergbau +Required_herb_skill = Benötigt Kräuterkunde +This_Object_can_be_found_in = Dieses Objekt befindet sich in + +[quest] +Requires_level = Benötigt Stufe +Type = Art +Side = Fraktion +Start = Anfang +End = Ende +Series = Reihe +slain = Besiege +Description = Beschreibung +Rewards = Belohnung +You_will_receive = Ihr bekommt +Progress = Fortschritt +Completion = Abschluss +Gains = Belohnungen +Upon_completion_of_this_quest_you_will_gain = Bei Abschluss dieser Quest erhaltet Ihr +You_will_be_able_to_choose_one_of_these_rewards = Auf Euch wartet eine dieser Belohnungen +You_will_also_receive = Ihr bekommt außerdem +Prev_Quests = Benötigt +Prev_Quests_Desc = Um diese Quest zu bekommen, musst du alle diese Quests erfüllen +Open_Quests = Öffnet Quests +Open_Quests_Desc = Es ist notwendig, diese Quest zu beenden, um diese Quests zu bekommen +Closes_Quests = Schließt Quests +Closes_Quests_Desc = Wenn du diese Quest beendest, kannst du diese Quests nicht mehr bekommen +ReqOne_Quests = Benötigt eine von +ReqOne_Quests_Desc = Um diese Quest zu bekommen, musst du eine der folgenden Quests erfüllen +Enables_Quests = Aktiviert +Enables_Quests_Desc = Wenn diese Quest aktiv ist, kannst du diese Quests annehmen +Enabledby_Quests = Aktiviert durch +Enabledby_Quests_Desc = Du kannst diese Quest nur annehmen, wenn folgende Quest aktiv ist +You_will_learn = Du lernst +The_following_spell_will_be_cast_on_you = Der folgende Zauber wird auf euch gewirkt +Skill = Fähigkeit +Suggested_Players = Empfohlene Spielerzahl +Timer = Zeitbegrenzung +Sharable = Teilbar +Daily = Täglich +Repeatable = Wiederholbar +the_title = Titel +Required_Money = Benötigtes Geld +Additional_requirements_to_obtain_this_quest = Weitere Voraussetzungen um diese Quest zu erhalten +Your_reputation_with = Euer Ruf bei +must_be = muss sein +higher_than = höher als +lower_than = niedriger als +class = Klasse +race = Volk +name = Name + +[account] +Please_enter_your_username = Gib bitte deinen Benutzernamen ein +Please_enter_your_password = Gib bitte dein Kennwort ein +Sign_in_to_your_Game_Account = Anmelden +Username = Benutzername +Password = Kennwort +Remember_me_on_this_computer = Auf diesem Computer merken +Dont_have_an_account = Noch keinen Account +Create_one_now = Jetzt einen erstellen +Signup = Anmelden +Confirm_password = Passwort bestätigen +Please_enter_your_confirm_password = Bitte das Passwort bestätigen +Create_your_account = Account erstellen +Email = E-mail +Different_passwords = Die eingegebenen Passwörter stimmen nicht überein +Such_user_exists = Es existiert bereits ein Benutzer mit diesem Namen +Unknow_error_on_account_create = Unbekannter Fehler bei der Accounterstellung +Such_user_doesnt_exists = Ein Benutzer mit diesem Namen existiert nicht +Wrong_password = Falsches Passwort diff --git a/other/AoWoW-master/configs/enus.conf b/other/AoWoW-master/configs/enus.conf new file mode 100644 index 0000000..4207fa9 --- /dev/null +++ b/other/AoWoW-master/configs/enus.conf @@ -0,0 +1,244 @@ +# English Translate + +js_err = Please make sure you have javascript enabled. +err_title = An error in AoWoW +signin = Sign in +search = Search +un_err = Enter your username +pwd_err = Enter your password +signup_msg = Create your game account +signin_msg = Enter your game account +un = Login +pwd = Password +c_pwd = Repeat password +r_me = Remember me +no_acc = Don't have account yet? +cr_acc = Create right now +create_filter = Create a filter +loading = Loading ... +soldby = Sold by +droppedby = Dropped by +containedinobject = Contained in +containedinitem = Contained in item +contain = Contains +objectiveof = Objective of +rewardof = Reward of +facts = Facts +level = Level +related = Additional information: +pickpocketingloot = Pickpocketing +prospectedfrom = Prospect from +canbeplacedin = Can be placed in +minedfromobject = Mined from +gatheredfromobject = Gathered from +items = Items +objects = Objects +quests = Quests +npcs = NPCs +drop = Drop +starts = Starts +ends = Ends +skinning = Skinning +pickpocketing = Pickpocketing +sells = Sells +reputationwith = Reputation with +experience = Experience +uponcompletionofthisquestyouwillgain = Upon completion of quests, get +reagentfor = Reagent for +skinnedfrom = Skinned from +disenchanting = Disenchanting +This_Object_cant_be_found = Object map not available, Object may be spawned via a script +itemsets = Item Sets +Spells = Spells +Quick_Facts = Quick Facts +Alliance = Alliance +Horde = Horde +Related = See also +Items = Items +Quests = Quests +Level = Level +Factions = Factions +Item_Sets = Item sets +NPCs = NPCs +Objects = Objects +Sign_in = Sign in +Contribute = Contribute +Replying_to__by = The answer to a comment from +Submit = Submit +Cancel = Cancel +Add_your_comment = Add your comment +My_account = My account +Sign_out = Sign out +Comments = Comments +Latest_Comments = Latest comments +Language = Language +Number_of_MySQL_queries = Number of MySQL queries +Time_of_MySQL_queries = Time of MySQL quries +hr = hr +min = min +sec = sec +Respawn = Respawn +Class = Class + +[maps] +Link_to_this_map = Link to this map +Clear = Clearn + +[search] +Search = Search +Search_results_for = Search Results +No_results_for = Nothing found for +Please_try_some_different_keywords_or_check_your_spelling = Please try other keywords, or check request + +[npc] +This_NPC_can_be_found_in = This NPC can be found in +This_NPC_cant_be_found = Npc Map not available, NPC may be spawned via a script +Abilities = Abilities +Teaches = Teaches +Level = Level +Classification = Class +Faction = Faction +Health = Health +Mana = Mana +Wealth = Wealth +rank0 = Normal +rank1 = Elite +rank2 = Rare-Elite +rank3 = Boss +rank4 = Rare +React = React +Waypoint = Waypoint +Damage = Damage +Armor = Armor + +[spell] +thisspelldoesntexist = This spell does not exist. +spell = Spell +school = School +cost = cost +range = Range +Cast_time = Cast time +Cooldown = Cooldown +Effect = Effect +Duration = Duration +Mechanic = Mechanic +Dispel_type = Dispel type +yards = yards +manas = mana +seconds = seconds +None = None +Value = Value +Interval = Interval +Radius = Radius +Reagents = Reagents +Tools = Tools +Spell_Details = Details on spell +Object = Object +of_base = base +Used_by = Used by +See_also = See also +Taught_by = Taught by +Reward_for_quest = Reward from quest +Class_spells = Class Skills +Weapon_spells = TODO!! +Armor_spells = Armor Proficiencies +Language_spells = Languages +SecondaryProfession_spells = Secondary Skills +Profession_spells = Professions +Pet_spells = Pet Skills +Racial_spells = Racial Traits + +[item] +Sells_for = Sells for +Buy_for = Buy for +Teaches = Teaches +Disenchantable = Disenchantable +Required_enchanting_skill = Required enchanting skill +Can_be_placed_in_the_keyring = Can be placed in keyring +Created_by = Created by +Fished_in = Fished in +Disenchanted_from = Disenchanted from +Contains = Contains + +[faction] +Group = Group +Side = Side +Members = Members + +[object] +Key = Key +Lockpickable = Lockpickable +Mining = Mining +Herb = Herb +Required_lockpicking_skill = Lockpicking skilllevel required +Required_mining_skill = Mining skilllevel required +Required_herb_skill = Herbalism skilllevel required +This_Object_can_be_found_in = This Object can be found in + +[quest] +Requires_level = Requires level +Type = Type +Side = Side +Start = Start +End = End +Series = Series +slain = slain +Description = Description +Rewards = Reward +You_will_receive = You will receive +Progress = Prgrogress +Completion = Completion +Gains = Gains +Upon_completion_of_this_quest_you_will_gain = Upon completion of quests, get +You_will_be_able_to_choose_one_of_these_rewards = You can choose one of these awards +You_will_also_receive = Also, you get +Prev_Quests = Requires +Prev_Quests_Desc = To get this quest, you must complete all that quests +Open_Quests = Open Quests +Open_Quests_Desc = Completing this quest is requires to get this quests +Closes_Quests = Closes Quests +Closes_Quests_Desc = Completing this quest, you will not able to get this quests +ReqOne_Quests = Require One of +ReqOne_Quests_Desc = To get this quest, you must complete one of the following quests +Enables_Quests = Enables +Enables_Quests_Desc = When this quest active, you able to get this quests +Enabledby_Quests = Enabled by +Enabledby_Quests_Desc = You can get this quest, only when that quests active +You_will_learn = You will learn +The_following_spell_will_be_cast_on_you = The following spell will be cast on you +Skill = Skill +Suggested_Players = Suggested Players +Timer = Timer +Sharable = Sharable +Daily = Daily +Repeatable = Repeatable +the_title = the title +Required_Money = Required Money +Additional_requirements_to_obtain_this_quest = Additional requirements to obtain this quest +Your_reputation_with = Your reputation with +must_be = must be +higher_than = higher than +lower_than = lower than +class = class +race = race +name = name + +[account] +Please_enter_your_username = Enter your username (account) +Please_enter_your_password = Enter your password +Sign_in_to_your_Game_Account = Enter your game account: +Username = Username +Password = Password +Remember_me_on_this_computer = Remember on this computer +Dont_have_an_account = Don't have an account +Create_one_now = Create one now +Signup = Signup +Confirm_password = Confirm password +Please_enter_your_confirm_password = Please enter your confirm password +Create_your_account = Create your account +Email = E-mail +Different_passwords = Entered passwords does not match +Such_user_exists = Such user already exists +Unknow_error_on_account_create = Unknown error on account create +Such_user_doesnt_exists = Such user does not exists +Wrong_password = Wrong Password diff --git a/other/AoWoW-master/configs/ruru.conf b/other/AoWoW-master/configs/ruru.conf new file mode 100644 index 0000000..5150efd --- /dev/null +++ b/other/AoWoW-master/configs/ruru.conf @@ -0,0 +1,269 @@ +# Файл с переводом + +js_err = Для работы этого сайта необходим JavaScript. +err_title = Ошибка в AoWoW +signin = Войти +search = Искать +un_err = Введите ваш логин +pwd_err = Введите ваш пароль +signup_msg = Создайте свой аккаунт +signin_msg = Войти под своим аккаунтом +un = Логин +pwd = Пароль +c_pwd = Повторите пароль +r_me = Запомните меня +no_acc = Ещё нет своего аккаунта!? +cr_acc = Создать прямо сейчас! +create_filter = Создать фильтр +loading = Загрузка... +soldby = Продают +droppedby = Дропают +containedinobject = Содержится в +containedinitem = Содержится в +contain = Содержит +objectiveof = Цель в +rewardof = Награда за +facts = Факты +level = Уровень +related = Дополнительная информация: +pickpocketingloot = Воруется у +prospectedfrom = Перерабатывается из +canbeplacedin = Может быть помещена в +minedfromobject = Добывается из +gatheredfromobject = Собирается с +items = Вещи +objects = Объекты +quests = Квесты +npcs = NPCs +drop = Дропает +starts = Начинает +ends = Заканчивает +skinning = Шкуры +pickpocketing = Воруется +sells = Продаёт +reputationwith = репутации у +experience = опыта +uponcompletionofthisquestyouwillgain = По окончании квеста, получите +reagentfor = Реагент для +skinnedfrom = Шкура от +disenchanting = Дизэнчант +This_Object_cant_be_found = Месторасположение этого объекта в БД не найдено, возможно он создается скриптом +itemsets = Наборы вещей +Spells = Спеллы +Quick_Facts = Информация +Alliance = Альянс +Horde = Орда +Related = Смотри также +Items = Вещи +Quests = Квесты +Level = Уровень +Factions = Фракции +Item_Sets = Наборы вещей +NPCs = NPCs +Objects = Игровые объекты +Sign_in = Войти +Contribute = Добавить +Replying_to_comment_by = Ответ на комментарий от +Submit = Отправить +Cancel = Отмена +Add_your_comment = Оставить комментарий +My_account = Мой аккаунт +Sign_out = Выйти +Comments = Комментарии +Latest_Comments = Последние комментарии +Language = Язык +Number_of_MySQL_queries = Количество MySQL запросов +Time_of_MySQL_queries = Время выполнения MySQL запросов +Link_to_this_map = Ссылка на эту карту +Clear = Очистить +hr = ч +min = мин +sec = сек +Respawn = Респаун +Class = Класс + +[talent] +chooseaclass = Класс +Druid = Друид +Hunter = Охотник +Mage = Маг +Paladin = Паладин +Priest = Жрец +Rogue = Вор +Shaman = Шаман +Warlock = Чернокнижник +Warrior = Воин +Link_to_this_build = Ссылка на этот билд +Lock = Замок +Reset = Сбросить +Reset_all = Сбросить всё +Patch = Патч 2.1.3 (07/03/2007) +Points_left = Осталось очков +Points_spent = Потрачено очков +Level_required = Требуемый уровень +Level_cap = Предельный уровень +Import_from_Blizzards_talent_calculator = Импортировать из калькулятора талантов Blizzard +Summary = Итог +Printable_version = Версия для печати + +[maps] +Link_to_this_map = Ссылка на эту карту +Clear = Очистить + +[search] +Search = Поиск +Search_results_for = Результаты поиска для +No_results_for = Ничего не найдено для +Please_try_some_different_keywords_or_check_your_spelling = Пожалуйста, попробуйте другие ключевые слова, или проверьте правильность запроса + +[npc] +This_NPC_can_be_found_in = Этот NPC может быть найден в +This_NPC_cant_be_found = Месторасположение этого NPC в БД не найдено, возможно он создается скриптом +Abilities = Способности +Teaches = Обучает +Level = Уровень +Classification = Класс +Faction = Фракция +Health = Здоровья +Mana = Маны +Wealth = Денег +rank0 = Обычный +rank1 = Элитный +rank2 = Редкий-Элитный +rank3 = Босс +rank4 = Редкий +React = Реакция +Damage = Урон +Armor = Броня + +[spell] +thisspelldoesntexist = Этот спелл не существует. +spell = Спелл +school = Школа +cost = Затраты маны +range = Дальность +Cast_time = Время каста +Cooldown = Кулдаун +Effect = Эффект +Duration = Время действия +Mechanic = Механика +Dispel_type = Тип диспела +yards = ярдов +manas = маны +seconds = секунд +None = Нет +Value = Значение +Interval = Интервал +Radius = Радиус +Reagents = Реагенты +Tools = Инструменты +Spell_Details = Подробности о спелле +Object = Объект +of_base = всей +Used_by = Используется +See_also = Аналогичные спеллы +Taught_by = Обучается +Reward_for_quest = Награда за квест +Class_spells = Классовые навыки +Weapon_spells = Оружейные навыки +Armor_spells = Специализации брони +Language_spells = Языки +SecondaryProfession_spells = Вспомогательные профессии +Profession_spells = Профессии +Pet_spells = Навыки питомцев +Pacial_spells = Расовые преимущества + +[item] +Sells_for = Продается за +Buy_for = Покупается за +Teaches = Обучает +Disenchantable = Разбирается +Required_enchanting_skill = Необходимый навык зачаровки +Can_be_placed_in_the_keyring = Ключ +Created_by = Создается +Fished_in = Ловится в +Disenchanted_from = Дизэнчантится из +Contains = Содержит + +[faction] +Group = Группа +Side = Сторона +Members = Члены + +[object] +Key = Ключ +Lockpickable = Отмычки +Mining = Руда +Herb = Трава +Required_lockpicking_skill = Необходимый уровень навыка владения отмычками +Required_mining_skill = Необходимый уровень навыка рудокопа +Required_herb_skill = Необходимый уровень навыка травника +This_Object_can_be_found_in = Этот объект может быть найден в + +[quest] +Requires_level = Требуемый уровень +Type = Тип +Side = Сторона +Start = Начинает +End = Оканчивает +Series = Цепочка квестов +slain = убит +Description = Описание +Rewards = Награды +You_will_receive = Вы получите +Progress = Прогресс +Completion = Завершение +Gains = Получите +Upon_completion_of_this_quest_you_will_gain = По окончании квеста, получите +You_will_be_able_to_choose_one_of_these_rewards = Вы сможете выбрать одну из этих наград +You_will_also_receive = Также, вы получите +Prev_Quests = Требует +Prev_Quests_Desc = Что бы получить квест, необходимо выполнить все эти +Open_Quests = Открывает квесты +Open_Quests_Desc = Выполнение квеста, необходимо для того, чтобы можно было взять следующие +Closes_Quests = Закрывает квесты +Closes_Quests_Desc = Выполнив квест, вы не сможете взятся за эти +ReqOne_Quests = Требует один из +ReqOne_Quests_Desc = Что бы получить этот квест, вы должны выполнить один из этих +Enables_Quests = Включает +Enables_Quests_Desc = Когда вы выполняете этот квест, вы можете взять эти квесты +Enabledby_Quests = Включается +Enabledby_Quests_Desc = Что бы взять этот квест, вы должны выполнять следующие квесты +You_will_learn = Вы изучите +The_following_spell_will_be_cast_on_you = Этот спелл будет наложен на вас +Skill = Навык +Suggested_Players = Количество игроков +Timer = Таймер +Sharable = Общий +Daily = Ежедневный +Repeatable = Повторяемый +the_title = Титул +Required_Money = Требуется денег +Additional_requirements_to_obtain_this_quest = Дополнительные условия, для получения данного квеста +Your_reputation_with = Ваша репутация с +must_be = должна быть +higher_than = выше чем +lower_than = ниже чем +class = класс +race = раса +name = имя + +[account] +Please_enter_your_username = Введите ваше имя пользователя (аккаунта) +Please_enter_your_password = Введите ваш пароль +Sign_in_to_your_Game_Account = Войти под своим аккаунтом +Username = Имя пользователя +Password = Пароль +Remember_me_on_this_computer = Запомнить на этом компьютере +Dont_have_an_account = Ещё нет аккаунта +Create_one_now = Создайте прямо сейчас +Signup = Создать +Confirm_password = Повторите пароль +Please_enter_your_confirm_password = Введите в поле "Повторить пароль" тот же самый пароль, что и в поле "Пароль" +Create_your_account = Создайте свой аккаунт +Email = E-mail +Different_passwords = Введённые пароли не совпдают +Such_user_exists = Такой аккаунт уже существует +Unknow_error_on_account_create = Неизвестная ошибка при создании аккаунта +Such_user_doesnt_exists = Такого пользователя не существует +Wrong_password = Неверный пароль diff --git a/other/AoWoW-master/faction.php b/other/AoWoW-master/faction.php new file mode 100644 index 0000000..716faa3 --- /dev/null +++ b/other/AoWoW-master/faction.php @@ -0,0 +1,145 @@ +config_load($conf_file,'faction'); + +// Номер фракции +$id = $podrazdel; + +if(!$faction = load_cache(18, intval($id))) +{ + unset($faction); + + // Подключаемся к ДБ: + global $DB; + + $row = $DB->selectRow(' + SELECT factionID, name, description1, description2, team, side + FROM ?_factions + WHERE factionID=?d + LIMIT 1 + ', + $id + ); + if ($row) + { + $faction=array(); + // Номер фракции + $faction['entry'] = $row['factionID']; + // Название фракции + $faction['name'] = $row['name']; + // Описание фракции, из клиента: + $faction['description1'] = $row['description1']; + // Описание фракции, c wowwiki.com, находится в таблице factions.sql: + $faction['description2'] = $row['description2']; + // Команда/Группа фракции + if($row['team']!=0) + $faction['group'] = $DB->selectCell('SELECT name FROM ?_factions WHERE factionID=?d LIMIT 1', $row['team']); + // Альянс(1)/Орда(2) + if($row['side']!=0) + $faction['side'] = $row['side']; + + // Итемы с requiredreputationfaction + $item_rows = $DB->select(' + SELECT ?#, entry + FROM item_template i, ?_icons a + WHERE + i.RequiredReputationFaction=?d + AND a.id=i.displayid + ', + $item_cols[2], + $id + ); + if ($item_rows) + { + $faction['items'] = array(); + foreach ($item_rows as $i=>$row) + $faction['items'][] = iteminfo2($row, 0); + unset ($faction['items']); + } + + // Персонажи, состоящие во фракции + $creature_rows = $DB->select(' + SELECT ?#, entry + FROM creature_template, ?_factiontemplate + WHERE + faction IN (SELECT factiontemplateID FROM ?_factiontemplate WHERE factionID=?d) + AND factiontemplateID=faction + ', + $npc_cols[0], + $id + ); + if ($creature_rows) + { + $faction['creatures'] = array(); + foreach ($creature_rows as $i=>$row) + $faction['creatures'][] = creatureinfo2($row); + unset ($creature_rows); + } + + // Квесты для этой фракции + $quests_rows = $DB->select(' + SELECT ?# + FROM quest_template + WHERE + RewRepFaction1=?d + OR RewRepFaction2=?d + OR RewRepFaction3=?d + OR RewRepFaction4=?d + ', + $quest_cols[2], + $id, $id, $id, $id + ); + if ($quests_rows) + { + $faction['quests'] = array(); + foreach ($quests_rows as $i=>$row) + $faction['quests'][] = GetQuestInfo($row, 0xFFFFFF); + unset ($quests_rows); + } + + // Faction cache + save_cache(18, $faction['entry'], $faction); + } +} + +$page = array( + 'Mapper' => false, + 'Book' => false, + 'Title' => $faction['name'].' - '.$smarty->get_config_vars('Factions'), + 'tab' => 0, + 'type' => 8, + 'typeid' => $faction['entry'], + 'path' => '[0, 7, 0]' +); +$smarty->assign('page', $page); + +// Комментарии +$smarty->assign('comments', getcomments($page['type'], $page['typeid'])); + +// Данные о квесте +$smarty->assign('faction', $faction); +// Если хоть одна информация о вещи найдена - передаём массив с информацией о вещях шаблонизатору +if (isset($allitems)) + $smarty->assign('allitems',$allitems); +/* +if (isset($npcs)) + $smarty->assign('npcs',$npcs); +if (isset($quests)) + $smarty->assign('quests',$quests); +if (isset($items)) + $smarty->assign('items',$items); +*/ +// Количество MySQL запросов +$smarty->assign('mysql', $DB->getStatistics()); +// Загружаем страницу +$smarty->display('faction.tpl'); +?> \ No newline at end of file diff --git a/other/AoWoW-master/factions.php b/other/AoWoW-master/factions.php new file mode 100644 index 0000000..b193bdc --- /dev/null +++ b/other/AoWoW-master/factions.php @@ -0,0 +1,48 @@ +config_load($conf_file, 'factions'); + +global $DB; + +$rows = $DB->select(' + SELECT factionID, team, name, side + FROM ?_factions + WHERE + reputationListID!=-1 + ' +); +if(!$factions = load_cache(19, 'x')) +{ + unset($factions); + + $factions = array(); + foreach ($rows as $numRow=>$row) + { + $factions[$numRow] = array(); + $factions[$numRow]['entry'] = $row['factionID']; + if ($row['team']!=0) + $factions[$numRow]['group'] = $DB->selectCell('SELECT name FROM ?_factions WHERE factionID=? LIMIT 1', $row['team']); + if ($row['side']) + $factions[$numRow]['side'] = $row['side']; + $factions[$numRow]['name'] = $row['name']; + } + save_cache(19, 'x', $factions); +} + +global $page; +$page = array( + 'Mapper' => false, + 'Book' => false, + 'Title' => $smarty->get_config_vars('Factions'), + 'tab' => 0, + 'type' => 0, + 'typeid' => 0, + 'path' => '[0, 7]' +); +$smarty->assign('page', $page); + +// Статистика выполнения mysql запросов +$smarty->assign('mysql', $DB->getStatistics()); +$smarty->assign('factions',$factions); +// Загружаем страницу +$smarty->display('factions.tpl'); +?> diff --git a/other/AoWoW-master/images/icons/large/ability_ambush.jpg b/other/AoWoW-master/images/icons/large/ability_ambush.jpg new file mode 100644 index 0000000..1a082f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_backstab.jpg b/other/AoWoW-master/images/icons/large/ability_backstab.jpg new file mode 100644 index 0000000..d6f4b08 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_backstab.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_bullrush.jpg b/other/AoWoW-master/images/icons/large/ability_bullrush.jpg new file mode 100644 index 0000000..e6db75b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_bullrush.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_cheapshot.jpg b/other/AoWoW-master/images/icons/large/ability_cheapshot.jpg new file mode 100644 index 0000000..077eeb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_cheapshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_cursed_01.jpg b/other/AoWoW-master/images/icons/large/ability_creature_cursed_01.jpg new file mode 100644 index 0000000..d0f56aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_cursed_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_cursed_02.jpg b/other/AoWoW-master/images/icons/large/ability_creature_cursed_02.jpg new file mode 100644 index 0000000..b697e9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_cursed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_cursed_03.jpg b/other/AoWoW-master/images/icons/large/ability_creature_cursed_03.jpg new file mode 100644 index 0000000..802829b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_cursed_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_cursed_04.jpg b/other/AoWoW-master/images/icons/large/ability_creature_cursed_04.jpg new file mode 100644 index 0000000..ac6eb8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_cursed_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_cursed_05.jpg b/other/AoWoW-master/images/icons/large/ability_creature_cursed_05.jpg new file mode 100644 index 0000000..4ac849c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_cursed_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_disease_01.jpg b/other/AoWoW-master/images/icons/large/ability_creature_disease_01.jpg new file mode 100644 index 0000000..e724357 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_disease_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_disease_02.jpg b/other/AoWoW-master/images/icons/large/ability_creature_disease_02.jpg new file mode 100644 index 0000000..99b0305 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_disease_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_disease_03.jpg b/other/AoWoW-master/images/icons/large/ability_creature_disease_03.jpg new file mode 100644 index 0000000..e0ba3f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_disease_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_disease_04.jpg b/other/AoWoW-master/images/icons/large/ability_creature_disease_04.jpg new file mode 100644 index 0000000..982bebc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_disease_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_disease_05.jpg b/other/AoWoW-master/images/icons/large/ability_creature_disease_05.jpg new file mode 100644 index 0000000..a846d8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_disease_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_poison_01.jpg b/other/AoWoW-master/images/icons/large/ability_creature_poison_01.jpg new file mode 100644 index 0000000..153e1e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_poison_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_poison_02.jpg b/other/AoWoW-master/images/icons/large/ability_creature_poison_02.jpg new file mode 100644 index 0000000..ecfdd7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_poison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_poison_03.jpg b/other/AoWoW-master/images/icons/large/ability_creature_poison_03.jpg new file mode 100644 index 0000000..5d1d634 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_poison_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_poison_04.jpg b/other/AoWoW-master/images/icons/large/ability_creature_poison_04.jpg new file mode 100644 index 0000000..1135d76 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_poison_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_poison_05.jpg b/other/AoWoW-master/images/icons/large/ability_creature_poison_05.jpg new file mode 100644 index 0000000..0e6183e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_poison_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_creature_poison_06.jpg b/other/AoWoW-master/images/icons/large/ability_creature_poison_06.jpg new file mode 100644 index 0000000..d86e66b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_creature_poison_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_criticalstrike.jpg b/other/AoWoW-master/images/icons/large/ability_criticalstrike.jpg new file mode 100644 index 0000000..fb92c3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_criticalstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_defend.jpg b/other/AoWoW-master/images/icons/large/ability_defend.jpg new file mode 100644 index 0000000..a392a03 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_defend.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_devour.jpg b/other/AoWoW-master/images/icons/large/ability_devour.jpg new file mode 100644 index 0000000..f47d3dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_devour.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_aquaticform.jpg b/other/AoWoW-master/images/icons/large/ability_druid_aquaticform.jpg new file mode 100644 index 0000000..e1bd3e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_aquaticform.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_balanceofpower.jpg b/other/AoWoW-master/images/icons/large/ability_druid_balanceofpower.jpg new file mode 100644 index 0000000..3d29d24 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_balanceofpower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_bash.jpg b/other/AoWoW-master/images/icons/large/ability_druid_bash.jpg new file mode 100644 index 0000000..ca0685a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_bash.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_catform.jpg b/other/AoWoW-master/images/icons/large/ability_druid_catform.jpg new file mode 100644 index 0000000..87ff936 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_catform.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_catformattack.jpg b/other/AoWoW-master/images/icons/large/ability_druid_catformattack.jpg new file mode 100644 index 0000000..13551df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_catformattack.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_challangingroar.jpg b/other/AoWoW-master/images/icons/large/ability_druid_challangingroar.jpg new file mode 100644 index 0000000..3e5008b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_challangingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_cower.jpg b/other/AoWoW-master/images/icons/large/ability_druid_cower.jpg new file mode 100644 index 0000000..127d7a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_cower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_cyclone.jpg b/other/AoWoW-master/images/icons/large/ability_druid_cyclone.jpg new file mode 100644 index 0000000..7558006 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_dash.jpg b/other/AoWoW-master/images/icons/large/ability_druid_dash.jpg new file mode 100644 index 0000000..19688a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_dash.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_demoralizingroar.jpg b/other/AoWoW-master/images/icons/large/ability_druid_demoralizingroar.jpg new file mode 100644 index 0000000..abb9b63 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_demoralizingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_disembowel.jpg b/other/AoWoW-master/images/icons/large/ability_druid_disembowel.jpg new file mode 100644 index 0000000..f78565f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_dreamstate.jpg b/other/AoWoW-master/images/icons/large/ability_druid_dreamstate.jpg new file mode 100644 index 0000000..09f11e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_dreamstate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_empoweredrejuvination.jpg b/other/AoWoW-master/images/icons/large/ability_druid_empoweredrejuvination.jpg new file mode 100644 index 0000000..f20eb6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_empoweredrejuvination.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_empoweredtouch.jpg b/other/AoWoW-master/images/icons/large/ability_druid_empoweredtouch.jpg new file mode 100644 index 0000000..370a9f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_empoweredtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_enrage.jpg b/other/AoWoW-master/images/icons/large/ability_druid_enrage.jpg new file mode 100644 index 0000000..42f8684 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_enrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_ferociousbite.jpg b/other/AoWoW-master/images/icons/large/ability_druid_ferociousbite.jpg new file mode 100644 index 0000000..3312028 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_ferociousbite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_flightform.jpg b/other/AoWoW-master/images/icons/large/ability_druid_flightform.jpg new file mode 100644 index 0000000..95cef18 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_flightform.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_forceofnature.jpg b/other/AoWoW-master/images/icons/large/ability_druid_forceofnature.jpg new file mode 100644 index 0000000..ca89f60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_healinginstincts.jpg b/other/AoWoW-master/images/icons/large/ability_druid_healinginstincts.jpg new file mode 100644 index 0000000..3d19fac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_healinginstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_lacerate.jpg b/other/AoWoW-master/images/icons/large/ability_druid_lacerate.jpg new file mode 100644 index 0000000..2436e51 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_lacerate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_lunarguidance.jpg b/other/AoWoW-master/images/icons/large/ability_druid_lunarguidance.jpg new file mode 100644 index 0000000..3ab1746 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_lunarguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_mangle.jpg b/other/AoWoW-master/images/icons/large/ability_druid_mangle.jpg new file mode 100644 index 0000000..166708e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_mangle.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_mangle.tga.jpg b/other/AoWoW-master/images/icons/large/ability_druid_mangle.tga.jpg new file mode 100644 index 0000000..166708e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_mangle.tga.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_mangle2.jpg b/other/AoWoW-master/images/icons/large/ability_druid_mangle2.jpg new file mode 100644 index 0000000..73e604e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_mangle2.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_maul.jpg b/other/AoWoW-master/images/icons/large/ability_druid_maul.jpg new file mode 100644 index 0000000..563715a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_maul.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_naturalperfection.jpg b/other/AoWoW-master/images/icons/large/ability_druid_naturalperfection.jpg new file mode 100644 index 0000000..d918726 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_naturalperfection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_predatoryinstincts.jpg b/other/AoWoW-master/images/icons/large/ability_druid_predatoryinstincts.jpg new file mode 100644 index 0000000..274fb82 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_predatoryinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_primaltenacity.jpg b/other/AoWoW-master/images/icons/large/ability_druid_primaltenacity.jpg new file mode 100644 index 0000000..f72f0ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_primaltenacity.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_rake.jpg b/other/AoWoW-master/images/icons/large/ability_druid_rake.jpg new file mode 100644 index 0000000..270cc60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_rake.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_ravage.jpg b/other/AoWoW-master/images/icons/large/ability_druid_ravage.jpg new file mode 100644 index 0000000..6451ef2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_ravage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_supriseattack.jpg b/other/AoWoW-master/images/icons/large/ability_druid_supriseattack.jpg new file mode 100644 index 0000000..85c516a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_supriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_swipe.jpg b/other/AoWoW-master/images/icons/large/ability_druid_swipe.jpg new file mode 100644 index 0000000..ca1115b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_swipe.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_travelform.jpg b/other/AoWoW-master/images/icons/large/ability_druid_travelform.jpg new file mode 100644 index 0000000..ecaeff3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_travelform.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_treeoflife.jpg b/other/AoWoW-master/images/icons/large/ability_druid_treeoflife.jpg new file mode 100644 index 0000000..448826c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_treeoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_druid_twilightswrath.jpg b/other/AoWoW-master/images/icons/large/ability_druid_twilightswrath.jpg new file mode 100644 index 0000000..4d9109a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_druid_twilightswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_dualwield.jpg b/other/AoWoW-master/images/icons/large/ability_dualwield.jpg new file mode 100644 index 0000000..cc1ad18 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_dualwield.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_dualwieldspecialization.jpg b/other/AoWoW-master/images/icons/large/ability_dualwieldspecialization.jpg new file mode 100644 index 0000000..8cfb5c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_dualwieldspecialization.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_ensnare.jpg b/other/AoWoW-master/images/icons/large/ability_ensnare.jpg new file mode 100644 index 0000000..8305158 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_ensnare.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_eyeoftheowl.jpg b/other/AoWoW-master/images/icons/large/ability_eyeoftheowl.jpg new file mode 100644 index 0000000..f171348 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_eyeoftheowl.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_fiegndead.jpg b/other/AoWoW-master/images/icons/large/ability_fiegndead.jpg new file mode 100644 index 0000000..b151747 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_fiegndead.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_ghoulfrenzy.jpg b/other/AoWoW-master/images/icons/large/ability_ghoulfrenzy.jpg new file mode 100644 index 0000000..1739063 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_ghoulfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_golemstormbolt.jpg b/other/AoWoW-master/images/icons/large/ability_golemstormbolt.jpg new file mode 100644 index 0000000..777546e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_golemstormbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_golemthunderclap.jpg b/other/AoWoW-master/images/icons/large/ability_golemthunderclap.jpg new file mode 100644 index 0000000..5803298 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_golemthunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_gouge.jpg b/other/AoWoW-master/images/icons/large/ability_gouge.jpg new file mode 100644 index 0000000..444c0f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_gouge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hibernation.jpg b/other/AoWoW-master/images/icons/large/ability_hibernation.jpg new file mode 100644 index 0000000..460575d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hibernation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_aimedshot.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_aimedshot.jpg new file mode 100644 index 0000000..08875f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_aimedshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_animalhandler.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_animalhandler.jpg new file mode 100644 index 0000000..96aae6f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_animalhandler.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_aspectofthemonkey.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_aspectofthemonkey.jpg new file mode 100644 index 0000000..794c5be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_aspectofthemonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_aspectoftheviper.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_aspectoftheviper.jpg new file mode 100644 index 0000000..e86eac0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_aspectoftheviper.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_beastcall.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_beastcall.jpg new file mode 100644 index 0000000..778ee68 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_beastcall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_beastcall02.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_beastcall02.jpg new file mode 100644 index 0000000..f799865 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_beastcall02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_beastsoothe.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_beastsoothe.jpg new file mode 100644 index 0000000..bd95ef3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_beastsoothe.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_beasttaming.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_beasttaming.jpg new file mode 100644 index 0000000..205105f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_beasttaming.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_beasttraining.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_beasttraining.jpg new file mode 100644 index 0000000..5892859 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_beasttraining.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_beastwithin.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_beastwithin.jpg new file mode 100644 index 0000000..37ed2be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_beastwithin.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_catlikereflexes.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_catlikereflexes.jpg new file mode 100644 index 0000000..85b4c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_catlikereflexes.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_combatexperience.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_combatexperience.jpg new file mode 100644 index 0000000..7018348 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_combatexperience.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_criticalshot.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_criticalshot.jpg new file mode 100644 index 0000000..573e195 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_criticalshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_disarmingshot.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_disarmingshot.jpg new file mode 100644 index 0000000..36364cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_disarmingshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_displacement.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_displacement.jpg new file mode 100644 index 0000000..4a87d2a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_displacement.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_eagleeye.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_eagleeye.jpg new file mode 100644 index 0000000..0c5bd3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_eagleeye.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_ferociousinspiration.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_ferociousinspiration.jpg new file mode 100644 index 0000000..7696bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_ferociousinspiration.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_goforthethroat.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_goforthethroat.jpg new file mode 100644 index 0000000..784a9b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_goforthethroat.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_harass.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_harass.jpg new file mode 100644 index 0000000..3176721 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_harass.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_killcommand.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_killcommand.jpg new file mode 100644 index 0000000..6782d28 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_killcommand.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_mastermarksman.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_mastermarksman.jpg new file mode 100644 index 0000000..294c546 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_mastermarksman.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_mastertactitian.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_mastertactitian.jpg new file mode 100644 index 0000000..cf03e87 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_mastertactitian.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_mendpet.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_mendpet.jpg new file mode 100644 index 0000000..a16bf33 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_mendpet.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_misdirection.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_misdirection.jpg new file mode 100644 index 0000000..ab47bc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_misdirection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pathfinding.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pathfinding.jpg new file mode 100644 index 0000000..c3d3034 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pathfinding.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_bat.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_bat.jpg new file mode 100644 index 0000000..d1874d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_bat.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_bear.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_bear.jpg new file mode 100644 index 0000000..e7b452f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_bear.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_boar.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_boar.jpg new file mode 100644 index 0000000..abd338b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_boar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_cat.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_cat.jpg new file mode 100644 index 0000000..0f01ce0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_cat.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_crab.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_crab.jpg new file mode 100644 index 0000000..6a3a0d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_crab.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_crocolisk.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_crocolisk.jpg new file mode 100644 index 0000000..d0b3bf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_crocolisk.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_dragonhawk.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_dragonhawk.jpg new file mode 100644 index 0000000..8dffade Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_dragonhawk.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_gorilla.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_gorilla.jpg new file mode 100644 index 0000000..08a7fdc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_gorilla.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_hyena.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_hyena.jpg new file mode 100644 index 0000000..c0c5859 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_hyena.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_netherray.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_netherray.jpg new file mode 100644 index 0000000..2796517 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_netherray.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_owl.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_owl.jpg new file mode 100644 index 0000000..16dc2d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_owl.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_raptor.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_raptor.jpg new file mode 100644 index 0000000..454b734 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_ravager.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_ravager.jpg new file mode 100644 index 0000000..b932ff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_ravager.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_scorpid.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_scorpid.jpg new file mode 100644 index 0000000..ef6220d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_scorpid.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_spider.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_spider.jpg new file mode 100644 index 0000000..afe53b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_spider.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_sporebat.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_sporebat.jpg new file mode 100644 index 0000000..4d8e5a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_sporebat.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_tallstrider.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_tallstrider.jpg new file mode 100644 index 0000000..8499c74 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_tallstrider.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_turtle.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_turtle.jpg new file mode 100644 index 0000000..00fcda7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_turtle.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_vulture.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_vulture.jpg new file mode 100644 index 0000000..224e451 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_vulture.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_warpstalker.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_warpstalker.jpg new file mode 100644 index 0000000..68c6019 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_warpstalker.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_windserpent.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_windserpent.jpg new file mode 100644 index 0000000..eb32b63 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_windserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_pet_wolf.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_pet_wolf.jpg new file mode 100644 index 0000000..ec81c4d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_pet_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_quickshot.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_quickshot.jpg new file mode 100644 index 0000000..b1112aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_quickshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_rapidkilling.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_rapidkilling.jpg new file mode 100644 index 0000000..43d9c7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_rapidkilling.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_readiness.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_readiness.jpg new file mode 100644 index 0000000..b42d605 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_readiness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_resourcefulness.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_resourcefulness.jpg new file mode 100644 index 0000000..cad075d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_resourcefulness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_runningshot.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_runningshot.jpg new file mode 100644 index 0000000..7329749 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_runningshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_serpentswiftness.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_serpentswiftness.jpg new file mode 100644 index 0000000..69a51ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_serpentswiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_silenthunter.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_silenthunter.jpg new file mode 100644 index 0000000..599d3d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_silenthunter.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_snaketrap.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_snaketrap.jpg new file mode 100644 index 0000000..d07c4a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_snaketrap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_snipershot.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_snipershot.jpg new file mode 100644 index 0000000..8b4eaa3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_snipershot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_steadyshot.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_steadyshot.jpg new file mode 100644 index 0000000..22f4cc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_steadyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_survivalinstincts.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_survivalinstincts.jpg new file mode 100644 index 0000000..008741a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_survivalinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_swiftstrike.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_swiftstrike.jpg new file mode 100644 index 0000000..7f83fc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_swiftstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_thrillofthehunt.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_thrillofthehunt.jpg new file mode 100644 index 0000000..7a6a6e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_thrillofthehunt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_hunter_zenarchery.jpg b/other/AoWoW-master/images/icons/large/ability_hunter_zenarchery.jpg new file mode 100644 index 0000000..808855a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_hunter_zenarchery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_impalingbolt.jpg b/other/AoWoW-master/images/icons/large/ability_impalingbolt.jpg new file mode 100644 index 0000000..2756d3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_impalingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_kick.jpg b/other/AoWoW-master/images/icons/large/ability_kick.jpg new file mode 100644 index 0000000..17ba67c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_kick.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mage_invisibility.jpg b/other/AoWoW-master/images/icons/large/ability_mage_invisibility.jpg new file mode 100644 index 0000000..94514c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mage_invisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mage_moltenarmor.jpg b/other/AoWoW-master/images/icons/large/ability_mage_moltenarmor.jpg new file mode 100644 index 0000000..27ae150 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mage_moltenarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_marksmanship.jpg b/other/AoWoW-master/images/icons/large/ability_marksmanship.jpg new file mode 100644 index 0000000..fb4a1e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_marksmanship.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_meleedamage.jpg b/other/AoWoW-master/images/icons/large/ability_meleedamage.jpg new file mode 100644 index 0000000..ac39688 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_meleedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_blackdirewolf.jpg b/other/AoWoW-master/images/icons/large/ability_mount_blackdirewolf.jpg new file mode 100644 index 0000000..2d822d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_blackdirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_blackpanther.jpg b/other/AoWoW-master/images/icons/large/ability_mount_blackpanther.jpg new file mode 100644 index 0000000..2114164 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_blackpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_charger.jpg b/other/AoWoW-master/images/icons/large/ability_mount_charger.jpg new file mode 100644 index 0000000..a5e98a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_charger.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount.jpg new file mode 100644 index 0000000..e35fd8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_black.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_black.jpg new file mode 100644 index 0000000..93bab5b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_black.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_blue.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_blue.jpg new file mode 100644 index 0000000..5306ec6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_green.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_green.jpg new file mode 100644 index 0000000..e5ab2f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_purple.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_purple.jpg new file mode 100644 index 0000000..d23dcfb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemount_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite.jpg new file mode 100644 index 0000000..eb12ad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_black.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_black.jpg new file mode 100644 index 0000000..6836814 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_black.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_blue.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_blue.jpg new file mode 100644 index 0000000..04228f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_green.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_green.jpg new file mode 100644 index 0000000..199f39e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_purple.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_purple.jpg new file mode 100644 index 0000000..784b031 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_white.jpg b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_white.jpg new file mode 100644 index 0000000..34adb35 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_cockatricemountelite_white.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_dreadsteed.jpg b/other/AoWoW-master/images/icons/large/ability_mount_dreadsteed.jpg new file mode 100644 index 0000000..44b1d5e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_dreadsteed.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_gryphon_01.jpg b/other/AoWoW-master/images/icons/large/ability_mount_gryphon_01.jpg new file mode 100644 index 0000000..948f5dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_gryphon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_gyrocoptor.jpg b/other/AoWoW-master/images/icons/large/ability_mount_gyrocoptor.jpg new file mode 100644 index 0000000..9b1a28d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_gyrocoptor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_gyrocoptorelite.jpg b/other/AoWoW-master/images/icons/large/ability_mount_gyrocoptorelite.jpg new file mode 100644 index 0000000..49a7fdc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_gyrocoptorelite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_jungletiger.jpg b/other/AoWoW-master/images/icons/large/ability_mount_jungletiger.jpg new file mode 100644 index 0000000..4187836 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_jungletiger.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_kodo_01.jpg b/other/AoWoW-master/images/icons/large/ability_mount_kodo_01.jpg new file mode 100644 index 0000000..16540dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_kodo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_kodo_02.jpg b/other/AoWoW-master/images/icons/large/ability_mount_kodo_02.jpg new file mode 100644 index 0000000..338d167 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_kodo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_kodo_03.jpg b/other/AoWoW-master/images/icons/large/ability_mount_kodo_03.jpg new file mode 100644 index 0000000..25db2d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_kodo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_mechastrider.jpg b/other/AoWoW-master/images/icons/large/ability_mount_mechastrider.jpg new file mode 100644 index 0000000..221f7bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_mechastrider.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_mountainram.jpg b/other/AoWoW-master/images/icons/large/ability_mount_mountainram.jpg new file mode 100644 index 0000000..8658cce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_mountainram.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_netherdrakeelite.jpg b/other/AoWoW-master/images/icons/large/ability_mount_netherdrakeelite.jpg new file mode 100644 index 0000000..8cff53c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_netherdrakeelite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_netherdrakepurple.jpg b/other/AoWoW-master/images/icons/large/ability_mount_netherdrakepurple.jpg new file mode 100644 index 0000000..131d2e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_netherdrakepurple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_nightmarehorse.jpg b/other/AoWoW-master/images/icons/large/ability_mount_nightmarehorse.jpg new file mode 100644 index 0000000..89a348d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_nightmarehorse.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_pinktiger.jpg b/other/AoWoW-master/images/icons/large/ability_mount_pinktiger.jpg new file mode 100644 index 0000000..680daab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_pinktiger.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_raptor.jpg b/other/AoWoW-master/images/icons/large/ability_mount_raptor.jpg new file mode 100644 index 0000000..989beda Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk.jpg new file mode 100644 index 0000000..7bef89d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk_grey.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk_grey.jpg new file mode 100644 index 0000000..d15620a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk_grey.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk_purple.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk_purple.jpg new file mode 100644 index 0000000..57df1b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekk_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite.jpg new file mode 100644 index 0000000..f14dab3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_blue.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_blue.jpg new file mode 100644 index 0000000..b46d8be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_green.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_green.jpg new file mode 100644 index 0000000..72f9214 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_purple.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_purple.jpg new file mode 100644 index 0000000..c85360c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridingelekkelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_ridinghorse.jpg b/other/AoWoW-master/images/icons/large/ability_mount_ridinghorse.jpg new file mode 100644 index 0000000..c0680e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_ridinghorse.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_rocketmount.jpg b/other/AoWoW-master/images/icons/large/ability_mount_rocketmount.jpg new file mode 100644 index 0000000..b932e57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_rocketmount.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_rocketmountblue.jpg b/other/AoWoW-master/images/icons/large/ability_mount_rocketmountblue.jpg new file mode 100644 index 0000000..f6746e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_rocketmountblue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_undeadhorse.jpg b/other/AoWoW-master/images/icons/large/ability_mount_undeadhorse.jpg new file mode 100644 index 0000000..cecab9d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_undeadhorse.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_warhippogryph.jpg b/other/AoWoW-master/images/icons/large/ability_mount_warhippogryph.jpg new file mode 100644 index 0000000..908fd9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_warhippogryph.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_whitedirewolf.jpg b/other/AoWoW-master/images/icons/large/ability_mount_whitedirewolf.jpg new file mode 100644 index 0000000..ab514c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_whitedirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_whitetiger.jpg b/other/AoWoW-master/images/icons/large/ability_mount_whitetiger.jpg new file mode 100644 index 0000000..99ec339 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_whitetiger.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_mount_wyvern_01.jpg b/other/AoWoW-master/images/icons/large/ability_mount_wyvern_01.jpg new file mode 100644 index 0000000..a2529f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_mount_wyvern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_parry.jpg b/other/AoWoW-master/images/icons/large/ability_parry.jpg new file mode 100644 index 0000000..1997fda Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_parry.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_physical_taunt.jpg b/other/AoWoW-master/images/icons/large/ability_physical_taunt.jpg new file mode 100644 index 0000000..f2c6ade Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_physical_taunt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_piercedamage.jpg b/other/AoWoW-master/images/icons/large/ability_piercedamage.jpg new file mode 100644 index 0000000..1df89ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_piercedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_poisonarrow.jpg b/other/AoWoW-master/images/icons/large/ability_poisonarrow.jpg new file mode 100644 index 0000000..1b71ccc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_poisonarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_poisons.jpg b/other/AoWoW-master/images/icons/large/ability_poisons.jpg new file mode 100644 index 0000000..e1c4a6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_poisons.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_poisonsting.jpg b/other/AoWoW-master/images/icons/large/ability_poisonsting.jpg new file mode 100644 index 0000000..d21be81 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_poisonsting.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_racial_avatar.jpg b/other/AoWoW-master/images/icons/large/ability_racial_avatar.jpg new file mode 100644 index 0000000..05aa00f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_racial_avatar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_racial_bearform.jpg b/other/AoWoW-master/images/icons/large/ability_racial_bearform.jpg new file mode 100644 index 0000000..60d9b23 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_racial_bearform.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_racial_bloodrage.jpg b/other/AoWoW-master/images/icons/large/ability_racial_bloodrage.jpg new file mode 100644 index 0000000..4e25473 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_racial_bloodrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_racial_cannibalize.jpg b/other/AoWoW-master/images/icons/large/ability_racial_cannibalize.jpg new file mode 100644 index 0000000..9374cfc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_racial_cannibalize.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_racial_shadowmeld.jpg b/other/AoWoW-master/images/icons/large/ability_racial_shadowmeld.jpg new file mode 100644 index 0000000..3d3807a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_racial_shadowmeld.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_racial_ultravision.jpg b/other/AoWoW-master/images/icons/large/ability_racial_ultravision.jpg new file mode 100644 index 0000000..1b0a0fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_racial_ultravision.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_repair.jpg b/other/AoWoW-master/images/icons/large/ability_repair.jpg new file mode 100644 index 0000000..c3f39d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_repair.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_ambush.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_ambush.jpg new file mode 100644 index 0000000..5b91db0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_bladetwisting.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_bladetwisting.jpg new file mode 100644 index 0000000..2ea850e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_bladetwisting.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_bloodyeye.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_bloodyeye.jpg new file mode 100644 index 0000000..98c5e87 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_bloodyeye.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_cheatdeath.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_cheatdeath.jpg new file mode 100644 index 0000000..e839242 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_cheatdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_deadenednerves.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_deadenednerves.jpg new file mode 100644 index 0000000..4405643 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_deadenednerves.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_disembowel.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_disembowel.jpg new file mode 100644 index 0000000..fb10d8f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_disguise.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_disguise.jpg new file mode 100644 index 0000000..5d000ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_disguise.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_distract.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_distract.jpg new file mode 100644 index 0000000..93c10e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_distract.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_dualweild.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_dualweild.jpg new file mode 100644 index 0000000..5bbc8b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_dualweild.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_envelopingshadows.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_envelopingshadows.jpg new file mode 100644 index 0000000..dfac0e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_envelopingshadows.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_eviscerate.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_eviscerate.jpg new file mode 100644 index 0000000..80d5265 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_eviscerate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_feigndeath.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_feigndeath.jpg new file mode 100644 index 0000000..36e7497 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_feigndeath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_feint.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_feint.jpg new file mode 100644 index 0000000..38ef483 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_feint.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_findweakness.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_findweakness.jpg new file mode 100644 index 0000000..0c7e83f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_findweakness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_fleetfooted.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_fleetfooted.jpg new file mode 100644 index 0000000..83deb8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_fleetfooted.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_garrote.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_garrote.jpg new file mode 100644 index 0000000..60b32fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_garrote.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_kidneyshot.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_kidneyshot.jpg new file mode 100644 index 0000000..f8147c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_kidneyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_masterofsubtlety.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_masterofsubtlety.jpg new file mode 100644 index 0000000..b9f5b97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_masterofsubtlety.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_nervesofsteel.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_nervesofsteel.jpg new file mode 100644 index 0000000..4dd64a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_nervesofsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_quickrecovery.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_quickrecovery.jpg new file mode 100644 index 0000000..d18f421 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_quickrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_rupture.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_rupture.jpg new file mode 100644 index 0000000..dbc99f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_rupture.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_shadowstep.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_shadowstep.jpg new file mode 100644 index 0000000..4576d18 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_shadowstep.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_shadowstrikes.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_shadowstrikes.jpg new file mode 100644 index 0000000..5975ed4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_shadowstrikes.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_sinistercalling.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_sinistercalling.jpg new file mode 100644 index 0000000..c8e8578 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_sinistercalling.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_slicedice.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_slicedice.jpg new file mode 100644 index 0000000..8626395 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_slicedice.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_sprint.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_sprint.jpg new file mode 100644 index 0000000..6bb3907 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_sprint.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_surpriseattack.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_surpriseattack.jpg new file mode 100644 index 0000000..cf8930e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_surpriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_rogue_trip.jpg b/other/AoWoW-master/images/icons/large/ability_rogue_trip.jpg new file mode 100644 index 0000000..3fc5ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_rogue_trip.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_sap.jpg b/other/AoWoW-master/images/icons/large/ability_sap.jpg new file mode 100644 index 0000000..a2b26ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_sap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_seal.jpg b/other/AoWoW-master/images/icons/large/ability_seal.jpg new file mode 100644 index 0000000..6860ff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_seal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_searingarrow.jpg b/other/AoWoW-master/images/icons/large/ability_searingarrow.jpg new file mode 100644 index 0000000..2c29b98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_searingarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_shaman_heroism.jpg b/other/AoWoW-master/images/icons/large/ability_shaman_heroism.jpg new file mode 100644 index 0000000..2769d7f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_shaman_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_shaman_stormstrike.jpg b/other/AoWoW-master/images/icons/large/ability_shaman_stormstrike.jpg new file mode 100644 index 0000000..366f1a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_shaman_stormstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_shaman_watershield.jpg b/other/AoWoW-master/images/icons/large/ability_shaman_watershield.jpg new file mode 100644 index 0000000..452c90c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_shaman_watershield.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_shockwave.jpg b/other/AoWoW-master/images/icons/large/ability_shockwave.jpg new file mode 100644 index 0000000..b34d191 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_shockwave.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_shootwand.jpg b/other/AoWoW-master/images/icons/large/ability_shootwand.jpg new file mode 100644 index 0000000..019a702 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_shootwand.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_smash.jpg b/other/AoWoW-master/images/icons/large/ability_smash.jpg new file mode 100644 index 0000000..88eb82b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_smash.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_spy.jpg b/other/AoWoW-master/images/icons/large/ability_spy.jpg new file mode 100644 index 0000000..b071896 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_spy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_stealth.jpg b/other/AoWoW-master/images/icons/large/ability_stealth.jpg new file mode 100644 index 0000000..1da04e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_stealth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_steelmelee.jpg b/other/AoWoW-master/images/icons/large/ability_steelmelee.jpg new file mode 100644 index 0000000..3750940 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_steelmelee.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_suffocate.jpg b/other/AoWoW-master/images/icons/large/ability_suffocate.jpg new file mode 100644 index 0000000..bcc8fbb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_suffocate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_theblackarrow.jpg b/other/AoWoW-master/images/icons/large/ability_theblackarrow.jpg new file mode 100644 index 0000000..79ad6f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_theblackarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_throw.jpg b/other/AoWoW-master/images/icons/large/ability_throw.jpg new file mode 100644 index 0000000..207f2da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_throw.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_thunderbolt.jpg b/other/AoWoW-master/images/icons/large/ability_thunderbolt.jpg new file mode 100644 index 0000000..2c0c71f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_thunderbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_thunderclap.jpg b/other/AoWoW-master/images/icons/large/ability_thunderclap.jpg new file mode 100644 index 0000000..ed305ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_townwatch.jpg b/other/AoWoW-master/images/icons/large/ability_townwatch.jpg new file mode 100644 index 0000000..2a73d9f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_townwatch.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_tracking.jpg b/other/AoWoW-master/images/icons/large/ability_tracking.jpg new file mode 100644 index 0000000..e619e44 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_tracking.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_trueshot.jpg b/other/AoWoW-master/images/icons/large/ability_trueshot.jpg new file mode 100644 index 0000000..8953e1c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_trueshot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_upgrademoonglaive.jpg b/other/AoWoW-master/images/icons/large/ability_upgrademoonglaive.jpg new file mode 100644 index 0000000..b20d7ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_upgrademoonglaive.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_vanish.jpg b/other/AoWoW-master/images/icons/large/ability_vanish.jpg new file mode 100644 index 0000000..afceda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_vanish.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warlock_avoidance.jpg b/other/AoWoW-master/images/icons/large/ability_warlock_avoidance.jpg new file mode 100644 index 0000000..46ec41e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warlock_avoidance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_battleshout.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_battleshout.jpg new file mode 100644 index 0000000..9dccadb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_battleshout.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_bloodfrenzy.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_bloodfrenzy.jpg new file mode 100644 index 0000000..9608458 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_bloodfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_challange.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_challange.jpg new file mode 100644 index 0000000..8ab79da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_challange.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_charge.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_charge.jpg new file mode 100644 index 0000000..6fa4cf8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_charge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_cleave.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_cleave.jpg new file mode 100644 index 0000000..7f6db34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_cleave.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_commandingshout.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_commandingshout.jpg new file mode 100644 index 0000000..6bb728e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_commandingshout.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_decisivestrike.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_decisivestrike.jpg new file mode 100644 index 0000000..6297c31 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_decisivestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_defensivestance.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_defensivestance.jpg new file mode 100644 index 0000000..9561a12 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_defensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_devastate.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_devastate.jpg new file mode 100644 index 0000000..443b75f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_devastate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_disarm.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_disarm.jpg new file mode 100644 index 0000000..2ef455d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_disarm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_endlessrage.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_endlessrage.jpg new file mode 100644 index 0000000..9dd637a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_endlessrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_focusedrage.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_focusedrage.jpg new file mode 100644 index 0000000..33085eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_focusedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_improveddisciplines.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_improveddisciplines.jpg new file mode 100644 index 0000000..67dcc72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_improveddisciplines.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_innerrage.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_innerrage.jpg new file mode 100644 index 0000000..5d6706b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_innerrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_intervene.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_intervene.jpg new file mode 100644 index 0000000..e8a553c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_intervene.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_offensivestance.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_offensivestance.jpg new file mode 100644 index 0000000..dede6ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_offensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_punishingblow.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_punishingblow.jpg new file mode 100644 index 0000000..554872f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_punishingblow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_rallyingcry.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_rallyingcry.jpg new file mode 100644 index 0000000..23bf05f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_rallyingcry.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_rampage.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_rampage.jpg new file mode 100644 index 0000000..2ac54e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_rampage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_revenge.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_revenge.jpg new file mode 100644 index 0000000..c217ea5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_revenge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_riposte.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_riposte.jpg new file mode 100644 index 0000000..ef0b78e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_riposte.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_savageblow.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_savageblow.jpg new file mode 100644 index 0000000..a2615d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_savageblow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_secondwind.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_secondwind.jpg new file mode 100644 index 0000000..57223ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_secondwind.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_shieldbash.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_shieldbash.jpg new file mode 100644 index 0000000..8166eef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_shieldbash.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_shieldguard.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_shieldguard.jpg new file mode 100644 index 0000000..d2915f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_shieldguard.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_shieldmastery.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_shieldmastery.jpg new file mode 100644 index 0000000..6a33f71 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_shieldmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_shieldreflection.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_shieldreflection.jpg new file mode 100644 index 0000000..0b8eaea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_shieldreflection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_shieldwall.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_shieldwall.jpg new file mode 100644 index 0000000..4f635da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_shieldwall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_sunder.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_sunder.jpg new file mode 100644 index 0000000..30eb530 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_sunder.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_victoryrush.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_victoryrush.jpg new file mode 100644 index 0000000..ca3072b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_victoryrush.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_warcry.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_warcry.jpg new file mode 100644 index 0000000..5a80185 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_warcry.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warrior_weaponmastery.jpg b/other/AoWoW-master/images/icons/large/ability_warrior_weaponmastery.jpg new file mode 100644 index 0000000..b8dece4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warrior_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_warstomp.jpg b/other/AoWoW-master/images/icons/large/ability_warstomp.jpg new file mode 100644 index 0000000..ce9e87b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_warstomp.jpg differ diff --git a/other/AoWoW-master/images/icons/large/ability_whirlwind.jpg b/other/AoWoW-master/images/icons/large/ability_whirlwind.jpg new file mode 100644 index 0000000..7d03355 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/ability_whirlwind.jpg differ diff --git a/other/AoWoW-master/images/icons/large/axe_1h_draenei_b_01.jpg b/other/AoWoW-master/images/icons/large/axe_1h_draenei_b_01.jpg new file mode 100644 index 0000000..8200666 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/axe_1h_draenei_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/creature_sporemushroom.jpg b/other/AoWoW-master/images/icons/large/creature_sporemushroom.jpg new file mode 100644 index 0000000..97bb99f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/creature_sporemushroom.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv-mount_raven_54.jpg b/other/AoWoW-master/images/icons/large/inv-mount_raven_54.jpg new file mode 100644 index 0000000..6b6db1c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv-mount_raven_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv-sword_53.jpg b/other/AoWoW-master/images/icons/large/inv-sword_53.jpg new file mode 100644 index 0000000..2c379f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv-sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_1h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/large/inv_1h_auchindoun_01.jpg new file mode 100644 index 0000000..b274814 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_1h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_1h_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_1h_haremmatron_d_01.jpg new file mode 100644 index 0000000..e8c1ef6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_1h_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_2h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/large/inv_2h_auchindoun_01.jpg new file mode 100644 index 0000000..9f72937 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_2h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/large/inv_ammo_arrow_01.jpg new file mode 100644 index 0000000..672885b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/large/inv_ammo_arrow_02.jpg new file mode 100644 index 0000000..ddf4a23 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/large/inv_ammo_bullet_01.jpg new file mode 100644 index 0000000..9acc8f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/large/inv_ammo_bullet_02.jpg new file mode 100644 index 0000000..4fe92e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/large/inv_ammo_bullet_03.jpg new file mode 100644 index 0000000..4173968 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ammo_firetar.jpg b/other/AoWoW-master/images/icons/large/inv_ammo_firetar.jpg new file mode 100644 index 0000000..edc186d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ammo_firetar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ammo_snowball.jpg b/other/AoWoW-master/images/icons/large/inv_ammo_snowball.jpg new file mode 100644 index 0000000..4c154eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ammo_snowball.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/large/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..beddfeb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_armor_shield_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_armor_shield_naxxramas_d_01.jpg new file mode 100644 index 0000000..5e18432 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_armor_shield_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_armor_shield_naxxramas_d_02.jpg b/other/AoWoW-master/images/icons/large/inv_armor_shield_naxxramas_d_02.jpg new file mode 100644 index 0000000..f9e7af7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_armor_shield_naxxramas_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/large/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..59b33e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_01.jpg b/other/AoWoW-master/images/icons/large/inv_axe_01.jpg new file mode 100644 index 0000000..f55f2b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_02.jpg b/other/AoWoW-master/images/icons/large/inv_axe_02.jpg new file mode 100644 index 0000000..21cb6e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_03.jpg b/other/AoWoW-master/images/icons/large/inv_axe_03.jpg new file mode 100644 index 0000000..48962d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_04.jpg b/other/AoWoW-master/images/icons/large/inv_axe_04.jpg new file mode 100644 index 0000000..91e895f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_05.jpg b/other/AoWoW-master/images/icons/large/inv_axe_05.jpg new file mode 100644 index 0000000..177336f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_06.jpg b/other/AoWoW-master/images/icons/large/inv_axe_06.jpg new file mode 100644 index 0000000..7bea730 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_07.jpg b/other/AoWoW-master/images/icons/large/inv_axe_07.jpg new file mode 100644 index 0000000..2e1e5ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_08.jpg b/other/AoWoW-master/images/icons/large/inv_axe_08.jpg new file mode 100644 index 0000000..859bcf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_09.jpg b/other/AoWoW-master/images/icons/large/inv_axe_09.jpg new file mode 100644 index 0000000..0beb7bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_10.jpg b/other/AoWoW-master/images/icons/large/inv_axe_10.jpg new file mode 100644 index 0000000..d54c626 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_11.jpg b/other/AoWoW-master/images/icons/large/inv_axe_11.jpg new file mode 100644 index 0000000..3ae57c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_12.jpg b/other/AoWoW-master/images/icons/large/inv_axe_12.jpg new file mode 100644 index 0000000..214de61 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_13.jpg b/other/AoWoW-master/images/icons/large/inv_axe_13.jpg new file mode 100644 index 0000000..d71734b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_14.jpg b/other/AoWoW-master/images/icons/large/inv_axe_14.jpg new file mode 100644 index 0000000..5cbb98f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_15.jpg b/other/AoWoW-master/images/icons/large/inv_axe_15.jpg new file mode 100644 index 0000000..3950f25 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_16.jpg b/other/AoWoW-master/images/icons/large/inv_axe_16.jpg new file mode 100644 index 0000000..e4efecb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_17.jpg b/other/AoWoW-master/images/icons/large/inv_axe_17.jpg new file mode 100644 index 0000000..05a3af1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_18.jpg b/other/AoWoW-master/images/icons/large/inv_axe_18.jpg new file mode 100644 index 0000000..51e0ca3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_19.jpg b/other/AoWoW-master/images/icons/large/inv_axe_19.jpg new file mode 100644 index 0000000..023377c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..37b5107 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..092f7ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..0bb4d0c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_20.jpg b/other/AoWoW-master/images/icons/large/inv_axe_20.jpg new file mode 100644 index 0000000..921b0ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_21.jpg b/other/AoWoW-master/images/icons/large/inv_axe_21.jpg new file mode 100644 index 0000000..63cd17a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_22.jpg b/other/AoWoW-master/images/icons/large/inv_axe_22.jpg new file mode 100644 index 0000000..60bd13b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_23.jpg b/other/AoWoW-master/images/icons/large/inv_axe_23.jpg new file mode 100644 index 0000000..073397c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_24.jpg b/other/AoWoW-master/images/icons/large/inv_axe_24.jpg new file mode 100644 index 0000000..70c07c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_25.jpg b/other/AoWoW-master/images/icons/large/inv_axe_25.jpg new file mode 100644 index 0000000..4bc1a3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_26.jpg b/other/AoWoW-master/images/icons/large/inv_axe_26.jpg new file mode 100644 index 0000000..9275bdf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_29.jpg b/other/AoWoW-master/images/icons/large/inv_axe_29.jpg new file mode 100644 index 0000000..215d8fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_2h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_axe_2h_stratholme_d_01.jpg new file mode 100644 index 0000000..f45b96a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_2h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_30.jpg b/other/AoWoW-master/images/icons/large/inv_axe_30.jpg new file mode 100644 index 0000000..64764b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_31.jpg b/other/AoWoW-master/images/icons/large/inv_axe_31.jpg new file mode 100644 index 0000000..0deea16 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_32.jpg b/other/AoWoW-master/images/icons/large/inv_axe_32.jpg new file mode 100644 index 0000000..0deea16 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_33.jpg b/other/AoWoW-master/images/icons/large/inv_axe_33.jpg new file mode 100644 index 0000000..dede254 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_34.jpg b/other/AoWoW-master/images/icons/large/inv_axe_34.jpg new file mode 100644 index 0000000..14742e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_35.jpg b/other/AoWoW-master/images/icons/large/inv_axe_35.jpg new file mode 100644 index 0000000..110347a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_36.jpg b/other/AoWoW-master/images/icons/large/inv_axe_36.jpg new file mode 100644 index 0000000..6164c94 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_37.jpg b/other/AoWoW-master/images/icons/large/inv_axe_37.jpg new file mode 100644 index 0000000..a5a1ba0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_38.jpg b/other/AoWoW-master/images/icons/large/inv_axe_38.jpg new file mode 100644 index 0000000..19137f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_39.jpg b/other/AoWoW-master/images/icons/large/inv_axe_39.jpg new file mode 100644 index 0000000..7017b38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_40.jpg b/other/AoWoW-master/images/icons/large/inv_axe_40.jpg new file mode 100644 index 0000000..21960c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_44.jpg b/other/AoWoW-master/images/icons/large/inv_axe_44.jpg new file mode 100644 index 0000000..8598008 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_45.jpg b/other/AoWoW-master/images/icons/large/inv_axe_45.jpg new file mode 100644 index 0000000..5c3f9d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_46.jpg b/other/AoWoW-master/images/icons/large/inv_axe_46.jpg new file mode 100644 index 0000000..aa0097b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_49.jpg b/other/AoWoW-master/images/icons/large/inv_axe_49.jpg new file mode 100644 index 0000000..c77a06a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_50.jpg b/other/AoWoW-master/images/icons/large/inv_axe_50.jpg new file mode 100644 index 0000000..ceb6283 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_51.jpg b/other/AoWoW-master/images/icons/large/inv_axe_51.jpg new file mode 100644 index 0000000..771b506 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_52.jpg b/other/AoWoW-master/images/icons/large/inv_axe_52.jpg new file mode 100644 index 0000000..9eb6a79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_53.jpg b/other/AoWoW-master/images/icons/large/inv_axe_53.jpg new file mode 100644 index 0000000..010e307 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_54.jpg b/other/AoWoW-master/images/icons/large/inv_axe_54.jpg new file mode 100644 index 0000000..c659afb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_55.jpg b/other/AoWoW-master/images/icons/large/inv_axe_55.jpg new file mode 100644 index 0000000..64fda29 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_56.jpg b/other/AoWoW-master/images/icons/large/inv_axe_56.jpg new file mode 100644 index 0000000..41272a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_57.jpg b/other/AoWoW-master/images/icons/large/inv_axe_57.jpg new file mode 100644 index 0000000..44ab9be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_59.jpg b/other/AoWoW-master/images/icons/large/inv_axe_59.jpg new file mode 100644 index 0000000..6a92235 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_60.jpg b/other/AoWoW-master/images/icons/large/inv_axe_60.jpg new file mode 100644 index 0000000..46e0684 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_61.jpg b/other/AoWoW-master/images/icons/large/inv_axe_61.jpg new file mode 100644 index 0000000..76faab9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_62.jpg b/other/AoWoW-master/images/icons/large/inv_axe_62.jpg new file mode 100644 index 0000000..5e7500a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_63.jpg b/other/AoWoW-master/images/icons/large/inv_axe_63.jpg new file mode 100644 index 0000000..7562fa2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_64.jpg b/other/AoWoW-master/images/icons/large/inv_axe_64.jpg new file mode 100644 index 0000000..ad7262e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_65.jpg b/other/AoWoW-master/images/icons/large/inv_axe_65.jpg new file mode 100644 index 0000000..f4a8a99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_66.jpg b/other/AoWoW-master/images/icons/large/inv_axe_66.jpg new file mode 100644 index 0000000..6d62ec4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_67.jpg b/other/AoWoW-master/images/icons/large/inv_axe_67.jpg new file mode 100644 index 0000000..f791527 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_68.jpg b/other/AoWoW-master/images/icons/large/inv_axe_68.jpg new file mode 100644 index 0000000..f52170e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_69.jpg b/other/AoWoW-master/images/icons/large/inv_axe_69.jpg new file mode 100644 index 0000000..0eac627 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_70.jpg b/other/AoWoW-master/images/icons/large/inv_axe_70.jpg new file mode 100644 index 0000000..13f8d7e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_70.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_71.jpg b/other/AoWoW-master/images/icons/large/inv_axe_71.jpg new file mode 100644 index 0000000..4e69d68 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_72.jpg b/other/AoWoW-master/images/icons/large/inv_axe_72.jpg new file mode 100644 index 0000000..315b112 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_73.jpg b/other/AoWoW-master/images/icons/large/inv_axe_73.jpg new file mode 100644 index 0000000..8b18e6e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_84.jpg b/other/AoWoW-master/images/icons/large/inv_axe_84.jpg new file mode 100644 index 0000000..de3a5b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_84.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_axe_85.jpg b/other/AoWoW-master/images/icons/large/inv_axe_85.jpg new file mode 100644 index 0000000..2db39c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_axe_85.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_banner_01.jpg b/other/AoWoW-master/images/icons/large/inv_banner_01.jpg new file mode 100644 index 0000000..8837a2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_banner_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_banner_02.jpg b/other/AoWoW-master/images/icons/large/inv_banner_02.jpg new file mode 100644 index 0000000..e3706f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_banner_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_banner_03.jpg b/other/AoWoW-master/images/icons/large/inv_banner_03.jpg new file mode 100644 index 0000000..48003a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_banner_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bannerpvp_01.jpg b/other/AoWoW-master/images/icons/large/inv_bannerpvp_01.jpg new file mode 100644 index 0000000..af2e293 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bannerpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bannerpvp_02.jpg b/other/AoWoW-master/images/icons/large/inv_bannerpvp_02.jpg new file mode 100644 index 0000000..3d8c44f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bannerpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bannerpvp_03.jpg b/other/AoWoW-master/images/icons/large/inv_bannerpvp_03.jpg new file mode 100644 index 0000000..983a509 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bannerpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_battery_01.jpg b/other/AoWoW-master/images/icons/large/inv_battery_01.jpg new file mode 100644 index 0000000..dd9dbef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_battery_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_battery_02.jpg b/other/AoWoW-master/images/icons/large/inv_battery_02.jpg new file mode 100644 index 0000000..3a153c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_battery_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_01.jpg b/other/AoWoW-master/images/icons/large/inv_belt_01.jpg new file mode 100644 index 0000000..04a4ebf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_02.jpg b/other/AoWoW-master/images/icons/large/inv_belt_02.jpg new file mode 100644 index 0000000..9346db8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_03.jpg b/other/AoWoW-master/images/icons/large/inv_belt_03.jpg new file mode 100644 index 0000000..1cfff2c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_04.jpg b/other/AoWoW-master/images/icons/large/inv_belt_04.jpg new file mode 100644 index 0000000..4f46d24 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_05.jpg b/other/AoWoW-master/images/icons/large/inv_belt_05.jpg new file mode 100644 index 0000000..e54ef3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_06.jpg b/other/AoWoW-master/images/icons/large/inv_belt_06.jpg new file mode 100644 index 0000000..d13656b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_07.jpg b/other/AoWoW-master/images/icons/large/inv_belt_07.jpg new file mode 100644 index 0000000..fc2b731 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_08.jpg b/other/AoWoW-master/images/icons/large/inv_belt_08.jpg new file mode 100644 index 0000000..e5ccab8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_09.jpg b/other/AoWoW-master/images/icons/large/inv_belt_09.jpg new file mode 100644 index 0000000..4c49e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_10.jpg b/other/AoWoW-master/images/icons/large/inv_belt_10.jpg new file mode 100644 index 0000000..b6e4eee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_11.jpg b/other/AoWoW-master/images/icons/large/inv_belt_11.jpg new file mode 100644 index 0000000..5b0dc64 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_12.jpg b/other/AoWoW-master/images/icons/large/inv_belt_12.jpg new file mode 100644 index 0000000..6368e12 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_13.jpg b/other/AoWoW-master/images/icons/large/inv_belt_13.jpg new file mode 100644 index 0000000..7c58acc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_14.jpg b/other/AoWoW-master/images/icons/large/inv_belt_14.jpg new file mode 100644 index 0000000..4347844 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_15.jpg b/other/AoWoW-master/images/icons/large/inv_belt_15.jpg new file mode 100644 index 0000000..47e971f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_16.jpg b/other/AoWoW-master/images/icons/large/inv_belt_16.jpg new file mode 100644 index 0000000..f4a38d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_17.jpg b/other/AoWoW-master/images/icons/large/inv_belt_17.jpg new file mode 100644 index 0000000..6928558 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_18.jpg b/other/AoWoW-master/images/icons/large/inv_belt_18.jpg new file mode 100644 index 0000000..a5278eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_19.jpg b/other/AoWoW-master/images/icons/large/inv_belt_19.jpg new file mode 100644 index 0000000..c6a4821 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_20.jpg b/other/AoWoW-master/images/icons/large/inv_belt_20.jpg new file mode 100644 index 0000000..91ce86d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_21.jpg b/other/AoWoW-master/images/icons/large/inv_belt_21.jpg new file mode 100644 index 0000000..6eb3028 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_22.jpg b/other/AoWoW-master/images/icons/large/inv_belt_22.jpg new file mode 100644 index 0000000..07af271 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_23.jpg b/other/AoWoW-master/images/icons/large/inv_belt_23.jpg new file mode 100644 index 0000000..0b1cd1f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_24.jpg b/other/AoWoW-master/images/icons/large/inv_belt_24.jpg new file mode 100644 index 0000000..f1c5b20 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_25.jpg b/other/AoWoW-master/images/icons/large/inv_belt_25.jpg new file mode 100644 index 0000000..1d76a48 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_26.jpg b/other/AoWoW-master/images/icons/large/inv_belt_26.jpg new file mode 100644 index 0000000..211ad00 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_27.jpg b/other/AoWoW-master/images/icons/large/inv_belt_27.jpg new file mode 100644 index 0000000..3d6098a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_28.jpg b/other/AoWoW-master/images/icons/large/inv_belt_28.jpg new file mode 100644 index 0000000..2b1b329 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_29.jpg b/other/AoWoW-master/images/icons/large/inv_belt_29.jpg new file mode 100644 index 0000000..de59215 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_30.jpg b/other/AoWoW-master/images/icons/large/inv_belt_30.jpg new file mode 100644 index 0000000..ed2ead1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_31.jpg b/other/AoWoW-master/images/icons/large/inv_belt_31.jpg new file mode 100644 index 0000000..e264a6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_32.jpg b/other/AoWoW-master/images/icons/large/inv_belt_32.jpg new file mode 100644 index 0000000..e28f426 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_33.jpg b/other/AoWoW-master/images/icons/large/inv_belt_33.jpg new file mode 100644 index 0000000..d5f1da2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_34.jpg b/other/AoWoW-master/images/icons/large/inv_belt_34.jpg new file mode 100644 index 0000000..e08f62c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_belt_35.jpg b/other/AoWoW-master/images/icons/large/inv_belt_35.jpg new file mode 100644 index 0000000..0326f42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_belt_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_blue.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_blue.jpg new file mode 100644 index 0000000..21824b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_bronze.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_bronze.jpg new file mode 100644 index 0000000..9700fe7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_gold.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_gold.jpg new file mode 100644 index 0000000..1fc3dd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_green.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_green.jpg new file mode 100644 index 0000000..d939482 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_orange.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_orange.jpg new file mode 100644 index 0000000..2b1ef56 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_orange.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_purple.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_purple.jpg new file mode 100644 index 0000000..52b9593 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_red.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_red.jpg new file mode 100644 index 0000000..be73e5b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_silver.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_silver.jpg new file mode 100644 index 0000000..ee305c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bijou_yellow.jpg b/other/AoWoW-master/images/icons/large/inv_bijou_yellow.jpg new file mode 100644 index 0000000..d8f865e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bijou_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_01.jpg new file mode 100644 index 0000000..a77554f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_02.jpg b/other/AoWoW-master/images/icons/large/inv_boots_02.jpg new file mode 100644 index 0000000..0c11d83 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_03.jpg b/other/AoWoW-master/images/icons/large/inv_boots_03.jpg new file mode 100644 index 0000000..0b876a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_04.jpg b/other/AoWoW-master/images/icons/large/inv_boots_04.jpg new file mode 100644 index 0000000..ee29002 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_05.jpg b/other/AoWoW-master/images/icons/large/inv_boots_05.jpg new file mode 100644 index 0000000..bcd39a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_06.jpg b/other/AoWoW-master/images/icons/large/inv_boots_06.jpg new file mode 100644 index 0000000..5569a00 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_07.jpg b/other/AoWoW-master/images/icons/large/inv_boots_07.jpg new file mode 100644 index 0000000..eeed2b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_08.jpg b/other/AoWoW-master/images/icons/large/inv_boots_08.jpg new file mode 100644 index 0000000..1239fab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_09.jpg b/other/AoWoW-master/images/icons/large/inv_boots_09.jpg new file mode 100644 index 0000000..cd34f5c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_01.jpg new file mode 100644 index 0000000..dd5e69c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_02.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_02.jpg new file mode 100644 index 0000000..628c4a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_03.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_03.jpg new file mode 100644 index 0000000..1d2744b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_04.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_04.jpg new file mode 100644 index 0000000..22e8081 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_05.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_05.jpg new file mode 100644 index 0000000..6f44c91 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_06.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_06.jpg new file mode 100644 index 0000000..003efb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_07.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_07.jpg new file mode 100644 index 0000000..d022f9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_08.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_08.jpg new file mode 100644 index 0000000..b7d5991 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_09.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_09.jpg new file mode 100644 index 0000000..dba09fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_10.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_10.jpg new file mode 100644 index 0000000..bdd7096 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_11.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_11.jpg new file mode 100644 index 0000000..6a1d72b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_12.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_12.jpg new file mode 100644 index 0000000..a7df633 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_chain_13.jpg b/other/AoWoW-master/images/icons/large/inv_boots_chain_13.jpg new file mode 100644 index 0000000..a750032 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_christmas01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_christmas01.jpg new file mode 100644 index 0000000..6558219 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_01.jpg new file mode 100644 index 0000000..43807be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_02.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_02.jpg new file mode 100644 index 0000000..a3920a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_03.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_03.jpg new file mode 100644 index 0000000..57871a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_04.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_04.jpg new file mode 100644 index 0000000..efa4586 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_05.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_05.jpg new file mode 100644 index 0000000..02d166f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_06.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_06.jpg new file mode 100644 index 0000000..1094e48 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_07.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_07.jpg new file mode 100644 index 0000000..5907c67 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_08.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_08.jpg new file mode 100644 index 0000000..ca02377 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_09.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_09.jpg new file mode 100644 index 0000000..f296435 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_10.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_10.jpg new file mode 100644 index 0000000..3dcc2df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_11.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_11.jpg new file mode 100644 index 0000000..5cb0df0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_12.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_12.jpg new file mode 100644 index 0000000..9f8805c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_13.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_13.jpg new file mode 100644 index 0000000..df939f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_14.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_14.jpg new file mode 100644 index 0000000..42696a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_15.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_15.jpg new file mode 100644 index 0000000..42e79e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_16.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_16.jpg new file mode 100644 index 0000000..9912d20 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_17.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_17.jpg new file mode 100644 index 0000000..aa5ef5b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_18.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_18.jpg new file mode 100644 index 0000000..50ed2df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_cloth_20.jpg b/other/AoWoW-master/images/icons/large/inv_boots_cloth_20.jpg new file mode 100644 index 0000000..5455e23 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_fabric_01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_fabric_01.jpg new file mode 100644 index 0000000..145d168 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_fabric_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_leather01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_leather01.jpg new file mode 100644 index 0000000..abb0a8a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_leather01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_mail_01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_mail_01.jpg new file mode 100644 index 0000000..721779f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_01.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_01.jpg new file mode 100644 index 0000000..0140051 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_02.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_02.jpg new file mode 100644 index 0000000..9af188f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_03.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_03.jpg new file mode 100644 index 0000000..a74314e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_04.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_04.jpg new file mode 100644 index 0000000..e5d97ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_05.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_05.jpg new file mode 100644 index 0000000..051501b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_06.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_06.jpg new file mode 100644 index 0000000..abb11d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_07.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_07.jpg new file mode 100644 index 0000000..c450131 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_08.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_08.jpg new file mode 100644 index 0000000..b36382f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_09.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_09.jpg new file mode 100644 index 0000000..5845565 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_plate_10.jpg b/other/AoWoW-master/images/icons/large/inv_boots_plate_10.jpg new file mode 100644 index 0000000..cd69530 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_boots_wolf.jpg b/other/AoWoW-master/images/icons/large/inv_boots_wolf.jpg new file mode 100644 index 0000000..20fe4c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_boots_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bow_1h_auchindoun_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_bow_1h_auchindoun_d_01.jpg new file mode 100644 index 0000000..5fbd3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bow_1h_auchindoun_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_box_01.jpg b/other/AoWoW-master/images/icons/large/inv_box_01.jpg new file mode 100644 index 0000000..0fbbce9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_box_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_box_02.jpg b/other/AoWoW-master/images/icons/large/inv_box_02.jpg new file mode 100644 index 0000000..8b1a793 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_box_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_box_03.jpg b/other/AoWoW-master/images/icons/large/inv_box_03.jpg new file mode 100644 index 0000000..130960f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_box_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_box_04.jpg b/other/AoWoW-master/images/icons/large/inv_box_04.jpg new file mode 100644 index 0000000..31944f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_box_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_box_birdcage_01.jpg b/other/AoWoW-master/images/icons/large/inv_box_birdcage_01.jpg new file mode 100644 index 0000000..0ed7b7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_box_birdcage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_box_petcarrier_01.jpg b/other/AoWoW-master/images/icons/large/inv_box_petcarrier_01.jpg new file mode 100644 index 0000000..692c253 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_box_petcarrier_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_01.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_01.jpg new file mode 100644 index 0000000..caac2b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_02.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_02.jpg new file mode 100644 index 0000000..46ae78b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_03.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_03.jpg new file mode 100644 index 0000000..a31496a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_04.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_04.jpg new file mode 100644 index 0000000..79586a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_05.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_05.jpg new file mode 100644 index 0000000..262060b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_06.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_06.jpg new file mode 100644 index 0000000..9c28e22 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_07.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_07.jpg new file mode 100644 index 0000000..36a02ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_08.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_08.jpg new file mode 100644 index 0000000..eedbfb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_09.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_09.jpg new file mode 100644 index 0000000..82cf9a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_10.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_10.jpg new file mode 100644 index 0000000..0e0c3c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_11.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_11.jpg new file mode 100644 index 0000000..45468f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_12.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_12.jpg new file mode 100644 index 0000000..c1ad8ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_13.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_13.jpg new file mode 100644 index 0000000..e026735 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_14.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_14.jpg new file mode 100644 index 0000000..a1358f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_15.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_15.jpg new file mode 100644 index 0000000..4dd2d16 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_16.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_16.jpg new file mode 100644 index 0000000..89f40ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_17.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_17.jpg new file mode 100644 index 0000000..7e4de02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_18.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_18.jpg new file mode 100644 index 0000000..5fa1c52 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_bracer_19.jpg b/other/AoWoW-master/images/icons/large/inv_bracer_19.jpg new file mode 100644 index 0000000..e7247f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_bracer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_brd_banner.jpg b/other/AoWoW-master/images/icons/large/inv_brd_banner.jpg new file mode 100644 index 0000000..4e5e1d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_brd_banner.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_cask_01.jpg b/other/AoWoW-master/images/icons/large/inv_cask_01.jpg new file mode 100644 index 0000000..e9ae2d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_cask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_cask_02.jpg b/other/AoWoW-master/images/icons/large/inv_cask_02.jpg new file mode 100644 index 0000000..7727965 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_cask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_cask_03.jpg b/other/AoWoW-master/images/icons/large/inv_cask_03.jpg new file mode 100644 index 0000000..f0ee470 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_cask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_cask_04.jpg b/other/AoWoW-master/images/icons/large/inv_cask_04.jpg new file mode 100644 index 0000000..83e4c33 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_cask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain.jpg new file mode 100644 index 0000000..b38e643 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_03.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_03.jpg new file mode 100644 index 0000000..7818602 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_04.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_04.jpg new file mode 100644 index 0000000..65318ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_05.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_05.jpg new file mode 100644 index 0000000..731eb6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_06.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_06.jpg new file mode 100644 index 0000000..4f2a0c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_07.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_07.jpg new file mode 100644 index 0000000..19ed777 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_08.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_08.jpg new file mode 100644 index 0000000..4ed7d9d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_09.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_09.jpg new file mode 100644 index 0000000..9779da1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_10.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_10.jpg new file mode 100644 index 0000000..e8a0a71 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_11.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_11.jpg new file mode 100644 index 0000000..cd9ae6d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_12.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_12.jpg new file mode 100644 index 0000000..43a2b88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_13.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_13.jpg new file mode 100644 index 0000000..ffd633f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_14.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_14.jpg new file mode 100644 index 0000000..99d9488 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_15.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_15.jpg new file mode 100644 index 0000000..c432455 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_16.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_16.jpg new file mode 100644 index 0000000..f6d733e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_chain_17.jpg b/other/AoWoW-master/images/icons/large/inv_chest_chain_17.jpg new file mode 100644 index 0000000..737408b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_chain_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_christmas01.jpg b/other/AoWoW-master/images/icons/large/inv_chest_christmas01.jpg new file mode 100644 index 0000000..897d81f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_christmas02.jpg b/other/AoWoW-master/images/icons/large/inv_chest_christmas02.jpg new file mode 100644 index 0000000..a5edb4c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_christmas02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_01.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_01.jpg new file mode 100644 index 0000000..83aa091 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_02.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_02.jpg new file mode 100644 index 0000000..7731320 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_03.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_03.jpg new file mode 100644 index 0000000..31babff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_04.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_04.jpg new file mode 100644 index 0000000..4b1d3d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_05.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_05.jpg new file mode 100644 index 0000000..c44d044 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_06.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_06.jpg new file mode 100644 index 0000000..9be28af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_07.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_07.jpg new file mode 100644 index 0000000..e2be133 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_08.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_08.jpg new file mode 100644 index 0000000..a828c15 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_09.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_09.jpg new file mode 100644 index 0000000..7d5816d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_10.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_10.jpg new file mode 100644 index 0000000..8336187 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_11.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_11.jpg new file mode 100644 index 0000000..a7b29cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_12.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_12.jpg new file mode 100644 index 0000000..242ced5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_13.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_13.jpg new file mode 100644 index 0000000..59e7bea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_14.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_14.jpg new file mode 100644 index 0000000..c5772cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_15.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_15.jpg new file mode 100644 index 0000000..25c5d3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_16.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_16.jpg new file mode 100644 index 0000000..35c9c54 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_17.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_17.jpg new file mode 100644 index 0000000..b05e828 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_18.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_18.jpg new file mode 100644 index 0000000..9d42c59 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_19.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_19.jpg new file mode 100644 index 0000000..246cda7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_20.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_20.jpg new file mode 100644 index 0000000..fb856af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_21.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_21.jpg new file mode 100644 index 0000000..589871d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_22.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_22.jpg new file mode 100644 index 0000000..4de6b45 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_23.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_23.jpg new file mode 100644 index 0000000..1d6fc2e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_24.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_24.jpg new file mode 100644 index 0000000..e23273e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_25.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_25.jpg new file mode 100644 index 0000000..0479408 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_26.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_26.jpg new file mode 100644 index 0000000..9de3319 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_27.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_27.jpg new file mode 100644 index 0000000..9ce27ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_28.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_28.jpg new file mode 100644 index 0000000..a1790f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_29.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_29.jpg new file mode 100644 index 0000000..f3bc4de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_30.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_30.jpg new file mode 100644 index 0000000..bb04912 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_31.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_31.jpg new file mode 100644 index 0000000..098580d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_32.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_32.jpg new file mode 100644 index 0000000..15e1f9c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_33.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_33.jpg new file mode 100644 index 0000000..992a13d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_34.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_34.jpg new file mode 100644 index 0000000..fbd5c2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_35.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_35.jpg new file mode 100644 index 0000000..7323127 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_36.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_36.jpg new file mode 100644 index 0000000..a617eae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_37.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_37.jpg new file mode 100644 index 0000000..2f556b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_38.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_38.jpg new file mode 100644 index 0000000..9d29a7f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_39.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_39.jpg new file mode 100644 index 0000000..7ddf53b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_40.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_40.jpg new file mode 100644 index 0000000..e23ebcf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_41.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_41.jpg new file mode 100644 index 0000000..7bfaf9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_42.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_42.jpg new file mode 100644 index 0000000..f1c5d19 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_43.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_43.jpg new file mode 100644 index 0000000..dde32b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_44.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_44.jpg new file mode 100644 index 0000000..f804b38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_45.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_45.jpg new file mode 100644 index 0000000..90ed127 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_46.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_46.jpg new file mode 100644 index 0000000..8807a2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_47.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_47.jpg new file mode 100644 index 0000000..ab17dd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_48.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_48.jpg new file mode 100644 index 0000000..359013b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_49.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_49.jpg new file mode 100644 index 0000000..3f259bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_50.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_50.jpg new file mode 100644 index 0000000..10a32aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_51.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_51.jpg new file mode 100644 index 0000000..ead690f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_52.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_52.jpg new file mode 100644 index 0000000..b2dba11 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_53.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_53.jpg new file mode 100644 index 0000000..e20bd57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_54.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_54.jpg new file mode 100644 index 0000000..c118ed1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_55.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_55.jpg new file mode 100644 index 0000000..fc3dc5e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_56.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_56.jpg new file mode 100644 index 0000000..67579db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_57.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_57.jpg new file mode 100644 index 0000000..454c359 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_58.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_58.jpg new file mode 100644 index 0000000..9c4a131 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_59.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_59.jpg new file mode 100644 index 0000000..dd1bf7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_60.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_60.jpg new file mode 100644 index 0000000..ea156f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_61.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_61.jpg new file mode 100644 index 0000000..38102df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_62.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_62.jpg new file mode 100644 index 0000000..ebf4b3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_63.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_63.jpg new file mode 100644 index 0000000..4b16c9c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_64.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_64.jpg new file mode 100644 index 0000000..e97c367 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_65.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_65.jpg new file mode 100644 index 0000000..a5c5b79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_66.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_66.jpg new file mode 100644 index 0000000..f12ab0c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_67.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_67.jpg new file mode 100644 index 0000000..93f0a1a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_68.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_68.jpg new file mode 100644 index 0000000..55866e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_69.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_69.jpg new file mode 100644 index 0000000..a5ff6f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_70.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_70.jpg new file mode 100644 index 0000000..82bb0ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_70.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_cloth_72.jpg b/other/AoWoW-master/images/icons/large/inv_chest_cloth_72.jpg new file mode 100644 index 0000000..09f011a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_cloth_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_fur.jpg b/other/AoWoW-master/images/icons/large/inv_chest_fur.jpg new file mode 100644 index 0000000..33618bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_fur.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_01.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_01.jpg new file mode 100644 index 0000000..85738ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_02.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_02.jpg new file mode 100644 index 0000000..265780e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_03.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_03.jpg new file mode 100644 index 0000000..ef541b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_04.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_04.jpg new file mode 100644 index 0000000..46dae1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_05.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_05.jpg new file mode 100644 index 0000000..7b4eecf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_06.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_06.jpg new file mode 100644 index 0000000..d31bd26 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_07.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_07.jpg new file mode 100644 index 0000000..e39d427 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_08.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_08.jpg new file mode 100644 index 0000000..3738d9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_09.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_09.jpg new file mode 100644 index 0000000..bd051b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_10.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_10.jpg new file mode 100644 index 0000000..4180f01 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_11.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_11.jpg new file mode 100644 index 0000000..9292a1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_12.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_12.jpg new file mode 100644 index 0000000..0860305 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_13.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_13.jpg new file mode 100644 index 0000000..fc0cbcf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_14.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_14.jpg new file mode 100644 index 0000000..e354d3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_15.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_15.jpg new file mode 100644 index 0000000..0fe7d1a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_leather_16.jpg b/other/AoWoW-master/images/icons/large/inv_chest_leather_16.jpg new file mode 100644 index 0000000..f2faf69 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_mail_02.jpg b/other/AoWoW-master/images/icons/large/inv_chest_mail_02.jpg new file mode 100644 index 0000000..c3c726f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_mail_03.jpg b/other/AoWoW-master/images/icons/large/inv_chest_mail_03.jpg new file mode 100644 index 0000000..928df65 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_mail_04.jpg b/other/AoWoW-master/images/icons/large/inv_chest_mail_04.jpg new file mode 100644 index 0000000..8ee84a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_mail_05.jpg b/other/AoWoW-master/images/icons/large/inv_chest_mail_05.jpg new file mode 100644 index 0000000..801adf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate01.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate01.jpg new file mode 100644 index 0000000..e6efc5e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate02.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate02.jpg new file mode 100644 index 0000000..7bdca96 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate03.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate03.jpg new file mode 100644 index 0000000..a6d09d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate04.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate04.jpg new file mode 100644 index 0000000..c427a58 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate05.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate05.jpg new file mode 100644 index 0000000..f8ab52f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate06.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate06.jpg new file mode 100644 index 0000000..27e1409 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate07.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate07.jpg new file mode 100644 index 0000000..f0cbd1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate08.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate08.jpg new file mode 100644 index 0000000..652c0b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate09.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate09.jpg new file mode 100644 index 0000000..c2a882c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate10.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate10.jpg new file mode 100644 index 0000000..7d44a1e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate11.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate11.jpg new file mode 100644 index 0000000..888b48c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate12.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate12.jpg new file mode 100644 index 0000000..488e619 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate13.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate13.jpg new file mode 100644 index 0000000..3eea269 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate14.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate14.jpg new file mode 100644 index 0000000..8805b22 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate15.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate15.jpg new file mode 100644 index 0000000..3b09419 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate16.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate16.jpg new file mode 100644 index 0000000..93361cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate18.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate18.jpg new file mode 100644 index 0000000..e88070c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate19.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate19.jpg new file mode 100644 index 0000000..7bf60c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate20.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate20.jpg new file mode 100644 index 0000000..01a0d7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate21.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate21.jpg new file mode 100644 index 0000000..5747333 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate_22.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate_22.jpg new file mode 100644 index 0000000..773729d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate_23.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate_23.jpg new file mode 100644 index 0000000..00f2c58 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_plate_24.jpg b/other/AoWoW-master/images/icons/large/inv_chest_plate_24.jpg new file mode 100644 index 0000000..8e645a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_samurai.jpg b/other/AoWoW-master/images/icons/large/inv_chest_samurai.jpg new file mode 100644 index 0000000..f6ffb6e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_samurai.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_chest_wolf.jpg b/other/AoWoW-master/images/icons/large/inv_chest_wolf.jpg new file mode 100644 index 0000000..d603a5c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_chest_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crate_01.jpg b/other/AoWoW-master/images/icons/large/inv_crate_01.jpg new file mode 100644 index 0000000..edd3984 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crate_02.jpg b/other/AoWoW-master/images/icons/large/inv_crate_02.jpg new file mode 100644 index 0000000..eae67cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crate_03.jpg b/other/AoWoW-master/images/icons/large/inv_crate_03.jpg new file mode 100644 index 0000000..b814278 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crate_04.jpg b/other/AoWoW-master/images/icons/large/inv_crate_04.jpg new file mode 100644 index 0000000..878e2a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crate_05.jpg b/other/AoWoW-master/images/icons/large/inv_crate_05.jpg new file mode 100644 index 0000000..9e6b3d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crate_06.jpg b/other/AoWoW-master/images/icons/large/inv_crate_06.jpg new file mode 100644 index 0000000..a9be8d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crown_01.jpg b/other/AoWoW-master/images/icons/large/inv_crown_01.jpg new file mode 100644 index 0000000..83a3433 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crown_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crown_02.jpg b/other/AoWoW-master/images/icons/large/inv_crown_02.jpg new file mode 100644 index 0000000..dd27ab9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crown_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crown_13.jpg b/other/AoWoW-master/images/icons/large/inv_crown_13.jpg new file mode 100644 index 0000000..875df92 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crown_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crown_14.jpg b/other/AoWoW-master/images/icons/large/inv_crown_14.jpg new file mode 100644 index 0000000..2f3e3b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crown_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_crown_15.jpg b/other/AoWoW-master/images/icons/large/inv_crown_15.jpg new file mode 100644 index 0000000..8ca76d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_crown_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal01.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal01.jpg new file mode 100644 index 0000000..734ea02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal02.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal02.jpg new file mode 100644 index 0000000..074b790 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal03.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal03.jpg new file mode 100644 index 0000000..c6b4e74 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal04.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal04.jpg new file mode 100644 index 0000000..f5849fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal05.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal05.jpg new file mode 100644 index 0000000..8e82d7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal06.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal06.jpg new file mode 100644 index 0000000..635ea8c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal07.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal07.jpg new file mode 100644 index 0000000..5c55379 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal08.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal08.jpg new file mode 100644 index 0000000..5d3341f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal09.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal09.jpg new file mode 100644 index 0000000..adb6cc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal10.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal10.jpg new file mode 100644 index 0000000..107a15c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal11.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal11.jpg new file mode 100644 index 0000000..85ad75e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_datacrystal12.jpg b/other/AoWoW-master/images/icons/large/inv_datacrystal12.jpg new file mode 100644 index 0000000..2c9d38c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_datacrystal12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_diablostone.jpg b/other/AoWoW-master/images/icons/large/inv_diablostone.jpg new file mode 100644 index 0000000..4e47559 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_diablostone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_01.jpg b/other/AoWoW-master/images/icons/large/inv_drink_01.jpg new file mode 100644 index 0000000..bf60d3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_02.jpg b/other/AoWoW-master/images/icons/large/inv_drink_02.jpg new file mode 100644 index 0000000..f530e0d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_03.jpg b/other/AoWoW-master/images/icons/large/inv_drink_03.jpg new file mode 100644 index 0000000..d69ca5f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_04.jpg b/other/AoWoW-master/images/icons/large/inv_drink_04.jpg new file mode 100644 index 0000000..f032b50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_05.jpg b/other/AoWoW-master/images/icons/large/inv_drink_05.jpg new file mode 100644 index 0000000..1b53b75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_06.jpg b/other/AoWoW-master/images/icons/large/inv_drink_06.jpg new file mode 100644 index 0000000..4599f4d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_07.jpg b/other/AoWoW-master/images/icons/large/inv_drink_07.jpg new file mode 100644 index 0000000..41e8980 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_08.jpg b/other/AoWoW-master/images/icons/large/inv_drink_08.jpg new file mode 100644 index 0000000..3f37eba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_09.jpg b/other/AoWoW-master/images/icons/large/inv_drink_09.jpg new file mode 100644 index 0000000..6f8e937 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_10.jpg b/other/AoWoW-master/images/icons/large/inv_drink_10.jpg new file mode 100644 index 0000000..ea2a56a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_11.jpg b/other/AoWoW-master/images/icons/large/inv_drink_11.jpg new file mode 100644 index 0000000..46dc1eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_12.jpg b/other/AoWoW-master/images/icons/large/inv_drink_12.jpg new file mode 100644 index 0000000..4e0a4a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_13.jpg b/other/AoWoW-master/images/icons/large/inv_drink_13.jpg new file mode 100644 index 0000000..7d52368 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_14.jpg b/other/AoWoW-master/images/icons/large/inv_drink_14.jpg new file mode 100644 index 0000000..23f2bdc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_15.jpg b/other/AoWoW-master/images/icons/large/inv_drink_15.jpg new file mode 100644 index 0000000..02de232 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_16.jpg b/other/AoWoW-master/images/icons/large/inv_drink_16.jpg new file mode 100644 index 0000000..dc9305d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_17.jpg b/other/AoWoW-master/images/icons/large/inv_drink_17.jpg new file mode 100644 index 0000000..55e1049 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_18.jpg b/other/AoWoW-master/images/icons/large/inv_drink_18.jpg new file mode 100644 index 0000000..17acf9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_19.jpg b/other/AoWoW-master/images/icons/large/inv_drink_19.jpg new file mode 100644 index 0000000..07c0109 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_20.jpg b/other/AoWoW-master/images/icons/large/inv_drink_20.jpg new file mode 100644 index 0000000..53384e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_21.jpg b/other/AoWoW-master/images/icons/large/inv_drink_21.jpg new file mode 100644 index 0000000..fbe7605 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_22.jpg b/other/AoWoW-master/images/icons/large/inv_drink_22.jpg new file mode 100644 index 0000000..be2fe02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_23.jpg b/other/AoWoW-master/images/icons/large/inv_drink_23.jpg new file mode 100644 index 0000000..081cecc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_milk_01.jpg b/other/AoWoW-master/images/icons/large/inv_drink_milk_01.jpg new file mode 100644 index 0000000..7c0cae9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_milk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_milk_02.jpg b/other/AoWoW-master/images/icons/large/inv_drink_milk_02.jpg new file mode 100644 index 0000000..80f31d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_milk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_milk_03.jpg b/other/AoWoW-master/images/icons/large/inv_drink_milk_03.jpg new file mode 100644 index 0000000..014fdb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_milk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_milk_04.jpg b/other/AoWoW-master/images/icons/large/inv_drink_milk_04.jpg new file mode 100644 index 0000000..2595024 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_milk_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_milk_05.jpg b/other/AoWoW-master/images/icons/large/inv_drink_milk_05.jpg new file mode 100644 index 0000000..6c4b2c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_milk_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_01.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_01.jpg new file mode 100644 index 0000000..26647f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_02.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_02.jpg new file mode 100644 index 0000000..a15f4ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_03.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_03.jpg new file mode 100644 index 0000000..5d5950b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_04.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_04.jpg new file mode 100644 index 0000000..46efeec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_05.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_05.jpg new file mode 100644 index 0000000..39b5d9f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_06.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_06.jpg new file mode 100644 index 0000000..b73940c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_07.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_07.jpg new file mode 100644 index 0000000..71dba2a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_08.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_08.jpg new file mode 100644 index 0000000..7f35115 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_09.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_09.jpg new file mode 100644 index 0000000..abea33d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_10.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_10.jpg new file mode 100644 index 0000000..ed73bd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_11.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_11.jpg new file mode 100644 index 0000000..e83b292 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_drink_waterskin_12.jpg b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_12.jpg new file mode 100644 index 0000000..dc8fdf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_drink_waterskin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_egg_01.jpg b/other/AoWoW-master/images/icons/large/inv_egg_01.jpg new file mode 100644 index 0000000..92ab84b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_egg_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_egg_02.jpg b/other/AoWoW-master/images/icons/large/inv_egg_02.jpg new file mode 100644 index 0000000..f3da4c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_egg_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_egg_03.jpg b/other/AoWoW-master/images/icons/large/inv_egg_03.jpg new file mode 100644 index 0000000..a16dcd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_egg_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_egg_04.jpg b/other/AoWoW-master/images/icons/large/inv_egg_04.jpg new file mode 100644 index 0000000..97e4a7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_egg_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_egg_05.jpg b/other/AoWoW-master/images/icons/large/inv_egg_05.jpg new file mode 100644 index 0000000..ddc78a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_egg_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_air01.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_air01.jpg new file mode 100644 index 0000000..75d2f1a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_air01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_earth01.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_earth01.jpg new file mode 100644 index 0000000..12d8590 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_earth01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_fire01.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_fire01.jpg new file mode 100644 index 0000000..4141dc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_fire01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_life01.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_life01.jpg new file mode 100644 index 0000000..71e33c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_life01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_mana.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_mana.jpg new file mode 100644 index 0000000..020d998 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_nether.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_nether.jpg new file mode 100644 index 0000000..3141698 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_shadow01.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_shadow01.jpg new file mode 100644 index 0000000..a709d25 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_shadow01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_mote_water01.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_mote_water01.jpg new file mode 100644 index 0000000..2615a64 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_mote_water01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_air.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_air.jpg new file mode 100644 index 0000000..43e837d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_air.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_earth.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_earth.jpg new file mode 100644 index 0000000..a89f363 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_earth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_fire.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_fire.jpg new file mode 100644 index 0000000..a8cdbdb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_life.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_life.jpg new file mode 100644 index 0000000..14beafc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_life.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_mana.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_mana.jpg new file mode 100644 index 0000000..63bd9de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_nether.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_nether.jpg new file mode 100644 index 0000000..aa4af80 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_shadow.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_shadow.jpg new file mode 100644 index 0000000..91f8ccd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_elemental_primal_water.jpg b/other/AoWoW-master/images/icons/large/inv_elemental_primal_water.jpg new file mode 100644 index 0000000..8c01281 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_elemental_primal_water.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_disenchant.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_disenchant.jpg new file mode 100644 index 0000000..4938fc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_disenchant.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_dustarcane.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_dustarcane.jpg new file mode 100644 index 0000000..0eefa79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_dustarcane.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_dustdream.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_dustdream.jpg new file mode 100644 index 0000000..1a269d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_dustdream.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_dustillusion.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_dustillusion.jpg new file mode 100644 index 0000000..5f42716 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_dustillusion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_dustsoul.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_dustsoul.jpg new file mode 100644 index 0000000..28f5f73 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_dustsoul.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_duststrange.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_duststrange.jpg new file mode 100644 index 0000000..0487619 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_duststrange.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_dustvision.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_dustvision.jpg new file mode 100644 index 0000000..3276efd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_dustvision.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencearcanelarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencearcanelarge.jpg new file mode 100644 index 0000000..001536e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencearcanelarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencearcanesmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencearcanesmall.jpg new file mode 100644 index 0000000..9f8fcde Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencearcanesmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essenceastrallarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essenceastrallarge.jpg new file mode 100644 index 0000000..70ef42a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essenceastrallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essenceastralsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essenceastralsmall.jpg new file mode 100644 index 0000000..06e8f40 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essenceastralsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essenceeternallarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essenceeternallarge.jpg new file mode 100644 index 0000000..6872c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essenceeternallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essenceeternalsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essenceeternalsmall.jpg new file mode 100644 index 0000000..35e63fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essenceeternalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencemagiclarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencemagiclarge.jpg new file mode 100644 index 0000000..775be2b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencemagiclarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencemagicsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencemagicsmall.jpg new file mode 100644 index 0000000..3642fe2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencemagicsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencemysticallarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencemysticallarge.jpg new file mode 100644 index 0000000..55b866a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencemysticallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencemysticalsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencemysticalsmall.jpg new file mode 100644 index 0000000..bcb6a72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencemysticalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencenetherlarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencenetherlarge.jpg new file mode 100644 index 0000000..fae2eb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencenetherlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_essencenethersmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_essencenethersmall.jpg new file mode 100644 index 0000000..1a183f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_essencenethersmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_prismaticsphere.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_prismaticsphere.jpg new file mode 100644 index 0000000..1176ce1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_prismaticsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardbrilliantlarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardbrilliantlarge.jpg new file mode 100644 index 0000000..2365f29 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardbrilliantlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardbrilliantsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardbrilliantsmall.jpg new file mode 100644 index 0000000..d9fee8f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardbrilliantsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardgleamingsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardgleamingsmall.jpg new file mode 100644 index 0000000..d3a29dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardgleamingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardglimmeringlarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardglimmeringlarge.jpg new file mode 100644 index 0000000..197d53b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardglimmeringlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardglimmeringsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardglimmeringsmall.jpg new file mode 100644 index 0000000..dcaf3ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardglimmeringsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardglowinglarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardglowinglarge.jpg new file mode 100644 index 0000000..47d2bef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardglowinglarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardglowingsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardglowingsmall.jpg new file mode 100644 index 0000000..5a7c6c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardglowingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardnexuslarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardnexuslarge.jpg new file mode 100644 index 0000000..9a860d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardnexuslarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardprismaticlarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardprismaticlarge.jpg new file mode 100644 index 0000000..5f000be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardprismaticlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardprismaticsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardprismaticsmall.jpg new file mode 100644 index 0000000..383df5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardprismaticsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardradientlarge.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardradientlarge.jpg new file mode 100644 index 0000000..a487005 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardradientlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_shardradientsmall.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_shardradientsmall.jpg new file mode 100644 index 0000000..c8196c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_shardradientsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_voidcrystal.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_voidcrystal.jpg new file mode 100644 index 0000000..bdd8b94 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_voidcrystal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_enchant_voidsphere.jpg b/other/AoWoW-master/images/icons/large/inv_enchant_voidsphere.jpg new file mode 100644 index 0000000..e952ba6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_enchant_voidsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_felcloth_ebon.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_felcloth_ebon.jpg new file mode 100644 index 0000000..d7d2b86 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_felcloth_ebon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_felrag.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_felrag.jpg new file mode 100644 index 0000000..23ca664 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_felrag.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_linen_01.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_linen_01.jpg new file mode 100644 index 0000000..d649703 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_linen_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_linen_02.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_linen_02.jpg new file mode 100644 index 0000000..a35043d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_linen_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_linen_03.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_linen_03.jpg new file mode 100644 index 0000000..f86789f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_linen_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_01.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_01.jpg new file mode 100644 index 0000000..28aa90d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_02.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_02.jpg new file mode 100644 index 0000000..435ac07 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_03.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_03.jpg new file mode 100644 index 0000000..3e05218 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_mageweave_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_01.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_01.jpg new file mode 100644 index 0000000..20cacc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_02.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_02.jpg new file mode 100644 index 0000000..df16146 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_primal.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_primal.jpg new file mode 100644 index 0000000..76f4aa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_moonrag_primal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_netherweave.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_netherweave.jpg new file mode 100644 index 0000000..8b0c890 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_netherweave_bolt.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_netherweave_bolt.jpg new file mode 100644 index 0000000..f9d5d07 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_netherweave_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_netherweave_bolt_imbued.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_netherweave_bolt_imbued.jpg new file mode 100644 index 0000000..73761a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_netherweave_bolt_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_purple_01.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_purple_01.jpg new file mode 100644 index 0000000..c2bfa54 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_purple_02.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_purple_02.jpg new file mode 100644 index 0000000..9a36a45 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_purple_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_purplefire_01.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_purplefire_01.jpg new file mode 100644 index 0000000..31135bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_purplefire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_purplefire_02.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_purplefire_02.jpg new file mode 100644 index 0000000..f9e507a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_purplefire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_silk_01.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_silk_01.jpg new file mode 100644 index 0000000..632d999 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_silk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_silk_02.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_silk_02.jpg new file mode 100644 index 0000000..b66bbcf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_silk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_silk_03.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_silk_03.jpg new file mode 100644 index 0000000..aaa876c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_silk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_soulcloth.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_soulcloth.jpg new file mode 100644 index 0000000..0ea4fad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_soulcloth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_soulcloth_bolt.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_soulcloth_bolt.jpg new file mode 100644 index 0000000..5332303 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_soulcloth_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_spellfire.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_spellfire.jpg new file mode 100644 index 0000000..02e5c79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_wool_01.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_wool_01.jpg new file mode 100644 index 0000000..5a440fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_wool_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_wool_02.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_wool_02.jpg new file mode 100644 index 0000000..fc650d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_wool_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fabric_wool_03.jpg b/other/AoWoW-master/images/icons/large/inv_fabric_wool_03.jpg new file mode 100644 index 0000000..8685dc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fabric_wool_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_01.jpg b/other/AoWoW-master/images/icons/large/inv_feather_01.jpg new file mode 100644 index 0000000..779c1a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_02.jpg b/other/AoWoW-master/images/icons/large/inv_feather_02.jpg new file mode 100644 index 0000000..ebae5a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_03.jpg b/other/AoWoW-master/images/icons/large/inv_feather_03.jpg new file mode 100644 index 0000000..44ae269 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_04.jpg b/other/AoWoW-master/images/icons/large/inv_feather_04.jpg new file mode 100644 index 0000000..7ff3a57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_05.jpg b/other/AoWoW-master/images/icons/large/inv_feather_05.jpg new file mode 100644 index 0000000..b549a8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_06.jpg b/other/AoWoW-master/images/icons/large/inv_feather_06.jpg new file mode 100644 index 0000000..5427a07 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_07.jpg b/other/AoWoW-master/images/icons/large/inv_feather_07.jpg new file mode 100644 index 0000000..36a20c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_08.jpg b/other/AoWoW-master/images/icons/large/inv_feather_08.jpg new file mode 100644 index 0000000..358b0b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_09.jpg b/other/AoWoW-master/images/icons/large/inv_feather_09.jpg new file mode 100644 index 0000000..e54cc13 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_10.jpg b/other/AoWoW-master/images/icons/large/inv_feather_10.jpg new file mode 100644 index 0000000..7d668fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_11.jpg b/other/AoWoW-master/images/icons/large/inv_feather_11.jpg new file mode 100644 index 0000000..d99f192 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_12.jpg b/other/AoWoW-master/images/icons/large/inv_feather_12.jpg new file mode 100644 index 0000000..c9a1227 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_13.jpg b/other/AoWoW-master/images/icons/large/inv_feather_13.jpg new file mode 100644 index 0000000..92d5eda Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_14.jpg b/other/AoWoW-master/images/icons/large/inv_feather_14.jpg new file mode 100644 index 0000000..a9895c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_15.jpg b/other/AoWoW-master/images/icons/large/inv_feather_15.jpg new file mode 100644 index 0000000..1524abe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_feather_16.jpg b/other/AoWoW-master/images/icons/large/inv_feather_16.jpg new file mode 100644 index 0000000..0ba4570 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_feather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fishingchair.jpg b/other/AoWoW-master/images/icons/large/inv_fishingchair.jpg new file mode 100644 index 0000000..b9d60ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fishingchair.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fishingpole_01.jpg b/other/AoWoW-master/images/icons/large/inv_fishingpole_01.jpg new file mode 100644 index 0000000..f324c09 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fishingpole_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_fishingpole_02.jpg b/other/AoWoW-master/images/icons/large/inv_fishingpole_02.jpg new file mode 100644 index 0000000..1fc64fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_fishingpole_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_food_christmasfruitcake_01.jpg b/other/AoWoW-master/images/icons/large/inv_food_christmasfruitcake_01.jpg new file mode 100644 index 0000000..76e63d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_food_christmasfruitcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_01.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_01.jpg new file mode 100644 index 0000000..9c85629 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_02.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_02.jpg new file mode 100644 index 0000000..0a42427 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_03.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_03.jpg new file mode 100644 index 0000000..dea3ecb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_04.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_04.jpg new file mode 100644 index 0000000..1f6c125 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_05.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_05.jpg new file mode 100644 index 0000000..621f934 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_06.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_06.jpg new file mode 100644 index 0000000..c240d2c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_07.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_07.jpg new file mode 100644 index 0000000..b064718 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_08.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_08.jpg new file mode 100644 index 0000000..24df623 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_09.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_09.jpg new file mode 100644 index 0000000..c51a40f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_10.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_10.jpg new file mode 100644 index 0000000..95ed7f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_11.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_11.jpg new file mode 100644 index 0000000..bf469b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_12.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_12.jpg new file mode 100644 index 0000000..1f335b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_13.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_13.jpg new file mode 100644 index 0000000..7c3b317 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_14.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_14.jpg new file mode 100644 index 0000000..49a686b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_15.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_15.jpg new file mode 100644 index 0000000..a3960cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_16.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_16.jpg new file mode 100644 index 0000000..22a9667 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_17.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_17.jpg new file mode 100644 index 0000000..b7d923b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_18.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_18.jpg new file mode 100644 index 0000000..997d20b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_19.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_19.jpg new file mode 100644 index 0000000..6ab781f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_20.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_20.jpg new file mode 100644 index 0000000..49b7ad2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_21.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_21.jpg new file mode 100644 index 0000000..7c14bc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_22.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_22.jpg new file mode 100644 index 0000000..4f92249 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_23.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_23.jpg new file mode 100644 index 0000000..f7f2ba5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_24.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_24.jpg new file mode 100644 index 0000000..dc32298 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_25.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_25.jpg new file mode 100644 index 0000000..80ad8c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_26.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_26.jpg new file mode 100644 index 0000000..a7706e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_27.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_27.jpg new file mode 100644 index 0000000..5117649 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_28.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_28.jpg new file mode 100644 index 0000000..aba49ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_29.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_29.jpg new file mode 100644 index 0000000..947e0d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_30.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_30.jpg new file mode 100644 index 0000000..e15d104 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_31.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_31.jpg new file mode 100644 index 0000000..21c6cd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_32.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_32.jpg new file mode 100644 index 0000000..8889b1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_40.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_40.jpg new file mode 100644 index 0000000..8bc5901 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_41.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_41.jpg new file mode 100644 index 0000000..17e6e46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_44.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_44.jpg new file mode 100644 index 0000000..51fe6e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_47.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_47.jpg new file mode 100644 index 0000000..8abe3cf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_48.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_48.jpg new file mode 100644 index 0000000..2462cb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_49.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_49.jpg new file mode 100644 index 0000000..235045d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_50.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_50.jpg new file mode 100644 index 0000000..a57510a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_51.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_51.jpg new file mode 100644 index 0000000..4a2c482 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_52.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_52.jpg new file mode 100644 index 0000000..1dda421 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_53.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_53.jpg new file mode 100644 index 0000000..9ad62a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_54.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_54.jpg new file mode 100644 index 0000000..92654e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_55.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_55.jpg new file mode 100644 index 0000000..b9fc63e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_56.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_56.jpg new file mode 100644 index 0000000..429481a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_57.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_57.jpg new file mode 100644 index 0000000..4087c58 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_58.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_58.jpg new file mode 100644 index 0000000..929d51d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_59.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_59.jpg new file mode 100644 index 0000000..6628ccc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_60.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_60.jpg new file mode 100644 index 0000000..bce9253 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_61.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_61.jpg new file mode 100644 index 0000000..5e0ecde Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_62.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_62.jpg new file mode 100644 index 0000000..0a15467 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_63.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_63.jpg new file mode 100644 index 0000000..5e829bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_64.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_64.jpg new file mode 100644 index 0000000..7987240 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_65.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_65.jpg new file mode 100644 index 0000000..028c519 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_66.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_66.jpg new file mode 100644 index 0000000..3d47894 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_67.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_67.jpg new file mode 100644 index 0000000..f97fcd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_68.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_68.jpg new file mode 100644 index 0000000..9e659c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gauntlets_69.jpg b/other/AoWoW-master/images/icons/large/inv_gauntlets_69.jpg new file mode 100644 index 0000000..1e73ca3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gauntlets_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_01.jpg new file mode 100644 index 0000000..6fabd69 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_02.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_02.jpg new file mode 100644 index 0000000..3e2ed71 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_03.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_03.jpg new file mode 100644 index 0000000..d1661b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_04.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_04.jpg new file mode 100644 index 0000000..4874f3c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_05.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_05.jpg new file mode 100644 index 0000000..aa9249b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_06.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_06.jpg new file mode 100644 index 0000000..23faa6f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_07.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_07.jpg new file mode 100644 index 0000000..e4be3f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_08.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_08.jpg new file mode 100644 index 0000000..4e524f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_09.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_09.jpg new file mode 100644 index 0000000..94da500 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_adamantiteframe.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_adamantiteframe.jpg new file mode 100644 index 0000000..1d4f636 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_adamantiteframe.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_adamantiteshells.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_adamantiteshells.jpg new file mode 100644 index 0000000..881082e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_adamantiteshells.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_bronzeframework_01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_bronzeframework_01.jpg new file mode 100644 index 0000000..a73b232 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_bronzeframework_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_elementalblastingpowder.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_elementalblastingpowder.jpg new file mode 100644 index 0000000..55cbb98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_elementalblastingpowder.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_felironbolts.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_felironbolts.jpg new file mode 100644 index 0000000..865a365 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_felironbolts.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_felironbomb.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_felironbomb.jpg new file mode 100644 index 0000000..0dc5adb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_felironbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_felironcasing.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_felironcasing.jpg new file mode 100644 index 0000000..e00410d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_felironcasing.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_felironshell.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_felironshell.jpg new file mode 100644 index 0000000..96d8cb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_felironshell.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_felstabilizer.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_felstabilizer.jpg new file mode 100644 index 0000000..b79eb28 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_felstabilizer.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_gnomishflameturret.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_gnomishflameturret.jpg new file mode 100644 index 0000000..9bd71b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_gnomishflameturret.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_goblinboombox_01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_goblinboombox_01.jpg new file mode 100644 index 0000000..4efc2f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_goblinboombox_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_goblingtonkcontroller.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_goblingtonkcontroller.jpg new file mode 100644 index 0000000..a28363c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_goblingtonkcontroller.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_hardenedadamantitetube.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_hardenedadamantitetube.jpg new file mode 100644 index 0000000..921abee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_hardenedadamantitetube.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_healthpotionpack.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_healthpotionpack.jpg new file mode 100644 index 0000000..4a0e98c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_healthpotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_khoriumpowercore.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_khoriumpowercore.jpg new file mode 100644 index 0000000..5a0a236 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_khoriumpowercore.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_manapotionpack.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_manapotionpack.jpg new file mode 100644 index 0000000..834a6d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_manapotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_manasyphon.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_manasyphon.jpg new file mode 100644 index 0000000..87aea8b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_manasyphon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_mithrilcasing_01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_mithrilcasing_01.jpg new file mode 100644 index 0000000..74cce29 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_mithrilcasing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_mithrilcasing_02.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_mithrilcasing_02.jpg new file mode 100644 index 0000000..193a38c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_mithrilcasing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_newgoggles.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_newgoggles.jpg new file mode 100644 index 0000000..354783d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_newgoggles.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_01.jpg new file mode 100644 index 0000000..b85098e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_02.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_02.jpg new file mode 100644 index 0000000..393160c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_03.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_03.jpg new file mode 100644 index 0000000..69a3456 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_04.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_04.jpg new file mode 100644 index 0000000..47fe653 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_pipe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_poltryiser_01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_poltryiser_01.jpg new file mode 100644 index 0000000..285b617 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_poltryiser_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_rocketboot_01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketboot_01.jpg new file mode 100644 index 0000000..0a2a197 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketboot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_rocketboot_destroyed_02.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketboot_destroyed_02.jpg new file mode 100644 index 0000000..379ad0d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketboot_destroyed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_rocketbootextreme.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketbootextreme.jpg new file mode 100644 index 0000000..ca43dd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketbootextreme.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_rocketlauncher.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketlauncher.jpg new file mode 100644 index 0000000..afb4f9f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_rocketlauncher.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_scope01.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_scope01.jpg new file mode 100644 index 0000000..1350393 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_scope01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_scope02.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_scope02.jpg new file mode 100644 index 0000000..e9071e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_scope02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_supersappercharge.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_supersappercharge.jpg new file mode 100644 index 0000000..40dc164 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_supersappercharge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_thebiggerone.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_thebiggerone.jpg new file mode 100644 index 0000000..459c62a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_thebiggerone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_gizmo_zapthrottlegascollector.jpg b/other/AoWoW-master/images/icons/large/inv_gizmo_zapthrottlegascollector.jpg new file mode 100644 index 0000000..74026e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_gizmo_zapthrottlegascollector.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_01.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_01.jpg new file mode 100644 index 0000000..2a9fdf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_02.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_02.jpg new file mode 100644 index 0000000..1b97d83 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_03.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_03.jpg new file mode 100644 index 0000000..fcc2d3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_04.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_04.jpg new file mode 100644 index 0000000..965cbae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_05.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_05.jpg new file mode 100644 index 0000000..dbc4690 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_06.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_06.jpg new file mode 100644 index 0000000..2b948a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_07.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_07.jpg new file mode 100644 index 0000000..c2269b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_08.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_08.jpg new file mode 100644 index 0000000..66874b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_09.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_09.jpg new file mode 100644 index 0000000..9fd6521 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_10.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_10.jpg new file mode 100644 index 0000000..35c20bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_11.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_11.jpg new file mode 100644 index 0000000..d6e07f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_12.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_12.jpg new file mode 100644 index 0000000..16e79af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_13.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_13.jpg new file mode 100644 index 0000000..43a3a21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_14.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_14.jpg new file mode 100644 index 0000000..ed498e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_15.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_15.jpg new file mode 100644 index 0000000..5e1b5cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_16.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_16.jpg new file mode 100644 index 0000000..3786d20 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_17.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_17.jpg new file mode 100644 index 0000000..f5e17bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_18.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_18.jpg new file mode 100644 index 0000000..ffa798e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_19.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_19.jpg new file mode 100644 index 0000000..0bf640e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_20.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_20.jpg new file mode 100644 index 0000000..96bf452 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_21.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_21.jpg new file mode 100644 index 0000000..b181d97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_22.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_22.jpg new file mode 100644 index 0000000..9e2e9f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_23.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_23.jpg new file mode 100644 index 0000000..e89c6c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_24.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_24.jpg new file mode 100644 index 0000000..a25200d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_25.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_25.jpg new file mode 100644 index 0000000..a684662 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_26.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_26.jpg new file mode 100644 index 0000000..f6ab444 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_27.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_27.jpg new file mode 100644 index 0000000..c240b8b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_28.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_28.jpg new file mode 100644 index 0000000..8eab842 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_hammer_unique_sulfuras.jpg b/other/AoWoW-master/images/icons/large/inv_hammer_unique_sulfuras.jpg new file mode 100644 index 0000000..36164c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_hammer_unique_sulfuras.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helm_mask_zulgurub_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_helm_mask_zulgurub_d_01.jpg new file mode 100644 index 0000000..4dd2874 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helm_mask_zulgurub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet128.jpg b/other/AoWoW-master/images/icons/large/inv_helmet128.jpg new file mode 100644 index 0000000..ab4824e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet128.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_01.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_01.jpg new file mode 100644 index 0000000..0ad81ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_02.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_02.jpg new file mode 100644 index 0000000..2c76840 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_03.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_03.jpg new file mode 100644 index 0000000..f1ae12f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_04.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_04.jpg new file mode 100644 index 0000000..2106dd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_05.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_05.jpg new file mode 100644 index 0000000..bff6d78 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_06.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_06.jpg new file mode 100644 index 0000000..b68f277 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_07.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_07.jpg new file mode 100644 index 0000000..3292acb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_08.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_08.jpg new file mode 100644 index 0000000..0679e88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_09.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_09.jpg new file mode 100644 index 0000000..6dab6a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_10.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_10.jpg new file mode 100644 index 0000000..7ee3fed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_100.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_100.jpg new file mode 100644 index 0000000..ce12742 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_100.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_101.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_101.jpg new file mode 100644 index 0000000..d84e85b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_101.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_102.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_102.jpg new file mode 100644 index 0000000..3f1abf8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_102.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_103.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_103.jpg new file mode 100644 index 0000000..bb2d83f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_103.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_11.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_11.jpg new file mode 100644 index 0000000..4d8bab6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_111.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_111.jpg new file mode 100644 index 0000000..be1ef56 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_111.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_112.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_112.jpg new file mode 100644 index 0000000..653b10c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_112.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_113.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_113.jpg new file mode 100644 index 0000000..715de18 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_113.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_114.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_114.jpg new file mode 100644 index 0000000..5502884 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_114.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_116.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_116.jpg new file mode 100644 index 0000000..d8d4e50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_116.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_117.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_117.jpg new file mode 100644 index 0000000..4e9aaf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_117.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_118.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_118.jpg new file mode 100644 index 0000000..53b85c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_118.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_119.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_119.jpg new file mode 100644 index 0000000..1f5bb13 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_119.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_12.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_12.jpg new file mode 100644 index 0000000..2b27e0a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_120.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_120.jpg new file mode 100644 index 0000000..914a645 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_120.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_126.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_126.jpg new file mode 100644 index 0000000..2a13c34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_126.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_127.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_127.jpg new file mode 100644 index 0000000..fa3a81c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_127.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_129.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_129.jpg new file mode 100644 index 0000000..0b39f81 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_129.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_13.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_13.jpg new file mode 100644 index 0000000..b2aa0a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_14.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_14.jpg new file mode 100644 index 0000000..f993169 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_15.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_15.jpg new file mode 100644 index 0000000..b452168 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_16.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_16.jpg new file mode 100644 index 0000000..ebd03b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_17.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_17.jpg new file mode 100644 index 0000000..44f1e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_18.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_18.jpg new file mode 100644 index 0000000..28aa15f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_19.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_19.jpg new file mode 100644 index 0000000..ab4a3a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_20.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_20.jpg new file mode 100644 index 0000000..d88c7dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_21.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_21.jpg new file mode 100644 index 0000000..ef3e627 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_22.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_22.jpg new file mode 100644 index 0000000..205f781 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_23.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_23.jpg new file mode 100644 index 0000000..6ec301e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_24.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_24.jpg new file mode 100644 index 0000000..d19c2d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_25.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_25.jpg new file mode 100644 index 0000000..61a862b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_26.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_26.jpg new file mode 100644 index 0000000..bf7c311 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_27.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_27.jpg new file mode 100644 index 0000000..26eb0c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_28.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_28.jpg new file mode 100644 index 0000000..cc9e58d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_29.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_29.jpg new file mode 100644 index 0000000..33979de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_30.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_30.jpg new file mode 100644 index 0000000..d2ec0c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_31.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_31.jpg new file mode 100644 index 0000000..df41282 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_32.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_32.jpg new file mode 100644 index 0000000..9e169ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_33.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_33.jpg new file mode 100644 index 0000000..02e0aa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_34.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_34.jpg new file mode 100644 index 0000000..d16509c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_35.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_35.jpg new file mode 100644 index 0000000..aad39cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_36.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_36.jpg new file mode 100644 index 0000000..4ee15df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_37.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_37.jpg new file mode 100644 index 0000000..759fefa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_38.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_38.jpg new file mode 100644 index 0000000..b18fa0e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_39.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_39.jpg new file mode 100644 index 0000000..090fc99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_40.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_40.jpg new file mode 100644 index 0000000..9242ab8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_41.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_41.jpg new file mode 100644 index 0000000..5a00a29 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_42.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_42.jpg new file mode 100644 index 0000000..6fc0297 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_43.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_43.jpg new file mode 100644 index 0000000..b1ce143 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_44.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_44.jpg new file mode 100644 index 0000000..7e4f391 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_45.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_45.jpg new file mode 100644 index 0000000..5f16b3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_46.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_46.jpg new file mode 100644 index 0000000..59b907d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_47.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_47.jpg new file mode 100644 index 0000000..39c6bcd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_48.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_48.jpg new file mode 100644 index 0000000..5ac309d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_49.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_49.jpg new file mode 100644 index 0000000..4f6b37b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_50.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_50.jpg new file mode 100644 index 0000000..6f3b087 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_51.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_51.jpg new file mode 100644 index 0000000..546067f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_52.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_52.jpg new file mode 100644 index 0000000..68c0e34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_53.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_53.jpg new file mode 100644 index 0000000..a6c2be7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_54.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_54.jpg new file mode 100644 index 0000000..887606e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_55.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_55.jpg new file mode 100644 index 0000000..4ada917 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_56.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_56.jpg new file mode 100644 index 0000000..a2bcb0c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_57.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_57.jpg new file mode 100644 index 0000000..4c90798 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_58.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_58.jpg new file mode 100644 index 0000000..992b0a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_59.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_59.jpg new file mode 100644 index 0000000..60d5766 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_60.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_60.jpg new file mode 100644 index 0000000..74b0b8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_61.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_61.jpg new file mode 100644 index 0000000..97729ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_62.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_62.jpg new file mode 100644 index 0000000..6f88f0f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_63.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_63.jpg new file mode 100644 index 0000000..cb6d17e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_64.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_64.jpg new file mode 100644 index 0000000..1fc5b05 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_65.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_65.jpg new file mode 100644 index 0000000..ca2caf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_66.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_66.jpg new file mode 100644 index 0000000..09b9357 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_67.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_67.jpg new file mode 100644 index 0000000..e5c5d57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_68.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_68.jpg new file mode 100644 index 0000000..6bad620 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_69.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_69.jpg new file mode 100644 index 0000000..08a0c00 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_70.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_70.jpg new file mode 100644 index 0000000..7f2750b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_70.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_71.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_71.jpg new file mode 100644 index 0000000..e2fb620 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_72.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_72.jpg new file mode 100644 index 0000000..a5231be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_73.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_73.jpg new file mode 100644 index 0000000..610f19a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_74.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_74.jpg new file mode 100644 index 0000000..aca0725 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_77.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_77.jpg new file mode 100644 index 0000000..dd31788 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_77.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_78.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_78.jpg new file mode 100644 index 0000000..a6d30c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_78.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_81.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_81.jpg new file mode 100644 index 0000000..3b77a99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_81.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_84.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_84.jpg new file mode 100644 index 0000000..3207dc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_84.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_85.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_85.jpg new file mode 100644 index 0000000..134ddc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_85.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_86.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_86.jpg new file mode 100644 index 0000000..e38dd04 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_86.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_87.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_87.jpg new file mode 100644 index 0000000..9481a5f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_87.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_88.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_88.jpg new file mode 100644 index 0000000..dab9418 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_88.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_89.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_89.jpg new file mode 100644 index 0000000..14ca994 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_89.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_90.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_90.jpg new file mode 100644 index 0000000..eac5bad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_90.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_91.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_91.jpg new file mode 100644 index 0000000..5496b96 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_91.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_92.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_92.jpg new file mode 100644 index 0000000..f6764e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_92.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_93.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_93.jpg new file mode 100644 index 0000000..9682ef0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_93.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_94.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_94.jpg new file mode 100644 index 0000000..6c3c31b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_94.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_95.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_95.jpg new file mode 100644 index 0000000..0290930 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_95.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_96.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_96.jpg new file mode 100644 index 0000000..3616f2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_96.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_97.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_97.jpg new file mode 100644 index 0000000..4fd7b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_97.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_98.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_98.jpg new file mode 100644 index 0000000..9334266 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_98.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_helmet_99.jpg b/other/AoWoW-master/images/icons/large/inv_helmet_99.jpg new file mode 100644 index 0000000..397dbe6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_helmet_99.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_beerfestpretzel01.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestpretzel01.jpg new file mode 100644 index 0000000..b41a37f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestpretzel01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage01.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage01.jpg new file mode 100644 index 0000000..8158a95 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage02.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage02.jpg new file mode 100644 index 0000000..5d2ace0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage03.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage03.jpg new file mode 100644 index 0000000..e0ffc89 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage04.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage04.jpg new file mode 100644 index 0000000..625fdb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_beerfestsausage04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_brewfestbuff_01.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_brewfestbuff_01.jpg new file mode 100644 index 0000000..f9acbdc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_brewfestbuff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_01.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_01.jpg new file mode 100644 index 0000000..c8ae5b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_02.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_02.jpg new file mode 100644 index 0000000..7bfcdaa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_03.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_03.jpg new file mode 100644 index 0000000..b265bea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_present_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_01.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_01.jpg new file mode 100644 index 0000000..176a787 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_02.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_02.jpg new file mode 100644 index 0000000..52c2dc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_03.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_03.jpg new file mode 100644 index 0000000..8a17850 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_christmas_wrapping_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_summerfest_petals.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_summerfest_petals.jpg new file mode 100644 index 0000000..eb8ed87 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_summerfest_petals.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebandage.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebandage.jpg new file mode 100644 index 0000000..74a170b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebandage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebowl.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebowl.jpg new file mode 100644 index 0000000..655f5cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebowl.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebrownie.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebrownie.jpg new file mode 100644 index 0000000..eb45d6f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicebrownie.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion01.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion01.jpg new file mode 100644 index 0000000..1b2bade Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion02.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion02.jpg new file mode 100644 index 0000000..846ead3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion03.jpg b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion03.jpg new file mode 100644 index 0000000..e065a28 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_holiday_tow_spicepotion03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_01.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_01.jpg new file mode 100644 index 0000000..f58dc8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_02.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_02.jpg new file mode 100644 index 0000000..966f4e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_03.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_03.jpg new file mode 100644 index 0000000..327effa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_04.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_04.jpg new file mode 100644 index 0000000..dd7b66b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_05.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_05.jpg new file mode 100644 index 0000000..2f016a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_06.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_06.jpg new file mode 100644 index 0000000..a39cbe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_07.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_07.jpg new file mode 100644 index 0000000..6c04761 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_08.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_08.jpg new file mode 100644 index 0000000..398b944 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_09.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_09.jpg new file mode 100644 index 0000000..bdfa8fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_10.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_10.jpg new file mode 100644 index 0000000..633e7b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_11.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_11.jpg new file mode 100644 index 0000000..3f8c3fa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_adamantite.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_adamantite.jpg new file mode 100644 index 0000000..f8f6c59 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_bronze.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_bronze.jpg new file mode 100644 index 0000000..25c1e5d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_eternium.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_eternium.jpg new file mode 100644 index 0000000..15d7b50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_feliron.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_feliron.jpg new file mode 100644 index 0000000..a96aa59 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_felsteel.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_felsteel.jpg new file mode 100644 index 0000000..713b068 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_iron.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_iron.jpg new file mode 100644 index 0000000..e948fdb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_mithril.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_mithril.jpg new file mode 100644 index 0000000..24d20e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_steel.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_steel.jpg new file mode 100644 index 0000000..8967d02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_steel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ingot_thorium.jpg b/other/AoWoW-master/images/icons/large/inv_ingot_thorium.jpg new file mode 100644 index 0000000..c500d98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ingot_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_blackpearlpanther.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_blackpearlpanther.jpg new file mode 100644 index 0000000..da49331 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_blackpearlpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_bronzesetting.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_bronzesetting.jpg new file mode 100644 index 0000000..df388e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_bronzesetting.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_crimsonspinel_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_crimsonspinel_01.jpg new file mode 100644 index 0000000..2a6c9e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_crimsonspinel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_crimsonspinel_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_crimsonspinel_02.jpg new file mode 100644 index 0000000..47708aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_crimsonspinel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_01.jpg new file mode 100644 index 0000000..1086915 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_02.jpg new file mode 100644 index 0000000..73f36b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_03.jpg new file mode 100644 index 0000000..99dd539 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_dawnstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_delicatecopperwire.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_delicatecopperwire.jpg new file mode 100644 index 0000000..5459307 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_delicatecopperwire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_empyreansapphire_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_empyreansapphire_01.jpg new file mode 100644 index 0000000..3b3f1e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_empyreansapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_empyreansapphire_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_empyreansapphire_02.jpg new file mode 100644 index 0000000..32b79e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_empyreansapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_goldenhare.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_goldenhare.jpg new file mode 100644 index 0000000..8ff1877 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_goldenhare.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_jadeowl.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_jadeowl.jpg new file mode 100644 index 0000000..b81bc22 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_jadeowl.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_lionseye_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_lionseye_01.jpg new file mode 100644 index 0000000..ffeb482 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_lionseye_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_lionseye_02.jpg new file mode 100644 index 0000000..648ac3d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_lionseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_01.jpg new file mode 100644 index 0000000..c38010b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_02.jpg new file mode 100644 index 0000000..2c63d61 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_03.jpg new file mode 100644 index 0000000..6468aa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_livingruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_mithrilfiligree.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_mithrilfiligree.jpg new file mode 100644 index 0000000..74727e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_mithrilfiligree.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_01.jpg new file mode 100644 index 0000000..0d4ea91 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_02.jpg new file mode 100644 index 0000000..e006800 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_03.jpg new file mode 100644 index 0000000..c650a38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nightseye_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_01.jpg new file mode 100644 index 0000000..f78668c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_02.jpg new file mode 100644 index 0000000..ebbc62f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_03.jpg new file mode 100644 index 0000000..3c4c4d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_nobletopaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_pyrestone_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_pyrestone_01.jpg new file mode 100644 index 0000000..8cfa8af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_pyrestone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_pyrestone_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_pyrestone_02.jpg new file mode 100644 index 0000000..988209d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_pyrestone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_rubyserpent.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_rubyserpent.jpg new file mode 100644 index 0000000..6668583 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_rubyserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_seasprayemerald_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_seasprayemerald_01.jpg new file mode 100644 index 0000000..6273934 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_seasprayemerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_seasprayemerald_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_seasprayemerald_02.jpg new file mode 100644 index 0000000..baf0ec9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_seasprayemerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_shadowsongamethyst_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_shadowsongamethyst_01.jpg new file mode 100644 index 0000000..982c4bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_shadowsongamethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_shadowsongamethyst_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_shadowsongamethyst_02.jpg new file mode 100644 index 0000000..2fc72d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_shadowsongamethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_01.jpg new file mode 100644 index 0000000..549cc85 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_02.jpg new file mode 100644 index 0000000..11fd46b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_03.jpg new file mode 100644 index 0000000..08e39c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_starofelune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_01.jpg new file mode 100644 index 0000000..c3a8bd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_02.jpg new file mode 100644 index 0000000..29f7e44 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_03.jpg new file mode 100644 index 0000000..1cea892 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_talasite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_thoriumsetting.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_thoriumsetting.jpg new file mode 100644 index 0000000..0eb6424 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_thoriumsetting.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_truesilverboar.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_truesilverboar.jpg new file mode 100644 index 0000000..ae12b38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_truesilverboar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelcrafting_truesilvercrab.jpg b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_truesilvercrab.jpg new file mode 100644 index 0000000..f4c8702 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelcrafting_truesilvercrab.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_01.jpg new file mode 100644 index 0000000..5897c2a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_02.jpg new file mode 100644 index 0000000..fa04e7e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_03.jpg new file mode 100644 index 0000000..8cb7444 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_04.jpg new file mode 100644 index 0000000..717c42f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_05.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_05.jpg new file mode 100644 index 0000000..82d5ab4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_06.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_06.jpg new file mode 100644 index 0000000..3dc0d3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_07.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_07.jpg new file mode 100644 index 0000000..7c39262 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_amulet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_01.jpg new file mode 100644 index 0000000..b1a0deb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_02.jpg new file mode 100644 index 0000000..d9940b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_03.jpg new file mode 100644 index 0000000..981fa10 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_04.jpg new file mode 100644 index 0000000..eae8f74 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_05.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_05.jpg new file mode 100644 index 0000000..9619f36 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_frostwolftrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_01.jpg new file mode 100644 index 0000000..0dde5d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_02.jpg new file mode 100644 index 0000000..510bf14 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_03.jpg new file mode 100644 index 0000000..a4a6d50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_04.jpg new file mode 100644 index 0000000..0328fa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_05.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_05.jpg new file mode 100644 index 0000000..1b6273d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_06.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_06.jpg new file mode 100644 index 0000000..711ce25 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_07.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_07.jpg new file mode 100644 index 0000000..e184572 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_08.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_08.jpg new file mode 100644 index 0000000..49d15c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_09.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_09.jpg new file mode 100644 index 0000000..73c0a86 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_10.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_10.jpg new file mode 100644 index 0000000..465ebb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_11.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_11.jpg new file mode 100644 index 0000000..b644155 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_12.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_12.jpg new file mode 100644 index 0000000..7ea232e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_13.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_13.jpg new file mode 100644 index 0000000..216df7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_14.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_14.jpg new file mode 100644 index 0000000..6d62984 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_15.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_15.jpg new file mode 100644 index 0000000..6cb7bb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_16.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_16.jpg new file mode 100644 index 0000000..287c757 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_17.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_17.jpg new file mode 100644 index 0000000..75bb6cf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_18.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_18.jpg new file mode 100644 index 0000000..542a44b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_19.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_19.jpg new file mode 100644 index 0000000..311a71d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_20.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_20.jpg new file mode 100644 index 0000000..26515a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_21.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_21.jpg new file mode 100644 index 0000000..223af39 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_22.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_22.jpg new file mode 100644 index 0000000..7460cd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_23.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_23.jpg new file mode 100644 index 0000000..12377b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_24.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_24.jpg new file mode 100644 index 0000000..3231c93 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_25.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_25.jpg new file mode 100644 index 0000000..826f49f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_26.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_26.jpg new file mode 100644 index 0000000..730fe73 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_27.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_27.jpg new file mode 100644 index 0000000..25cf10a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_27naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_27naxxramas.jpg new file mode 100644 index 0000000..7446b97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_27naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_28.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_28.jpg new file mode 100644 index 0000000..d23f5a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_28naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_28naxxramas.jpg new file mode 100644 index 0000000..582b8d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_28naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_29.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_29.jpg new file mode 100644 index 0000000..f723247 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_29naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_29naxxramas.jpg new file mode 100644 index 0000000..4df2e8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_29naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_30.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_30.jpg new file mode 100644 index 0000000..16768a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_30naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_30naxxramas.jpg new file mode 100644 index 0000000..1110020 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_30naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_31.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_31.jpg new file mode 100644 index 0000000..e9b2837 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_32.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_32.jpg new file mode 100644 index 0000000..f601fd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_33.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_33.jpg new file mode 100644 index 0000000..5af3bc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_34.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_34.jpg new file mode 100644 index 0000000..eab2f4f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_35.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_35.jpg new file mode 100644 index 0000000..74079af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_36.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_36.jpg new file mode 100644 index 0000000..4c52883 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_37.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_37.jpg new file mode 100644 index 0000000..3d37897 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_38.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_38.jpg new file mode 100644 index 0000000..cdaa0bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_39.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_39.jpg new file mode 100644 index 0000000..ce8a0f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_40.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_40.jpg new file mode 100644 index 0000000..98dd5d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_41.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_41.jpg new file mode 100644 index 0000000..4a84472 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_42.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_42.jpg new file mode 100644 index 0000000..1d1065a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_43.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_43.jpg new file mode 100644 index 0000000..3239d99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_44.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_44.jpg new file mode 100644 index 0000000..2f390b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_45.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_45.jpg new file mode 100644 index 0000000..570f8f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_46.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_46.jpg new file mode 100644 index 0000000..5f5b482 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_47.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_47.jpg new file mode 100644 index 0000000..492189d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_01.jpg new file mode 100644 index 0000000..2024271 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_02.jpg new file mode 100644 index 0000000..f773ee3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_03.jpg new file mode 100644 index 0000000..6e18a2a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_04.jpg new file mode 100644 index 0000000..e255909 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_necklace_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_01.jpg new file mode 100644 index 0000000..900a3df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_02.jpg new file mode 100644 index 0000000..8989863 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_03.jpg new file mode 100644 index 0000000..a1b8fec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_04.jpg new file mode 100644 index 0000000..c560f75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_05.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_05.jpg new file mode 100644 index 0000000..dd3ca1f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_06.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_06.jpg new file mode 100644 index 0000000..c6bb4e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_07.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_07.jpg new file mode 100644 index 0000000..3ec6c19 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_08.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_08.jpg new file mode 100644 index 0000000..bbe52ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_09.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_09.jpg new file mode 100644 index 0000000..fdd1d00 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_10.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_10.jpg new file mode 100644 index 0000000..1b253c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_11.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_11.jpg new file mode 100644 index 0000000..c5986cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_12.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_12.jpg new file mode 100644 index 0000000..411e5ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_13.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_13.jpg new file mode 100644 index 0000000..9bd17ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_14.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_14.jpg new file mode 100644 index 0000000..772f886 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_15.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_15.jpg new file mode 100644 index 0000000..d65eeea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_16.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_16.jpg new file mode 100644 index 0000000..52af429 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_17.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_17.jpg new file mode 100644 index 0000000..e8f51bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_18.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_18.jpg new file mode 100644 index 0000000..6efe149 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_19.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_19.jpg new file mode 100644 index 0000000..188cd2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_20.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_20.jpg new file mode 100644 index 0000000..7bc4ada Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_21.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_21.jpg new file mode 100644 index 0000000..d9685ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_22.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_22.jpg new file mode 100644 index 0000000..8d4ea13 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_23.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_23.jpg new file mode 100644 index 0000000..4d5252d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_24.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_24.jpg new file mode 100644 index 0000000..62780b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_25.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_25.jpg new file mode 100644 index 0000000..f75f3ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_26.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_26.jpg new file mode 100644 index 0000000..8dd21d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_27.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_27.jpg new file mode 100644 index 0000000..a8746f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_28.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_28.jpg new file mode 100644 index 0000000..5d9ca5d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_29.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_29.jpg new file mode 100644 index 0000000..c12f8ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_30.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_30.jpg new file mode 100644 index 0000000..6b9c8d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_31.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_31.jpg new file mode 100644 index 0000000..90ad51e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_32.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_32.jpg new file mode 100644 index 0000000..1da9f5e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_33.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_33.jpg new file mode 100644 index 0000000..779bd2a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_34.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_34.jpg new file mode 100644 index 0000000..db84a88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_35.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_35.jpg new file mode 100644 index 0000000..22133c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_36.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_36.jpg new file mode 100644 index 0000000..d45284b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_37.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_37.jpg new file mode 100644 index 0000000..6ff154f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_38.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_38.jpg new file mode 100644 index 0000000..7517281 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_39.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_39.jpg new file mode 100644 index 0000000..8a48e25 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_40.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_40.jpg new file mode 100644 index 0000000..37c5a50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_41.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_41.jpg new file mode 100644 index 0000000..91e4cd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_42.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_42.jpg new file mode 100644 index 0000000..677cb73 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_43.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_43.jpg new file mode 100644 index 0000000..dfe59c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_44.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_44.jpg new file mode 100644 index 0000000..4e66df4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_45.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_45.jpg new file mode 100644 index 0000000..6681ebf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_46.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_46.jpg new file mode 100644 index 0000000..4a00c32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_47.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_47.jpg new file mode 100644 index 0000000..5164407 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_48naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_48naxxramas.jpg new file mode 100644 index 0000000..3c7b24b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_48naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_49naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_49naxxramas.jpg new file mode 100644 index 0000000..41eaa95 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_49naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_50naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_50naxxramas.jpg new file mode 100644 index 0000000..50b6a86 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_50naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_51naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_51naxxramas.jpg new file mode 100644 index 0000000..cec49c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_51naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_52naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_52naxxramas.jpg new file mode 100644 index 0000000..948e8ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_52naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_53naxxramas.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_53naxxramas.jpg new file mode 100644 index 0000000..b0e0aaa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_53naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_54.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_54.jpg new file mode 100644 index 0000000..ccc4d2e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_55.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_55.jpg new file mode 100644 index 0000000..1fb6864 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_56.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_56.jpg new file mode 100644 index 0000000..59ebf72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_57.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_57.jpg new file mode 100644 index 0000000..d3fa7cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_58.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_58.jpg new file mode 100644 index 0000000..41489f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_59.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_59.jpg new file mode 100644 index 0000000..cf91247 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_60.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_60.jpg new file mode 100644 index 0000000..fdb6538 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_61.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_61.jpg new file mode 100644 index 0000000..e04efd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_62.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_62.jpg new file mode 100644 index 0000000..d4f21ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_63.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_63.jpg new file mode 100644 index 0000000..b735460 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_64.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_64.jpg new file mode 100644 index 0000000..022ff5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_65.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_65.jpg new file mode 100644 index 0000000..74b2812 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_66.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_66.jpg new file mode 100644 index 0000000..f42f9d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_67.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_67.jpg new file mode 100644 index 0000000..9a38371 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_68.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_68.jpg new file mode 100644 index 0000000..902e006 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_69.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_69.jpg new file mode 100644 index 0000000..5c9a902 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_70.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_70.jpg new file mode 100644 index 0000000..c145622 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_70.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_71.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_71.jpg new file mode 100644 index 0000000..8f18f9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_72.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_72.jpg new file mode 100644 index 0000000..b7bcc60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_73.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_73.jpg new file mode 100644 index 0000000..8cdd210 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_74.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_74.jpg new file mode 100644 index 0000000..815ba14 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_75.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_75.jpg new file mode 100644 index 0000000..ab8243f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_75.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_76.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_76.jpg new file mode 100644 index 0000000..baa0604 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_76.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_77.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_77.jpg new file mode 100644 index 0000000..406e51b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_77.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_78.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_78.jpg new file mode 100644 index 0000000..f5f4f77 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_78.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_79.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_79.jpg new file mode 100644 index 0000000..ef2b8fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_79.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_80.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_80.jpg new file mode 100644 index 0000000..e175e84 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_80.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_01.jpg new file mode 100644 index 0000000..edb5357 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_02.jpg new file mode 100644 index 0000000..9565023 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_03.jpg new file mode 100644 index 0000000..10ed73a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_04.jpg new file mode 100644 index 0000000..108c94b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_05.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_05.jpg new file mode 100644 index 0000000..c72da52 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_06.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_06.jpg new file mode 100644 index 0000000..c011a7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_ring_ahnqiraj_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_01.jpg new file mode 100644 index 0000000..bd1716f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_02.jpg new file mode 100644 index 0000000..59fd48f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_03.jpg new file mode 100644 index 0000000..a8d1428 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_04.jpg new file mode 100644 index 0000000..33c531b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_05.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_05.jpg new file mode 100644 index 0000000..1d3ee09 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_stormpiketrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_01.jpg new file mode 100644 index 0000000..dcf58cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_02.jpg new file mode 100644 index 0000000..53e6bc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_03.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_03.jpg new file mode 100644 index 0000000..553107b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_04.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_04.jpg new file mode 100644 index 0000000..77df307 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_05.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_05.jpg new file mode 100644 index 0000000..d03e654 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_06.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_06.jpg new file mode 100644 index 0000000..808040a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_07.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_07.jpg new file mode 100644 index 0000000..c20feab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_08.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_08.jpg new file mode 100644 index 0000000..a3ebc9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_09.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_09.jpg new file mode 100644 index 0000000..8a85ec9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_10.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_10.jpg new file mode 100644 index 0000000..99ea260 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_11.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_11.jpg new file mode 100644 index 0000000..4a70d0f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_12.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_12.jpg new file mode 100644 index 0000000..e17863b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_13.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_13.jpg new file mode 100644 index 0000000..ca1ad7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_14.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_14.jpg new file mode 100644 index 0000000..9528b9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_15.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_15.jpg new file mode 100644 index 0000000..4fc32b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_16.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_16.jpg new file mode 100644 index 0000000..fbcd44d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_17.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_17.jpg new file mode 100644 index 0000000..8bba606 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_18.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_18.jpg new file mode 100644 index 0000000..521771d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_talisman_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_trinketpvp_01.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_trinketpvp_01.jpg new file mode 100644 index 0000000..48274b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_trinketpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_jewelry_trinketpvp_02.jpg b/other/AoWoW-master/images/icons/large/inv_jewelry_trinketpvp_02.jpg new file mode 100644 index 0000000..c3abfa9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_jewelry_trinketpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..377f019 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..6f00e3d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_03.jpg b/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_03.jpg new file mode 100644 index 0000000..fe85a7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_knife_1h_stratholme_d_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_01.jpg b/other/AoWoW-master/images/icons/large/inv_letter_01.jpg new file mode 100644 index 0000000..ef05db3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_02.jpg b/other/AoWoW-master/images/icons/large/inv_letter_02.jpg new file mode 100644 index 0000000..84fc98d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_03.jpg b/other/AoWoW-master/images/icons/large/inv_letter_03.jpg new file mode 100644 index 0000000..ac9f38d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_04.jpg b/other/AoWoW-master/images/icons/large/inv_letter_04.jpg new file mode 100644 index 0000000..73182a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_05.jpg b/other/AoWoW-master/images/icons/large/inv_letter_05.jpg new file mode 100644 index 0000000..3755d86 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_06.jpg b/other/AoWoW-master/images/icons/large/inv_letter_06.jpg new file mode 100644 index 0000000..95320cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_07.jpg b/other/AoWoW-master/images/icons/large/inv_letter_07.jpg new file mode 100644 index 0000000..3659025 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_08.jpg b/other/AoWoW-master/images/icons/large/inv_letter_08.jpg new file mode 100644 index 0000000..5b2a5de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_09.jpg b/other/AoWoW-master/images/icons/large/inv_letter_09.jpg new file mode 100644 index 0000000..be80a87 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_10.jpg b/other/AoWoW-master/images/icons/large/inv_letter_10.jpg new file mode 100644 index 0000000..a105eb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_11.jpg b/other/AoWoW-master/images/icons/large/inv_letter_11.jpg new file mode 100644 index 0000000..2b7df5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_12.jpg b/other/AoWoW-master/images/icons/large/inv_letter_12.jpg new file mode 100644 index 0000000..b67d2e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_13.jpg b/other/AoWoW-master/images/icons/large/inv_letter_13.jpg new file mode 100644 index 0000000..9a821ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_14.jpg b/other/AoWoW-master/images/icons/large/inv_letter_14.jpg new file mode 100644 index 0000000..0cee6ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_15.jpg b/other/AoWoW-master/images/icons/large/inv_letter_15.jpg new file mode 100644 index 0000000..c3fe746 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_16.jpg b/other/AoWoW-master/images/icons/large/inv_letter_16.jpg new file mode 100644 index 0000000..393c684 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_letter_17.jpg b/other/AoWoW-master/images/icons/large/inv_letter_17.jpg new file mode 100644 index 0000000..c346063 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_letter_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace22.jpg b/other/AoWoW-master/images/icons/large/inv_mace22.jpg new file mode 100644 index 0000000..9332953 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace23.jpg b/other/AoWoW-master/images/icons/large/inv_mace23.jpg new file mode 100644 index 0000000..2fa8234 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_01.jpg b/other/AoWoW-master/images/icons/large/inv_mace_01.jpg new file mode 100644 index 0000000..cd7f28a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_02.jpg b/other/AoWoW-master/images/icons/large/inv_mace_02.jpg new file mode 100644 index 0000000..ef26abb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_03.jpg b/other/AoWoW-master/images/icons/large/inv_mace_03.jpg new file mode 100644 index 0000000..626aee0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_04.jpg b/other/AoWoW-master/images/icons/large/inv_mace_04.jpg new file mode 100644 index 0000000..e919be4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_05.jpg b/other/AoWoW-master/images/icons/large/inv_mace_05.jpg new file mode 100644 index 0000000..2f8cfe1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_06.jpg b/other/AoWoW-master/images/icons/large/inv_mace_06.jpg new file mode 100644 index 0000000..4c47b80 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_07.jpg b/other/AoWoW-master/images/icons/large/inv_mace_07.jpg new file mode 100644 index 0000000..af3c068 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_08.jpg b/other/AoWoW-master/images/icons/large/inv_mace_08.jpg new file mode 100644 index 0000000..47926e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_09.jpg b/other/AoWoW-master/images/icons/large/inv_mace_09.jpg new file mode 100644 index 0000000..6f67ca3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_10.jpg b/other/AoWoW-master/images/icons/large/inv_mace_10.jpg new file mode 100644 index 0000000..e963d00 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_11.jpg b/other/AoWoW-master/images/icons/large/inv_mace_11.jpg new file mode 100644 index 0000000..85fb036 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_12.jpg b/other/AoWoW-master/images/icons/large/inv_mace_12.jpg new file mode 100644 index 0000000..2d80940 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_13.jpg b/other/AoWoW-master/images/icons/large/inv_mace_13.jpg new file mode 100644 index 0000000..29aabd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_14.jpg b/other/AoWoW-master/images/icons/large/inv_mace_14.jpg new file mode 100644 index 0000000..385e7c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_15.jpg b/other/AoWoW-master/images/icons/large/inv_mace_15.jpg new file mode 100644 index 0000000..722e937 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_16.jpg b/other/AoWoW-master/images/icons/large/inv_mace_16.jpg new file mode 100644 index 0000000..e134a26 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_17.jpg b/other/AoWoW-master/images/icons/large/inv_mace_17.jpg new file mode 100644 index 0000000..730755c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_18.jpg b/other/AoWoW-master/images/icons/large/inv_mace_18.jpg new file mode 100644 index 0000000..f1610dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_19.jpg b/other/AoWoW-master/images/icons/large/inv_mace_19.jpg new file mode 100644 index 0000000..96daf48 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_mace_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..4db37a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/large/inv_mace_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..09ef5e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_20.jpg b/other/AoWoW-master/images/icons/large/inv_mace_20.jpg new file mode 100644 index 0000000..6d58917 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_21.jpg b/other/AoWoW-master/images/icons/large/inv_mace_21.jpg new file mode 100644 index 0000000..194d975 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_22.jpg b/other/AoWoW-master/images/icons/large/inv_mace_22.jpg new file mode 100644 index 0000000..9332953 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_23.jpg b/other/AoWoW-master/images/icons/large/inv_mace_23.jpg new file mode 100644 index 0000000..2fa8234 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_24.jpg b/other/AoWoW-master/images/icons/large/inv_mace_24.jpg new file mode 100644 index 0000000..f88b508 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_25.jpg b/other/AoWoW-master/images/icons/large/inv_mace_25.jpg new file mode 100644 index 0000000..0949ff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_26.jpg b/other/AoWoW-master/images/icons/large/inv_mace_26.jpg new file mode 100644 index 0000000..e2fe115 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_27.jpg b/other/AoWoW-master/images/icons/large/inv_mace_27.jpg new file mode 100644 index 0000000..c5505f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_28.jpg b/other/AoWoW-master/images/icons/large/inv_mace_28.jpg new file mode 100644 index 0000000..c3c7cae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_29.jpg b/other/AoWoW-master/images/icons/large/inv_mace_29.jpg new file mode 100644 index 0000000..d1401b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..fefafbc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..6af48d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..70f219f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_30.jpg b/other/AoWoW-master/images/icons/large/inv_mace_30.jpg new file mode 100644 index 0000000..1a71886 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_31.jpg b/other/AoWoW-master/images/icons/large/inv_mace_31.jpg new file mode 100644 index 0000000..9e3e429 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_32.jpg b/other/AoWoW-master/images/icons/large/inv_mace_32.jpg new file mode 100644 index 0000000..b389b9a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_33.jpg b/other/AoWoW-master/images/icons/large/inv_mace_33.jpg new file mode 100644 index 0000000..115c5de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_34.jpg b/other/AoWoW-master/images/icons/large/inv_mace_34.jpg new file mode 100644 index 0000000..33686ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_35.jpg b/other/AoWoW-master/images/icons/large/inv_mace_35.jpg new file mode 100644 index 0000000..5b1dbfa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_36.jpg b/other/AoWoW-master/images/icons/large/inv_mace_36.jpg new file mode 100644 index 0000000..3d03641 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_37.jpg b/other/AoWoW-master/images/icons/large/inv_mace_37.jpg new file mode 100644 index 0000000..ef21b68 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_38.jpg b/other/AoWoW-master/images/icons/large/inv_mace_38.jpg new file mode 100644 index 0000000..f88c178 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_39.jpg b/other/AoWoW-master/images/icons/large/inv_mace_39.jpg new file mode 100644 index 0000000..cdfb443 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_40.jpg b/other/AoWoW-master/images/icons/large/inv_mace_40.jpg new file mode 100644 index 0000000..a4739b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_41.jpg b/other/AoWoW-master/images/icons/large/inv_mace_41.jpg new file mode 100644 index 0000000..a2bb8ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_42.jpg b/other/AoWoW-master/images/icons/large/inv_mace_42.jpg new file mode 100644 index 0000000..568bed2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_43.jpg b/other/AoWoW-master/images/icons/large/inv_mace_43.jpg new file mode 100644 index 0000000..1c9df83 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_44.jpg b/other/AoWoW-master/images/icons/large/inv_mace_44.jpg new file mode 100644 index 0000000..d657a66 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_45.jpg b/other/AoWoW-master/images/icons/large/inv_mace_45.jpg new file mode 100644 index 0000000..9d13eb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_46.jpg b/other/AoWoW-master/images/icons/large/inv_mace_46.jpg new file mode 100644 index 0000000..65af6db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_47.jpg b/other/AoWoW-master/images/icons/large/inv_mace_47.jpg new file mode 100644 index 0000000..0262212 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_48.jpg b/other/AoWoW-master/images/icons/large/inv_mace_48.jpg new file mode 100644 index 0000000..7df9441 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_49.jpg b/other/AoWoW-master/images/icons/large/inv_mace_49.jpg new file mode 100644 index 0000000..5d738c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_50.jpg b/other/AoWoW-master/images/icons/large/inv_mace_50.jpg new file mode 100644 index 0000000..da8e80b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_51.jpg b/other/AoWoW-master/images/icons/large/inv_mace_51.jpg new file mode 100644 index 0000000..7c34791 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_52.jpg b/other/AoWoW-master/images/icons/large/inv_mace_52.jpg new file mode 100644 index 0000000..806f495 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_53.jpg b/other/AoWoW-master/images/icons/large/inv_mace_53.jpg new file mode 100644 index 0000000..b51be21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_54.jpg b/other/AoWoW-master/images/icons/large/inv_mace_54.jpg new file mode 100644 index 0000000..ef1add2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_55.jpg b/other/AoWoW-master/images/icons/large/inv_mace_55.jpg new file mode 100644 index 0000000..d2f8bd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_56.jpg b/other/AoWoW-master/images/icons/large/inv_mace_56.jpg new file mode 100644 index 0000000..add00e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_57.jpg b/other/AoWoW-master/images/icons/large/inv_mace_57.jpg new file mode 100644 index 0000000..019fd3c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_66.jpg b/other/AoWoW-master/images/icons/large/inv_mace_66.jpg new file mode 100644 index 0000000..861df80 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_71.jpg b/other/AoWoW-master/images/icons/large/inv_mace_71.jpg new file mode 100644 index 0000000..f5ed09a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_72.jpg b/other/AoWoW-master/images/icons/large/inv_mace_72.jpg new file mode 100644 index 0000000..141b092 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_73.jpg b/other/AoWoW-master/images/icons/large/inv_mace_73.jpg new file mode 100644 index 0000000..0693f5f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_74.jpg b/other/AoWoW-master/images/icons/large/inv_mace_74.jpg new file mode 100644 index 0000000..9530582 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mace_82.jpg b/other/AoWoW-master/images/icons/large/inv_mace_82.jpg new file mode 100644 index 0000000..f319674 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mace_82.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mask_01.jpg b/other/AoWoW-master/images/icons/large/inv_mask_01.jpg new file mode 100644 index 0000000..bd79377 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mask_02.jpg b/other/AoWoW-master/images/icons/large/inv_mask_02.jpg new file mode 100644 index 0000000..7eefdfb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mask_03.jpg b/other/AoWoW-master/images/icons/large/inv_mask_03.jpg new file mode 100644 index 0000000..1fca0da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mask_04.jpg b/other/AoWoW-master/images/icons/large/inv_mask_04.jpg new file mode 100644 index 0000000..24af58a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mask_05.jpg b/other/AoWoW-master/images/icons/large/inv_mask_05.jpg new file mode 100644 index 0000000..5798753 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mask_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mask_06.jpg b/other/AoWoW-master/images/icons/large/inv_mask_06.jpg new file mode 100644 index 0000000..da83371 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mask_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_01.jpg new file mode 100644 index 0000000..72a250f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_02.jpg new file mode 100644 index 0000000..b7abda1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_03.jpg new file mode 100644 index 0000000..b665972 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_04.jpg new file mode 100644 index 0000000..3404b8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_05.jpg new file mode 100644 index 0000000..33ca7d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_06.jpg new file mode 100644 index 0000000..595d3cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ahnqirajtrinket_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_01.jpg new file mode 100644 index 0000000..36a27f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_02.jpg new file mode 100644 index 0000000..2d822ed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_03.jpg new file mode 100644 index 0000000..5d9885e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_04.jpg new file mode 100644 index 0000000..b9d4e9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_05.jpg new file mode 100644 index 0000000..86b73e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_arrow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_01.jpg new file mode 100644 index 0000000..a3bf911 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_02.jpg new file mode 100644 index 0000000..0638c8b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_03.jpg new file mode 100644 index 0000000..2c28312 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_04.jpg new file mode 100644 index 0000000..6219288 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_05.jpg new file mode 100644 index 0000000..d543e38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_06.jpg new file mode 100644 index 0000000..3732b2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_bullet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_01.jpg new file mode 100644 index 0000000..9aa4a7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_02.jpg new file mode 100644 index 0000000..0637718 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_03.jpg new file mode 100644 index 0000000..2681120 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_04.jpg new file mode 100644 index 0000000..1fac245 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_05.jpg new file mode 100644 index 0000000..bfe133b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_06.jpg new file mode 100644 index 0000000..fe141b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_07.jpg new file mode 100644 index 0000000..5b50b3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ammo_gunpowder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_apexis_crystal.jpg b/other/AoWoW-master/images/icons/large/inv_misc_apexis_crystal.jpg new file mode 100644 index 0000000..8c1bba9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_apexis_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_apexis_shard.jpg b/other/AoWoW-master/images/icons/large/inv_misc_apexis_shard.jpg new file mode 100644 index 0000000..a8e6b7f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_apexis_shard.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_01.jpg new file mode 100644 index 0000000..27424dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_02.jpg new file mode 100644 index 0000000..3c90e79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_03.jpg new file mode 100644 index 0000000..76cefbd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_04.jpg new file mode 100644 index 0000000..96fe8c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_05.jpg new file mode 100644 index 0000000..f530a5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_06.jpg new file mode 100644 index 0000000..f46f0a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_07.jpg new file mode 100644 index 0000000..0097caf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_08.jpg new file mode 100644 index 0000000..5f015aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_09.jpg new file mode 100644 index 0000000..235274e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_10.jpg new file mode 100644 index 0000000..fd23865 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_11.jpg new file mode 100644 index 0000000..2cb8f41 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_12.jpg new file mode 100644 index 0000000..a622e75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_14.jpg new file mode 100644 index 0000000..277e4fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_15.jpg new file mode 100644 index 0000000..44f38a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_16.jpg new file mode 100644 index 0000000..92f05f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_17.jpg new file mode 100644 index 0000000..b126c0f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_18.jpg new file mode 100644 index 0000000..0090851 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_19.jpg new file mode 100644 index 0000000..5085e18 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_20.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_20.jpg new file mode 100644 index 0000000..b553dec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_21.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_21.jpg new file mode 100644 index 0000000..187cc68 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_22.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_22.jpg new file mode 100644 index 0000000..f7e3af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_23.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_23.jpg new file mode 100644 index 0000000..b45aa6b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_24.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_24.jpg new file mode 100644 index 0000000..f65bcee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_25.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_25.jpg new file mode 100644 index 0000000..8118adf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_26.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_26.jpg new file mode 100644 index 0000000..ffd286b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_armorkit_27.jpg b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_27.jpg new file mode 100644 index 0000000..7acfad8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_armorkit_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_01.jpg new file mode 100644 index 0000000..0ffbd44 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_02.jpg new file mode 100644 index 0000000..ec89548 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_03.jpg new file mode 100644 index 0000000..5c471c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_04.jpg new file mode 100644 index 0000000..d4ac245 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_05.jpg new file mode 100644 index 0000000..ca6ef7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_06.jpg new file mode 100644 index 0000000..a3d6cd2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_07.jpg new file mode 100644 index 0000000..1560f99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_07_black.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_black.jpg new file mode 100644 index 0000000..5ed259f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_black.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_07_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_blue.jpg new file mode 100644 index 0000000..e8c1576 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_07_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_green.jpg new file mode 100644 index 0000000..35f8cee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_07_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_red.jpg new file mode 100644 index 0000000..0e2db4a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_07_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_08.jpg new file mode 100644 index 0000000..4f38c21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_09.jpg new file mode 100644 index 0000000..dd6b379 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_09_black.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_black.jpg new file mode 100644 index 0000000..0c8a849 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_black.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_09_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_blue.jpg new file mode 100644 index 0000000..146f2de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_09_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_green.jpg new file mode 100644 index 0000000..7eabd38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_09_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_red.jpg new file mode 100644 index 0000000..42f8b06 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_09_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_10.jpg new file mode 100644 index 0000000..13c986d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_10_black.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_black.jpg new file mode 100644 index 0000000..46dd124 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_black.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_10_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_blue.jpg new file mode 100644 index 0000000..bfd3a24 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_10_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_green.jpg new file mode 100644 index 0000000..5b5a3a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_10_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_red.jpg new file mode 100644 index 0000000..66f890f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_10_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_11.jpg new file mode 100644 index 0000000..fa33b7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_12.jpg new file mode 100644 index 0000000..5961c1e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_13.jpg new file mode 100644 index 0000000..b26b190 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_14.jpg new file mode 100644 index 0000000..3e67dd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_15.jpg new file mode 100644 index 0000000..9765fa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_16.jpg new file mode 100644 index 0000000..236fcbe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_17.jpg new file mode 100644 index 0000000..cda1356 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_18.jpg new file mode 100644 index 0000000..bf36fef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_19.jpg new file mode 100644 index 0000000..3d363f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_20.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_20.jpg new file mode 100644 index 0000000..8f1897d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_21.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_21.jpg new file mode 100644 index 0000000..f29ab19 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_22.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_22.jpg new file mode 100644 index 0000000..c00f046 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_23_netherweave.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_23_netherweave.jpg new file mode 100644 index 0000000..990808b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_23_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_24_netherweave_imbued.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_24_netherweave_imbued.jpg new file mode 100644 index 0000000..f4182ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_24_netherweave_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_25_mooncloth.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_25_mooncloth.jpg new file mode 100644 index 0000000..2f0c9a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_25_mooncloth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_26_spellfire.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_26_spellfire.jpg new file mode 100644 index 0000000..0cfd065 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_26_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_27.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_27.jpg new file mode 100644 index 0000000..4d8fceb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_28_halloween.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_28_halloween.jpg new file mode 100644 index 0000000..8f2a83f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_28_halloween.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_bigbagofenchantments.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_bigbagofenchantments.jpg new file mode 100644 index 0000000..cef3f56 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_bigbagofenchantments.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_cenarionherbbag.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_cenarionherbbag.jpg new file mode 100644 index 0000000..9cf26e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_cenarionherbbag.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_corefelclothbag.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_corefelclothbag.jpg new file mode 100644 index 0000000..5af01c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_corefelclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_enchantedmageweave.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_enchantedmageweave.jpg new file mode 100644 index 0000000..115b2fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_enchantedmageweave.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_enchantedrunecloth.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_enchantedrunecloth.jpg new file mode 100644 index 0000000..ca2db24 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_enchantedrunecloth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_felclothbag.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_felclothbag.jpg new file mode 100644 index 0000000..2b143ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_felclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_herbpouch.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_herbpouch.jpg new file mode 100644 index 0000000..1d83fbd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_herbpouch.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_satchelofcenarius.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_satchelofcenarius.jpg new file mode 100644 index 0000000..4df54d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_satchelofcenarius.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bag_soulbag.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bag_soulbag.jpg new file mode 100644 index 0000000..91a2662 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bag_soulbag.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_01.jpg new file mode 100644 index 0000000..4cac73e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_02.jpg new file mode 100644 index 0000000..cf46961 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_03.jpg new file mode 100644 index 0000000..717f23d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_04.jpg new file mode 100644 index 0000000..26cbecf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_05.jpg new file mode 100644 index 0000000..3005ec1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_06.jpg new file mode 100644 index 0000000..d760784 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_07.jpg new file mode 100644 index 0000000..0a07485 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_08.jpg new file mode 100644 index 0000000..8aba726 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_09.jpg new file mode 100644 index 0000000..e723774 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_10.jpg new file mode 100644 index 0000000..ade42ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_11.jpg new file mode 100644 index 0000000..ad986bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_12.jpg new file mode 100644 index 0000000..6a4e8e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_13.jpg new file mode 100644 index 0000000..af11194 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_14.jpg new file mode 100644 index 0000000..24b5876 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_15.jpg new file mode 100644 index 0000000..2844a7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_16.jpg new file mode 100644 index 0000000..049faae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_17.jpg new file mode 100644 index 0000000..ad54634 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_18.jpg new file mode 100644 index 0000000..f605c99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_19.jpg new file mode 100644 index 0000000..4368525 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_20.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_20.jpg new file mode 100644 index 0000000..8025cf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_netherweave.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_netherweave.jpg new file mode 100644 index 0000000..d7329e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandage_netherweave_heavy.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandage_netherweave_heavy.jpg new file mode 100644 index 0000000..5de2219 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandage_netherweave_heavy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandana_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandana_01.jpg new file mode 100644 index 0000000..b0c8d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandana_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bandana_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bandana_03.jpg new file mode 100644 index 0000000..87dd1ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bandana_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_basket_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_basket_01.jpg new file mode 100644 index 0000000..f36b344 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_basket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_beer_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_beer_01.jpg new file mode 100644 index 0000000..03bea6b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_beer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_beer_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_beer_02.jpg new file mode 100644 index 0000000..42644d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_beer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bell_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bell_01.jpg new file mode 100644 index 0000000..2c674ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_birdbeck_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_birdbeck_01.jpg new file mode 100644 index 0000000..71410e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_birdbeck_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_birdbeck_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_birdbeck_02.jpg new file mode 100644 index 0000000..6c6a7f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_birdbeck_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_01.jpg new file mode 100644 index 0000000..d3e2b1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_02.jpg new file mode 100644 index 0000000..3851620 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_03.jpg new file mode 100644 index 0000000..c63911b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_04.jpg new file mode 100644 index 0000000..215aa50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_05.jpg new file mode 100644 index 0000000..b8ba302 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_06.jpg new file mode 100644 index 0000000..b35a11b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_07.jpg new file mode 100644 index 0000000..178c724 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_08.jpg new file mode 100644 index 0000000..340a86d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bomb_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bomb_09.jpg new file mode 100644 index 0000000..317d8bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bomb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_01.jpg new file mode 100644 index 0000000..11cc3c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_02.jpg new file mode 100644 index 0000000..122bd8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_03.jpg new file mode 100644 index 0000000..49c1cb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_04.jpg new file mode 100644 index 0000000..503dcdb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_05.jpg new file mode 100644 index 0000000..ca9facf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_06.jpg new file mode 100644 index 0000000..5878cc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_07.jpg new file mode 100644 index 0000000..2234eea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_08.jpg new file mode 100644 index 0000000..4de8f0b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_09.jpg new file mode 100644 index 0000000..25a2bef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_10.jpg new file mode 100644 index 0000000..9bf2a73 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_dwarfskull_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_dwarfskull_01.jpg new file mode 100644 index 0000000..14ba81e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_dwarfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_elfskull_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_elfskull_01.jpg new file mode 100644 index 0000000..1a2ac95 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_elfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_humanskull_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_humanskull_01.jpg new file mode 100644 index 0000000..c3c421b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_humanskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_orcskull_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_orcskull_01.jpg new file mode 100644 index 0000000..633ce7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_orcskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bone_taurenskull_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bone_taurenskull_01.jpg new file mode 100644 index 0000000..b98f2e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bone_taurenskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_01.jpg new file mode 100644 index 0000000..0f9876f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_02.jpg new file mode 100644 index 0000000..1ac6536 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_03.jpg new file mode 100644 index 0000000..1345b71 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_04.jpg new file mode 100644 index 0000000..bd4ed49 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_05.jpg new file mode 100644 index 0000000..478c2d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_06.jpg new file mode 100644 index 0000000..88eb246 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_07.jpg new file mode 100644 index 0000000..d575938 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_08.jpg new file mode 100644 index 0000000..a893784 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_09.jpg new file mode 100644 index 0000000..8160486 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_10.jpg new file mode 100644 index 0000000..4bac45f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_11.jpg new file mode 100644 index 0000000..a67f43a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_12.jpg new file mode 100644 index 0000000..d73e142 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_13.jpg new file mode 100644 index 0000000..8d49fe3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_14.jpg new file mode 100644 index 0000000..2019397 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_book_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_book_15.jpg new file mode 100644 index 0000000..c32750a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_book_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_bowl_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_bowl_01.jpg new file mode 100644 index 0000000..d5614d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_bowl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_branch_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_branch_01.jpg new file mode 100644 index 0000000..1cfe0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_branch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_candle_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_candle_01.jpg new file mode 100644 index 0000000..d2e62ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_candle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_candle_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_candle_02.jpg new file mode 100644 index 0000000..a8e1f0d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_candle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_candle_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_candle_03.jpg new file mode 100644 index 0000000..2c8f3e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_candle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_01.jpg new file mode 100644 index 0000000..dc5c2b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_02.jpg new file mode 100644 index 0000000..500da28 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_03.jpg new file mode 100644 index 0000000..d20ea13 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_04.jpg new file mode 100644 index 0000000..1408c6b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_05.jpg new file mode 100644 index 0000000..87523c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_06.jpg new file mode 100644 index 0000000..1cbf5a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_07.jpg new file mode 100644 index 0000000..788f1ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_08.jpg new file mode 100644 index 0000000..af94cf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_09.jpg new file mode 100644 index 0000000..13d1d77 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_10.jpg new file mode 100644 index 0000000..dbbe9db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_11.jpg new file mode 100644 index 0000000..0652e93 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_12.jpg new file mode 100644 index 0000000..d21e961 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_13.jpg new file mode 100644 index 0000000..44b8819 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_14.jpg new file mode 100644 index 0000000..18065f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_15.jpg new file mode 100644 index 0000000..a042b16 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_16.jpg new file mode 100644 index 0000000..3e1225e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_17.jpg new file mode 100644 index 0000000..3d43014 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_18.jpg new file mode 100644 index 0000000..066f54f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_19.jpg new file mode 100644 index 0000000..248855f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_20.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_20.jpg new file mode 100644 index 0000000..c4d937a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_21.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_21.jpg new file mode 100644 index 0000000..5af549b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_22.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_22.jpg new file mode 100644 index 0000000..a885462 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_01.jpg new file mode 100644 index 0000000..8bff6bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_02.jpg new file mode 100644 index 0000000..1f96de1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_03.jpg new file mode 100644 index 0000000..83a2459 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cape_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cauldron_arcane.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_arcane.jpg new file mode 100644 index 0000000..56b3486 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_arcane.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cauldron_fire.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_fire.jpg new file mode 100644 index 0000000..7b06034 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cauldron_frost.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_frost.jpg new file mode 100644 index 0000000..e2bcc2b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cauldron_nature.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_nature.jpg new file mode 100644 index 0000000..807564e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_nature.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_cauldron_shadow.jpg b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_shadow.jpg new file mode 100644 index 0000000..3c3b00c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_cauldron_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_celebrationcake_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_celebrationcake_01.jpg new file mode 100644 index 0000000..e2160ed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_celebrationcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_01.jpg new file mode 100644 index 0000000..e10917a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_02.jpg new file mode 100644 index 0000000..a55f389 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_03.jpg new file mode 100644 index 0000000..d7df4ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_04.jpg new file mode 100644 index 0000000..0ee52c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_05.jpg new file mode 100644 index 0000000..2d5b411 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_06.jpg new file mode 100644 index 0000000..5df5ab6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_07.jpg new file mode 100644 index 0000000..58f7214 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_08.jpg new file mode 100644 index 0000000..b7a577d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_09.jpg new file mode 100644 index 0000000..ed484ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_10.jpg new file mode 100644 index 0000000..9c111d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_11.jpg new file mode 100644 index 0000000..7eaec9c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_12.jpg new file mode 100644 index 0000000..aa37dbf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_13.jpg new file mode 100644 index 0000000..1bdac9d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_14.jpg new file mode 100644 index 0000000..62fa9ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_coin_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_coin_15.jpg new file mode 100644 index 0000000..fe9b13a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_coin_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_comb_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_comb_01.jpg new file mode 100644 index 0000000..d0dde31 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_comb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_comb_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_comb_02.jpg new file mode 100644 index 0000000..c315d97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_comb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_crop_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_crop_01.jpg new file mode 100644 index 0000000..e0f0e8a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_crop_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_crop_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_crop_02.jpg new file mode 100644 index 0000000..6074dd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_crop_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothbelt.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothbelt.jpg new file mode 100644 index 0000000..bcbe0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothboots.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothboots.jpg new file mode 100644 index 0000000..fa8bd82 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothboots.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothbracer.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothbracer.jpg new file mode 100644 index 0000000..b621db7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothchest.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothchest.jpg new file mode 100644 index 0000000..644af50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothchest.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothglove.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothglove.jpg new file mode 100644 index 0000000..b7a7be3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothglove.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothhelm.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothhelm.jpg new file mode 100644 index 0000000..9c41f42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothpants.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothpants.jpg new file mode 100644 index 0000000..3b60d42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothpants.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothshoulder.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothshoulder.jpg new file mode 100644 index 0000000..6252f78 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_clothshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherbelt.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherbelt.jpg new file mode 100644 index 0000000..e935b1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherboots.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherboots.jpg new file mode 100644 index 0000000..5a35859 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherboots.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherbracer.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherbracer.jpg new file mode 100644 index 0000000..282ddd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherchest.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherchest.jpg new file mode 100644 index 0000000..dc3c052 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherchest.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherglove.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherglove.jpg new file mode 100644 index 0000000..563d969 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherglove.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherhelm.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherhelm.jpg new file mode 100644 index 0000000..172bf6f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherpants.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherpants.jpg new file mode 100644 index 0000000..97fbd38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leatherpants.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leathershoulder.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leathershoulder.jpg new file mode 100644 index 0000000..2a7dac0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_leathershoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailbelt.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailbelt.jpg new file mode 100644 index 0000000..56ded7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailboots.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailboots.jpg new file mode 100644 index 0000000..bec0dcf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailboots.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailbracer.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailbracer.jpg new file mode 100644 index 0000000..62bfa18 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailchest.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailchest.jpg new file mode 100644 index 0000000..a80ff61 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailchest.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailglove.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailglove.jpg new file mode 100644 index 0000000..a96e1a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailglove.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailhelm.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailhelm.jpg new file mode 100644 index 0000000..0b719c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailpants.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailpants.jpg new file mode 100644 index 0000000..85fa184 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailpants.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailshoulder.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailshoulder.jpg new file mode 100644 index 0000000..08a11cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_mailshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platebelt.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platebelt.jpg new file mode 100644 index 0000000..1eaa46a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platebelt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plateboots.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plateboots.jpg new file mode 100644 index 0000000..94b3896 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plateboots.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platebracer.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platebracer.jpg new file mode 100644 index 0000000..0b4dd4a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platebracer.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platechest.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platechest.jpg new file mode 100644 index 0000000..48941e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platechest.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plategloves.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plategloves.jpg new file mode 100644 index 0000000..45d23bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plategloves.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platehelm.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platehelm.jpg new file mode 100644 index 0000000..a8d0b5d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platehelm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platepants.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platepants.jpg new file mode 100644 index 0000000..d053682 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_platepants.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plateshoulder.jpg b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plateshoulder.jpg new file mode 100644 index 0000000..1a309f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_desecrated_plateshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_01.jpg new file mode 100644 index 0000000..d7ca261 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_02.jpg new file mode 100644 index 0000000..21260fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_03.jpg new file mode 100644 index 0000000..327bccc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_04.jpg new file mode 100644 index 0000000..9473ac8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dragonkite_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_drum_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_drum_01.jpg new file mode 100644 index 0000000..490f981 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_drum_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_drum_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_drum_02.jpg new file mode 100644 index 0000000..80c8e91 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_drum_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_drum_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_drum_03.jpg new file mode 100644 index 0000000..8397fca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_drum_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_drum_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_drum_04.jpg new file mode 100644 index 0000000..a5e55b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_drum_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_drum_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_drum_05.jpg new file mode 100644 index 0000000..2ccfcfb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_drum_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_drum_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_drum_06.jpg new file mode 100644 index 0000000..af04add Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_drum_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_drum_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_drum_07.jpg new file mode 100644 index 0000000..c973cb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_drum_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dust_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dust_01.jpg new file mode 100644 index 0000000..99d0ff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dust_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dust_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dust_02.jpg new file mode 100644 index 0000000..fcf921c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dust_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dust_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dust_03.jpg new file mode 100644 index 0000000..a6a88a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dust_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dust_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dust_04.jpg new file mode 100644 index 0000000..ff99648 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dust_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dust_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dust_05.jpg new file mode 100644 index 0000000..4e8b101 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dust_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_dust_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_dust_06.jpg new file mode 100644 index 0000000..cf7fbcf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_dust_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ear_human_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ear_human_01.jpg new file mode 100644 index 0000000..7e02aee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ear_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ear_human_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ear_human_02.jpg new file mode 100644 index 0000000..d1bfbb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ear_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ear_nightelf_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ear_nightelf_01.jpg new file mode 100644 index 0000000..1c7a8fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ear_nightelf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ear_nightelf_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ear_nightelf_02.jpg new file mode 100644 index 0000000..0bf1716 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ear_nightelf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_elvencoins.jpg b/other/AoWoW-master/images/icons/large/inv_misc_elvencoins.jpg new file mode 100644 index 0000000..9495ee3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_elvencoins.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_01.jpg new file mode 100644 index 0000000..0974dd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_02.jpg new file mode 100644 index 0000000..320d957 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_03.jpg new file mode 100644 index 0000000..10561ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_04.jpg new file mode 100644 index 0000000..738545b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_05.jpg new file mode 100644 index 0000000..a64f769 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_06.jpg new file mode 100644 index 0000000..d1aea88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_07.jpg new file mode 100644 index 0000000..11eb29a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_08.jpg new file mode 100644 index 0000000..25d9e9f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_09.jpg new file mode 100644 index 0000000..17185cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_10.jpg new file mode 100644 index 0000000..473f8ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_11.jpg new file mode 100644 index 0000000..9b5c3c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_12.jpg new file mode 100644 index 0000000..4033f7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_13.jpg new file mode 100644 index 0000000..7cf8313 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_14.jpg new file mode 100644 index 0000000..f9dbf7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_15.jpg new file mode 100644 index 0000000..cf8017d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_16.jpg new file mode 100644 index 0000000..9f1c060 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_17.jpg new file mode 100644 index 0000000..055cb79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_18.jpg new file mode 100644 index 0000000..c03bc8b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_19.jpg new file mode 100644 index 0000000..70569b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_20.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_20.jpg new file mode 100644 index 0000000..fabb69c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_21.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_21.jpg new file mode 100644 index 0000000..fcdc717 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_23.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_23.jpg new file mode 100644 index 0000000..6a392f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_24.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_24.jpg new file mode 100644 index 0000000..c6e21a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_essencedistiller.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_essencedistiller.jpg new file mode 100644 index 0000000..b65ebb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_essencedistiller.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_rocketchicken.jpg b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_rocketchicken.jpg new file mode 100644 index 0000000..bcc9436 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_enggizmos_rocketchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_eye_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_eye_01.jpg new file mode 100644 index 0000000..2cf99ec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_eye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_film_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_film_01.jpg new file mode 100644 index 0000000..799c8c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_film_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_firedancer_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_firedancer_01.jpg new file mode 100644 index 0000000..8766e8c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_firedancer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_01.jpg new file mode 100644 index 0000000..89602f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_02.jpg new file mode 100644 index 0000000..de703c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_03.jpg new file mode 100644 index 0000000..3f3ab5b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_04.jpg new file mode 100644 index 0000000..00ece34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_05.jpg new file mode 100644 index 0000000..e83174a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_06.jpg new file mode 100644 index 0000000..2a6a9d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_07.jpg new file mode 100644 index 0000000..19bc672 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_08.jpg new file mode 100644 index 0000000..a68335c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_09.jpg new file mode 100644 index 0000000..f35d0f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_10.jpg new file mode 100644 index 0000000..b417f7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_11.jpg new file mode 100644 index 0000000..d94876b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_12.jpg new file mode 100644 index 0000000..fc542bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_13.jpg new file mode 100644 index 0000000..2edc3da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_14.jpg new file mode 100644 index 0000000..5cd87d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_15.jpg new file mode 100644 index 0000000..ec313fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_16.jpg new file mode 100644 index 0000000..825fadc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_17.jpg new file mode 100644 index 0000000..8896caa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_18.jpg new file mode 100644 index 0000000..78363a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_19.jpg new file mode 100644 index 0000000..b793d97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_20.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_20.jpg new file mode 100644 index 0000000..9468034 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_21.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_21.jpg new file mode 100644 index 0000000..0fa9ce0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_22.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_22.jpg new file mode 100644 index 0000000..bb0d056 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_23.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_23.jpg new file mode 100644 index 0000000..c7f33cf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_24.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_24.jpg new file mode 100644 index 0000000..a431f8b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_25.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_25.jpg new file mode 100644 index 0000000..6166660 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_26.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_26.jpg new file mode 100644 index 0000000..2d1d6d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_27.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_27.jpg new file mode 100644 index 0000000..df71ccb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_28.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_28.jpg new file mode 100644 index 0000000..724ca0e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_29.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_29.jpg new file mode 100644 index 0000000..4685098 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_30.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_30.jpg new file mode 100644 index 0000000..48d90e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_31.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_31.jpg new file mode 100644 index 0000000..fd8937c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_32.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_32.jpg new file mode 100644 index 0000000..c2c0928 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_33.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_33.jpg new file mode 100644 index 0000000..2362140 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_34.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_34.jpg new file mode 100644 index 0000000..1982803 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_35.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_35.jpg new file mode 100644 index 0000000..999cb7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_36.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_36.jpg new file mode 100644 index 0000000..af93a48 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_37.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_37.jpg new file mode 100644 index 0000000..afd8000 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_38.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_38.jpg new file mode 100644 index 0000000..8156b4f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_39.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_39.jpg new file mode 100644 index 0000000..fe0bcf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_40.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_40.jpg new file mode 100644 index 0000000..f01a9b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_41.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_41.jpg new file mode 100644 index 0000000..50b3654 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_42.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_42.jpg new file mode 100644 index 0000000..1b729cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_43.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_43.jpg new file mode 100644 index 0000000..a879ead Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_44.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_44.jpg new file mode 100644 index 0000000..7fd3a52 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_45.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_45.jpg new file mode 100644 index 0000000..5d7fa6b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_01.jpg new file mode 100644 index 0000000..b4fca62 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_02.jpg new file mode 100644 index 0000000..9b8f910 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_03.jpg new file mode 100644 index 0000000..6c36417 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fish_turtle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_flower_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_flower_01.jpg new file mode 100644 index 0000000..aede170 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_flower_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_flower_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_flower_02.jpg new file mode 100644 index 0000000..07d476e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_flower_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_flower_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_flower_03.jpg new file mode 100644 index 0000000..0637e6b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_flower_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_flower_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_flower_04.jpg new file mode 100644 index 0000000..73fcc09 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_flower_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_flute_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_flute_01.jpg new file mode 100644 index 0000000..83d2ddb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_flute_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_01.jpg new file mode 100644 index 0000000..dbfdc74 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_02.jpg new file mode 100644 index 0000000..8bdfc94 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_03.jpg new file mode 100644 index 0000000..34b9d10 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_04.jpg new file mode 100644 index 0000000..fbe0bdd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_05.jpg new file mode 100644 index 0000000..831bf77 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_06.jpg new file mode 100644 index 0000000..4526b23 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_07.jpg new file mode 100644 index 0000000..7ab480b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_08.jpg new file mode 100644 index 0000000..3732e1d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_09.jpg new file mode 100644 index 0000000..11cfbbf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_10.jpg new file mode 100644 index 0000000..6427b10 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_100.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_100.jpg new file mode 100644 index 0000000..ecb60a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_100.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_11.jpg new file mode 100644 index 0000000..4c8513d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_12.jpg new file mode 100644 index 0000000..0ccc86d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_13.jpg new file mode 100644 index 0000000..f27659c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_14.jpg new file mode 100644 index 0000000..538805d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_15.jpg new file mode 100644 index 0000000..95dba0b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_16.jpg new file mode 100644 index 0000000..f041e90 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_17.jpg new file mode 100644 index 0000000..287839a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_18.jpg new file mode 100644 index 0000000..0bd99ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_19.jpg new file mode 100644 index 0000000..6b8081f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_20.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_20.jpg new file mode 100644 index 0000000..b21737b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_21.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_21.jpg new file mode 100644 index 0000000..5e78dfd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_22.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_22.jpg new file mode 100644 index 0000000..7c11fe8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_23.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_23.jpg new file mode 100644 index 0000000..0216d15 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_24.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_24.jpg new file mode 100644 index 0000000..fd26620 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_25.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_25.jpg new file mode 100644 index 0000000..6316495 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_26.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_26.jpg new file mode 100644 index 0000000..6b1ab21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_27.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_27.jpg new file mode 100644 index 0000000..f464398 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_28.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_28.jpg new file mode 100644 index 0000000..35a8243 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_29.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_29.jpg new file mode 100644 index 0000000..e30d2a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_30.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_30.jpg new file mode 100644 index 0000000..f94eda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_31.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_31.jpg new file mode 100644 index 0000000..14b6cbc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_32.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_32.jpg new file mode 100644 index 0000000..329e551 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_33.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_33.jpg new file mode 100644 index 0000000..2187463 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_34.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_34.jpg new file mode 100644 index 0000000..b544b41 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_35.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_35.jpg new file mode 100644 index 0000000..15106b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_36.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_36.jpg new file mode 100644 index 0000000..9e1c0bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_37.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_37.jpg new file mode 100644 index 0000000..e1d45d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_38.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_38.jpg new file mode 100644 index 0000000..30e6d9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_39.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_39.jpg new file mode 100644 index 0000000..2a70c0c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_40.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_40.jpg new file mode 100644 index 0000000..c378f49 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_41.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_41.jpg new file mode 100644 index 0000000..2b6f808 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_42.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_42.jpg new file mode 100644 index 0000000..40eea27 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_43.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_43.jpg new file mode 100644 index 0000000..d99672b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_44.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_44.jpg new file mode 100644 index 0000000..bc1c0fa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_45.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_45.jpg new file mode 100644 index 0000000..1b7ec1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_46.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_46.jpg new file mode 100644 index 0000000..993bdc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_47.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_47.jpg new file mode 100644 index 0000000..d5527a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_48.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_48.jpg new file mode 100644 index 0000000..8f5b6e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_49.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_49.jpg new file mode 100644 index 0000000..7bc685c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_50.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_50.jpg new file mode 100644 index 0000000..f0fb07e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_51.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_51.jpg new file mode 100644 index 0000000..af1ebf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_52.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_52.jpg new file mode 100644 index 0000000..05b7a43 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_53.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_53.jpg new file mode 100644 index 0000000..3a5a807 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_54.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_54.jpg new file mode 100644 index 0000000..5799f02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_55.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_55.jpg new file mode 100644 index 0000000..3887014 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_56.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_56.jpg new file mode 100644 index 0000000..1323d72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_57.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_57.jpg new file mode 100644 index 0000000..1d6a276 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_58.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_58.jpg new file mode 100644 index 0000000..a0da06e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_59.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_59.jpg new file mode 100644 index 0000000..74613f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_60.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_60.jpg new file mode 100644 index 0000000..d8039dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_61.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_61.jpg new file mode 100644 index 0000000..6d4bbb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_62.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_62.jpg new file mode 100644 index 0000000..ce8b22d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_63.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_63.jpg new file mode 100644 index 0000000..3e74d7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_64.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_64.jpg new file mode 100644 index 0000000..b497e63 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_65.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_65.jpg new file mode 100644 index 0000000..6424d02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_66.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_66.jpg new file mode 100644 index 0000000..b063b6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_67.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_67.jpg new file mode 100644 index 0000000..c174b5f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_68.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_68.jpg new file mode 100644 index 0000000..e22606f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_69.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_69.jpg new file mode 100644 index 0000000..ceb42b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_70.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_70.jpg new file mode 100644 index 0000000..f724af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_70.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_71.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_71.jpg new file mode 100644 index 0000000..90aa285 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_72.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_72.jpg new file mode 100644 index 0000000..af6d1a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_73cinnamonroll.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_73cinnamonroll.jpg new file mode 100644 index 0000000..2a8203c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_73cinnamonroll.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_74.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_74.jpg new file mode 100644 index 0000000..0bbedfc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_75.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_75.jpg new file mode 100644 index 0000000..47e074c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_75.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_76.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_76.jpg new file mode 100644 index 0000000..3c70f4d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_76.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_77.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_77.jpg new file mode 100644 index 0000000..d0d90c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_77.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_78.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_78.jpg new file mode 100644 index 0000000..179119c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_78.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_79.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_79.jpg new file mode 100644 index 0000000..d51ba3c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_79.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_80.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_80.jpg new file mode 100644 index 0000000..67ed14e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_80.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_81.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_81.jpg new file mode 100644 index 0000000..ef40a63 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_81.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_82.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_82.jpg new file mode 100644 index 0000000..4d57059 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_82.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_83_talbuksteak.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_83_talbuksteak.jpg new file mode 100644 index 0000000..834f4d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_83_talbuksteak.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_84_roastclefthoof.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_84_roastclefthoof.jpg new file mode 100644 index 0000000..a8f57ec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_84_roastclefthoof.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_85_stegadonbite.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_85_stegadonbite.jpg new file mode 100644 index 0000000..12eb918 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_85_stegadonbite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_86_basilisk.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_86_basilisk.jpg new file mode 100644 index 0000000..0cf34f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_86_basilisk.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_87_sporelingsnack.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_87_sporelingsnack.jpg new file mode 100644 index 0000000..95fe3d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_87_sporelingsnack.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_88_ravagernuggets.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_88_ravagernuggets.jpg new file mode 100644 index 0000000..9d5bd70 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_88_ravagernuggets.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_89.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_89.jpg new file mode 100644 index 0000000..dd4f582 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_89.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_90.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_90.jpg new file mode 100644 index 0000000..7519d41 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_90.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_91.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_91.jpg new file mode 100644 index 0000000..9d89f5e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_91.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_92_lobster.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_92_lobster.jpg new file mode 100644 index 0000000..8d8c943 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_92_lobster.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_93_skethylberries.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_93_skethylberries.jpg new file mode 100644 index 0000000..6cc492a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_93_skethylberries.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_94_garadarsharp.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_94_garadarsharp.jpg new file mode 100644 index 0000000..90bcc22 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_94_garadarsharp.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_95_grainbread.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_95_grainbread.jpg new file mode 100644 index 0000000..1f8fbfc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_95_grainbread.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_96_zangarcaps.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_96_zangarcaps.jpg new file mode 100644 index 0000000..6f526e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_96_zangarcaps.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_97_sunspringcarp.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_97_sunspringcarp.jpg new file mode 100644 index 0000000..a889693 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_97_sunspringcarp.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_98_talbuk.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_98_talbuk.jpg new file mode 100644 index 0000000..c5f35cf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_98_talbuk.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_99.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_99.jpg new file mode 100644 index 0000000..90884e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_99.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_dimsum.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_dimsum.jpg new file mode 100644 index 0000000..2d06869 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_dimsum.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_wheat_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_wheat_01.jpg new file mode 100644 index 0000000..3a2d6e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_wheat_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_food_wheat_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_food_wheat_02.jpg new file mode 100644 index 0000000..e9668f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_food_wheat_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_foot_centaur.jpg b/other/AoWoW-master/images/icons/large/inv_misc_foot_centaur.jpg new file mode 100644 index 0000000..45088a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_foot_centaur.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_foot_kodo.jpg b/other/AoWoW-master/images/icons/large/inv_misc_foot_kodo.jpg new file mode 100644 index 0000000..14825a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_foot_kodo.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_fork&knife.jpg b/other/AoWoW-master/images/icons/large/inv_misc_fork&knife.jpg new file mode 100644 index 0000000..0ce8d02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_fork&knife.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_01.jpg new file mode 100644 index 0000000..4ed80cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_02.jpg new file mode 100644 index 0000000..38203c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_03.jpg new file mode 100644 index 0000000..ff6c850 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_04.jpg new file mode 100644 index 0000000..1ef2aba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_05.jpg new file mode 100644 index 0000000..e9f6998 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_06.jpg new file mode 100644 index 0000000..3310368 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_07.jpg new file mode 100644 index 0000000..cb38041 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gear_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gear_08.jpg new file mode 100644 index 0000000..bd6d7f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_01.jpg new file mode 100644 index 0000000..ee31833 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_02.jpg new file mode 100644 index 0000000..861ed49 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_03.jpg new file mode 100644 index 0000000..f9286bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_01.jpg new file mode 100644 index 0000000..fbcf2ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_02.jpg new file mode 100644 index 0000000..b93b452 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_03.jpg new file mode 100644 index 0000000..6ed99c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethyst_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_amethystrough_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethystrough_01.jpg new file mode 100644 index 0000000..25cba32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_amethystrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_01.jpg new file mode 100644 index 0000000..4df15af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_02.jpg new file mode 100644 index 0000000..3e10d8c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_03.jpg new file mode 100644 index 0000000..a1b5ba6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_azuredraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_01.jpg new file mode 100644 index 0000000..20f3c94 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_02.jpg new file mode 100644 index 0000000..edec322 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_03.jpg new file mode 100644 index 0000000..2a9a96b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodgem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_01.jpg new file mode 100644 index 0000000..16780fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_02.jpg new file mode 100644 index 0000000..aa16f13 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_03.jpg new file mode 100644 index 0000000..fe59533 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_bloodstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_01.jpg new file mode 100644 index 0000000..30556e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_02.jpg new file mode 100644 index 0000000..68a571d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_03.jpg new file mode 100644 index 0000000..58bbcf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_crystalcut_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystalcut_01.jpg new file mode 100644 index 0000000..ea2821d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_crystalcut_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_01.jpg new file mode 100644 index 0000000..5c89168 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_02.jpg new file mode 100644 index 0000000..501aa9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_03.jpg new file mode 100644 index 0000000..39874e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_deepperidot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_01.jpg new file mode 100644 index 0000000..d45112c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_02.jpg new file mode 100644 index 0000000..770c8de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_03.jpg new file mode 100644 index 0000000..a2ec1b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_04.jpg new file mode 100644 index 0000000..dd94fbe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_05.jpg new file mode 100644 index 0000000..260c32f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_06.jpg new file mode 100644 index 0000000..d357968 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_07.jpg new file mode 100644 index 0000000..1baa6b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_diamond_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_01.jpg new file mode 100644 index 0000000..25cba32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_02.jpg new file mode 100644 index 0000000..8560c39 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_03.jpg new file mode 100644 index 0000000..9ec1630 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_ebondraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_01.jpg new file mode 100644 index 0000000..8bc2145 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_02.jpg new file mode 100644 index 0000000..c231575 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_03.jpg new file mode 100644 index 0000000..34c646a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_emerald_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_emeraldrough_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_emeraldrough_01.jpg new file mode 100644 index 0000000..da82b73 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_emeraldrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_emeraldrough_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_emeraldrough_02.jpg new file mode 100644 index 0000000..df29c3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_emeraldrough_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_01.jpg new file mode 100644 index 0000000..0889c45 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_02.jpg new file mode 100644 index 0000000..a5670b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_03.jpg new file mode 100644 index 0000000..0dc0e82 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_flamespessarite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_01.jpg new file mode 100644 index 0000000..b160bc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_02.jpg new file mode 100644 index 0000000..312e3dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_03.jpg new file mode 100644 index 0000000..92589a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_goldendraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_lionseye_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_lionseye_01.jpg new file mode 100644 index 0000000..27c29e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_01.jpg new file mode 100644 index 0000000..f139ea3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_02.jpg new file mode 100644 index 0000000..789533c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_03.jpg new file mode 100644 index 0000000..cdb277e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_opal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_opalrough_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_opalrough_01.jpg new file mode 100644 index 0000000..abe200f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_opalrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_01.jpg new file mode 100644 index 0000000..7ce8668 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_02.jpg new file mode 100644 index 0000000..b6813db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_03.jpg new file mode 100644 index 0000000..fb93b8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_04.jpg new file mode 100644 index 0000000..fe3848b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_05.jpg new file mode 100644 index 0000000..4707b72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_06.jpg new file mode 100644 index 0000000..c17b118 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_07.jpg new file mode 100644 index 0000000..fd21ade Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_08.jpg new file mode 100644 index 0000000..e591d98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_pearl_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_01.jpg new file mode 100644 index 0000000..b2c1b80 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_02.jpg new file mode 100644 index 0000000..5fc2648 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_03.jpg new file mode 100644 index 0000000..34160c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_ruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_01.jpg new file mode 100644 index 0000000..e77201e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_02.jpg new file mode 100644 index 0000000..74147b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_03.jpg new file mode 100644 index 0000000..9242319 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_sapphire_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_stone_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_stone_01.jpg new file mode 100644 index 0000000..59b381b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_01.jpg new file mode 100644 index 0000000..0de41f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_02.jpg new file mode 100644 index 0000000..22eb836 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_03.jpg new file mode 100644 index 0000000..f06bdd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_topaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_variety_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_variety_01.jpg new file mode 100644 index 0000000..702cf6e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_variety_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gem_variety_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gem_variety_02.jpg new file mode 100644 index 0000000..fb2ac16 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gem_variety_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gift_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gift_01.jpg new file mode 100644 index 0000000..648e944 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gift_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gift_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gift_02.jpg new file mode 100644 index 0000000..2378f96 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gift_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gift_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gift_03.jpg new file mode 100644 index 0000000..0c8acbc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gift_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gift_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gift_04.jpg new file mode 100644 index 0000000..dce301a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gift_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_gift_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_gift_05.jpg new file mode 100644 index 0000000..13dd4a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_gift_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_01.jpg new file mode 100644 index 0000000..068af24 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_02.jpg new file mode 100644 index 0000000..ef744ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_03.jpg new file mode 100644 index 0000000..71e35fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_giftwrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_grouplooking.jpg b/other/AoWoW-master/images/icons/large/inv_misc_grouplooking.jpg new file mode 100644 index 0000000..52814cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_grouplooking.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_groupneedmore.jpg b/other/AoWoW-master/images/icons/large/inv_misc_groupneedmore.jpg new file mode 100644 index 0000000..cf53338 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_groupneedmore.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_02.jpg new file mode 100644 index 0000000..f31389f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_centaur_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_centaur_01.jpg new file mode 100644 index 0000000..a7bc648 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_centaur_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_01.jpg new file mode 100644 index 0000000..89c0e46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_black.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_black.jpg new file mode 100644 index 0000000..a39597c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_black.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_blue.jpg new file mode 100644 index 0000000..ecf99bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_bronze.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_bronze.jpg new file mode 100644 index 0000000..45fedce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_green.jpg new file mode 100644 index 0000000..cf118df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_red.jpg new file mode 100644 index 0000000..7d95888 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dragon_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dwarf_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dwarf_01.jpg new file mode 100644 index 0000000..5205d98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dwarf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_dwarf_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_dwarf_02.jpg new file mode 100644 index 0000000..ac45dae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_dwarf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_elf_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_elf_01.jpg new file mode 100644 index 0000000..882527f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_elf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_elf_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_elf_02.jpg new file mode 100644 index 0000000..ea71328 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_elf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_gnoll_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_gnoll_01.jpg new file mode 100644 index 0000000..b0e3989 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_gnoll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_gnome_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_gnome_01.jpg new file mode 100644 index 0000000..37493c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_gnome_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_gnome_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_gnome_02.jpg new file mode 100644 index 0000000..91dbfc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_gnome_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_human_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_human_01.jpg new file mode 100644 index 0000000..7fa0dd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_human_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_human_02.jpg new file mode 100644 index 0000000..a4a12c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_kobold_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_kobold_01.jpg new file mode 100644 index 0000000..a0cc4cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_kobold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_murloc_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_murloc_01.jpg new file mode 100644 index 0000000..0454a4b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_murloc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_orc_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_orc_01.jpg new file mode 100644 index 0000000..dd57da0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_orc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_orc_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_orc_02.jpg new file mode 100644 index 0000000..bca2f8a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_orc_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_quillboar_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_quillboar_01.jpg new file mode 100644 index 0000000..fc26ff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_quillboar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_scourge_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_scourge_01.jpg new file mode 100644 index 0000000..d2235e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_scourge_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_tauren_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_tauren_01.jpg new file mode 100644 index 0000000..86dc0e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_tauren_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_tauren_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_tauren_02.jpg new file mode 100644 index 0000000..1313910 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_tauren_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_tiger_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_tiger_01.jpg new file mode 100644 index 0000000..67c944e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_tiger_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_troll_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_troll_01.jpg new file mode 100644 index 0000000..5e599f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_troll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_troll_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_troll_02.jpg new file mode 100644 index 0000000..2f1638c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_troll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_undead_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_undead_01.jpg new file mode 100644 index 0000000..5fd5f4b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_undead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_head_undead_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_head_undead_02.jpg new file mode 100644 index 0000000..20b9b2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_head_undead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_01.jpg new file mode 100644 index 0000000..622dd21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_02.jpg new file mode 100644 index 0000000..c67ecd2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_03.jpg new file mode 100644 index 0000000..cc5c352 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_04.jpg new file mode 100644 index 0000000..11f3517 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_05.jpg new file mode 100644 index 0000000..c48d6d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_06.jpg new file mode 100644 index 0000000..8c5b6e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_07.jpg new file mode 100644 index 0000000..380730a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_08.jpg new file mode 100644 index 0000000..535f78e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_09.jpg new file mode 100644 index 0000000..6e718c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_10.jpg new file mode 100644 index 0000000..d388b19 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_11.jpg new file mode 100644 index 0000000..0b838ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_11a.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_11a.jpg new file mode 100644 index 0000000..6c705bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_11a.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_12.jpg new file mode 100644 index 0000000..38f1c34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_13.jpg new file mode 100644 index 0000000..d15dce9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_14.jpg new file mode 100644 index 0000000..86df465 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_15.jpg new file mode 100644 index 0000000..4d00ba4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_16.jpg new file mode 100644 index 0000000..10fa9c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_17.jpg new file mode 100644 index 0000000..3dceed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_18.jpg new file mode 100644 index 0000000..31c381d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_19.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_19.jpg new file mode 100644 index 0000000..3afd0ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_ancientlichen.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_ancientlichen.jpg new file mode 100644 index 0000000..5641194 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_ancientlichen.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_blacklotus.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_blacklotus.jpg new file mode 100644 index 0000000..4518aef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_blacklotus.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_dreamfoil.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_dreamfoil.jpg new file mode 100644 index 0000000..d675e20 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_dreamfoil.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_dreamingglory.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_dreamingglory.jpg new file mode 100644 index 0000000..9ab33ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_dreamingglory.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_felblossom.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_felblossom.jpg new file mode 100644 index 0000000..57cc1f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_felblossom.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_fellotus.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_fellotus.jpg new file mode 100644 index 0000000..3d3ceda Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_fellotus.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_felweed.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_felweed.jpg new file mode 100644 index 0000000..c464451 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_felweed.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_flamecap.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_flamecap.jpg new file mode 100644 index 0000000..0847247 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_flamecap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_icecap.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_icecap.jpg new file mode 100644 index 0000000..8362a44 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_icecap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_manathistle.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_manathistle.jpg new file mode 100644 index 0000000..8e52c3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_manathistle.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_mountainsilversage.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_mountainsilversage.jpg new file mode 100644 index 0000000..8c65aab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_mountainsilversage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_netherbloom.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_netherbloom.jpg new file mode 100644 index 0000000..61cb024 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_netherbloom.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_nightmareseed.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_nightmareseed.jpg new file mode 100644 index 0000000..fa3c344 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_nightmareseed.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_nightmarevine.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_nightmarevine.jpg new file mode 100644 index 0000000..9cb5f48 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_nightmarevine.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_plaguebloom.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_plaguebloom.jpg new file mode 100644 index 0000000..7807075 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_plaguebloom.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_ragveil.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_ragveil.jpg new file mode 100644 index 0000000..aa9f7be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_ragveil.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_sansamroot.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_sansamroot.jpg new file mode 100644 index 0000000..3f17fa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_sansamroot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_herb_terrocone.jpg b/other/AoWoW-master/images/icons/large/inv_misc_herb_terrocone.jpg new file mode 100644 index 0000000..3a84a11 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_herb_terrocone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_hook_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_hook_01.jpg new file mode 100644 index 0000000..1cf63a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_hook_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_horn_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_horn_01.jpg new file mode 100644 index 0000000..c4ddf40 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_horn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_horn_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_horn_02.jpg new file mode 100644 index 0000000..ec3785d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_horn_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_horn_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_horn_03.jpg new file mode 100644 index 0000000..75db2f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_horn_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_idol_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_idol_01.jpg new file mode 100644 index 0000000..0a552f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_idol_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_idol_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_idol_02.jpg new file mode 100644 index 0000000..bc125c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_idol_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_idol_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_idol_03.jpg new file mode 100644 index 0000000..f924697 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_idol_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_idol_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_idol_04.jpg new file mode 100644 index 0000000..170240f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_idol_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_idol_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_idol_05.jpg new file mode 100644 index 0000000..edaf18a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_idol_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_01.jpg new file mode 100644 index 0000000..7c2f218 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_02.jpg new file mode 100644 index 0000000..9ca404d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_03.jpg new file mode 100644 index 0000000..f251401 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_04.jpg new file mode 100644 index 0000000..e97af96 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_05.jpg new file mode 100644 index 0000000..67cd265 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_06.jpg new file mode 100644 index 0000000..4b0c63b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_07.jpg new file mode 100644 index 0000000..a41e4ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_08.jpg new file mode 100644 index 0000000..d179be3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_09.jpg new file mode 100644 index 0000000..1a75af4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_10.jpg new file mode 100644 index 0000000..79dbb8f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_11.jpg new file mode 100644 index 0000000..3ae262f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_12.jpg new file mode 100644 index 0000000..4e085e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_13.jpg new file mode 100644 index 0000000..b434840 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_key_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_key_14.jpg new file mode 100644 index 0000000..3e8a980 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_key_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_lantern_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_lantern_01.jpg new file mode 100644 index 0000000..416689a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_lantern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_01.jpg new file mode 100644 index 0000000..81ce3a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_02.jpg new file mode 100644 index 0000000..8d7a2fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_03.jpg new file mode 100644 index 0000000..392699e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_04.jpg new file mode 100644 index 0000000..a25450c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_05.jpg new file mode 100644 index 0000000..e1d5c19 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_06.jpg new file mode 100644 index 0000000..73fbaea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_07.jpg new file mode 100644 index 0000000..c00420d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_08.jpg new file mode 100644 index 0000000..683e088 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_09.jpg new file mode 100644 index 0000000..b2615bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_10.jpg new file mode 100644 index 0000000..48b38b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_11.jpg new file mode 100644 index 0000000..a413b47 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_12.jpg new file mode 100644 index 0000000..7b097a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_13.jpg new file mode 100644 index 0000000..4f3d609 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_14.jpg new file mode 100644 index 0000000..8a5f578 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_leatherscrap_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_luckymoneyenvelope.jpg b/other/AoWoW-master/images/icons/large/inv_misc_luckymoneyenvelope.jpg new file mode 100644 index 0000000..9429387 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_luckymoneyenvelope.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_map_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_map_01.jpg new file mode 100644 index 0000000..1b10d0a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_map_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_blue.jpg new file mode 100644 index 0000000..0068951 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_green.jpg new file mode 100644 index 0000000..f5d0805 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_purple.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_purple.jpg new file mode 100644 index 0000000..737f796 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_red.jpg new file mode 100644 index 0000000..65b9a2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_white.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_white.jpg new file mode 100644 index 0000000..09fcf5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_white.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_yellow.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_yellow.jpg new file mode 100644 index 0000000..94bc0d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelarge_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_blue.jpg new file mode 100644 index 0000000..15c2ab4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_green.jpg new file mode 100644 index 0000000..d10097f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_purple.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_purple.jpg new file mode 100644 index 0000000..3eb2f1f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_red.jpg new file mode 100644 index 0000000..b3417d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_white.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_white.jpg new file mode 100644 index 0000000..72c1633 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_yellow.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_yellow.jpg new file mode 100644 index 0000000..3e9080d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilelargecluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_blue.jpg new file mode 100644 index 0000000..7ed5c81 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_green.jpg new file mode 100644 index 0000000..49e59ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_purple.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_purple.jpg new file mode 100644 index 0000000..b42ad68 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_red.jpg new file mode 100644 index 0000000..dcf16c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_white.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_white.jpg new file mode 100644 index 0000000..9709ce9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_white.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_yellow.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_yellow.jpg new file mode 100644 index 0000000..8177a14 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmall_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_blue.jpg new file mode 100644 index 0000000..41f51d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_green.jpg new file mode 100644 index 0000000..466950b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_purple.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_purple.jpg new file mode 100644 index 0000000..c975d24 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_red.jpg new file mode 100644 index 0000000..f8bb433 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_white.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_white.jpg new file mode 100644 index 0000000..fc205e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_yellow.jpg b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_yellow.jpg new file mode 100644 index 0000000..49d6f59 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_missilesmallcluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_01.jpg new file mode 100644 index 0000000..b386b0c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_02.jpg new file mode 100644 index 0000000..24184db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_03.jpg new file mode 100644 index 0000000..6e1411d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_04.jpg new file mode 100644 index 0000000..de140d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterclaw_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterfang_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterfang_01.jpg new file mode 100644 index 0000000..f8af3dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterfang_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_01.jpg new file mode 100644 index 0000000..56d4abc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_02.jpg new file mode 100644 index 0000000..62692c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_03.jpg new file mode 100644 index 0000000..5b022d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_04.jpg new file mode 100644 index 0000000..3669af4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterhead_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_01.jpg new file mode 100644 index 0000000..95f64a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_02.jpg new file mode 100644 index 0000000..8aeb71a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_03.jpg new file mode 100644 index 0000000..e172dcc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_04.jpg new file mode 100644 index 0000000..3dfd171 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_05.jpg new file mode 100644 index 0000000..8be9c92 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_06.jpg new file mode 100644 index 0000000..77ca36a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_07.jpg new file mode 100644 index 0000000..2394308 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_08.jpg new file mode 100644 index 0000000..9954e5d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_09.jpg new file mode 100644 index 0000000..b8e5567 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_10.jpg new file mode 100644 index 0000000..72eafff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_11.jpg new file mode 100644 index 0000000..b1f9fff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_12.jpg new file mode 100644 index 0000000..c0a4609 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_13.jpg new file mode 100644 index 0000000..8041e9a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_14.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_14.jpg new file mode 100644 index 0000000..72bbc36 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_15.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_15.jpg new file mode 100644 index 0000000..c3f1665 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_16.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_16.jpg new file mode 100644 index 0000000..63e4a9c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_17.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_17.jpg new file mode 100644 index 0000000..745b9ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_18.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_18.jpg new file mode 100644 index 0000000..9480379 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterscales_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monsterspidercarapace_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monsterspidercarapace_01.jpg new file mode 100644 index 0000000..5bbc505 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monsterspidercarapace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monstertail_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monstertail_01.jpg new file mode 100644 index 0000000..0c2554c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monstertail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monstertail_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monstertail_02.jpg new file mode 100644 index 0000000..5dce3d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monstertail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_monstertail_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_monstertail_03.jpg new file mode 100644 index 0000000..d086af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_monstertail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_net_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_net_01.jpg new file mode 100644 index 0000000..f36ffde Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_net_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_noose_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_noose_01.jpg new file mode 100644 index 0000000..da6354b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_noose_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_note_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_note_01.jpg new file mode 100644 index 0000000..b4a0e2a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_note_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_note_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_note_02.jpg new file mode 100644 index 0000000..d0d081a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_note_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_note_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_note_03.jpg new file mode 100644 index 0000000..eee3a32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_note_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_note_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_note_04.jpg new file mode 100644 index 0000000..1409fbc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_note_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_note_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_note_05.jpg new file mode 100644 index 0000000..39eb295 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_note_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_note_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_note_06.jpg new file mode 100644 index 0000000..d6a9dd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_note_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_orb_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_orb_01.jpg new file mode 100644 index 0000000..bc2cdd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_orb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_orb_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_orb_02.jpg new file mode 100644 index 0000000..42d28b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_orb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_orb_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_orb_03.jpg new file mode 100644 index 0000000..e9511df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_orb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_orb_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_orb_04.jpg new file mode 100644 index 0000000..e7aee7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_orb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_orb_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_orb_05.jpg new file mode 100644 index 0000000..189e270 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_orb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_organ_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_organ_01.jpg new file mode 100644 index 0000000..e71205c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_organ_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_organ_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_organ_02.jpg new file mode 100644 index 0000000..6908539 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_organ_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_organ_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_organ_03.jpg new file mode 100644 index 0000000..6aec058 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_organ_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_organ_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_organ_04.jpg new file mode 100644 index 0000000..1d21675 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_organ_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_organ_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_organ_05.jpg new file mode 100644 index 0000000..956b42e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_organ_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_organ_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_organ_06.jpg new file mode 100644 index 0000000..68fed4f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_organ_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ornatebox.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ornatebox.jpg new file mode 100644 index 0000000..255b2aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ornatebox.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_01.jpg new file mode 100644 index 0000000..fda56f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_02.jpg new file mode 100644 index 0000000..fd2fa69 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_03.jpg new file mode 100644 index 0000000..6144c05 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_04.jpg new file mode 100644 index 0000000..df4dd34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_05.jpg new file mode 100644 index 0000000..e7486c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_06.jpg new file mode 100644 index 0000000..02bb613 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_01.jpg new file mode 100644 index 0000000..e7aa17e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_02.jpg new file mode 100644 index 0000000..7abf3ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_03.jpg new file mode 100644 index 0000000..761fa26 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_01.jpg new file mode 100644 index 0000000..99d8baf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_02.jpg new file mode 100644 index 0000000..68d51b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_03.jpg new file mode 100644 index 0000000..b5b6160 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_04.jpg new file mode 100644 index 0000000..49efddd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_05.jpg new file mode 100644 index 0000000..f9f6eb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_bear_ruin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_01.jpg new file mode 100644 index 0000000..d6115e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_02.jpg new file mode 100644 index 0000000..7f102aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_01.jpg new file mode 100644 index 0000000..536cfb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_02.jpg new file mode 100644 index 0000000..8f4468f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_03.jpg new file mode 100644 index 0000000..5c84491 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_boar_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_01.jpg new file mode 100644 index 0000000..1ba4c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_02.jpg new file mode 100644 index 0000000..e5a1a10 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_01.jpg new file mode 100644 index 0000000..62b9fc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_02.jpg new file mode 100644 index 0000000..6293c01 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_03.jpg new file mode 100644 index 0000000..a047912 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_04.jpg new file mode 100644 index 0000000..dbd04b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pelt_wolf_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_petbiscuit_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_petbiscuit_01.jpg new file mode 100644 index 0000000..1fad7f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_petbiscuit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pheonixpet_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pheonixpet_01.jpg new file mode 100644 index 0000000..5bba759 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pheonixpet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pipe_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pipe_01.jpg new file mode 100644 index 0000000..3fa2d82 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_platnumdisks.jpg b/other/AoWoW-master/images/icons/large/inv_misc_platnumdisks.jpg new file mode 100644 index 0000000..9284826 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_platnumdisks.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_01.jpg new file mode 100644 index 0000000..cec6505 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_02.jpg new file mode 100644 index 0000000..7c739e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_03.jpg new file mode 100644 index 0000000..83b00c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_pocketwatch_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_adamantite.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_adamantite.jpg new file mode 100644 index 0000000..5bab62b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_black.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_black.jpg new file mode 100644 index 0000000..1c51e1c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_black.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_blue.jpg new file mode 100644 index 0000000..bfe133b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_copper.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_copper.jpg new file mode 100644 index 0000000..477d874 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_copper.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_feliron.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_feliron.jpg new file mode 100644 index 0000000..a0947b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_green.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_green.jpg new file mode 100644 index 0000000..c5af8cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_green.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_iron.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_iron.jpg new file mode 100644 index 0000000..5f284fa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_mithril.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_mithril.jpg new file mode 100644 index 0000000..d164736 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_purple.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_purple.jpg new file mode 100644 index 0000000..ab7b9ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_thorium.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_thorium.jpg new file mode 100644 index 0000000..ef6d82e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_powder_tin.jpg b/other/AoWoW-master/images/icons/large/inv_misc_powder_tin.jpg new file mode 100644 index 0000000..ba67330 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_powder_tin.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_punchcards_blue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_blue.jpg new file mode 100644 index 0000000..cf13dad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_punchcards_prismatic.jpg b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_prismatic.jpg new file mode 100644 index 0000000..d9f1c90 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_prismatic.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_punchcards_red.jpg b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_red.jpg new file mode 100644 index 0000000..802f57e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_red.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_punchcards_white.jpg b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_white.jpg new file mode 100644 index 0000000..9782ac7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_white.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_punchcards_yellow.jpg b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_yellow.jpg new file mode 100644 index 0000000..83e8635 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_punchcards_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_01.jpg new file mode 100644 index 0000000..811f6b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_02.jpg new file mode 100644 index 0000000..01acbd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_03.jpg new file mode 100644 index 0000000..4c8e12f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_04.jpg new file mode 100644 index 0000000..98bb409 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_05.jpg new file mode 100644 index 0000000..cb6d2b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_qirajicrystal_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_questionmark.jpg b/other/AoWoW-master/images/icons/large/inv_misc_questionmark.jpg new file mode 100644 index 0000000..a27e54f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_questionmark.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_01.jpg new file mode 100644 index 0000000..092d0ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_02.jpg new file mode 100644 index 0000000..05a9a6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_03.jpg new file mode 100644 index 0000000..e8d2703 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_04.jpg new file mode 100644 index 0000000..e4bd8d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_05.jpg new file mode 100644 index 0000000..9e61197 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_06.jpg new file mode 100644 index 0000000..fc96ca1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_07.jpg new file mode 100644 index 0000000..46baf75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_08.jpg new file mode 100644 index 0000000..f12246e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_09.jpg new file mode 100644 index 0000000..6c52f2c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_quiver_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_quiver_10.jpg new file mode 100644 index 0000000..7c3eda3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_quiver_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ribbon_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ribbon_01.jpg new file mode 100644 index 0000000..44d9c9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ribbon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_root_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_root_01.jpg new file mode 100644 index 0000000..39ed395 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_root_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_root_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_root_02.jpg new file mode 100644 index 0000000..607e6f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_root_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_01.jpg new file mode 100644 index 0000000..d6ee3fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_02.jpg new file mode 100644 index 0000000..cfaf54d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_03.jpg new file mode 100644 index 0000000..a1efba0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_04.jpg new file mode 100644 index 0000000..0dd8317 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_05.jpg new file mode 100644 index 0000000..edd7a4a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_06.jpg new file mode 100644 index 0000000..320f7d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_07.jpg new file mode 100644 index 0000000..daace1d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_08.jpg new file mode 100644 index 0000000..094832f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_09.jpg new file mode 100644 index 0000000..7d6a76a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_10.jpg new file mode 100644 index 0000000..e72ea5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_11.jpg new file mode 100644 index 0000000..98b5eb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_12.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_12.jpg new file mode 100644 index 0000000..5ff1edd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_rune_13.jpg b/other/AoWoW-master/images/icons/large/inv_misc_rune_13.jpg new file mode 100644 index 0000000..9cfd49b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_rune_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_screwdriver_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_screwdriver_01.jpg new file mode 100644 index 0000000..72ca9ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_screwdriver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_screwdriver_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_screwdriver_02.jpg new file mode 100644 index 0000000..650a4d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_screwdriver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_shadowegg.jpg b/other/AoWoW-master/images/icons/large/inv_misc_shadowegg.jpg new file mode 100644 index 0000000..5de3682 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_shadowegg.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_shell_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_shell_01.jpg new file mode 100644 index 0000000..67803d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_shell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_shell_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_shell_02.jpg new file mode 100644 index 0000000..c991830 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_shell_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_shell_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_shell_03.jpg new file mode 100644 index 0000000..6645423 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_shell_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_shell_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_shell_04.jpg new file mode 100644 index 0000000..1fe6517 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_shell_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_shovel_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_shovel_01.jpg new file mode 100644 index 0000000..4e30434 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_shovel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_shovel_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_shovel_02.jpg new file mode 100644 index 0000000..a70b426 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_shovel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_slime_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_slime_01.jpg new file mode 100644 index 0000000..83af90f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_slime_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_spineleaf_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_spineleaf_01.jpg new file mode 100644 index 0000000..a65c9e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_spineleaf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_spyglass_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_spyglass_01.jpg new file mode 100644 index 0000000..097cf98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_spyglass_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_spyglass_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_spyglass_02.jpg new file mode 100644 index 0000000..d7f91bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_spyglass_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_spyglass_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_spyglass_03.jpg new file mode 100644 index 0000000..b66b206 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_spyglass_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_01.jpg new file mode 100644 index 0000000..469c2c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_02.jpg new file mode 100644 index 0000000..4f8db1a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_03.jpg new file mode 100644 index 0000000..2064a08 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_04.jpg new file mode 100644 index 0000000..765a5f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_05.jpg new file mode 100644 index 0000000..25a2a92 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_06.jpg new file mode 100644 index 0000000..4e9b2f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_07.jpg new file mode 100644 index 0000000..752fa4b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_08.jpg new file mode 100644 index 0000000..db6f95b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_09.jpg new file mode 100644 index 0000000..cf8ad7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_statue_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_statue_10.jpg new file mode 100644 index 0000000..e7e17a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_statue_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_01.jpg new file mode 100644 index 0000000..8a1a07c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_02.jpg new file mode 100644 index 0000000..a78a5d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_03.jpg new file mode 100644 index 0000000..e161837 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_04.jpg new file mode 100644 index 0000000..a9150bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_05.jpg new file mode 100644 index 0000000..d9f0c77 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_06.jpg new file mode 100644 index 0000000..4a46f6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_07.jpg new file mode 100644 index 0000000..ac48437 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_08.jpg new file mode 100644 index 0000000..6f7b4de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_09.jpg new file mode 100644 index 0000000..dbe993a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_10.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_10.jpg new file mode 100644 index 0000000..108c294 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_11.jpg b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_11.jpg new file mode 100644 index 0000000..5041cbf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_stonetablet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierblue.jpg b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierblue.jpg new file mode 100644 index 0000000..f87182e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierblue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_summerfest_braziergreen.jpg b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_braziergreen.jpg new file mode 100644 index 0000000..dc3032b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_braziergreen.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierorange.jpg b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierorange.jpg new file mode 100644 index 0000000..9de27fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierorange.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierred.jpg b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierred.jpg new file mode 100644 index 0000000..3b8c131 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_summerfest_brazierred.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_surgeonglove_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_surgeonglove_01.jpg new file mode 100644 index 0000000..a73ef0a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_surgeonglove_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_symbolofkings_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_symbolofkings_01.jpg new file mode 100644 index 0000000..f953381 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_symbolofkings_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_01.jpg new file mode 100644 index 0000000..c9cd103 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_02.jpg new file mode 100644 index 0000000..4e2cb34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_03.jpg new file mode 100644 index 0000000..f9c906b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_04.jpg new file mode 100644 index 0000000..2b44d72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_tabardpvp_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_tabardsummer01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_tabardsummer01.jpg new file mode 100644 index 0000000..86be39b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_tabardsummer01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_tabardsummer02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_tabardsummer02.jpg new file mode 100644 index 0000000..4de0e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_tabardsummer02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_thegoldencheep.jpg b/other/AoWoW-master/images/icons/large/inv_misc_thegoldencheep.jpg new file mode 100644 index 0000000..c757b3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_thegoldencheep.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_thread_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_thread_01.jpg new file mode 100644 index 0000000..89783e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_thread_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_throwingball_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_throwingball_01.jpg new file mode 100644 index 0000000..cecc236 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_throwingball_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_darkmoon_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_darkmoon_01.jpg new file mode 100644 index 0000000..76ae000 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_darkmoon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_beasts_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_beasts_01.jpg new file mode 100644 index 0000000..e758803 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_beasts_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_blessings.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_blessings.jpg new file mode 100644 index 0000000..8fbe584 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_blessings.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_bluedragon_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_bluedragon_01.jpg new file mode 100644 index 0000000..def21f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_bluedragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_crusade.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_crusade.jpg new file mode 100644 index 0000000..152e4b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_elemental_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_elemental_01.jpg new file mode 100644 index 0000000..30f878f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_elemental_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_furies.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_furies.jpg new file mode 100644 index 0000000..9e22ee4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_furies.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_heroism_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_heroism_01.jpg new file mode 100644 index 0000000..bceaf2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_heroism_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_lunacy.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_lunacy.jpg new file mode 100644 index 0000000..7651e3b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_lunacy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_madness.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_madness.jpg new file mode 100644 index 0000000..4100fca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_madness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_maelstrom_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_maelstrom_01.jpg new file mode 100644 index 0000000..14af03d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_maelstrom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_portal_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_portal_01.jpg new file mode 100644 index 0000000..95052aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_portal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_stack_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_stack_01.jpg new file mode 100644 index 0000000..0f9f411 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_stack_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_storms.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_storms.jpg new file mode 100644 index 0000000..0b75134 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_storms.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_twistingnether_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_twistingnether_01.jpg new file mode 100644 index 0000000..d2318c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_twistingnether_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_vengeance.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_vengeance.jpg new file mode 100644 index 0000000..7fcb1db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_vengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_warlord_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_warlord_01.jpg new file mode 100644 index 0000000..6afcb11 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_warlord_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_wrath.jpg b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_wrath.jpg new file mode 100644 index 0000000..d233b8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_ticket_tarot_wrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn.jpg b/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn.jpg new file mode 100644 index 0000000..eb38205 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn2.jpg b/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn2.jpg new file mode 100644 index 0000000..7acfaf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn2.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn3.jpg b/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn3.jpg new file mode 100644 index 0000000..f47fc98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_token_argentdawn3.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_token_honorhold.jpg b/other/AoWoW-master/images/icons/large/inv_misc_token_honorhold.jpg new file mode 100644 index 0000000..53d222d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_token_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_token_scarletcrusade.jpg b/other/AoWoW-master/images/icons/large/inv_misc_token_scarletcrusade.jpg new file mode 100644 index 0000000..139492c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_token_scarletcrusade.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_token_thrallmar.jpg b/other/AoWoW-master/images/icons/large/inv_misc_token_thrallmar.jpg new file mode 100644 index 0000000..1a00695 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_token_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_01.jpg new file mode 100644 index 0000000..1a352bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_02.jpg new file mode 100644 index 0000000..88b9a46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_03.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_03.jpg new file mode 100644 index 0000000..7e1efd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_04.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_04.jpg new file mode 100644 index 0000000..29c9451 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_05.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_05.jpg new file mode 100644 index 0000000..e0396e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_06.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_06.jpg new file mode 100644 index 0000000..adcead7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_07.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_07.jpg new file mode 100644 index 0000000..758b6f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_08.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_08.jpg new file mode 100644 index 0000000..991dc49 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_toy_09.jpg b/other/AoWoW-master/images/icons/large/inv_misc_toy_09.jpg new file mode 100644 index 0000000..7830553 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_toy_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_urn_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_urn_01.jpg new file mode 100644 index 0000000..b742d34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_urn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_chain.jpg b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_chain.jpg new file mode 100644 index 0000000..6d82615 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_cloth.jpg b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_cloth.jpg new file mode 100644 index 0000000..fb6f897 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_cloth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_leather.jpg b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_leather.jpg new file mode 100644 index 0000000..5e3516e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_leather.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_plate.jpg b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_plate.jpg new file mode 100644 index 0000000..f52120a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_wartornscrap_plate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_weathermachine_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_weathermachine_01.jpg new file mode 100644 index 0000000..0e95320 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_weathermachine_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_wrench_01.jpg b/other/AoWoW-master/images/icons/large/inv_misc_wrench_01.jpg new file mode 100644 index 0000000..6c5ec87 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_wrench_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_misc_wrench_02.jpg b/other/AoWoW-master/images/icons/large/inv_misc_wrench_02.jpg new file mode 100644 index 0000000..7993a31 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_misc_wrench_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_01.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_01.jpg new file mode 100644 index 0000000..054806b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_02.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_02.jpg new file mode 100644 index 0000000..fc659e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_03.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_03.jpg new file mode 100644 index 0000000..8175b74 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_04.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_04.jpg new file mode 100644 index 0000000..1965d15 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_05.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_05.jpg new file mode 100644 index 0000000..ea0b9ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_06.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_06.jpg new file mode 100644 index 0000000..0704238 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_07.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_07.jpg new file mode 100644 index 0000000..3acec2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_08.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_08.jpg new file mode 100644 index 0000000..f58ca67 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_09.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_09.jpg new file mode 100644 index 0000000..c171bfa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_10.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_10.jpg new file mode 100644 index 0000000..5e822ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_11.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_11.jpg new file mode 100644 index 0000000..4e6c1af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_12.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_12.jpg new file mode 100644 index 0000000..d62dd3c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_mushroom_13.jpg b/other/AoWoW-master/images/icons/large/inv_mushroom_13.jpg new file mode 100644 index 0000000..30d8d71 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_mushroom_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_musket_01.jpg b/other/AoWoW-master/images/icons/large/inv_musket_01.jpg new file mode 100644 index 0000000..d01c1fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_musket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_musket_02.jpg b/other/AoWoW-master/images/icons/large/inv_musket_02.jpg new file mode 100644 index 0000000..4eb2d63 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_musket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_musket_03.jpg b/other/AoWoW-master/images/icons/large/inv_musket_03.jpg new file mode 100644 index 0000000..1f83d14 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_musket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_musket_04.jpg b/other/AoWoW-master/images/icons/large/inv_musket_04.jpg new file mode 100644 index 0000000..99ae461 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_musket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_netherwhelp.jpg b/other/AoWoW-master/images/icons/large/inv_netherwhelp.jpg new file mode 100644 index 0000000..696592e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_netherwhelp.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_blood_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_blood_01.jpg new file mode 100644 index 0000000..0ed88bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_blood_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_blood_02.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_blood_02.jpg new file mode 100644 index 0000000..77cc7d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_blood_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_draenei_a_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_draenei_a_01.jpg new file mode 100644 index 0000000..06aa926 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_draenei_a_02.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_draenei_a_02.jpg new file mode 100644 index 0000000..3b42cf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_hyjal_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_hyjal_d_01.jpg new file mode 100644 index 0000000..f2027d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_hyjal_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_02.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_02.jpg new file mode 100644 index 0000000..d87f28c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_03.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_03.jpg new file mode 100644 index 0000000..b00a31b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_04.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_04.jpg new file mode 100644 index 0000000..f7b7075 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_d_01.jpg new file mode 100644 index 0000000..cd367b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_01.jpg new file mode 100644 index 0000000..43965e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_02.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_02.jpg new file mode 100644 index 0000000..689c0d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03blue.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03blue.jpg new file mode 100644 index 0000000..311bffa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03blue.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03orange.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03orange.jpg new file mode 100644 index 0000000..3829bff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03orange.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03white.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03white.jpg new file mode 100644 index 0000000..7ec41db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_outlandraid_03white.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_stratholme_a_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_stratholme_a_01.jpg new file mode 100644 index 0000000..37e42d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_stratholme_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_stratholme_a_02.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_stratholme_a_02.jpg new file mode 100644 index 0000000..bd0d9ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_stratholme_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_sunwell_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_sunwell_d_01.jpg new file mode 100644 index 0000000..828d5d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_sunwell_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_sunwell_d_02.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_sunwell_d_02.jpg new file mode 100644 index 0000000..0c81757 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_sunwell_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_zulaman_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_zulaman_d_01.jpg new file mode 100644 index 0000000..81fecaf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_zulaman_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_offhand_zulaman_d_02.jpg b/other/AoWoW-master/images/icons/large/inv_offhand_zulaman_d_02.jpg new file mode 100644 index 0000000..51b1e75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_offhand_zulaman_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_adamantium.jpg b/other/AoWoW-master/images/icons/large/inv_ore_adamantium.jpg new file mode 100644 index 0000000..e8c49e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_adamantium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_adamantium_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_adamantium_01.jpg new file mode 100644 index 0000000..143975f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_adamantium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_arcanite_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_arcanite_01.jpg new file mode 100644 index 0000000..bc0361a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_arcanite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_arcanite_02.jpg b/other/AoWoW-master/images/icons/large/inv_ore_arcanite_02.jpg new file mode 100644 index 0000000..b5e7f1a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_arcanite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_copper_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_copper_01.jpg new file mode 100644 index 0000000..c07629c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_copper_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_eternium.jpg b/other/AoWoW-master/images/icons/large/inv_ore_eternium.jpg new file mode 100644 index 0000000..4010a7a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_ethernium_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_ethernium_01.jpg new file mode 100644 index 0000000..378f7fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_ethernium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_feliron.jpg b/other/AoWoW-master/images/icons/large/inv_ore_feliron.jpg new file mode 100644 index 0000000..7ceea30 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_feliron_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_feliron_01.jpg new file mode 100644 index 0000000..53a7cab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_feliron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_gold_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_gold_01.jpg new file mode 100644 index 0000000..1935cd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_gold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_iron_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_iron_01.jpg new file mode 100644 index 0000000..205dda1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_iron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_khorium.jpg b/other/AoWoW-master/images/icons/large/inv_ore_khorium.jpg new file mode 100644 index 0000000..38dc434 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_khorium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_khorium_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_khorium_01.jpg new file mode 100644 index 0000000..0ddb182 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_khorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_mithril_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_mithril_01.jpg new file mode 100644 index 0000000..ae407ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_mithril_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_mithril_02.jpg b/other/AoWoW-master/images/icons/large/inv_ore_mithril_02.jpg new file mode 100644 index 0000000..bbe7332 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_mithril_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_thorium_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_thorium_01.jpg new file mode 100644 index 0000000..bd439d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_thorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_thorium_02.jpg b/other/AoWoW-master/images/icons/large/inv_ore_thorium_02.jpg new file mode 100644 index 0000000..9f83e97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_thorium_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_tin_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_tin_01.jpg new file mode 100644 index 0000000..4cb6f37 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_tin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_ore_truesilver_01.jpg b/other/AoWoW-master/images/icons/large/inv_ore_truesilver_01.jpg new file mode 100644 index 0000000..be620be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_ore_truesilver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_01.jpg b/other/AoWoW-master/images/icons/large/inv_pants_01.jpg new file mode 100644 index 0000000..b6a08f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_02.jpg b/other/AoWoW-master/images/icons/large/inv_pants_02.jpg new file mode 100644 index 0000000..10e7d40 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_03.jpg b/other/AoWoW-master/images/icons/large/inv_pants_03.jpg new file mode 100644 index 0000000..80ba53a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_04.jpg b/other/AoWoW-master/images/icons/large/inv_pants_04.jpg new file mode 100644 index 0000000..4065d98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_05.jpg b/other/AoWoW-master/images/icons/large/inv_pants_05.jpg new file mode 100644 index 0000000..c53ce11 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_06.jpg b/other/AoWoW-master/images/icons/large/inv_pants_06.jpg new file mode 100644 index 0000000..f7ccb32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_07.jpg b/other/AoWoW-master/images/icons/large/inv_pants_07.jpg new file mode 100644 index 0000000..b05a6cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_08.jpg b/other/AoWoW-master/images/icons/large/inv_pants_08.jpg new file mode 100644 index 0000000..c3e98a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_09.jpg b/other/AoWoW-master/images/icons/large/inv_pants_09.jpg new file mode 100644 index 0000000..67e4a46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_10.jpg b/other/AoWoW-master/images/icons/large/inv_pants_10.jpg new file mode 100644 index 0000000..52c24c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_11.jpg b/other/AoWoW-master/images/icons/large/inv_pants_11.jpg new file mode 100644 index 0000000..eb42a2c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_12.jpg b/other/AoWoW-master/images/icons/large/inv_pants_12.jpg new file mode 100644 index 0000000..16bf9e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_13.jpg b/other/AoWoW-master/images/icons/large/inv_pants_13.jpg new file mode 100644 index 0000000..dd519c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_14.jpg b/other/AoWoW-master/images/icons/large/inv_pants_14.jpg new file mode 100644 index 0000000..6877004 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_01.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_01.jpg new file mode 100644 index 0000000..b39feef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_02.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_02.jpg new file mode 100644 index 0000000..4508649 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_03.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_03.jpg new file mode 100644 index 0000000..3734b3f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_04.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_04.jpg new file mode 100644 index 0000000..a572694 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_05.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_05.jpg new file mode 100644 index 0000000..fd7592b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_06.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_06.jpg new file mode 100644 index 0000000..52ce709 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_07.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_07.jpg new file mode 100644 index 0000000..38c5d84 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_08.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_08.jpg new file mode 100644 index 0000000..7228e6f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_09.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_09.jpg new file mode 100644 index 0000000..a1e214b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_10.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_10.jpg new file mode 100644 index 0000000..be13b27 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_11.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_11.jpg new file mode 100644 index 0000000..27b8abb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_12.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_12.jpg new file mode 100644 index 0000000..f470cd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_13.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_13.jpg new file mode 100644 index 0000000..aa17e34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_14.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_14.jpg new file mode 100644 index 0000000..c7eaa57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_15.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_15.jpg new file mode 100644 index 0000000..d35bb6e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_16.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_16.jpg new file mode 100644 index 0000000..b9edd1c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_17.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_17.jpg new file mode 100644 index 0000000..54cb19d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_18.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_18.jpg new file mode 100644 index 0000000..a615a0a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_19.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_19.jpg new file mode 100644 index 0000000..7faeb88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_20.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_20.jpg new file mode 100644 index 0000000..979704b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_21.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_21.jpg new file mode 100644 index 0000000..e28b5e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_22.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_22.jpg new file mode 100644 index 0000000..8912f46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_23.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_23.jpg new file mode 100644 index 0000000..395ba2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_24.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_24.jpg new file mode 100644 index 0000000..886a946 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_25.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_25.jpg new file mode 100644 index 0000000..ee56049 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_26.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_26.jpg new file mode 100644 index 0000000..a12b853 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_27.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_27.jpg new file mode 100644 index 0000000..8183ecf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_28.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_28.jpg new file mode 100644 index 0000000..f96bf12 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_cloth_29.jpg b/other/AoWoW-master/images/icons/large/inv_pants_cloth_29.jpg new file mode 100644 index 0000000..1c2d122 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_01.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_01.jpg new file mode 100644 index 0000000..ec21ab7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_02.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_02.jpg new file mode 100644 index 0000000..02abed3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_03.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_03.jpg new file mode 100644 index 0000000..410704f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_04.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_04.jpg new file mode 100644 index 0000000..9c7affb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_05.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_05.jpg new file mode 100644 index 0000000..6ab9035 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_06.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_06.jpg new file mode 100644 index 0000000..b57390a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_07.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_07.jpg new file mode 100644 index 0000000..ddfc675 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_08.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_08.jpg new file mode 100644 index 0000000..4620e24 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_09.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_09.jpg new file mode 100644 index 0000000..b16d7f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_10.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_10.jpg new file mode 100644 index 0000000..0c7c6fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_11.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_11.jpg new file mode 100644 index 0000000..c193542 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_12.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_12.jpg new file mode 100644 index 0000000..158c7fa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_13.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_13.jpg new file mode 100644 index 0000000..70ada1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_14.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_14.jpg new file mode 100644 index 0000000..3392bc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_15.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_15.jpg new file mode 100644 index 0000000..58919aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_16.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_16.jpg new file mode 100644 index 0000000..7620149 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_17.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_17.jpg new file mode 100644 index 0000000..21f291e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_18.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_18.jpg new file mode 100644 index 0000000..97e081d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_19.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_19.jpg new file mode 100644 index 0000000..ba1f0bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_20.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_20.jpg new file mode 100644 index 0000000..a95b8f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_21.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_21.jpg new file mode 100644 index 0000000..9a2372f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_22.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_22.jpg new file mode 100644 index 0000000..2596fb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_23.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_23.jpg new file mode 100644 index 0000000..f194a94 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_24.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_24.jpg new file mode 100644 index 0000000..519990c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_25.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_25.jpg new file mode 100644 index 0000000..b73fe7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_26.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_26.jpg new file mode 100644 index 0000000..dabd166 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_leather_27.jpg b/other/AoWoW-master/images/icons/large/inv_pants_leather_27.jpg new file mode 100644 index 0000000..ff176ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_leather_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_01.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_01.jpg new file mode 100644 index 0000000..5569f7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_02.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_02.jpg new file mode 100644 index 0000000..b02466f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_03.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_03.jpg new file mode 100644 index 0000000..f6dd6e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_04.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_04.jpg new file mode 100644 index 0000000..b4bdc31 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_05.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_05.jpg new file mode 100644 index 0000000..5d63ae5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_06.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_06.jpg new file mode 100644 index 0000000..b2f789b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_07.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_07.jpg new file mode 100644 index 0000000..b8602b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_08.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_08.jpg new file mode 100644 index 0000000..936ca1e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_09.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_09.jpg new file mode 100644 index 0000000..f065da0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_10.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_10.jpg new file mode 100644 index 0000000..3348fbd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_11.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_11.jpg new file mode 100644 index 0000000..e19d94a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_12.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_12.jpg new file mode 100644 index 0000000..e29172a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_13.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_13.jpg new file mode 100644 index 0000000..93614d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_14.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_14.jpg new file mode 100644 index 0000000..3e3e6a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_15.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_15.jpg new file mode 100644 index 0000000..5f1abe1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_16.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_16.jpg new file mode 100644 index 0000000..c54d80c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_17.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_17.jpg new file mode 100644 index 0000000..53c7e46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_18.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_18.jpg new file mode 100644 index 0000000..bcbc52c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_19.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_19.jpg new file mode 100644 index 0000000..adca9f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_20.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_20.jpg new file mode 100644 index 0000000..6c2c630 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_21.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_21.jpg new file mode 100644 index 0000000..f7d9300 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_24.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_24.jpg new file mode 100644 index 0000000..bf98d0a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_25.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_25.jpg new file mode 100644 index 0000000..c6fa2ae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_mail_26.jpg b/other/AoWoW-master/images/icons/large/inv_pants_mail_26.jpg new file mode 100644 index 0000000..0904f60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_mail_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_01.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_01.jpg new file mode 100644 index 0000000..c865afa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_02.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_02.jpg new file mode 100644 index 0000000..2a24010 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_03.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_03.jpg new file mode 100644 index 0000000..115e8fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_04.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_04.jpg new file mode 100644 index 0000000..2a88a39 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_05.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_05.jpg new file mode 100644 index 0000000..f471165 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_06.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_06.jpg new file mode 100644 index 0000000..0820b7f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_07.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_07.jpg new file mode 100644 index 0000000..7af603d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_08.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_08.jpg new file mode 100644 index 0000000..7d4a3e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_09.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_09.jpg new file mode 100644 index 0000000..ea30710 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_10.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_10.jpg new file mode 100644 index 0000000..fc14032 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_11.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_11.jpg new file mode 100644 index 0000000..63e85af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_12.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_12.jpg new file mode 100644 index 0000000..8e07c48 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_13.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_13.jpg new file mode 100644 index 0000000..3e496da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_14.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_14.jpg new file mode 100644 index 0000000..ed4aa6b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_15.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_15.jpg new file mode 100644 index 0000000..c07b348 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_16.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_16.jpg new file mode 100644 index 0000000..1b35ed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_17.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_17.jpg new file mode 100644 index 0000000..92d0089 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_18.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_18.jpg new file mode 100644 index 0000000..3c91fc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_19.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_19.jpg new file mode 100644 index 0000000..74329a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_20.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_20.jpg new file mode 100644 index 0000000..eb61eee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_21.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_21.jpg new file mode 100644 index 0000000..60382d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_22.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_22.jpg new file mode 100644 index 0000000..e76b028 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_23.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_23.jpg new file mode 100644 index 0000000..c8998a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_24.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_24.jpg new file mode 100644 index 0000000..04b5076 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_25.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_25.jpg new file mode 100644 index 0000000..4900f79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_26.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_26.jpg new file mode 100644 index 0000000..57e91b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_27.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_27.jpg new file mode 100644 index 0000000..0297745 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_28.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_28.jpg new file mode 100644 index 0000000..fb06ec4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_plate_29.jpg b/other/AoWoW-master/images/icons/large/inv_pants_plate_29.jpg new file mode 100644 index 0000000..0f49e78 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_plate_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pants_wolf.jpg b/other/AoWoW-master/images/icons/large/inv_pants_wolf.jpg new file mode 100644 index 0000000..9b8b860 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pants_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pick_01.jpg b/other/AoWoW-master/images/icons/large/inv_pick_01.jpg new file mode 100644 index 0000000..bd59d71 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pick_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pick_02.jpg b/other/AoWoW-master/images/icons/large/inv_pick_02.jpg new file mode 100644 index 0000000..8813958 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pick_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pick_03.jpg b/other/AoWoW-master/images/icons/large/inv_pick_03.jpg new file mode 100644 index 0000000..48c7fa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pick_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_pick_05.jpg b/other/AoWoW-master/images/icons/large/inv_pick_05.jpg new file mode 100644 index 0000000..d7f9361 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_pick_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_poison_mindnumbing.jpg b/other/AoWoW-master/images/icons/large/inv_poison_mindnumbing.jpg new file mode 100644 index 0000000..97b4b60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_poison_mindnumbing.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_01.jpg b/other/AoWoW-master/images/icons/large/inv_potion_01.jpg new file mode 100644 index 0000000..05fcb60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_02.jpg b/other/AoWoW-master/images/icons/large/inv_potion_02.jpg new file mode 100644 index 0000000..db74e9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_03.jpg b/other/AoWoW-master/images/icons/large/inv_potion_03.jpg new file mode 100644 index 0000000..091c24c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_04.jpg b/other/AoWoW-master/images/icons/large/inv_potion_04.jpg new file mode 100644 index 0000000..2a29690 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_05.jpg b/other/AoWoW-master/images/icons/large/inv_potion_05.jpg new file mode 100644 index 0000000..11a896e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_06.jpg b/other/AoWoW-master/images/icons/large/inv_potion_06.jpg new file mode 100644 index 0000000..14bc5b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_07.jpg b/other/AoWoW-master/images/icons/large/inv_potion_07.jpg new file mode 100644 index 0000000..000b35d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_08.jpg b/other/AoWoW-master/images/icons/large/inv_potion_08.jpg new file mode 100644 index 0000000..24a1535 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_09.jpg b/other/AoWoW-master/images/icons/large/inv_potion_09.jpg new file mode 100644 index 0000000..cf851af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_10.jpg b/other/AoWoW-master/images/icons/large/inv_potion_10.jpg new file mode 100644 index 0000000..5abd08b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_100.jpg b/other/AoWoW-master/images/icons/large/inv_potion_100.jpg new file mode 100644 index 0000000..bb672eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_100.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_101.jpg b/other/AoWoW-master/images/icons/large/inv_potion_101.jpg new file mode 100644 index 0000000..45e1794 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_101.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_102.jpg b/other/AoWoW-master/images/icons/large/inv_potion_102.jpg new file mode 100644 index 0000000..4708c51 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_102.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_103.jpg b/other/AoWoW-master/images/icons/large/inv_potion_103.jpg new file mode 100644 index 0000000..574359e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_103.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_104.jpg b/other/AoWoW-master/images/icons/large/inv_potion_104.jpg new file mode 100644 index 0000000..ef0af8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_104.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_105.jpg b/other/AoWoW-master/images/icons/large/inv_potion_105.jpg new file mode 100644 index 0000000..3871768 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_105.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_106.jpg b/other/AoWoW-master/images/icons/large/inv_potion_106.jpg new file mode 100644 index 0000000..a2b75a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_106.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_107.jpg b/other/AoWoW-master/images/icons/large/inv_potion_107.jpg new file mode 100644 index 0000000..6be0a69 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_107.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_108.jpg b/other/AoWoW-master/images/icons/large/inv_potion_108.jpg new file mode 100644 index 0000000..6ceeaf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_108.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_109.jpg b/other/AoWoW-master/images/icons/large/inv_potion_109.jpg new file mode 100644 index 0000000..e7ca370 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_109.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_11.jpg b/other/AoWoW-master/images/icons/large/inv_potion_11.jpg new file mode 100644 index 0000000..e7d35e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_110.jpg b/other/AoWoW-master/images/icons/large/inv_potion_110.jpg new file mode 100644 index 0000000..78ad19e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_110.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_111.jpg b/other/AoWoW-master/images/icons/large/inv_potion_111.jpg new file mode 100644 index 0000000..11a616f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_111.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_112.jpg b/other/AoWoW-master/images/icons/large/inv_potion_112.jpg new file mode 100644 index 0000000..917cba5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_112.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_113.jpg b/other/AoWoW-master/images/icons/large/inv_potion_113.jpg new file mode 100644 index 0000000..df7b69d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_113.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_114.jpg b/other/AoWoW-master/images/icons/large/inv_potion_114.jpg new file mode 100644 index 0000000..6e53a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_114.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_115.jpg b/other/AoWoW-master/images/icons/large/inv_potion_115.jpg new file mode 100644 index 0000000..1f472e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_115.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_116.jpg b/other/AoWoW-master/images/icons/large/inv_potion_116.jpg new file mode 100644 index 0000000..0d0489e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_116.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_117.jpg b/other/AoWoW-master/images/icons/large/inv_potion_117.jpg new file mode 100644 index 0000000..a4d3343 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_117.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_118.jpg b/other/AoWoW-master/images/icons/large/inv_potion_118.jpg new file mode 100644 index 0000000..c437b9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_118.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_119.jpg b/other/AoWoW-master/images/icons/large/inv_potion_119.jpg new file mode 100644 index 0000000..d56ad64 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_119.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_12.jpg b/other/AoWoW-master/images/icons/large/inv_potion_12.jpg new file mode 100644 index 0000000..d90df8f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_120.jpg b/other/AoWoW-master/images/icons/large/inv_potion_120.jpg new file mode 100644 index 0000000..16bb454 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_120.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_121.jpg b/other/AoWoW-master/images/icons/large/inv_potion_121.jpg new file mode 100644 index 0000000..86e9982 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_121.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_122.jpg b/other/AoWoW-master/images/icons/large/inv_potion_122.jpg new file mode 100644 index 0000000..8c2a062 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_122.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_123.jpg b/other/AoWoW-master/images/icons/large/inv_potion_123.jpg new file mode 100644 index 0000000..0e773d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_123.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_124.jpg b/other/AoWoW-master/images/icons/large/inv_potion_124.jpg new file mode 100644 index 0000000..a0828f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_124.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_125.jpg b/other/AoWoW-master/images/icons/large/inv_potion_125.jpg new file mode 100644 index 0000000..d7a3fb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_125.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_126.jpg b/other/AoWoW-master/images/icons/large/inv_potion_126.jpg new file mode 100644 index 0000000..01272fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_126.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_127.jpg b/other/AoWoW-master/images/icons/large/inv_potion_127.jpg new file mode 100644 index 0000000..205a46b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_127.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_128.jpg b/other/AoWoW-master/images/icons/large/inv_potion_128.jpg new file mode 100644 index 0000000..b65dce1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_128.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_129.jpg b/other/AoWoW-master/images/icons/large/inv_potion_129.jpg new file mode 100644 index 0000000..c4394d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_129.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_13.jpg b/other/AoWoW-master/images/icons/large/inv_potion_13.jpg new file mode 100644 index 0000000..122173b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_130.jpg b/other/AoWoW-master/images/icons/large/inv_potion_130.jpg new file mode 100644 index 0000000..ac0afbb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_130.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_131.jpg b/other/AoWoW-master/images/icons/large/inv_potion_131.jpg new file mode 100644 index 0000000..60a5679 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_131.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_132.jpg b/other/AoWoW-master/images/icons/large/inv_potion_132.jpg new file mode 100644 index 0000000..a5b4c6f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_132.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_133.jpg b/other/AoWoW-master/images/icons/large/inv_potion_133.jpg new file mode 100644 index 0000000..61b71a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_133.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_134.jpg b/other/AoWoW-master/images/icons/large/inv_potion_134.jpg new file mode 100644 index 0000000..660a43b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_134.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_135.jpg b/other/AoWoW-master/images/icons/large/inv_potion_135.jpg new file mode 100644 index 0000000..07dfc33 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_135.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_136.jpg b/other/AoWoW-master/images/icons/large/inv_potion_136.jpg new file mode 100644 index 0000000..26f4d88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_136.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_137.jpg b/other/AoWoW-master/images/icons/large/inv_potion_137.jpg new file mode 100644 index 0000000..c7399fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_137.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_138.jpg b/other/AoWoW-master/images/icons/large/inv_potion_138.jpg new file mode 100644 index 0000000..943b9f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_138.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_139.jpg b/other/AoWoW-master/images/icons/large/inv_potion_139.jpg new file mode 100644 index 0000000..755217e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_139.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_14.jpg b/other/AoWoW-master/images/icons/large/inv_potion_14.jpg new file mode 100644 index 0000000..668a95e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_140.jpg b/other/AoWoW-master/images/icons/large/inv_potion_140.jpg new file mode 100644 index 0000000..5e14f55 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_140.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_141.jpg b/other/AoWoW-master/images/icons/large/inv_potion_141.jpg new file mode 100644 index 0000000..e0e62a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_141.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_142.jpg b/other/AoWoW-master/images/icons/large/inv_potion_142.jpg new file mode 100644 index 0000000..cf3b337 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_142.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_143.jpg b/other/AoWoW-master/images/icons/large/inv_potion_143.jpg new file mode 100644 index 0000000..94e2841 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_143.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_144.jpg b/other/AoWoW-master/images/icons/large/inv_potion_144.jpg new file mode 100644 index 0000000..283c7c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_144.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_145.jpg b/other/AoWoW-master/images/icons/large/inv_potion_145.jpg new file mode 100644 index 0000000..ec9bb32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_145.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_146.jpg b/other/AoWoW-master/images/icons/large/inv_potion_146.jpg new file mode 100644 index 0000000..103b303 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_146.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_147.jpg b/other/AoWoW-master/images/icons/large/inv_potion_147.jpg new file mode 100644 index 0000000..425cd73 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_147.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_148.jpg b/other/AoWoW-master/images/icons/large/inv_potion_148.jpg new file mode 100644 index 0000000..bed9797 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_148.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_149.jpg b/other/AoWoW-master/images/icons/large/inv_potion_149.jpg new file mode 100644 index 0000000..af0e653 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_149.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_15.jpg b/other/AoWoW-master/images/icons/large/inv_potion_15.jpg new file mode 100644 index 0000000..00d5cc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_150.jpg b/other/AoWoW-master/images/icons/large/inv_potion_150.jpg new file mode 100644 index 0000000..c34bf4f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_150.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_151.jpg b/other/AoWoW-master/images/icons/large/inv_potion_151.jpg new file mode 100644 index 0000000..bedaabd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_151.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_152.jpg b/other/AoWoW-master/images/icons/large/inv_potion_152.jpg new file mode 100644 index 0000000..1beef2a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_152.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_153.jpg b/other/AoWoW-master/images/icons/large/inv_potion_153.jpg new file mode 100644 index 0000000..7cf932c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_153.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_154.jpg b/other/AoWoW-master/images/icons/large/inv_potion_154.jpg new file mode 100644 index 0000000..c8da0bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_154.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_155.jpg b/other/AoWoW-master/images/icons/large/inv_potion_155.jpg new file mode 100644 index 0000000..549cdcd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_155.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_156.jpg b/other/AoWoW-master/images/icons/large/inv_potion_156.jpg new file mode 100644 index 0000000..f7b289e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_156.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_157.jpg b/other/AoWoW-master/images/icons/large/inv_potion_157.jpg new file mode 100644 index 0000000..2349733 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_157.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_158.jpg b/other/AoWoW-master/images/icons/large/inv_potion_158.jpg new file mode 100644 index 0000000..e6484b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_158.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_159.jpg b/other/AoWoW-master/images/icons/large/inv_potion_159.jpg new file mode 100644 index 0000000..389d129 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_159.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_16.jpg b/other/AoWoW-master/images/icons/large/inv_potion_16.jpg new file mode 100644 index 0000000..fa457a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_160.jpg b/other/AoWoW-master/images/icons/large/inv_potion_160.jpg new file mode 100644 index 0000000..debcfcd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_160.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_161.jpg b/other/AoWoW-master/images/icons/large/inv_potion_161.jpg new file mode 100644 index 0000000..4d7469d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_161.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_162.jpg b/other/AoWoW-master/images/icons/large/inv_potion_162.jpg new file mode 100644 index 0000000..e5fe5e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_162.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_163.jpg b/other/AoWoW-master/images/icons/large/inv_potion_163.jpg new file mode 100644 index 0000000..45c5413 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_163.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_164.jpg b/other/AoWoW-master/images/icons/large/inv_potion_164.jpg new file mode 100644 index 0000000..6a43cd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_164.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_165.jpg b/other/AoWoW-master/images/icons/large/inv_potion_165.jpg new file mode 100644 index 0000000..b8e0953 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_165.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_166.jpg b/other/AoWoW-master/images/icons/large/inv_potion_166.jpg new file mode 100644 index 0000000..4123a2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_166.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_167.jpg b/other/AoWoW-master/images/icons/large/inv_potion_167.jpg new file mode 100644 index 0000000..d1182c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_167.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_168.jpg b/other/AoWoW-master/images/icons/large/inv_potion_168.jpg new file mode 100644 index 0000000..2d1ef13 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_168.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_17.jpg b/other/AoWoW-master/images/icons/large/inv_potion_17.jpg new file mode 100644 index 0000000..de557ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_18.jpg b/other/AoWoW-master/images/icons/large/inv_potion_18.jpg new file mode 100644 index 0000000..8256cac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_19.jpg b/other/AoWoW-master/images/icons/large/inv_potion_19.jpg new file mode 100644 index 0000000..00730e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_20.jpg b/other/AoWoW-master/images/icons/large/inv_potion_20.jpg new file mode 100644 index 0000000..962d265 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_21.jpg b/other/AoWoW-master/images/icons/large/inv_potion_21.jpg new file mode 100644 index 0000000..722b51c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_22.jpg b/other/AoWoW-master/images/icons/large/inv_potion_22.jpg new file mode 100644 index 0000000..3fda4d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_23.jpg b/other/AoWoW-master/images/icons/large/inv_potion_23.jpg new file mode 100644 index 0000000..046e201 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_24.jpg b/other/AoWoW-master/images/icons/large/inv_potion_24.jpg new file mode 100644 index 0000000..ac08ff2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_25.jpg b/other/AoWoW-master/images/icons/large/inv_potion_25.jpg new file mode 100644 index 0000000..5cadedd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_26.jpg b/other/AoWoW-master/images/icons/large/inv_potion_26.jpg new file mode 100644 index 0000000..3407ca1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_27.jpg b/other/AoWoW-master/images/icons/large/inv_potion_27.jpg new file mode 100644 index 0000000..c379465 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_28.jpg b/other/AoWoW-master/images/icons/large/inv_potion_28.jpg new file mode 100644 index 0000000..c1fef7e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_29.jpg b/other/AoWoW-master/images/icons/large/inv_potion_29.jpg new file mode 100644 index 0000000..c9c57ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_30.jpg b/other/AoWoW-master/images/icons/large/inv_potion_30.jpg new file mode 100644 index 0000000..2f46dc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_31.jpg b/other/AoWoW-master/images/icons/large/inv_potion_31.jpg new file mode 100644 index 0000000..8b6bcac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_32.jpg b/other/AoWoW-master/images/icons/large/inv_potion_32.jpg new file mode 100644 index 0000000..33b6714 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_33.jpg b/other/AoWoW-master/images/icons/large/inv_potion_33.jpg new file mode 100644 index 0000000..0552437 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_34.jpg b/other/AoWoW-master/images/icons/large/inv_potion_34.jpg new file mode 100644 index 0000000..fa8540b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_35.jpg b/other/AoWoW-master/images/icons/large/inv_potion_35.jpg new file mode 100644 index 0000000..b26f99b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_36.jpg b/other/AoWoW-master/images/icons/large/inv_potion_36.jpg new file mode 100644 index 0000000..f5010ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_37.jpg b/other/AoWoW-master/images/icons/large/inv_potion_37.jpg new file mode 100644 index 0000000..31ba0dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_38.jpg b/other/AoWoW-master/images/icons/large/inv_potion_38.jpg new file mode 100644 index 0000000..48598ed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_39.jpg b/other/AoWoW-master/images/icons/large/inv_potion_39.jpg new file mode 100644 index 0000000..9daf1fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_40.jpg b/other/AoWoW-master/images/icons/large/inv_potion_40.jpg new file mode 100644 index 0000000..a45358e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_41.jpg b/other/AoWoW-master/images/icons/large/inv_potion_41.jpg new file mode 100644 index 0000000..4979020 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_42.jpg b/other/AoWoW-master/images/icons/large/inv_potion_42.jpg new file mode 100644 index 0000000..bf1b4cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_43.jpg b/other/AoWoW-master/images/icons/large/inv_potion_43.jpg new file mode 100644 index 0000000..8fdce03 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_44.jpg b/other/AoWoW-master/images/icons/large/inv_potion_44.jpg new file mode 100644 index 0000000..fb01c76 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_45.jpg b/other/AoWoW-master/images/icons/large/inv_potion_45.jpg new file mode 100644 index 0000000..c96c65a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_46.jpg b/other/AoWoW-master/images/icons/large/inv_potion_46.jpg new file mode 100644 index 0000000..63e9614 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_47.jpg b/other/AoWoW-master/images/icons/large/inv_potion_47.jpg new file mode 100644 index 0000000..808e5ff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_48.jpg b/other/AoWoW-master/images/icons/large/inv_potion_48.jpg new file mode 100644 index 0000000..5df10c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_49.jpg b/other/AoWoW-master/images/icons/large/inv_potion_49.jpg new file mode 100644 index 0000000..f4fa198 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_50.jpg b/other/AoWoW-master/images/icons/large/inv_potion_50.jpg new file mode 100644 index 0000000..c011329 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_51.jpg b/other/AoWoW-master/images/icons/large/inv_potion_51.jpg new file mode 100644 index 0000000..2e4b10b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_52.jpg b/other/AoWoW-master/images/icons/large/inv_potion_52.jpg new file mode 100644 index 0000000..5d67f60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_53.jpg b/other/AoWoW-master/images/icons/large/inv_potion_53.jpg new file mode 100644 index 0000000..28fecd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_54.jpg b/other/AoWoW-master/images/icons/large/inv_potion_54.jpg new file mode 100644 index 0000000..36b60ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_55.jpg b/other/AoWoW-master/images/icons/large/inv_potion_55.jpg new file mode 100644 index 0000000..142b57f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_56.jpg b/other/AoWoW-master/images/icons/large/inv_potion_56.jpg new file mode 100644 index 0000000..9515300 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_57.jpg b/other/AoWoW-master/images/icons/large/inv_potion_57.jpg new file mode 100644 index 0000000..686a11f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_58.jpg b/other/AoWoW-master/images/icons/large/inv_potion_58.jpg new file mode 100644 index 0000000..dda7620 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_59.jpg b/other/AoWoW-master/images/icons/large/inv_potion_59.jpg new file mode 100644 index 0000000..bcb1f4d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_60.jpg b/other/AoWoW-master/images/icons/large/inv_potion_60.jpg new file mode 100644 index 0000000..fa7c0a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_61.jpg b/other/AoWoW-master/images/icons/large/inv_potion_61.jpg new file mode 100644 index 0000000..402cdae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_62.jpg b/other/AoWoW-master/images/icons/large/inv_potion_62.jpg new file mode 100644 index 0000000..87cd06a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_63.jpg b/other/AoWoW-master/images/icons/large/inv_potion_63.jpg new file mode 100644 index 0000000..b7f654e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_64.jpg b/other/AoWoW-master/images/icons/large/inv_potion_64.jpg new file mode 100644 index 0000000..5957278 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_65.jpg b/other/AoWoW-master/images/icons/large/inv_potion_65.jpg new file mode 100644 index 0000000..5c3957c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_66.jpg b/other/AoWoW-master/images/icons/large/inv_potion_66.jpg new file mode 100644 index 0000000..7c837a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_67.jpg b/other/AoWoW-master/images/icons/large/inv_potion_67.jpg new file mode 100644 index 0000000..c6699e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_68.jpg b/other/AoWoW-master/images/icons/large/inv_potion_68.jpg new file mode 100644 index 0000000..51ad256 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_69.jpg b/other/AoWoW-master/images/icons/large/inv_potion_69.jpg new file mode 100644 index 0000000..38603f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_70.jpg b/other/AoWoW-master/images/icons/large/inv_potion_70.jpg new file mode 100644 index 0000000..47c3c14 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_70.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_71.jpg b/other/AoWoW-master/images/icons/large/inv_potion_71.jpg new file mode 100644 index 0000000..113bfc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_72.jpg b/other/AoWoW-master/images/icons/large/inv_potion_72.jpg new file mode 100644 index 0000000..e0aa371 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_73.jpg b/other/AoWoW-master/images/icons/large/inv_potion_73.jpg new file mode 100644 index 0000000..84572cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_74.jpg b/other/AoWoW-master/images/icons/large/inv_potion_74.jpg new file mode 100644 index 0000000..28f8876 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_75.jpg b/other/AoWoW-master/images/icons/large/inv_potion_75.jpg new file mode 100644 index 0000000..1a322c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_75.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_76.jpg b/other/AoWoW-master/images/icons/large/inv_potion_76.jpg new file mode 100644 index 0000000..f23c2b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_76.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_77.jpg b/other/AoWoW-master/images/icons/large/inv_potion_77.jpg new file mode 100644 index 0000000..2a98b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_77.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_78.jpg b/other/AoWoW-master/images/icons/large/inv_potion_78.jpg new file mode 100644 index 0000000..a5e86ec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_78.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_79.jpg b/other/AoWoW-master/images/icons/large/inv_potion_79.jpg new file mode 100644 index 0000000..76d9950 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_79.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_80.jpg b/other/AoWoW-master/images/icons/large/inv_potion_80.jpg new file mode 100644 index 0000000..fa2a474 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_80.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_81.jpg b/other/AoWoW-master/images/icons/large/inv_potion_81.jpg new file mode 100644 index 0000000..f4e66f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_81.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_82.jpg b/other/AoWoW-master/images/icons/large/inv_potion_82.jpg new file mode 100644 index 0000000..19d97cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_82.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_83.jpg b/other/AoWoW-master/images/icons/large/inv_potion_83.jpg new file mode 100644 index 0000000..2812463 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_83.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_84.jpg b/other/AoWoW-master/images/icons/large/inv_potion_84.jpg new file mode 100644 index 0000000..83e5641 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_84.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_85.jpg b/other/AoWoW-master/images/icons/large/inv_potion_85.jpg new file mode 100644 index 0000000..e6b7440 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_85.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_86.jpg b/other/AoWoW-master/images/icons/large/inv_potion_86.jpg new file mode 100644 index 0000000..8023c43 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_86.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_87.jpg b/other/AoWoW-master/images/icons/large/inv_potion_87.jpg new file mode 100644 index 0000000..22a30d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_87.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_88.jpg b/other/AoWoW-master/images/icons/large/inv_potion_88.jpg new file mode 100644 index 0000000..7effe35 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_88.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_89.jpg b/other/AoWoW-master/images/icons/large/inv_potion_89.jpg new file mode 100644 index 0000000..711957b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_89.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_90.jpg b/other/AoWoW-master/images/icons/large/inv_potion_90.jpg new file mode 100644 index 0000000..9526014 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_90.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_91.jpg b/other/AoWoW-master/images/icons/large/inv_potion_91.jpg new file mode 100644 index 0000000..989a215 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_91.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_92.jpg b/other/AoWoW-master/images/icons/large/inv_potion_92.jpg new file mode 100644 index 0000000..3b6b58d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_92.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_93.jpg b/other/AoWoW-master/images/icons/large/inv_potion_93.jpg new file mode 100644 index 0000000..1643979 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_93.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_94.jpg b/other/AoWoW-master/images/icons/large/inv_potion_94.jpg new file mode 100644 index 0000000..0b5207f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_94.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_95.jpg b/other/AoWoW-master/images/icons/large/inv_potion_95.jpg new file mode 100644 index 0000000..c3f40a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_95.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_96.jpg b/other/AoWoW-master/images/icons/large/inv_potion_96.jpg new file mode 100644 index 0000000..f28ef25 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_96.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_97.jpg b/other/AoWoW-master/images/icons/large/inv_potion_97.jpg new file mode 100644 index 0000000..d9ef92b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_97.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_98.jpg b/other/AoWoW-master/images/icons/large/inv_potion_98.jpg new file mode 100644 index 0000000..ec2d415 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_98.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_potion_99.jpg b/other/AoWoW-master/images/icons/large/inv_potion_99.jpg new file mode 100644 index 0000000..938905c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_potion_99.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_bindingscommand.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_bindingscommand.jpg new file mode 100644 index 0000000..4289eea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_bindingscommand.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_bindingsdominance.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_bindingsdominance.jpg new file mode 100644 index 0000000..71a8a5b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_bindingsdominance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_carapaceoldgod.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_carapaceoldgod.jpg new file mode 100644 index 0000000..54778c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_carapaceoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_drapemartial.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_drapemartial.jpg new file mode 100644 index 0000000..3d4c8b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_drapemartial.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_draperegal.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_draperegal.jpg new file mode 100644 index 0000000..43302cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_draperegal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_hiltornate.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_hiltornate.jpg new file mode 100644 index 0000000..fd27b6d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_hiltornate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_hiltspiked.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_hiltspiked.jpg new file mode 100644 index 0000000..d575708 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_hiltspiked.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_huskoldgod.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_huskoldgod.jpg new file mode 100644 index 0000000..6963c06 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_huskoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_jewelblessed.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelblessed.jpg new file mode 100644 index 0000000..53f38af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelblessed.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_jewelencased.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelencased.jpg new file mode 100644 index 0000000..edb7d72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelencased.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_jewelengraved.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelengraved.jpg new file mode 100644 index 0000000..b1dd3bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelengraved.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_jewelglyphed.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelglyphed.jpg new file mode 100644 index 0000000..92cf7e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_jewelglyphed.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_ourohide.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_ourohide.jpg new file mode 100644 index 0000000..f70087c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_ourohide.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_ringceremonial.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_ringceremonial.jpg new file mode 100644 index 0000000..65551e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_ringceremonial.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_ringmagisterial.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_ringmagisterial.jpg new file mode 100644 index 0000000..2a84257 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_ringmagisterial.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qiraj_skinsandworm.jpg b/other/AoWoW-master/images/icons/large/inv_qiraj_skinsandworm.jpg new file mode 100644 index 0000000..a27c8fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qiraj_skinsandworm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_alabaster.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_alabaster.jpg new file mode 100644 index 0000000..f19b3bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_alabaster.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_amber.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_amber.jpg new file mode 100644 index 0000000..7124218 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_amber.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_azure.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_azure.jpg new file mode 100644 index 0000000..8d35739 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_azure.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_death.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_death.jpg new file mode 100644 index 0000000..6e0b2d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_death.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_jasper.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_jasper.jpg new file mode 100644 index 0000000..55ee25a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_jasper.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_lambent.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_lambent.jpg new file mode 100644 index 0000000..ab751d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_lambent.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_life.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_life.jpg new file mode 100644 index 0000000..2ec27ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_life.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_night.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_night.jpg new file mode 100644 index 0000000..692abe4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_night.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_obsidian.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_obsidian.jpg new file mode 100644 index 0000000..36120c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_obsidian.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_onyx.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_onyx.jpg new file mode 100644 index 0000000..6769611 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_onyx.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_rebirth.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_rebirth.jpg new file mode 100644 index 0000000..7497abd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_rebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_sage.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_sage.jpg new file mode 100644 index 0000000..e836e47 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_sage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_strife.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_strife.jpg new file mode 100644 index 0000000..e128c57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_strife.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_sun.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_sun.jpg new file mode 100644 index 0000000..c1cd9cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_sun.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_vermillion.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_vermillion.jpg new file mode 100644 index 0000000..13c715a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_vermillion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_qirajidol_war.jpg b/other/AoWoW-master/images/icons/large/inv_qirajidol_war.jpg new file mode 100644 index 0000000..3f2e3c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_qirajidol_war.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_idolofferocity.jpg b/other/AoWoW-master/images/icons/large/inv_relics_idolofferocity.jpg new file mode 100644 index 0000000..d49b8ec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_idolofferocity.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_idolofhealth.jpg b/other/AoWoW-master/images/icons/large/inv_relics_idolofhealth.jpg new file mode 100644 index 0000000..071cd6d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_idolofhealth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_idolofrejuvenation.jpg b/other/AoWoW-master/images/icons/large/inv_relics_idolofrejuvenation.jpg new file mode 100644 index 0000000..bf26af7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_idolofrejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_libramofgrace.jpg b/other/AoWoW-master/images/icons/large/inv_relics_libramofgrace.jpg new file mode 100644 index 0000000..f6df17f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_libramofgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_libramofhope.jpg b/other/AoWoW-master/images/icons/large/inv_relics_libramofhope.jpg new file mode 100644 index 0000000..9368cd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_libramofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_libramoftruth.jpg b/other/AoWoW-master/images/icons/large/inv_relics_libramoftruth.jpg new file mode 100644 index 0000000..f882138 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_libramoftruth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_totemoflife.jpg b/other/AoWoW-master/images/icons/large/inv_relics_totemoflife.jpg new file mode 100644 index 0000000..6d2f32d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_totemoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_totemofrage.jpg b/other/AoWoW-master/images/icons/large/inv_relics_totemofrage.jpg new file mode 100644 index 0000000..05bc5f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_totemofrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_relics_totemofrebirth.jpg b/other/AoWoW-master/images/icons/large/inv_relics_totemofrebirth.jpg new file mode 100644 index 0000000..e21c634 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_relics_totemofrebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rod_adamantite.jpg b/other/AoWoW-master/images/icons/large/inv_rod_adamantite.jpg new file mode 100644 index 0000000..da15b99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rod_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rod_enchantedadamantite.jpg b/other/AoWoW-master/images/icons/large/inv_rod_enchantedadamantite.jpg new file mode 100644 index 0000000..37abd87 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rod_enchantedadamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rod_enchantedeternium.jpg b/other/AoWoW-master/images/icons/large/inv_rod_enchantedeternium.jpg new file mode 100644 index 0000000..47daa5f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rod_enchantedeternium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rod_enchantedfelsteel.jpg b/other/AoWoW-master/images/icons/large/inv_rod_enchantedfelsteel.jpg new file mode 100644 index 0000000..94a1e53 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rod_enchantedfelsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rod_eternium.jpg b/other/AoWoW-master/images/icons/large/inv_rod_eternium.jpg new file mode 100644 index 0000000..6a6b19f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rod_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rod_felsteel.jpg b/other/AoWoW-master/images/icons/large/inv_rod_felsteel.jpg new file mode 100644 index 0000000..1133b07 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rod_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rosebouquet01.jpg b/other/AoWoW-master/images/icons/large/inv_rosebouquet01.jpg new file mode 100644 index 0000000..a9b3d0b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rosebouquet01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_rosepotted01.jpg b/other/AoWoW-master/images/icons/large/inv_rosepotted01.jpg new file mode 100644 index 0000000..97d81c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_rosepotted01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_bone.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_bone.jpg new file mode 100644 index 0000000..637864f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_bone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_bronze.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_bronze.jpg new file mode 100644 index 0000000..f3dbde8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_clay.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_clay.jpg new file mode 100644 index 0000000..e016b0e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_clay.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_crystal.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_crystal.jpg new file mode 100644 index 0000000..e10c7f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_gold.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_gold.jpg new file mode 100644 index 0000000..e26f219 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_ivory.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_ivory.jpg new file mode 100644 index 0000000..637864f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_ivory.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_silver.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_silver.jpg new file mode 100644 index 0000000..57025a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scarab_stone.jpg b/other/AoWoW-master/images/icons/large/inv_scarab_stone.jpg new file mode 100644 index 0000000..52159ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scarab_stone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_01.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_01.jpg new file mode 100644 index 0000000..2aa0def Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_02.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_02.jpg new file mode 100644 index 0000000..a14cbec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_03.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_03.jpg new file mode 100644 index 0000000..eedd470 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_04.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_04.jpg new file mode 100644 index 0000000..1082936 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_05.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_05.jpg new file mode 100644 index 0000000..5aa085c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_06.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_06.jpg new file mode 100644 index 0000000..c60073b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_07.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_07.jpg new file mode 100644 index 0000000..3bb308b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_08.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_08.jpg new file mode 100644 index 0000000..238e01f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_09.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_09.jpg new file mode 100644 index 0000000..b1db6ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_scroll_10.jpg b/other/AoWoW-master/images/icons/large/inv_scroll_10.jpg new file mode 100644 index 0000000..484c334 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_scroll_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_01.jpg b/other/AoWoW-master/images/icons/large/inv_shield_01.jpg new file mode 100644 index 0000000..50a7b75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_02.jpg b/other/AoWoW-master/images/icons/large/inv_shield_02.jpg new file mode 100644 index 0000000..7976fe1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_03.jpg b/other/AoWoW-master/images/icons/large/inv_shield_03.jpg new file mode 100644 index 0000000..6904ef2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_04.jpg b/other/AoWoW-master/images/icons/large/inv_shield_04.jpg new file mode 100644 index 0000000..44b0c32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_05.jpg b/other/AoWoW-master/images/icons/large/inv_shield_05.jpg new file mode 100644 index 0000000..2ff35af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_06.jpg b/other/AoWoW-master/images/icons/large/inv_shield_06.jpg new file mode 100644 index 0000000..0ce3e80 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_07.jpg b/other/AoWoW-master/images/icons/large/inv_shield_07.jpg new file mode 100644 index 0000000..c213177 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_08.jpg b/other/AoWoW-master/images/icons/large/inv_shield_08.jpg new file mode 100644 index 0000000..dd32ce8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_09.jpg b/other/AoWoW-master/images/icons/large/inv_shield_09.jpg new file mode 100644 index 0000000..1e0ebd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_10.jpg b/other/AoWoW-master/images/icons/large/inv_shield_10.jpg new file mode 100644 index 0000000..ffdb4e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_11.jpg b/other/AoWoW-master/images/icons/large/inv_shield_11.jpg new file mode 100644 index 0000000..0fee2a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_12.jpg b/other/AoWoW-master/images/icons/large/inv_shield_12.jpg new file mode 100644 index 0000000..0800e61 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_13.jpg b/other/AoWoW-master/images/icons/large/inv_shield_13.jpg new file mode 100644 index 0000000..90853bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_14.jpg b/other/AoWoW-master/images/icons/large/inv_shield_14.jpg new file mode 100644 index 0000000..d8208c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_15.jpg b/other/AoWoW-master/images/icons/large/inv_shield_15.jpg new file mode 100644 index 0000000..18f0963 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_16.jpg b/other/AoWoW-master/images/icons/large/inv_shield_16.jpg new file mode 100644 index 0000000..ff0ca05 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_17.jpg b/other/AoWoW-master/images/icons/large/inv_shield_17.jpg new file mode 100644 index 0000000..1fafd0a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_18.jpg b/other/AoWoW-master/images/icons/large/inv_shield_18.jpg new file mode 100644 index 0000000..1208dbf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_19.jpg b/other/AoWoW-master/images/icons/large/inv_shield_19.jpg new file mode 100644 index 0000000..0072cd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_20.jpg b/other/AoWoW-master/images/icons/large/inv_shield_20.jpg new file mode 100644 index 0000000..6167be7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_21.jpg b/other/AoWoW-master/images/icons/large/inv_shield_21.jpg new file mode 100644 index 0000000..8996f35 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_22.jpg b/other/AoWoW-master/images/icons/large/inv_shield_22.jpg new file mode 100644 index 0000000..5d90a55 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_23.jpg b/other/AoWoW-master/images/icons/large/inv_shield_23.jpg new file mode 100644 index 0000000..8e82a8b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_24.jpg b/other/AoWoW-master/images/icons/large/inv_shield_24.jpg new file mode 100644 index 0000000..df0c53e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_26.jpg b/other/AoWoW-master/images/icons/large/inv_shield_26.jpg new file mode 100644 index 0000000..57c260c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_27.jpg b/other/AoWoW-master/images/icons/large/inv_shield_27.jpg new file mode 100644 index 0000000..751814b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_28.jpg b/other/AoWoW-master/images/icons/large/inv_shield_28.jpg new file mode 100644 index 0000000..278e44d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_29.jpg b/other/AoWoW-master/images/icons/large/inv_shield_29.jpg new file mode 100644 index 0000000..f0da9ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_30.jpg b/other/AoWoW-master/images/icons/large/inv_shield_30.jpg new file mode 100644 index 0000000..239f34a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_31.jpg b/other/AoWoW-master/images/icons/large/inv_shield_31.jpg new file mode 100644 index 0000000..34e7a97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_32.jpg b/other/AoWoW-master/images/icons/large/inv_shield_32.jpg new file mode 100644 index 0000000..97501f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_33.jpg b/other/AoWoW-master/images/icons/large/inv_shield_33.jpg new file mode 100644 index 0000000..7f110de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_34.jpg b/other/AoWoW-master/images/icons/large/inv_shield_34.jpg new file mode 100644 index 0000000..2150268 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_35.jpg b/other/AoWoW-master/images/icons/large/inv_shield_35.jpg new file mode 100644 index 0000000..097e043 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_36.jpg b/other/AoWoW-master/images/icons/large/inv_shield_36.jpg new file mode 100644 index 0000000..01b7863 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_37.jpg b/other/AoWoW-master/images/icons/large/inv_shield_37.jpg new file mode 100644 index 0000000..f50eb8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_38.jpg b/other/AoWoW-master/images/icons/large/inv_shield_38.jpg new file mode 100644 index 0000000..7ac6bb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_39.jpg b/other/AoWoW-master/images/icons/large/inv_shield_39.jpg new file mode 100644 index 0000000..6fc3935 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_40.jpg b/other/AoWoW-master/images/icons/large/inv_shield_40.jpg new file mode 100644 index 0000000..747d74e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_41.jpg b/other/AoWoW-master/images/icons/large/inv_shield_41.jpg new file mode 100644 index 0000000..9c56308 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_42.jpg b/other/AoWoW-master/images/icons/large/inv_shield_42.jpg new file mode 100644 index 0000000..eca6131 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_43.jpg b/other/AoWoW-master/images/icons/large/inv_shield_43.jpg new file mode 100644 index 0000000..25e9f3b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_48.jpg b/other/AoWoW-master/images/icons/large/inv_shield_48.jpg new file mode 100644 index 0000000..ee24a3b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_52.jpg b/other/AoWoW-master/images/icons/large/inv_shield_52.jpg new file mode 100644 index 0000000..74ed8cf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_53.jpg b/other/AoWoW-master/images/icons/large/inv_shield_53.jpg new file mode 100644 index 0000000..7e555e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shield_54.jpg b/other/AoWoW-master/images/icons/large/inv_shield_54.jpg new file mode 100644 index 0000000..469cb9a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shield_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_01.jpg new file mode 100644 index 0000000..50be945 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_02.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_02.jpg new file mode 100644 index 0000000..b290925 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_03.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_03.jpg new file mode 100644 index 0000000..61fc740 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_04.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_04.jpg new file mode 100644 index 0000000..69d4e9c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_05.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_05.jpg new file mode 100644 index 0000000..02fd6b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_06.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_06.jpg new file mode 100644 index 0000000..6d44c1c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_07.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_07.jpg new file mode 100644 index 0000000..ab126a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_08.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_08.jpg new file mode 100644 index 0000000..99dece0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_09.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_09.jpg new file mode 100644 index 0000000..f829557 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_10.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_10.jpg new file mode 100644 index 0000000..e9211d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_11.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_11.jpg new file mode 100644 index 0000000..4bd0043 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_12.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_12.jpg new file mode 100644 index 0000000..08e4721 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_13.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_13.jpg new file mode 100644 index 0000000..0ed5876 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_14.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_14.jpg new file mode 100644 index 0000000..b1e99e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_15.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_15.jpg new file mode 100644 index 0000000..e18707f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_16.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_16.jpg new file mode 100644 index 0000000..52c366f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_17.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_17.jpg new file mode 100644 index 0000000..a1df63a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_black_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_black_01.jpg new file mode 100644 index 0000000..47842f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_black_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_blue_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_blue_01.jpg new file mode 100644 index 0000000..2a8a6bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_blue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_green_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_green_01.jpg new file mode 100644 index 0000000..4a015a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_green_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_grey_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_grey_01.jpg new file mode 100644 index 0000000..a310f69 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_grey_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_guildtabard_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_guildtabard_01.jpg new file mode 100644 index 0000000..23c401b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_guildtabard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_orange_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_orange_01.jpg new file mode 100644 index 0000000..8a48cf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_orange_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_purple_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_purple_01.jpg new file mode 100644 index 0000000..5e77315 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_red_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_red_01.jpg new file mode 100644 index 0000000..241ffb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_red_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_white_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_white_01.jpg new file mode 100644 index 0000000..08e86db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_white_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shirt_yellow_01.jpg b/other/AoWoW-master/images/icons/large/inv_shirt_yellow_01.jpg new file mode 100644 index 0000000..97aaa70 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shirt_yellow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_01.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_01.jpg new file mode 100644 index 0000000..a92d6d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_02.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_02.jpg new file mode 100644 index 0000000..2500283 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_03.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_03.jpg new file mode 100644 index 0000000..8094bbf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_04.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_04.jpg new file mode 100644 index 0000000..b124b8f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_05.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_05.jpg new file mode 100644 index 0000000..7f650e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_06.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_06.jpg new file mode 100644 index 0000000..69bf27f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_07.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_07.jpg new file mode 100644 index 0000000..cb74afd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_08.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_08.jpg new file mode 100644 index 0000000..df1094b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_09.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_09.jpg new file mode 100644 index 0000000..60122e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_10.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_10.jpg new file mode 100644 index 0000000..799666e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_11.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_11.jpg new file mode 100644 index 0000000..2a99b3d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_12.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_12.jpg new file mode 100644 index 0000000..5ed0cfd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_13.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_13.jpg new file mode 100644 index 0000000..c66b480 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_14.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_14.jpg new file mode 100644 index 0000000..1b4e7d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_15.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_15.jpg new file mode 100644 index 0000000..46b6c8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_16.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_16.jpg new file mode 100644 index 0000000..6a18a8a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_17.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_17.jpg new file mode 100644 index 0000000..fc3ef98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_18.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_18.jpg new file mode 100644 index 0000000..a4c5387 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_19.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_19.jpg new file mode 100644 index 0000000..aa2fd47 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_20.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_20.jpg new file mode 100644 index 0000000..2d6aec7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_21.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_21.jpg new file mode 100644 index 0000000..a938c69 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_22.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_22.jpg new file mode 100644 index 0000000..b06f3ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_23.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_23.jpg new file mode 100644 index 0000000..a2d4b97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_24.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_24.jpg new file mode 100644 index 0000000..106dcb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_25.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_25.jpg new file mode 100644 index 0000000..f4b2dc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_26.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_26.jpg new file mode 100644 index 0000000..af36f50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_27.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_27.jpg new file mode 100644 index 0000000..6110b4f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_28.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_28.jpg new file mode 100644 index 0000000..2c94d66 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_29.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_29.jpg new file mode 100644 index 0000000..fdf3366 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_30.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_30.jpg new file mode 100644 index 0000000..31a2759 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_31.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_31.jpg new file mode 100644 index 0000000..2b6d58a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_32.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_32.jpg new file mode 100644 index 0000000..62be7a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_33.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_33.jpg new file mode 100644 index 0000000..537ae1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_34.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_34.jpg new file mode 100644 index 0000000..ea6048a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_35.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_35.jpg new file mode 100644 index 0000000..0dd7756 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_36.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_36.jpg new file mode 100644 index 0000000..b008496 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_37.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_37.jpg new file mode 100644 index 0000000..a860ff7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_40.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_40.jpg new file mode 100644 index 0000000..4c5dced Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_41.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_41.jpg new file mode 100644 index 0000000..78c8fed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_44.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_44.jpg new file mode 100644 index 0000000..ca6c191 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_47.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_47.jpg new file mode 100644 index 0000000..814258b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_48.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_48.jpg new file mode 100644 index 0000000..e834b50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_49.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_49.jpg new file mode 100644 index 0000000..6a26c2e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_50.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_50.jpg new file mode 100644 index 0000000..280c094 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_51.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_51.jpg new file mode 100644 index 0000000..065a045 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_52.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_52.jpg new file mode 100644 index 0000000..479b4fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_53.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_53.jpg new file mode 100644 index 0000000..50d0df2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_54.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_54.jpg new file mode 100644 index 0000000..5084886 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_55.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_55.jpg new file mode 100644 index 0000000..0eb84cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_56.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_56.jpg new file mode 100644 index 0000000..e07318d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_57.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_57.jpg new file mode 100644 index 0000000..c92854a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_58.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_58.jpg new file mode 100644 index 0000000..113ab55 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_59.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_59.jpg new file mode 100644 index 0000000..5e42cdd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_60.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_60.jpg new file mode 100644 index 0000000..9e8c967 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_61.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_61.jpg new file mode 100644 index 0000000..a085ae2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_62.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_62.jpg new file mode 100644 index 0000000..7b1e293 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_63.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_63.jpg new file mode 100644 index 0000000..adbb8d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_64.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_64.jpg new file mode 100644 index 0000000..5b17727 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_65.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_65.jpg new file mode 100644 index 0000000..51279f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_66.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_66.jpg new file mode 100644 index 0000000..7f401d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_67.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_67.jpg new file mode 100644 index 0000000..a0422e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_68.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_68.jpg new file mode 100644 index 0000000..ae20e3b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_81.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_81.jpg new file mode 100644 index 0000000..ef7f937 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_81.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_82.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_82.jpg new file mode 100644 index 0000000..2247ef2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_82.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_83.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_83.jpg new file mode 100644 index 0000000..dc318dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_83.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_84.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_84.jpg new file mode 100644 index 0000000..6ba3bbf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_84.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_85.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_85.jpg new file mode 100644 index 0000000..b46258d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_85.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_86.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_86.jpg new file mode 100644 index 0000000..1b1992a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_86.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_88.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_88.jpg new file mode 100644 index 0000000..c1c1e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_88.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_90.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_90.jpg new file mode 100644 index 0000000..2179cbc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_90.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_91.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_91.jpg new file mode 100644 index 0000000..0642cc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_91.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_shoulder_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_shoulder_haremmatron_d_01.jpg new file mode 100644 index 0000000..4a1c387 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_shoulder_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_01.jpg b/other/AoWoW-master/images/icons/large/inv_spear_01.jpg new file mode 100644 index 0000000..7e10d66 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_02.jpg b/other/AoWoW-master/images/icons/large/inv_spear_02.jpg new file mode 100644 index 0000000..be677f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_03.jpg b/other/AoWoW-master/images/icons/large/inv_spear_03.jpg new file mode 100644 index 0000000..cad2e60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_04.jpg b/other/AoWoW-master/images/icons/large/inv_spear_04.jpg new file mode 100644 index 0000000..d5bd23c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_05.jpg b/other/AoWoW-master/images/icons/large/inv_spear_05.jpg new file mode 100644 index 0000000..dbf4e8f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_06.jpg b/other/AoWoW-master/images/icons/large/inv_spear_06.jpg new file mode 100644 index 0000000..1f56b82 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_07.jpg b/other/AoWoW-master/images/icons/large/inv_spear_07.jpg new file mode 100644 index 0000000..a2f7122 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_08.jpg b/other/AoWoW-master/images/icons/large/inv_spear_08.jpg new file mode 100644 index 0000000..c5199c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_09.jpg b/other/AoWoW-master/images/icons/large/inv_spear_09.jpg new file mode 100644 index 0000000..753fcab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_10.jpg b/other/AoWoW-master/images/icons/large/inv_spear_10.jpg new file mode 100644 index 0000000..70d3375 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_spear_11.jpg b/other/AoWoW-master/images/icons/large/inv_spear_11.jpg new file mode 100644 index 0000000..388d7a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_spear_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_01.jpg b/other/AoWoW-master/images/icons/large/inv_staff_01.jpg new file mode 100644 index 0000000..a07bee2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_02.jpg b/other/AoWoW-master/images/icons/large/inv_staff_02.jpg new file mode 100644 index 0000000..a8d9934 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_03.jpg b/other/AoWoW-master/images/icons/large/inv_staff_03.jpg new file mode 100644 index 0000000..6b65b7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_04.jpg b/other/AoWoW-master/images/icons/large/inv_staff_04.jpg new file mode 100644 index 0000000..a4911ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_05.jpg b/other/AoWoW-master/images/icons/large/inv_staff_05.jpg new file mode 100644 index 0000000..a3957c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_06.jpg b/other/AoWoW-master/images/icons/large/inv_staff_06.jpg new file mode 100644 index 0000000..fecf536 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_07.jpg b/other/AoWoW-master/images/icons/large/inv_staff_07.jpg new file mode 100644 index 0000000..2f9f3b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_08.jpg b/other/AoWoW-master/images/icons/large/inv_staff_08.jpg new file mode 100644 index 0000000..27e66ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_09.jpg b/other/AoWoW-master/images/icons/large/inv_staff_09.jpg new file mode 100644 index 0000000..0e5705e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_10.jpg b/other/AoWoW-master/images/icons/large/inv_staff_10.jpg new file mode 100644 index 0000000..1004c77 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_11.jpg b/other/AoWoW-master/images/icons/large/inv_staff_11.jpg new file mode 100644 index 0000000..841a61b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_12.jpg b/other/AoWoW-master/images/icons/large/inv_staff_12.jpg new file mode 100644 index 0000000..8b541ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_13.jpg b/other/AoWoW-master/images/icons/large/inv_staff_13.jpg new file mode 100644 index 0000000..0569606 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_14.jpg b/other/AoWoW-master/images/icons/large/inv_staff_14.jpg new file mode 100644 index 0000000..99f4323 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_15.jpg b/other/AoWoW-master/images/icons/large/inv_staff_15.jpg new file mode 100644 index 0000000..394be9f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_16.jpg b/other/AoWoW-master/images/icons/large/inv_staff_16.jpg new file mode 100644 index 0000000..5b4e9e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_17.jpg b/other/AoWoW-master/images/icons/large/inv_staff_17.jpg new file mode 100644 index 0000000..64b03d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_18.jpg b/other/AoWoW-master/images/icons/large/inv_staff_18.jpg new file mode 100644 index 0000000..85cc66a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_19.jpg b/other/AoWoW-master/images/icons/large/inv_staff_19.jpg new file mode 100644 index 0000000..ada1b0e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_20.jpg b/other/AoWoW-master/images/icons/large/inv_staff_20.jpg new file mode 100644 index 0000000..cb61dd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_21.jpg b/other/AoWoW-master/images/icons/large/inv_staff_21.jpg new file mode 100644 index 0000000..4b25c2b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_22.jpg b/other/AoWoW-master/images/icons/large/inv_staff_22.jpg new file mode 100644 index 0000000..d4215a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_23.jpg b/other/AoWoW-master/images/icons/large/inv_staff_23.jpg new file mode 100644 index 0000000..be63d41 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_24.jpg b/other/AoWoW-master/images/icons/large/inv_staff_24.jpg new file mode 100644 index 0000000..a2e242c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_25.jpg b/other/AoWoW-master/images/icons/large/inv_staff_25.jpg new file mode 100644 index 0000000..5f34857 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_26.jpg b/other/AoWoW-master/images/icons/large/inv_staff_26.jpg new file mode 100644 index 0000000..5997f67 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_27.jpg b/other/AoWoW-master/images/icons/large/inv_staff_27.jpg new file mode 100644 index 0000000..10eab28 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_28.jpg b/other/AoWoW-master/images/icons/large/inv_staff_28.jpg new file mode 100644 index 0000000..07f9391 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_29.jpg b/other/AoWoW-master/images/icons/large/inv_staff_29.jpg new file mode 100644 index 0000000..5086f8b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_30.jpg b/other/AoWoW-master/images/icons/large/inv_staff_30.jpg new file mode 100644 index 0000000..f356add Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_31.jpg b/other/AoWoW-master/images/icons/large/inv_staff_31.jpg new file mode 100644 index 0000000..5ae4fbf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_32.jpg b/other/AoWoW-master/images/icons/large/inv_staff_32.jpg new file mode 100644 index 0000000..0510b2e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_33.jpg b/other/AoWoW-master/images/icons/large/inv_staff_33.jpg new file mode 100644 index 0000000..8b5080c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_34.jpg b/other/AoWoW-master/images/icons/large/inv_staff_34.jpg new file mode 100644 index 0000000..4dd1a2c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_35.jpg b/other/AoWoW-master/images/icons/large/inv_staff_35.jpg new file mode 100644 index 0000000..bf7def1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_36.jpg b/other/AoWoW-master/images/icons/large/inv_staff_36.jpg new file mode 100644 index 0000000..e1adb55 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_37.jpg b/other/AoWoW-master/images/icons/large/inv_staff_37.jpg new file mode 100644 index 0000000..a56c227 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_38.jpg b/other/AoWoW-master/images/icons/large/inv_staff_38.jpg new file mode 100644 index 0000000..577cd49 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_39.jpg b/other/AoWoW-master/images/icons/large/inv_staff_39.jpg new file mode 100644 index 0000000..04ee8ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_40.jpg b/other/AoWoW-master/images/icons/large/inv_staff_40.jpg new file mode 100644 index 0000000..63b35d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_41.jpg b/other/AoWoW-master/images/icons/large/inv_staff_41.jpg new file mode 100644 index 0000000..5d03141 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_42.jpg b/other/AoWoW-master/images/icons/large/inv_staff_42.jpg new file mode 100644 index 0000000..c54a956 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_43.jpg b/other/AoWoW-master/images/icons/large/inv_staff_43.jpg new file mode 100644 index 0000000..e9845a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_45.jpg b/other/AoWoW-master/images/icons/large/inv_staff_45.jpg new file mode 100644 index 0000000..63fa79c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_46.jpg b/other/AoWoW-master/images/icons/large/inv_staff_46.jpg new file mode 100644 index 0000000..7a0c393 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_47.jpg b/other/AoWoW-master/images/icons/large/inv_staff_47.jpg new file mode 100644 index 0000000..ea9c4d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_48.jpg b/other/AoWoW-master/images/icons/large/inv_staff_48.jpg new file mode 100644 index 0000000..6ad42eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_49.jpg b/other/AoWoW-master/images/icons/large/inv_staff_49.jpg new file mode 100644 index 0000000..975a953 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_50.jpg b/other/AoWoW-master/images/icons/large/inv_staff_50.jpg new file mode 100644 index 0000000..435511a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_51.jpg b/other/AoWoW-master/images/icons/large/inv_staff_51.jpg new file mode 100644 index 0000000..6a06134 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_52.jpg b/other/AoWoW-master/images/icons/large/inv_staff_52.jpg new file mode 100644 index 0000000..367b99a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_53.jpg b/other/AoWoW-master/images/icons/large/inv_staff_53.jpg new file mode 100644 index 0000000..c4b1f34 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_54.jpg b/other/AoWoW-master/images/icons/large/inv_staff_54.jpg new file mode 100644 index 0000000..85ef4da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_55.jpg b/other/AoWoW-master/images/icons/large/inv_staff_55.jpg new file mode 100644 index 0000000..bc8331d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_56.jpg b/other/AoWoW-master/images/icons/large/inv_staff_56.jpg new file mode 100644 index 0000000..170fa29 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_57.jpg b/other/AoWoW-master/images/icons/large/inv_staff_57.jpg new file mode 100644 index 0000000..00c4602 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_58.jpg b/other/AoWoW-master/images/icons/large/inv_staff_58.jpg new file mode 100644 index 0000000..ad6c513 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_59.jpg b/other/AoWoW-master/images/icons/large/inv_staff_59.jpg new file mode 100644 index 0000000..5a056fa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_60.jpg b/other/AoWoW-master/images/icons/large/inv_staff_60.jpg new file mode 100644 index 0000000..e929ef6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_61.jpg b/other/AoWoW-master/images/icons/large/inv_staff_61.jpg new file mode 100644 index 0000000..6b5dea9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_63.jpg b/other/AoWoW-master/images/icons/large/inv_staff_63.jpg new file mode 100644 index 0000000..06a9fad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_64.jpg b/other/AoWoW-master/images/icons/large/inv_staff_64.jpg new file mode 100644 index 0000000..c83d3bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_65.jpg b/other/AoWoW-master/images/icons/large/inv_staff_65.jpg new file mode 100644 index 0000000..d57d8bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_73.jpg b/other/AoWoW-master/images/icons/large/inv_staff_73.jpg new file mode 100644 index 0000000..522da4f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_74.jpg b/other/AoWoW-master/images/icons/large/inv_staff_74.jpg new file mode 100644 index 0000000..43cda2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_78.jpg b/other/AoWoW-master/images/icons/large/inv_staff_78.jpg new file mode 100644 index 0000000..93aaf56 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_78.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_79.jpg b/other/AoWoW-master/images/icons/large/inv_staff_79.jpg new file mode 100644 index 0000000..391365f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_79.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_01.jpg b/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_01.jpg new file mode 100644 index 0000000..c42ea29 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_02.jpg b/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_02.jpg new file mode 100644 index 0000000..15be535 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_03.jpg b/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_03.jpg new file mode 100644 index 0000000..8e00946 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_draenei_a_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_goldfeathered_01.jpg b/other/AoWoW-master/images/icons/large/inv_staff_goldfeathered_01.jpg new file mode 100644 index 0000000..0e942b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_goldfeathered_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_staff_medivh.jpg b/other/AoWoW-master/images/icons/large/inv_staff_medivh.jpg new file mode 100644 index 0000000..72990a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_staff_medivh.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_01.jpg b/other/AoWoW-master/images/icons/large/inv_stone_01.jpg new file mode 100644 index 0000000..62800b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_02.jpg b/other/AoWoW-master/images/icons/large/inv_stone_02.jpg new file mode 100644 index 0000000..34673cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_03.jpg b/other/AoWoW-master/images/icons/large/inv_stone_03.jpg new file mode 100644 index 0000000..6f8938a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_04.jpg b/other/AoWoW-master/images/icons/large/inv_stone_04.jpg new file mode 100644 index 0000000..c1b6454 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_05.jpg b/other/AoWoW-master/images/icons/large/inv_stone_05.jpg new file mode 100644 index 0000000..b50b2ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_06.jpg b/other/AoWoW-master/images/icons/large/inv_stone_06.jpg new file mode 100644 index 0000000..4601e7b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_07.jpg b/other/AoWoW-master/images/icons/large/inv_stone_07.jpg new file mode 100644 index 0000000..a84ee79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_08.jpg b/other/AoWoW-master/images/icons/large/inv_stone_08.jpg new file mode 100644 index 0000000..9cea773 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_09.jpg b/other/AoWoW-master/images/icons/large/inv_stone_09.jpg new file mode 100644 index 0000000..eef7039 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_10.jpg b/other/AoWoW-master/images/icons/large/inv_stone_10.jpg new file mode 100644 index 0000000..452f8a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_11.jpg b/other/AoWoW-master/images/icons/large/inv_stone_11.jpg new file mode 100644 index 0000000..bc47b08 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_12.jpg b/other/AoWoW-master/images/icons/large/inv_stone_12.jpg new file mode 100644 index 0000000..f2a42bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_13.jpg b/other/AoWoW-master/images/icons/large/inv_stone_13.jpg new file mode 100644 index 0000000..4ff7565 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_14.jpg b/other/AoWoW-master/images/icons/large/inv_stone_14.jpg new file mode 100644 index 0000000..832440d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_15.jpg b/other/AoWoW-master/images/icons/large/inv_stone_15.jpg new file mode 100644 index 0000000..0e7131f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_16.jpg b/other/AoWoW-master/images/icons/large/inv_stone_16.jpg new file mode 100644 index 0000000..f982a79 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_01.jpg b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_01.jpg new file mode 100644 index 0000000..e8448b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_02.jpg b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_02.jpg new file mode 100644 index 0000000..2b698ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_03.jpg b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_03.jpg new file mode 100644 index 0000000..0845969 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_04.jpg b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_04.jpg new file mode 100644 index 0000000..907989a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_05.jpg b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_05.jpg new file mode 100644 index 0000000..ee1d246 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_grindingstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_01.jpg b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_01.jpg new file mode 100644 index 0000000..9709f16 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_02.jpg b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_02.jpg new file mode 100644 index 0000000..f48b798 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_03.jpg b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_03.jpg new file mode 100644 index 0000000..570a125 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_04.jpg b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_04.jpg new file mode 100644 index 0000000..8c6c7c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_05.jpg b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_05.jpg new file mode 100644 index 0000000..41ada57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_06.jpg b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_06.jpg new file mode 100644 index 0000000..240fe14 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_07.jpg b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_07.jpg new file mode 100644 index 0000000..a5995d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_sharpeningstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_weightstone_01.jpg b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_01.jpg new file mode 100644 index 0000000..55ff387 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_weightstone_02.jpg b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_02.jpg new file mode 100644 index 0000000..945cc30 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_weightstone_03.jpg b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_03.jpg new file mode 100644 index 0000000..882e756 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_weightstone_04.jpg b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_04.jpg new file mode 100644 index 0000000..6180315 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_weightstone_05.jpg b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_05.jpg new file mode 100644 index 0000000..effd03d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_weightstone_06.jpg b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_06.jpg new file mode 100644 index 0000000..50b2762 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_stone_weightstone_07.jpg b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_07.jpg new file mode 100644 index 0000000..43fe387 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_stone_weightstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_firedrink.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_firedrink.jpg new file mode 100644 index 0000000..aa64eb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_firedrink.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_fireflower.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_fireflower.jpg new file mode 100644 index 0000000..2366fb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_fireflower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_firepotion.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_firepotion.jpg new file mode 100644 index 0000000..c21827d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_firepotion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_firespirit.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_firespirit.jpg new file mode 100644 index 0000000..bfcea47 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_firespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_groundflower.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_groundflower.jpg new file mode 100644 index 0000000..3dd0b42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_groundflower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_smorc.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_smorc.jpg new file mode 100644 index 0000000..173fac1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_smorc.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_high.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_high.jpg new file mode 100644 index 0000000..84f22ed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_high.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_low.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_low.jpg new file mode 100644 index 0000000..8f42f03 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_low.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_medium.jpg b/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_medium.jpg new file mode 100644 index 0000000..927faa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_summerfest_symbol_medium.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_01.jpg b/other/AoWoW-master/images/icons/large/inv_sword_01.jpg new file mode 100644 index 0000000..bba07af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_02.jpg b/other/AoWoW-master/images/icons/large/inv_sword_02.jpg new file mode 100644 index 0000000..9052579 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_03.jpg b/other/AoWoW-master/images/icons/large/inv_sword_03.jpg new file mode 100644 index 0000000..0f2ec2e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_04.jpg b/other/AoWoW-master/images/icons/large/inv_sword_04.jpg new file mode 100644 index 0000000..1266d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_05.jpg b/other/AoWoW-master/images/icons/large/inv_sword_05.jpg new file mode 100644 index 0000000..ad744c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_06.jpg b/other/AoWoW-master/images/icons/large/inv_sword_06.jpg new file mode 100644 index 0000000..eb978a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_07.jpg b/other/AoWoW-master/images/icons/large/inv_sword_07.jpg new file mode 100644 index 0000000..7e4e656 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_08.jpg b/other/AoWoW-master/images/icons/large/inv_sword_08.jpg new file mode 100644 index 0000000..04cccb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_09.jpg b/other/AoWoW-master/images/icons/large/inv_sword_09.jpg new file mode 100644 index 0000000..63fa494 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_10.jpg b/other/AoWoW-master/images/icons/large/inv_sword_10.jpg new file mode 100644 index 0000000..8f70e15 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_107.jpg b/other/AoWoW-master/images/icons/large/inv_sword_107.jpg new file mode 100644 index 0000000..2a3400f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_107.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_108.jpg b/other/AoWoW-master/images/icons/large/inv_sword_108.jpg new file mode 100644 index 0000000..a68f0ae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_108.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_109.jpg b/other/AoWoW-master/images/icons/large/inv_sword_109.jpg new file mode 100644 index 0000000..3e221ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_109.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_11.jpg b/other/AoWoW-master/images/icons/large/inv_sword_11.jpg new file mode 100644 index 0000000..9f72937 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_114.jpg b/other/AoWoW-master/images/icons/large/inv_sword_114.jpg new file mode 100644 index 0000000..18e78cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_114.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_115.jpg b/other/AoWoW-master/images/icons/large/inv_sword_115.jpg new file mode 100644 index 0000000..391420b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_115.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_116.jpg b/other/AoWoW-master/images/icons/large/inv_sword_116.jpg new file mode 100644 index 0000000..daf39cd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_116.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_118.jpg b/other/AoWoW-master/images/icons/large/inv_sword_118.jpg new file mode 100644 index 0000000..a0d4689 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_118.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_12.jpg b/other/AoWoW-master/images/icons/large/inv_sword_12.jpg new file mode 100644 index 0000000..84655aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_13.jpg b/other/AoWoW-master/images/icons/large/inv_sword_13.jpg new file mode 100644 index 0000000..a561af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_14.jpg b/other/AoWoW-master/images/icons/large/inv_sword_14.jpg new file mode 100644 index 0000000..9bb917e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_15.jpg b/other/AoWoW-master/images/icons/large/inv_sword_15.jpg new file mode 100644 index 0000000..686d1f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_16.jpg b/other/AoWoW-master/images/icons/large/inv_sword_16.jpg new file mode 100644 index 0000000..51a7f8f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_17.jpg b/other/AoWoW-master/images/icons/large/inv_sword_17.jpg new file mode 100644 index 0000000..c69e66e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_18.jpg b/other/AoWoW-master/images/icons/large/inv_sword_18.jpg new file mode 100644 index 0000000..893c3dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_19.jpg b/other/AoWoW-master/images/icons/large/inv_sword_19.jpg new file mode 100644 index 0000000..6c67e05 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..c8b9efe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..444538d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..be2f322 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_20.jpg b/other/AoWoW-master/images/icons/large/inv_sword_20.jpg new file mode 100644 index 0000000..f50d78f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_21.jpg b/other/AoWoW-master/images/icons/large/inv_sword_21.jpg new file mode 100644 index 0000000..039af67 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_22.jpg b/other/AoWoW-master/images/icons/large/inv_sword_22.jpg new file mode 100644 index 0000000..2107150 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_23.jpg b/other/AoWoW-master/images/icons/large/inv_sword_23.jpg new file mode 100644 index 0000000..a3b2112 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_24.jpg b/other/AoWoW-master/images/icons/large/inv_sword_24.jpg new file mode 100644 index 0000000..c2d54eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_25.jpg b/other/AoWoW-master/images/icons/large/inv_sword_25.jpg new file mode 100644 index 0000000..42fc64b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_26.jpg b/other/AoWoW-master/images/icons/large/inv_sword_26.jpg new file mode 100644 index 0000000..db1ff28 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_27.jpg b/other/AoWoW-master/images/icons/large/inv_sword_27.jpg new file mode 100644 index 0000000..c2bbb21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_28.jpg b/other/AoWoW-master/images/icons/large/inv_sword_28.jpg new file mode 100644 index 0000000..0e7cd02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_29.jpg b/other/AoWoW-master/images/icons/large/inv_sword_29.jpg new file mode 100644 index 0000000..32f4e63 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_ashbringercorrupt.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_ashbringercorrupt.jpg new file mode 100644 index 0000000..e3b0ae1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_ashbringercorrupt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..3629ea5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..4594480 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..8006e2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_b_01.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_b_01.jpg new file mode 100644 index 0000000..041583e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_b_02.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_b_02.jpg new file mode 100644 index 0000000..f09733e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_b_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_01.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_01.jpg new file mode 100644 index 0000000..64ce9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_02.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_02.jpg new file mode 100644 index 0000000..d5c5747 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_03.jpg b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_03.jpg new file mode 100644 index 0000000..06c7e5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_2h_blood_c_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_30.jpg b/other/AoWoW-master/images/icons/large/inv_sword_30.jpg new file mode 100644 index 0000000..921089c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_31.jpg b/other/AoWoW-master/images/icons/large/inv_sword_31.jpg new file mode 100644 index 0000000..93fd9d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_32.jpg b/other/AoWoW-master/images/icons/large/inv_sword_32.jpg new file mode 100644 index 0000000..e350595 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_33.jpg b/other/AoWoW-master/images/icons/large/inv_sword_33.jpg new file mode 100644 index 0000000..2df78be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_34.jpg b/other/AoWoW-master/images/icons/large/inv_sword_34.jpg new file mode 100644 index 0000000..5e6b87f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_35.jpg b/other/AoWoW-master/images/icons/large/inv_sword_35.jpg new file mode 100644 index 0000000..aa5f4d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_36.jpg b/other/AoWoW-master/images/icons/large/inv_sword_36.jpg new file mode 100644 index 0000000..6f5a949 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_36.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_37.jpg b/other/AoWoW-master/images/icons/large/inv_sword_37.jpg new file mode 100644 index 0000000..ebdf175 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_38.jpg b/other/AoWoW-master/images/icons/large/inv_sword_38.jpg new file mode 100644 index 0000000..6883011 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_39.jpg b/other/AoWoW-master/images/icons/large/inv_sword_39.jpg new file mode 100644 index 0000000..f1152b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_40.jpg b/other/AoWoW-master/images/icons/large/inv_sword_40.jpg new file mode 100644 index 0000000..f08a438 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_41.jpg b/other/AoWoW-master/images/icons/large/inv_sword_41.jpg new file mode 100644 index 0000000..242f3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_42.jpg b/other/AoWoW-master/images/icons/large/inv_sword_42.jpg new file mode 100644 index 0000000..d45e4d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_43.jpg b/other/AoWoW-master/images/icons/large/inv_sword_43.jpg new file mode 100644 index 0000000..55146bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_44.jpg b/other/AoWoW-master/images/icons/large/inv_sword_44.jpg new file mode 100644 index 0000000..408aeff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_45.jpg b/other/AoWoW-master/images/icons/large/inv_sword_45.jpg new file mode 100644 index 0000000..a3972e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_46.jpg b/other/AoWoW-master/images/icons/large/inv_sword_46.jpg new file mode 100644 index 0000000..458aee6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_47.jpg b/other/AoWoW-master/images/icons/large/inv_sword_47.jpg new file mode 100644 index 0000000..11ba65f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_48.jpg b/other/AoWoW-master/images/icons/large/inv_sword_48.jpg new file mode 100644 index 0000000..eee0a58 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_49.jpg b/other/AoWoW-master/images/icons/large/inv_sword_49.jpg new file mode 100644 index 0000000..57abc07 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_50.jpg b/other/AoWoW-master/images/icons/large/inv_sword_50.jpg new file mode 100644 index 0000000..dbc3f5c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_51.jpg b/other/AoWoW-master/images/icons/large/inv_sword_51.jpg new file mode 100644 index 0000000..3cf41ed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_52.jpg b/other/AoWoW-master/images/icons/large/inv_sword_52.jpg new file mode 100644 index 0000000..cbae93e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_53.jpg b/other/AoWoW-master/images/icons/large/inv_sword_53.jpg new file mode 100644 index 0000000..0314655 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_54.jpg b/other/AoWoW-master/images/icons/large/inv_sword_54.jpg new file mode 100644 index 0000000..ce5b0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_55.jpg b/other/AoWoW-master/images/icons/large/inv_sword_55.jpg new file mode 100644 index 0000000..67207cc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_56.jpg b/other/AoWoW-master/images/icons/large/inv_sword_56.jpg new file mode 100644 index 0000000..cbae93e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_57.jpg b/other/AoWoW-master/images/icons/large/inv_sword_57.jpg new file mode 100644 index 0000000..49366ee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_58.jpg b/other/AoWoW-master/images/icons/large/inv_sword_58.jpg new file mode 100644 index 0000000..4d3e485 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_59.jpg b/other/AoWoW-master/images/icons/large/inv_sword_59.jpg new file mode 100644 index 0000000..8139d3f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_60.jpg b/other/AoWoW-master/images/icons/large/inv_sword_60.jpg new file mode 100644 index 0000000..8a627c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_61.jpg b/other/AoWoW-master/images/icons/large/inv_sword_61.jpg new file mode 100644 index 0000000..7292c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_62.jpg b/other/AoWoW-master/images/icons/large/inv_sword_62.jpg new file mode 100644 index 0000000..9964155 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_63.jpg b/other/AoWoW-master/images/icons/large/inv_sword_63.jpg new file mode 100644 index 0000000..728c5f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_64.jpg b/other/AoWoW-master/images/icons/large/inv_sword_64.jpg new file mode 100644 index 0000000..25c880e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_65.jpg b/other/AoWoW-master/images/icons/large/inv_sword_65.jpg new file mode 100644 index 0000000..8a714fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_66.jpg b/other/AoWoW-master/images/icons/large/inv_sword_66.jpg new file mode 100644 index 0000000..7239cfb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_67.jpg b/other/AoWoW-master/images/icons/large/inv_sword_67.jpg new file mode 100644 index 0000000..5b02e3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_67.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_68.jpg b/other/AoWoW-master/images/icons/large/inv_sword_68.jpg new file mode 100644 index 0000000..3438c0e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_68.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_69.jpg b/other/AoWoW-master/images/icons/large/inv_sword_69.jpg new file mode 100644 index 0000000..9c43fb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_69.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_70.jpg b/other/AoWoW-master/images/icons/large/inv_sword_70.jpg new file mode 100644 index 0000000..d0535d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_70.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_71.jpg b/other/AoWoW-master/images/icons/large/inv_sword_71.jpg new file mode 100644 index 0000000..06edced Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_72.jpg b/other/AoWoW-master/images/icons/large/inv_sword_72.jpg new file mode 100644 index 0000000..4f44522 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_72.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_73.jpg b/other/AoWoW-master/images/icons/large/inv_sword_73.jpg new file mode 100644 index 0000000..8fb4332 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_74.jpg b/other/AoWoW-master/images/icons/large/inv_sword_74.jpg new file mode 100644 index 0000000..fb047d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_75.jpg b/other/AoWoW-master/images/icons/large/inv_sword_75.jpg new file mode 100644 index 0000000..e322ca0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_75.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_76.jpg b/other/AoWoW-master/images/icons/large/inv_sword_76.jpg new file mode 100644 index 0000000..5029f85 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_76.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_77.jpg b/other/AoWoW-master/images/icons/large/inv_sword_77.jpg new file mode 100644 index 0000000..7fedd88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_77.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_78.jpg b/other/AoWoW-master/images/icons/large/inv_sword_78.jpg new file mode 100644 index 0000000..ca8eacf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_78.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_79.jpg b/other/AoWoW-master/images/icons/large/inv_sword_79.jpg new file mode 100644 index 0000000..480f9fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_79.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_80.jpg b/other/AoWoW-master/images/icons/large/inv_sword_80.jpg new file mode 100644 index 0000000..9acebaf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_80.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_81.jpg b/other/AoWoW-master/images/icons/large/inv_sword_81.jpg new file mode 100644 index 0000000..485678f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_81.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_82.jpg b/other/AoWoW-master/images/icons/large/inv_sword_82.jpg new file mode 100644 index 0000000..a433f65 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_82.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_83.jpg b/other/AoWoW-master/images/icons/large/inv_sword_83.jpg new file mode 100644 index 0000000..e5be66d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_83.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_84.jpg b/other/AoWoW-master/images/icons/large/inv_sword_84.jpg new file mode 100644 index 0000000..c349fb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_84.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_85.jpg b/other/AoWoW-master/images/icons/large/inv_sword_85.jpg new file mode 100644 index 0000000..be0a52a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_85.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_86.jpg b/other/AoWoW-master/images/icons/large/inv_sword_86.jpg new file mode 100644 index 0000000..121d731 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_86.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_87.jpg b/other/AoWoW-master/images/icons/large/inv_sword_87.jpg new file mode 100644 index 0000000..0a32041 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_87.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_88.jpg b/other/AoWoW-master/images/icons/large/inv_sword_88.jpg new file mode 100644 index 0000000..ae06626 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_88.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_89.jpg b/other/AoWoW-master/images/icons/large/inv_sword_89.jpg new file mode 100644 index 0000000..36fbe5f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_89.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_90.jpg b/other/AoWoW-master/images/icons/large/inv_sword_90.jpg new file mode 100644 index 0000000..634c869 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_90.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_91.jpg b/other/AoWoW-master/images/icons/large/inv_sword_91.jpg new file mode 100644 index 0000000..aada285 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_91.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_92.jpg b/other/AoWoW-master/images/icons/large/inv_sword_92.jpg new file mode 100644 index 0000000..38ac9b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_92.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_93.jpg b/other/AoWoW-master/images/icons/large/inv_sword_93.jpg new file mode 100644 index 0000000..9dd6047 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_93.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_94.jpg b/other/AoWoW-master/images/icons/large/inv_sword_94.jpg new file mode 100644 index 0000000..4b5dad1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_94.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_bloodelf_03.jpg b/other/AoWoW-master/images/icons/large/inv_sword_bloodelf_03.jpg new file mode 100644 index 0000000..f4e17b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_bloodelf_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_01.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_01.jpg new file mode 100644 index 0000000..7fcaa84 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_02.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_02.jpg new file mode 100644 index 0000000..c476033 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_03.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_03.jpg new file mode 100644 index 0000000..2a21971 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_04.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_04.jpg new file mode 100644 index 0000000..c04c3a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_05.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_05.jpg new file mode 100644 index 0000000..6980c02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_06.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_06.jpg new file mode 100644 index 0000000..6de338a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_07.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_07.jpg new file mode 100644 index 0000000..9a48f51 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_sword_draenei_08.jpg b/other/AoWoW-master/images/icons/large/inv_sword_draenei_08.jpg new file mode 100644 index 0000000..4a837a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_sword_draenei_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingaxe_01.jpg b/other/AoWoW-master/images/icons/large/inv_throwingaxe_01.jpg new file mode 100644 index 0000000..2d0c25b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingaxe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingaxe_02.jpg b/other/AoWoW-master/images/icons/large/inv_throwingaxe_02.jpg new file mode 100644 index 0000000..c138543 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingaxe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingaxe_03.jpg b/other/AoWoW-master/images/icons/large/inv_throwingaxe_03.jpg new file mode 100644 index 0000000..3efae32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingaxe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingaxe_04.jpg b/other/AoWoW-master/images/icons/large/inv_throwingaxe_04.jpg new file mode 100644 index 0000000..a689cc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingaxe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingaxe_05.jpg b/other/AoWoW-master/images/icons/large/inv_throwingaxe_05.jpg new file mode 100644 index 0000000..5e796e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingaxe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingaxe_06.jpg b/other/AoWoW-master/images/icons/large/inv_throwingaxe_06.jpg new file mode 100644 index 0000000..05a7093 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingaxe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingknife_01.jpg b/other/AoWoW-master/images/icons/large/inv_throwingknife_01.jpg new file mode 100644 index 0000000..a950712 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingknife_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingknife_02.jpg b/other/AoWoW-master/images/icons/large/inv_throwingknife_02.jpg new file mode 100644 index 0000000..273c3dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingknife_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingknife_03.jpg b/other/AoWoW-master/images/icons/large/inv_throwingknife_03.jpg new file mode 100644 index 0000000..98ac202 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingknife_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingknife_04.jpg b/other/AoWoW-master/images/icons/large/inv_throwingknife_04.jpg new file mode 100644 index 0000000..7cc32a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingknife_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingknife_05.jpg b/other/AoWoW-master/images/icons/large/inv_throwingknife_05.jpg new file mode 100644 index 0000000..818dc7f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingknife_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingknife_06.jpg b/other/AoWoW-master/images/icons/large/inv_throwingknife_06.jpg new file mode 100644 index 0000000..9e7815a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingknife_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_throwingknife_07.jpg b/other/AoWoW-master/images/icons/large/inv_throwingknife_07.jpg new file mode 100644 index 0000000..c1e1a60 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_throwingknife_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_torch_lit.jpg b/other/AoWoW-master/images/icons/large/inv_torch_lit.jpg new file mode 100644 index 0000000..3bba6fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_torch_lit.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_torch_thrown.jpg b/other/AoWoW-master/images/icons/large/inv_torch_thrown.jpg new file mode 100644 index 0000000..2e6f49d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_torch_thrown.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_torch_unlit.jpg b/other/AoWoW-master/images/icons/large/inv_torch_unlit.jpg new file mode 100644 index 0000000..3209039 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_torch_unlit.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_tradeskillitem_01.jpg b/other/AoWoW-master/images/icons/large/inv_tradeskillitem_01.jpg new file mode 100644 index 0000000..39f9a92 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_tradeskillitem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_tradeskillitem_02.jpg b/other/AoWoW-master/images/icons/large/inv_tradeskillitem_02.jpg new file mode 100644 index 0000000..accd1d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_tradeskillitem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_tradeskillitem_03.jpg b/other/AoWoW-master/images/icons/large/inv_tradeskillitem_03.jpg new file mode 100644 index 0000000..cb52088 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_tradeskillitem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_honorhold.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_honorhold.jpg new file mode 100644 index 0000000..65a881b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas01.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas01.jpg new file mode 100644 index 0000000..22a55fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas02.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas02.jpg new file mode 100644 index 0000000..4eeb3e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas03.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas03.jpg new file mode 100644 index 0000000..3860b04 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas04.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas04.jpg new file mode 100644 index 0000000..098ed8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas05.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas05.jpg new file mode 100644 index 0000000..941a585 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas06.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas06.jpg new file mode 100644 index 0000000..a07dfb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_naxxramas06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_trinket_thrallmar.jpg b/other/AoWoW-master/images/icons/large/inv_trinket_thrallmar.jpg new file mode 100644 index 0000000..f71b0c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_trinket_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinecolognebottle.jpg b/other/AoWoW-master/images/icons/large/inv_valentinecolognebottle.jpg new file mode 100644 index 0000000..0f29798 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinecolognebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentineperfumebottle.jpg b/other/AoWoW-master/images/icons/large/inv_valentineperfumebottle.jpg new file mode 100644 index 0000000..3004383 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentineperfumebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinepinkrocket.jpg b/other/AoWoW-master/images/icons/large/inv_valentinepinkrocket.jpg new file mode 100644 index 0000000..84214a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinepinkrocket.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinesboxofchocolates01.jpg b/other/AoWoW-master/images/icons/large/inv_valentinesboxofchocolates01.jpg new file mode 100644 index 0000000..32c23f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinesboxofchocolates01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinesboxofchocolates02.jpg b/other/AoWoW-master/images/icons/large/inv_valentinesboxofchocolates02.jpg new file mode 100644 index 0000000..583c434 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinesboxofchocolates02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinescandy.jpg b/other/AoWoW-master/images/icons/large/inv_valentinescandy.jpg new file mode 100644 index 0000000..b296696 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinescandy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinescandysack.jpg b/other/AoWoW-master/images/icons/large/inv_valentinescandysack.jpg new file mode 100644 index 0000000..36f7717 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinescandysack.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinescard01.jpg b/other/AoWoW-master/images/icons/large/inv_valentinescard01.jpg new file mode 100644 index 0000000..e269e3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinescard01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinescard02.jpg b/other/AoWoW-master/images/icons/large/inv_valentinescard02.jpg new file mode 100644 index 0000000..08745fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinescard02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinescardtornleft.jpg b/other/AoWoW-master/images/icons/large/inv_valentinescardtornleft.jpg new file mode 100644 index 0000000..5f48c83 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinescardtornleft.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentinescardtornright.jpg b/other/AoWoW-master/images/icons/large/inv_valentinescardtornright.jpg new file mode 100644 index 0000000..71e90a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentinescardtornright.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentineschocolate01.jpg b/other/AoWoW-master/images/icons/large/inv_valentineschocolate01.jpg new file mode 100644 index 0000000..3af218a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentineschocolate01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentineschocolate02.jpg b/other/AoWoW-master/images/icons/large/inv_valentineschocolate02.jpg new file mode 100644 index 0000000..dc30291 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentineschocolate02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentineschocolate03.jpg b/other/AoWoW-master/images/icons/large/inv_valentineschocolate03.jpg new file mode 100644 index 0000000..d70fb33 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentineschocolate03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_valentineschocolate04.jpg b/other/AoWoW-master/images/icons/large/inv_valentineschocolate04.jpg new file mode 100644 index 0000000..155bdd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_valentineschocolate04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_waepon_bow_zulgrub_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_waepon_bow_zulgrub_d_01.jpg new file mode 100644 index 0000000..fc9a0da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_waepon_bow_zulgrub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_waepon_bow_zulgrub_d_02.jpg b/other/AoWoW-master/images/icons/large/inv_waepon_bow_zulgrub_d_02.jpg new file mode 100644 index 0000000..68e59dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_waepon_bow_zulgrub_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_01.jpg b/other/AoWoW-master/images/icons/large/inv_wand_01.jpg new file mode 100644 index 0000000..8f1b048 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_02.jpg b/other/AoWoW-master/images/icons/large/inv_wand_02.jpg new file mode 100644 index 0000000..68a5577 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_03.jpg b/other/AoWoW-master/images/icons/large/inv_wand_03.jpg new file mode 100644 index 0000000..cff7fe6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_04.jpg b/other/AoWoW-master/images/icons/large/inv_wand_04.jpg new file mode 100644 index 0000000..035593b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_05.jpg b/other/AoWoW-master/images/icons/large/inv_wand_05.jpg new file mode 100644 index 0000000..95a8f00 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_06.jpg b/other/AoWoW-master/images/icons/large/inv_wand_06.jpg new file mode 100644 index 0000000..ff02358 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_07.jpg b/other/AoWoW-master/images/icons/large/inv_wand_07.jpg new file mode 100644 index 0000000..336214a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_08.jpg b/other/AoWoW-master/images/icons/large/inv_wand_08.jpg new file mode 100644 index 0000000..6512946 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_09.jpg b/other/AoWoW-master/images/icons/large/inv_wand_09.jpg new file mode 100644 index 0000000..d9c0830 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_10.jpg b/other/AoWoW-master/images/icons/large/inv_wand_10.jpg new file mode 100644 index 0000000..af7ce04 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_11.jpg b/other/AoWoW-master/images/icons/large/inv_wand_11.jpg new file mode 100644 index 0000000..74ff2f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_12.jpg b/other/AoWoW-master/images/icons/large/inv_wand_12.jpg new file mode 100644 index 0000000..1edbf0f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_14.jpg b/other/AoWoW-master/images/icons/large/inv_wand_14.jpg new file mode 100644 index 0000000..0605503 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_15.jpg b/other/AoWoW-master/images/icons/large/inv_wand_15.jpg new file mode 100644 index 0000000..b79c5d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_16.jpg b/other/AoWoW-master/images/icons/large/inv_wand_16.jpg new file mode 100644 index 0000000..ff30996 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_17.jpg b/other/AoWoW-master/images/icons/large/inv_wand_17.jpg new file mode 100644 index 0000000..759f6bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_18.jpg b/other/AoWoW-master/images/icons/large/inv_wand_18.jpg new file mode 100644 index 0000000..6f9f380 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_19.jpg b/other/AoWoW-master/images/icons/large/inv_wand_19.jpg new file mode 100644 index 0000000..afe95f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/large/inv_wand_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..56d3d50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/large/inv_wand_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..9ce41e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_20.jpg b/other/AoWoW-master/images/icons/large/inv_wand_20.jpg new file mode 100644 index 0000000..0d8547a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_21.jpg b/other/AoWoW-master/images/icons/large/inv_wand_21.jpg new file mode 100644 index 0000000..592e0e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_22.jpg b/other/AoWoW-master/images/icons/large/inv_wand_22.jpg new file mode 100644 index 0000000..801172e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_23.jpg b/other/AoWoW-master/images/icons/large/inv_wand_23.jpg new file mode 100644 index 0000000..511abe7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_24.jpg b/other/AoWoW-master/images/icons/large/inv_wand_24.jpg new file mode 100644 index 0000000..91f0f8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_wand_25.jpg b/other/AoWoW-master/images/icons/large/inv_wand_25.jpg new file mode 100644 index 0000000..f2d5277 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_wand_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_01.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_01.jpg new file mode 100644 index 0000000..ec33677 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_02.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_02.jpg new file mode 100644 index 0000000..dcac4b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_03.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_03.jpg new file mode 100644 index 0000000..8234b4b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_04.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_04.jpg new file mode 100644 index 0000000..3c79573 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_05.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_05.jpg new file mode 100644 index 0000000..117a32c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_06.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_06.jpg new file mode 100644 index 0000000..41c106c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_07.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_07.jpg new file mode 100644 index 0000000..542449a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_08.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_08.jpg new file mode 100644 index 0000000..800de18 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_09.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_09.jpg new file mode 100644 index 0000000..9ef4f42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_10.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_10.jpg new file mode 100644 index 0000000..61809bd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_11.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_11.jpg new file mode 100644 index 0000000..843cccc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_12.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_12.jpg new file mode 100644 index 0000000..ce3de90 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_13.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_13.jpg new file mode 100644 index 0000000..15afc27 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_14.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_14.jpg new file mode 100644 index 0000000..cdd4f23 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_15.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_15.jpg new file mode 100644 index 0000000..5660b48 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_16.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_16.jpg new file mode 100644 index 0000000..3fcf251 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_17.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_17.jpg new file mode 100644 index 0000000..0ca95f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_18.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_18.jpg new file mode 100644 index 0000000..717e82e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_19.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_19.jpg new file mode 100644 index 0000000..65c04e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_20.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_20.jpg new file mode 100644 index 0000000..d8b3071 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_28.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_28.jpg new file mode 100644 index 0000000..cdd4f23 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_30.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_30.jpg new file mode 100644 index 0000000..fff02a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_31.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_31.jpg new file mode 100644 index 0000000..2f898d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_32.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_32.jpg new file mode 100644 index 0000000..ecd6c5c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_37.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_37.jpg new file mode 100644 index 0000000..b5cb29e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_38.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_38.jpg new file mode 100644 index 0000000..0a1467e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_bow_39.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_bow_39.jpg new file mode 100644 index 0000000..81acb2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_bow_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_01.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_01.jpg new file mode 100644 index 0000000..0b0c693 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_02.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_02.jpg new file mode 100644 index 0000000..3b50082 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_03.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_03.jpg new file mode 100644 index 0000000..030cf2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_04.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_04.jpg new file mode 100644 index 0000000..027615b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_05.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_05.jpg new file mode 100644 index 0000000..c722957 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_06.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_06.jpg new file mode 100644 index 0000000..a551ac3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_07.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_07.jpg new file mode 100644 index 0000000..99e719f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_08.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_08.jpg new file mode 100644 index 0000000..8dc2478 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_09.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_09.jpg new file mode 100644 index 0000000..73b3c49 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_10.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_10.jpg new file mode 100644 index 0000000..805f4e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_11.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_11.jpg new file mode 100644 index 0000000..195e318 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_12.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_12.jpg new file mode 100644 index 0000000..6716d21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_13.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_13.jpg new file mode 100644 index 0000000..65a7a69 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_14.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_14.jpg new file mode 100644 index 0000000..356e86e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_15.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_15.jpg new file mode 100644 index 0000000..7ab8c46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_16.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_16.jpg new file mode 100644 index 0000000..9ce0b05 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_17.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_17.jpg new file mode 100644 index 0000000..3ce31fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_18.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_18.jpg new file mode 100644 index 0000000..9e746bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_19.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_19.jpg new file mode 100644 index 0000000..fadeb0e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_20.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_20.jpg new file mode 100644 index 0000000..9454f47 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_25.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_25.jpg new file mode 100644 index 0000000..d9c27ed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_26.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_26.jpg new file mode 100644 index 0000000..f210993 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_crossbow_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_glave_01.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_glave_01.jpg new file mode 100644 index 0000000..2bb7d25 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_glave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halbard_01.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halbard_01.jpg new file mode 100644 index 0000000..8dcfbb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halbard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd13.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd13.jpg new file mode 100644 index 0000000..f90cf57 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd14.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd14.jpg new file mode 100644 index 0000000..09eb621 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd15.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd15.jpg new file mode 100644 index 0000000..2d57759 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd16.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd16.jpg new file mode 100644 index 0000000..165c468 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd17.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd17.jpg new file mode 100644 index 0000000..eeff49e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd18.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd18.jpg new file mode 100644 index 0000000..24c741d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd19.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd19.jpg new file mode 100644 index 0000000..a21e53d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_02.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_02.jpg new file mode 100644 index 0000000..6056a54 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_03.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_03.jpg new file mode 100644 index 0000000..2420f5d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_04.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_04.jpg new file mode 100644 index 0000000..240485b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_05.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_05.jpg new file mode 100644 index 0000000..4b357b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_06.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_06.jpg new file mode 100644 index 0000000..6573b31 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_07.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_07.jpg new file mode 100644 index 0000000..99f225a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_08.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_08.jpg new file mode 100644 index 0000000..134c4ac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_09.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_09.jpg new file mode 100644 index 0000000..5237b39 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_10.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_10.jpg new file mode 100644 index 0000000..fafb14a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_11.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_11.jpg new file mode 100644 index 0000000..a2b93c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_12.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_12.jpg new file mode 100644 index 0000000..cd1f2fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_20.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_20.jpg new file mode 100644 index 0000000..95e27d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_22.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_22.jpg new file mode 100644 index 0000000..dab5506 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_halberd_ahnqiraj.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_ahnqiraj.jpg new file mode 100644 index 0000000..51d1378 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_halberd_ahnqiraj.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_01.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_01.jpg new file mode 100644 index 0000000..9229541 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_02.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_02.jpg new file mode 100644 index 0000000..ff456f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_03.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_03.jpg new file mode 100644 index 0000000..721b460 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_04.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_04.jpg new file mode 100644 index 0000000..a40366b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_05.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_05.jpg new file mode 100644 index 0000000..5474e40 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_06.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_06.jpg new file mode 100644 index 0000000..c42a727 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_07.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_07.jpg new file mode 100644 index 0000000..814aba5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_08.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_08.jpg new file mode 100644 index 0000000..4a26798 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_09.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_09.jpg new file mode 100644 index 0000000..c202478 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_10.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_10.jpg new file mode 100644 index 0000000..6421e90 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_11.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_11.jpg new file mode 100644 index 0000000..79b0374 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_12.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_12.jpg new file mode 100644 index 0000000..b0455c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_13.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_13.jpg new file mode 100644 index 0000000..aec1e06 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_14.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_14.jpg new file mode 100644 index 0000000..6c7715e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_15.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_15.jpg new file mode 100644 index 0000000..0d7133b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_hand_16.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_hand_16.jpg new file mode 100644 index 0000000..0ed9b9d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_hand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_01.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_01.jpg new file mode 100644 index 0000000..78fd9f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_02.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_02.jpg new file mode 100644 index 0000000..6545a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_03.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_03.jpg new file mode 100644 index 0000000..85bf9d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_04.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_04.jpg new file mode 100644 index 0000000..55318dc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_05.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_05.jpg new file mode 100644 index 0000000..164fc9c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_06.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_06.jpg new file mode 100644 index 0000000..8d467c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_07.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_07.jpg new file mode 100644 index 0000000..931d9f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_08.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_08.jpg new file mode 100644 index 0000000..e44c9f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_09.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_09.jpg new file mode 100644 index 0000000..307e5c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_10.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_10.jpg new file mode 100644 index 0000000..3c8cafb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_11.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_11.jpg new file mode 100644 index 0000000..5130a02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_13.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_13.jpg new file mode 100644 index 0000000..43a2321 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_14.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_14.jpg new file mode 100644 index 0000000..a76c1b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_15.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_15.jpg new file mode 100644 index 0000000..20180a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_16.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_16.jpg new file mode 100644 index 0000000..5d1ae44 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_17.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_17.jpg new file mode 100644 index 0000000..2a3cc83 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_18.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_18.jpg new file mode 100644 index 0000000..0050bf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_19.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_19.jpg new file mode 100644 index 0000000..3d8c8cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_20.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_20.jpg new file mode 100644 index 0000000..125ee1e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_21.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_21.jpg new file mode 100644 index 0000000..d6f3faf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_22.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_22.jpg new file mode 100644 index 0000000..7c8e895 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_23.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_23.jpg new file mode 100644 index 0000000..32a592e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_rifle_24.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_24.jpg new file mode 100644 index 0000000..94b7a21 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_rifle_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_01.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_01.jpg new file mode 100644 index 0000000..f37e399 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_02.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_02.jpg new file mode 100644 index 0000000..0630604 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_03.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_03.jpg new file mode 100644 index 0000000..70edfd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_04.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_04.jpg new file mode 100644 index 0000000..2bb6fec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_05.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_05.jpg new file mode 100644 index 0000000..cd9c7ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_05.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_06.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_06.jpg new file mode 100644 index 0000000..2cd2d83 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_06.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_07.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_07.jpg new file mode 100644 index 0000000..b358fe3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_07.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_08.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_08.jpg new file mode 100644 index 0000000..700acbd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_08.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_09.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_09.jpg new file mode 100644 index 0000000..e5d34d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_09.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_10.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_10.jpg new file mode 100644 index 0000000..11da880 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_10.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_11.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_11.jpg new file mode 100644 index 0000000..3e7f023 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_11.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_12.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_12.jpg new file mode 100644 index 0000000..917532d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_12.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_13.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_13.jpg new file mode 100644 index 0000000..d3402b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_13.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_14.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_14.jpg new file mode 100644 index 0000000..9bbf02b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_14.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_15.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_15.jpg new file mode 100644 index 0000000..05c7c37 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_15.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_16.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_16.jpg new file mode 100644 index 0000000..ba513c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_16.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_17.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_17.jpg new file mode 100644 index 0000000..a180455 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_17.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_18.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_18.jpg new file mode 100644 index 0000000..fd8dac6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_18.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_19.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_19.jpg new file mode 100644 index 0000000..066e54d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_19.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_20.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_20.jpg new file mode 100644 index 0000000..0c1f6a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_20.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_21.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_21.jpg new file mode 100644 index 0000000..21f91e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_21.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_22.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_22.jpg new file mode 100644 index 0000000..3c750fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_22.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_23.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_23.jpg new file mode 100644 index 0000000..9e78acf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_23.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_24.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_24.jpg new file mode 100644 index 0000000..ed774ec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_24.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_25.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_25.jpg new file mode 100644 index 0000000..89a423b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_25.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_26.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_26.jpg new file mode 100644 index 0000000..1f1e3ef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_26.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_27.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_27.jpg new file mode 100644 index 0000000..5adf30e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_27.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_28.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_28.jpg new file mode 100644 index 0000000..3d61905 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_28.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_29.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_29.jpg new file mode 100644 index 0000000..4cadcff Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_29.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_30.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_30.jpg new file mode 100644 index 0000000..41a5f98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_30.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_31.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_31.jpg new file mode 100644 index 0000000..7ddbbf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_31.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_32.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_32.jpg new file mode 100644 index 0000000..3947f53 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_32.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_33.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_33.jpg new file mode 100644 index 0000000..8ca37e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_33.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_34.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_34.jpg new file mode 100644 index 0000000..d37ba2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_34.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_35.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_35.jpg new file mode 100644 index 0000000..e8f3f2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_35.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_37.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_37.jpg new file mode 100644 index 0000000..0b1bde0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_37.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_38.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_38.jpg new file mode 100644 index 0000000..db5acde Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_38.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_39.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_39.jpg new file mode 100644 index 0000000..5c5af42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_39.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_40.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_40.jpg new file mode 100644 index 0000000..bba99b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_40.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_41.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_41.jpg new file mode 100644 index 0000000..4d4239e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_41.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_42.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_42.jpg new file mode 100644 index 0000000..1c5c973 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_42.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_43.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_43.jpg new file mode 100644 index 0000000..ba3e118 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_43.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_44.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_44.jpg new file mode 100644 index 0000000..09b079d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_44.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_45.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_45.jpg new file mode 100644 index 0000000..b8d7256 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_45.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_46.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_46.jpg new file mode 100644 index 0000000..5e33011 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_46.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_47.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_47.jpg new file mode 100644 index 0000000..86a5f13 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_47.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_48.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_48.jpg new file mode 100644 index 0000000..442a87f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_48.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_49.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_49.jpg new file mode 100644 index 0000000..c0cbef7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_49.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_50.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_50.jpg new file mode 100644 index 0000000..4918a55 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_50.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_51.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_51.jpg new file mode 100644 index 0000000..43a46fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_51.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_52.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_52.jpg new file mode 100644 index 0000000..2ed2b51 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_52.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_53.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_53.jpg new file mode 100644 index 0000000..497113b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_53.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_54.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_54.jpg new file mode 100644 index 0000000..be6abea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_54.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_55.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_55.jpg new file mode 100644 index 0000000..97e7afe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_55.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_56.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_56.jpg new file mode 100644 index 0000000..f936bea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_56.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_57.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_57.jpg new file mode 100644 index 0000000..136f37a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_57.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_58.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_58.jpg new file mode 100644 index 0000000..d245598 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_58.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_59.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_59.jpg new file mode 100644 index 0000000..65a43a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_59.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_60.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_60.jpg new file mode 100644 index 0000000..5376772 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_60.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_61.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_61.jpg new file mode 100644 index 0000000..bc75ade Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_61.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_62.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_62.jpg new file mode 100644 index 0000000..4379839 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_62.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_63.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_63.jpg new file mode 100644 index 0000000..3df25cf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_63.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_64.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_64.jpg new file mode 100644 index 0000000..85bb949 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_64.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_65.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_65.jpg new file mode 100644 index 0000000..78f280c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_65.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_66.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_66.jpg new file mode 100644 index 0000000..326e316 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_66.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_71.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_71.jpg new file mode 100644 index 0000000..3d5fd1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_71.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_73.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_73.jpg new file mode 100644 index 0000000..45ef97e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_73.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_74.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_74.jpg new file mode 100644 index 0000000..ecebd6d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_74.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_75.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_75.jpg new file mode 100644 index 0000000..4382c6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_75.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_78.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_78.jpg new file mode 100644 index 0000000..2b3d485 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_78.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_79.jpg b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_79.jpg new file mode 100644 index 0000000..82fb568 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_weapon_shortblade_79.jpg differ diff --git a/other/AoWoW-master/images/icons/large/inv_zulgurubtrinket.jpg b/other/AoWoW-master/images/icons/large/inv_zulgurubtrinket.jpg new file mode 100644 index 0000000..9c8128d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/inv_zulgurubtrinket.jpg differ diff --git a/other/AoWoW-master/images/icons/large/mail_gmicon.jpg b/other/AoWoW-master/images/icons/large/mail_gmicon.jpg new file mode 100644 index 0000000..e2918fd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/mail_gmicon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/racial_dwarf_findtreasure.jpg b/other/AoWoW-master/images/icons/large/racial_dwarf_findtreasure.jpg new file mode 100644 index 0000000..c5cf0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/racial_dwarf_findtreasure.jpg differ diff --git a/other/AoWoW-master/images/icons/large/racial_orc_berserkerstrength.jpg b/other/AoWoW-master/images/icons/large/racial_orc_berserkerstrength.jpg new file mode 100644 index 0000000..38921b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/racial_orc_berserkerstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/large/racial_troll_berserk.jpg b/other/AoWoW-master/images/icons/large/racial_troll_berserk.jpg new file mode 100644 index 0000000..7515d97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/racial_troll_berserk.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_arcane01.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_arcane01.jpg new file mode 100644 index 0000000..f886658 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_arcane01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_arcane02.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_arcane02.jpg new file mode 100644 index 0000000..6d39d53 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_arcane02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_arcane03.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_arcane03.jpg new file mode 100644 index 0000000..89744d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_arcane03.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_arcane04.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_arcane04.jpg new file mode 100644 index 0000000..f9b7807 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_arcane04.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_arcanepotency.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_arcanepotency.jpg new file mode 100644 index 0000000..8f79a42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_arcanepotency.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_arcaneresilience.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_arcaneresilience.jpg new file mode 100644 index 0000000..f79b8ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_arcaneresilience.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_arcanetorrent.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_arcanetorrent.jpg new file mode 100644 index 0000000..68762b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_arcanetorrent.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_blast.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_blast.jpg new file mode 100644 index 0000000..be105ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_blast.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_blink.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_blink.jpg new file mode 100644 index 0000000..e27d93c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_blink.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_focusedpower.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_focusedpower.jpg new file mode 100644 index 0000000..12493df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_manatap.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_manatap.jpg new file mode 100644 index 0000000..150a900 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_manatap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_massdispel.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_massdispel.jpg new file mode 100644 index 0000000..f851dfa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_massdispel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_mindmastery.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_mindmastery.jpg new file mode 100644 index 0000000..6ac2b3d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_mindmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portaldarnassus.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portaldarnassus.jpg new file mode 100644 index 0000000..4cf11df Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portaldarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalexodar.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalexodar.jpg new file mode 100644 index 0000000..a87da72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalironforge.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalironforge.jpg new file mode 100644 index 0000000..eb5485a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalorgrimmar.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalorgrimmar.jpg new file mode 100644 index 0000000..3aad300 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalshattrath.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalshattrath.jpg new file mode 100644 index 0000000..66ca88b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalsilvermoon.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalsilvermoon.jpg new file mode 100644 index 0000000..094b95f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalstonard.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalstonard.jpg new file mode 100644 index 0000000..bc34ae0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalstormwind.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalstormwind.jpg new file mode 100644 index 0000000..a1bf940 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portaltheramore.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portaltheramore.jpg new file mode 100644 index 0000000..4973a32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portaltheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalthunderbluff.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalthunderbluff.jpg new file mode 100644 index 0000000..ae90e5a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_portalundercity.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_portalundercity.jpg new file mode 100644 index 0000000..996fdb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_portalundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_prismaticcloak.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_prismaticcloak.jpg new file mode 100644 index 0000000..37a5e3d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_prismaticcloak.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_starfire.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_starfire.jpg new file mode 100644 index 0000000..ff3db02 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_starfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_studentofmagic.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_studentofmagic.jpg new file mode 100644 index 0000000..d8e3cf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_studentofmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportdarnassus.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportdarnassus.jpg new file mode 100644 index 0000000..8350ee7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportdarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportexodar.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportexodar.jpg new file mode 100644 index 0000000..5c0c441 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportironforge.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportironforge.jpg new file mode 100644 index 0000000..34a00a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportmoonglade.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportmoonglade.jpg new file mode 100644 index 0000000..aa7bb19 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportmoonglade.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportorgrimmar.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportorgrimmar.jpg new file mode 100644 index 0000000..b0eb952 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportshattrath.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportshattrath.jpg new file mode 100644 index 0000000..d9c4224 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportsilvermoon.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportsilvermoon.jpg new file mode 100644 index 0000000..a36e495 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportstonard.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportstonard.jpg new file mode 100644 index 0000000..d0c53ae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportstormwind.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportstormwind.jpg new file mode 100644 index 0000000..53e6193 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleporttheramore.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleporttheramore.jpg new file mode 100644 index 0000000..c3ffc78 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleporttheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportthunderbluff.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportthunderbluff.jpg new file mode 100644 index 0000000..831eaac Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_arcane_teleportundercity.jpg b/other/AoWoW-master/images/icons/large/spell_arcane_teleportundercity.jpg new file mode 100644 index 0000000..630b595 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_arcane_teleportundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_brokenheart.jpg b/other/AoWoW-master/images/icons/large/spell_brokenheart.jpg new file mode 100644 index 0000000..f017b6c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_brokenheart.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_chargenegative.jpg b/other/AoWoW-master/images/icons/large/spell_chargenegative.jpg new file mode 100644 index 0000000..6e0db6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_chargenegative.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_chargepositive.jpg b/other/AoWoW-master/images/icons/large/spell_chargepositive.jpg new file mode 100644 index 0000000..42f00d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_chargepositive.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_bluecano.jpg b/other/AoWoW-master/images/icons/large/spell_fire_bluecano.jpg new file mode 100644 index 0000000..d3969fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_bluecano.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_bluefire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_bluefire.jpg new file mode 100644 index 0000000..8e7b1e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_bluefire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_bluefirenova.jpg b/other/AoWoW-master/images/icons/large/spell_fire_bluefirenova.jpg new file mode 100644 index 0000000..96d7ebc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_bluefirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_bluefireward.jpg b/other/AoWoW-master/images/icons/large/spell_fire_bluefireward.jpg new file mode 100644 index 0000000..939d0cb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_bluefireward.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_blueflamebolt.jpg b/other/AoWoW-master/images/icons/large/spell_fire_blueflamebolt.jpg new file mode 100644 index 0000000..8fe95f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_blueflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_blueflamebreath.jpg b/other/AoWoW-master/images/icons/large/spell_fire_blueflamebreath.jpg new file mode 100644 index 0000000..2dd0a1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_blueflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_blueflamering.jpg b/other/AoWoW-master/images/icons/large/spell_fire_blueflamering.jpg new file mode 100644 index 0000000..ccaf2bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_blueflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_blueflamestrike.jpg b/other/AoWoW-master/images/icons/large/spell_fire_blueflamestrike.jpg new file mode 100644 index 0000000..06ccede Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_blueflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_bluehellfire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_bluehellfire.jpg new file mode 100644 index 0000000..b17e319 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_bluehellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_blueimmolation.jpg b/other/AoWoW-master/images/icons/large/spell_fire_blueimmolation.jpg new file mode 100644 index 0000000..de6de56 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_blueimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_bluepyroblast.jpg b/other/AoWoW-master/images/icons/large/spell_fire_bluepyroblast.jpg new file mode 100644 index 0000000..bec4685 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_bluepyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_bluerainoffire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_bluerainoffire.jpg new file mode 100644 index 0000000..fb2c01f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_bluerainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_burningspeed.jpg b/other/AoWoW-master/images/icons/large/spell_fire_burningspeed.jpg new file mode 100644 index 0000000..d6402a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_burningspeed.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_burnout.jpg b/other/AoWoW-master/images/icons/large/spell_fire_burnout.jpg new file mode 100644 index 0000000..db5e9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_burnout.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_elemental_totem.jpg b/other/AoWoW-master/images/icons/large/spell_fire_elemental_totem.jpg new file mode 100644 index 0000000..b125ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_elemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_elementaldevastation.jpg b/other/AoWoW-master/images/icons/large/spell_fire_elementaldevastation.jpg new file mode 100644 index 0000000..cefb0b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_elementaldevastation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_enchantweapon.jpg b/other/AoWoW-master/images/icons/large/spell_fire_enchantweapon.jpg new file mode 100644 index 0000000..a405463 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_enchantweapon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felcano.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felcano.jpg new file mode 100644 index 0000000..77a34d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felcano.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felfire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felfire.jpg new file mode 100644 index 0000000..bf84230 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felfirenova.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felfirenova.jpg new file mode 100644 index 0000000..fd80337 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felfirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felfireward.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felfireward.jpg new file mode 100644 index 0000000..d331134 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felfireward.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felflamebolt.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felflamebolt.jpg new file mode 100644 index 0000000..b436af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felflamebreath.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felflamebreath.jpg new file mode 100644 index 0000000..5e660a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felflamering.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felflamering.jpg new file mode 100644 index 0000000..3d0a830 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felflamestrike.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felflamestrike.jpg new file mode 100644 index 0000000..095017b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felhellfire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felhellfire.jpg new file mode 100644 index 0000000..cff4d01 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felhellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felimmolation.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felimmolation.jpg new file mode 100644 index 0000000..7d93f49 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felpyroblast.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felpyroblast.jpg new file mode 100644 index 0000000..66eb409 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felpyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_felrainoffire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_felrainoffire.jpg new file mode 100644 index 0000000..8db40a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_felrainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_fire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_fire.jpg new file mode 100644 index 0000000..f614344 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_firearmor.jpg b/other/AoWoW-master/images/icons/large/spell_fire_firearmor.jpg new file mode 100644 index 0000000..d2dc446 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_firearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_fireball.jpg b/other/AoWoW-master/images/icons/large/spell_fire_fireball.jpg new file mode 100644 index 0000000..4c171e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_fireball.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_fireball02.jpg b/other/AoWoW-master/images/icons/large/spell_fire_fireball02.jpg new file mode 100644 index 0000000..8385063 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_fireball02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_firebolt.jpg b/other/AoWoW-master/images/icons/large/spell_fire_firebolt.jpg new file mode 100644 index 0000000..39970ec Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_firebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_firebolt02.jpg b/other/AoWoW-master/images/icons/large/spell_fire_firebolt02.jpg new file mode 100644 index 0000000..d2a1f8c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_firebolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_flameblades.jpg b/other/AoWoW-master/images/icons/large/spell_fire_flameblades.jpg new file mode 100644 index 0000000..764e9c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_flameblades.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_flamebolt.jpg b/other/AoWoW-master/images/icons/large/spell_fire_flamebolt.jpg new file mode 100644 index 0000000..b5aaa2e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_flamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_flameshock.jpg b/other/AoWoW-master/images/icons/large/spell_fire_flameshock.jpg new file mode 100644 index 0000000..8e3a953 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_flameshock.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_flametounge.jpg b/other/AoWoW-master/images/icons/large/spell_fire_flametounge.jpg new file mode 100644 index 0000000..0f996d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_flametounge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_flare.jpg b/other/AoWoW-master/images/icons/large/spell_fire_flare.jpg new file mode 100644 index 0000000..c88861e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_flare.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_frostresistancetotem.jpg b/other/AoWoW-master/images/icons/large/spell_fire_frostresistancetotem.jpg new file mode 100644 index 0000000..c5f557b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_frostresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_immolation.jpg b/other/AoWoW-master/images/icons/large/spell_fire_immolation.jpg new file mode 100644 index 0000000..2c63ea2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_immolation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_incinerate.jpg b/other/AoWoW-master/images/icons/large/spell_fire_incinerate.jpg new file mode 100644 index 0000000..32758bc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_incinerate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_lavaspawn.jpg b/other/AoWoW-master/images/icons/large/spell_fire_lavaspawn.jpg new file mode 100644 index 0000000..edc4973 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_lavaspawn.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_masterofelements.jpg b/other/AoWoW-master/images/icons/large/spell_fire_masterofelements.jpg new file mode 100644 index 0000000..5edf266 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_masterofelements.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_meteorstorm.jpg b/other/AoWoW-master/images/icons/large/spell_fire_meteorstorm.jpg new file mode 100644 index 0000000..0d003f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_meteorstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_moltenblood.jpg b/other/AoWoW-master/images/icons/large/spell_fire_moltenblood.jpg new file mode 100644 index 0000000..d5b1f3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_moltenblood.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_playingwithfire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_playingwithfire.jpg new file mode 100644 index 0000000..b07c787 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_playingwithfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_sealoffire.jpg b/other/AoWoW-master/images/icons/large/spell_fire_sealoffire.jpg new file mode 100644 index 0000000..096edfa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_sealoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_searingtotem.jpg b/other/AoWoW-master/images/icons/large/spell_fire_searingtotem.jpg new file mode 100644 index 0000000..92704d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_searingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_selfdestruct.jpg b/other/AoWoW-master/images/icons/large/spell_fire_selfdestruct.jpg new file mode 100644 index 0000000..d861e27 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_selfdestruct.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_soulburn.jpg b/other/AoWoW-master/images/icons/large/spell_fire_soulburn.jpg new file mode 100644 index 0000000..041edc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_soulburn.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_sunkey.jpg b/other/AoWoW-master/images/icons/large/spell_fire_sunkey.jpg new file mode 100644 index 0000000..923ade8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_sunkey.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_totemofwrath.jpg b/other/AoWoW-master/images/icons/large/spell_fire_totemofwrath.jpg new file mode 100644 index 0000000..cbbaa9c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_totemofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_volcano.jpg b/other/AoWoW-master/images/icons/large/spell_fire_volcano.jpg new file mode 100644 index 0000000..028ca42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_volcano.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fire_windsofwoe.jpg b/other/AoWoW-master/images/icons/large/spell_fire_windsofwoe.jpg new file mode 100644 index 0000000..99f0b3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fire_windsofwoe.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_fireresistancetotem_01.jpg b/other/AoWoW-master/images/icons/large/spell_fireresistancetotem_01.jpg new file mode 100644 index 0000000..4b90f41 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_fireresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_arcticwinds.jpg b/other/AoWoW-master/images/icons/large/spell_frost_arcticwinds.jpg new file mode 100644 index 0000000..aa62ec1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_arcticwinds.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_chainsofice.jpg b/other/AoWoW-master/images/icons/large/spell_frost_chainsofice.jpg new file mode 100644 index 0000000..0422645 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_chainsofice.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_chillingarmor.jpg b/other/AoWoW-master/images/icons/large/spell_frost_chillingarmor.jpg new file mode 100644 index 0000000..93ac652 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_chillingarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_chillingblast.jpg b/other/AoWoW-master/images/icons/large/spell_frost_chillingblast.jpg new file mode 100644 index 0000000..396e3c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_chillingblast.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_chillingbolt.jpg b/other/AoWoW-master/images/icons/large/spell_frost_chillingbolt.jpg new file mode 100644 index 0000000..8f6f4d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_chillingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_coldhearted.jpg b/other/AoWoW-master/images/icons/large/spell_frost_coldhearted.jpg new file mode 100644 index 0000000..dfb4df4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_coldhearted.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_fireresistancetotem.jpg b/other/AoWoW-master/images/icons/large/spell_frost_fireresistancetotem.jpg new file mode 100644 index 0000000..ba1041e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_fireresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_freezingbreath.jpg b/other/AoWoW-master/images/icons/large/spell_frost_freezingbreath.jpg new file mode 100644 index 0000000..4243b4e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_freezingbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frost.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frost.jpg new file mode 100644 index 0000000..3308c8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostarmor.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostarmor.jpg new file mode 100644 index 0000000..43252b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostarmor02.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostarmor02.jpg new file mode 100644 index 0000000..e41b4b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostarmor02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostblast.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostblast.jpg new file mode 100644 index 0000000..2419239 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostblast.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostbolt.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostbolt.jpg new file mode 100644 index 0000000..c18ed36 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostbolt02.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostbolt02.jpg new file mode 100644 index 0000000..416284e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostbolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostbrand.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostbrand.jpg new file mode 100644 index 0000000..bd9f2ba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostbrand.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostnova.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostnova.jpg new file mode 100644 index 0000000..a8cddb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostnova.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostshock.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostshock.jpg new file mode 100644 index 0000000..4d75350 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostshock.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frostward.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frostward.jpg new file mode 100644 index 0000000..695c664 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frostward.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_frozencore.jpg b/other/AoWoW-master/images/icons/large/spell_frost_frozencore.jpg new file mode 100644 index 0000000..e563deb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_frozencore.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_glacier.jpg b/other/AoWoW-master/images/icons/large/spell_frost_glacier.jpg new file mode 100644 index 0000000..c583ebf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_glacier.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_iceclaw.jpg b/other/AoWoW-master/images/icons/large/spell_frost_iceclaw.jpg new file mode 100644 index 0000000..45b827f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_iceclaw.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_icefloes.jpg b/other/AoWoW-master/images/icons/large/spell_frost_icefloes.jpg new file mode 100644 index 0000000..ebef450 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_icefloes.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_iceshard.jpg b/other/AoWoW-master/images/icons/large/spell_frost_iceshard.jpg new file mode 100644 index 0000000..68ea410 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_iceshard.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_iceshock.jpg b/other/AoWoW-master/images/icons/large/spell_frost_iceshock.jpg new file mode 100644 index 0000000..32dff75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_iceshock.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_icestorm.jpg b/other/AoWoW-master/images/icons/large/spell_frost_icestorm.jpg new file mode 100644 index 0000000..4879c0d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_icestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_manaburn.jpg b/other/AoWoW-master/images/icons/large/spell_frost_manaburn.jpg new file mode 100644 index 0000000..bf18f46 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_manarecharge.jpg b/other/AoWoW-master/images/icons/large/spell_frost_manarecharge.jpg new file mode 100644 index 0000000..9a9d981 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_manarecharge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_stun.jpg b/other/AoWoW-master/images/icons/large/spell_frost_stun.jpg new file mode 100644 index 0000000..f3a78c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_stun.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_summonwaterelemental.jpg b/other/AoWoW-master/images/icons/large/spell_frost_summonwaterelemental.jpg new file mode 100644 index 0000000..1be139e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_summonwaterelemental.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_summonwaterelemental_2.jpg b/other/AoWoW-master/images/icons/large/spell_frost_summonwaterelemental_2.jpg new file mode 100644 index 0000000..29a92c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_summonwaterelemental_2.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_windwalkon.jpg b/other/AoWoW-master/images/icons/large/spell_frost_windwalkon.jpg new file mode 100644 index 0000000..586fb4c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_windwalkon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_wisp.jpg b/other/AoWoW-master/images/icons/large/spell_frost_wisp.jpg new file mode 100644 index 0000000..b94eb72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_wisp.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frost_wizardmark.jpg b/other/AoWoW-master/images/icons/large/spell_frost_wizardmark.jpg new file mode 100644 index 0000000..f7c7a40 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frost_wizardmark.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_frostresistancetotem_01.jpg b/other/AoWoW-master/images/icons/large/spell_frostresistancetotem_01.jpg new file mode 100644 index 0000000..f5d1fbd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_frostresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holiday_tow_spicecloud.jpg b/other/AoWoW-master/images/icons/large/spell_holiday_tow_spicecloud.jpg new file mode 100644 index 0000000..5a3ac42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holiday_tow_spicecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_absolution.jpg b/other/AoWoW-master/images/icons/large/spell_holy_absolution.jpg new file mode 100644 index 0000000..735712e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_absolution.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_arcaneintellect.jpg b/other/AoWoW-master/images/icons/large/spell_holy_arcaneintellect.jpg new file mode 100644 index 0000000..e89f122 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_arcaneintellect.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_ardentdefender.jpg b/other/AoWoW-master/images/icons/large/spell_holy_ardentdefender.jpg new file mode 100644 index 0000000..d269405 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_ardentdefender.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_ashestoashes.jpg b/other/AoWoW-master/images/icons/large/spell_holy_ashestoashes.jpg new file mode 100644 index 0000000..f612fc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_ashestoashes.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_auramastery.jpg b/other/AoWoW-master/images/icons/large/spell_holy_auramastery.jpg new file mode 100644 index 0000000..84d5e08 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_auramastery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_auraoflight.jpg b/other/AoWoW-master/images/icons/large/spell_holy_auraoflight.jpg new file mode 100644 index 0000000..a930427 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_auraoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_avengersshield.jpg b/other/AoWoW-master/images/icons/large/spell_holy_avengersshield.jpg new file mode 100644 index 0000000..64ec751 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_avengersshield.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_avenginewrath.jpg b/other/AoWoW-master/images/icons/large/spell_holy_avenginewrath.jpg new file mode 100644 index 0000000..06ca63a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_avenginewrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blessedlife.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blessedlife.jpg new file mode 100644 index 0000000..051ddbd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blessedlife.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blessedrecovery.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blessedrecovery.jpg new file mode 100644 index 0000000..9c4035e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blessedrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blessedresillience.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blessedresillience.jpg new file mode 100644 index 0000000..eae24b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blessedresillience.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blessingofagility.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blessingofagility.jpg new file mode 100644 index 0000000..cec4178 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blessingofagility.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blessingofprotection.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blessingofprotection.jpg new file mode 100644 index 0000000..6578438 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blessingofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blessingofstamina.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blessingofstamina.jpg new file mode 100644 index 0000000..85c504c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blessingofstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blessingofstrength.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blessingofstrength.jpg new file mode 100644 index 0000000..361474f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blessingofstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_blindingheal.jpg b/other/AoWoW-master/images/icons/large/spell_holy_blindingheal.jpg new file mode 100644 index 0000000..9f18847 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_blindingheal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_championsbond.jpg b/other/AoWoW-master/images/icons/large/spell_holy_championsbond.jpg new file mode 100644 index 0000000..fe5cf40 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_championsbond.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_championsgrace.jpg b/other/AoWoW-master/images/icons/large/spell_holy_championsgrace.jpg new file mode 100644 index 0000000..50051a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_championsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_chastise.jpg b/other/AoWoW-master/images/icons/large/spell_holy_chastise.jpg new file mode 100644 index 0000000..3d45d20 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_chastise.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_circleofrenewal.jpg b/other/AoWoW-master/images/icons/large/spell_holy_circleofrenewal.jpg new file mode 100644 index 0000000..7bcb3ed Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_circleofrenewal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_consumemagic.jpg b/other/AoWoW-master/images/icons/large/spell_holy_consumemagic.jpg new file mode 100644 index 0000000..87d67ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_consumemagic.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_crusade.jpg b/other/AoWoW-master/images/icons/large/spell_holy_crusade.jpg new file mode 100644 index 0000000..182977d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_crusaderaura.jpg b/other/AoWoW-master/images/icons/large/spell_holy_crusaderaura.jpg new file mode 100644 index 0000000..3737072 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_crusaderaura.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_crusaderstrike.jpg b/other/AoWoW-master/images/icons/large/spell_holy_crusaderstrike.jpg new file mode 100644 index 0000000..528192e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_crusaderstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_devotion.jpg b/other/AoWoW-master/images/icons/large/spell_holy_devotion.jpg new file mode 100644 index 0000000..becb326 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_devotion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_devotionaura.jpg b/other/AoWoW-master/images/icons/large/spell_holy_devotionaura.jpg new file mode 100644 index 0000000..12213fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_devotionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_dispelmagic.jpg b/other/AoWoW-master/images/icons/large/spell_holy_dispelmagic.jpg new file mode 100644 index 0000000..44e435c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_dispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_divineillumination.jpg b/other/AoWoW-master/images/icons/large/spell_holy_divineillumination.jpg new file mode 100644 index 0000000..1a1fadb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_divineillumination.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_divineintervention.jpg b/other/AoWoW-master/images/icons/large/spell_holy_divineintervention.jpg new file mode 100644 index 0000000..6f1f9e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_divineintervention.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_divinepurpose.jpg b/other/AoWoW-master/images/icons/large/spell_holy_divinepurpose.jpg new file mode 100644 index 0000000..727b4fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_divinepurpose.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_divinespirit.jpg b/other/AoWoW-master/images/icons/large/spell_holy_divinespirit.jpg new file mode 100644 index 0000000..502a5db Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_divinespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_dizzy.jpg b/other/AoWoW-master/images/icons/large/spell_holy_dizzy.jpg new file mode 100644 index 0000000..6756c3f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_dizzy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_elunesgrace.jpg b/other/AoWoW-master/images/icons/large/spell_holy_elunesgrace.jpg new file mode 100644 index 0000000..32e925e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_elunesgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_empowerchampion.jpg b/other/AoWoW-master/images/icons/large/spell_holy_empowerchampion.jpg new file mode 100644 index 0000000..bb05a1b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_empowerchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_excorcism.jpg b/other/AoWoW-master/images/icons/large/spell_holy_excorcism.jpg new file mode 100644 index 0000000..5b70170 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_excorcism.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_excorcism_02.jpg b/other/AoWoW-master/images/icons/large/spell_holy_excorcism_02.jpg new file mode 100644 index 0000000..d50f77d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_excorcism_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_eyeforaneye.jpg b/other/AoWoW-master/images/icons/large/spell_holy_eyeforaneye.jpg new file mode 100644 index 0000000..1e0cb99 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_eyeforaneye.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_fanaticism.jpg b/other/AoWoW-master/images/icons/large/spell_holy_fanaticism.jpg new file mode 100644 index 0000000..0f75a0c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_fanaticism.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_fistofjustice.jpg b/other/AoWoW-master/images/icons/large/spell_holy_fistofjustice.jpg new file mode 100644 index 0000000..7837e09 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_fistofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_flashheal.jpg b/other/AoWoW-master/images/icons/large/spell_holy_flashheal.jpg new file mode 100644 index 0000000..9605f65 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_flashheal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofkings.jpg new file mode 100644 index 0000000..934d11a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingoflight.jpg b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingoflight.jpg new file mode 100644 index 0000000..c32648a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofsalvation.jpg b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofsalvation.jpg new file mode 100644 index 0000000..7880741 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofsanctuary.jpg b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofsanctuary.jpg new file mode 100644 index 0000000..0a10048 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofsanctuary.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofwisdom.jpg b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofwisdom.jpg new file mode 100644 index 0000000..5f95125 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_greaterblessingofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_greaterheal.jpg b/other/AoWoW-master/images/icons/large/spell_holy_greaterheal.jpg new file mode 100644 index 0000000..01ad13c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_greaterheal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_harmundeadaura.jpg b/other/AoWoW-master/images/icons/large/spell_holy_harmundeadaura.jpg new file mode 100644 index 0000000..8205b4c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_harmundeadaura.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_heal.jpg b/other/AoWoW-master/images/icons/large/spell_holy_heal.jpg new file mode 100644 index 0000000..cfaacd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_heal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_heal02.jpg b/other/AoWoW-master/images/icons/large/spell_holy_heal02.jpg new file mode 100644 index 0000000..a8f0222 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_heal02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_healingaura.jpg b/other/AoWoW-master/images/icons/large/spell_holy_healingaura.jpg new file mode 100644 index 0000000..417fc5d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_healingaura.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_healingfocus.jpg b/other/AoWoW-master/images/icons/large/spell_holy_healingfocus.jpg new file mode 100644 index 0000000..4d2d9a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_healingfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_heroism.jpg b/other/AoWoW-master/images/icons/large/spell_holy_heroism.jpg new file mode 100644 index 0000000..ea89bc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_holybolt.jpg b/other/AoWoW-master/images/icons/large/spell_holy_holybolt.jpg new file mode 100644 index 0000000..f5a5fe6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_holybolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_holyguidance.jpg b/other/AoWoW-master/images/icons/large/spell_holy_holyguidance.jpg new file mode 100644 index 0000000..97c8051 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_holyguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_holynova.jpg b/other/AoWoW-master/images/icons/large/spell_holy_holynova.jpg new file mode 100644 index 0000000..67b3593 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_holynova.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_holyprotection.jpg b/other/AoWoW-master/images/icons/large/spell_holy_holyprotection.jpg new file mode 100644 index 0000000..8910f9b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_holyprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_holysmite.jpg b/other/AoWoW-master/images/icons/large/spell_holy_holysmite.jpg new file mode 100644 index 0000000..e13162b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_holysmite.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_improvedresistanceauras.jpg b/other/AoWoW-master/images/icons/large/spell_holy_improvedresistanceauras.jpg new file mode 100644 index 0000000..1bb0f07 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_improvedresistanceauras.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_innerfire.jpg b/other/AoWoW-master/images/icons/large/spell_holy_innerfire.jpg new file mode 100644 index 0000000..682ef3a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_innerfire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_lastingdefense.jpg b/other/AoWoW-master/images/icons/large/spell_holy_lastingdefense.jpg new file mode 100644 index 0000000..cb0834c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_lastingdefense.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_layonhands.jpg b/other/AoWoW-master/images/icons/large/spell_holy_layonhands.jpg new file mode 100644 index 0000000..4441972 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_layonhands.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_lesserheal.jpg b/other/AoWoW-master/images/icons/large/spell_holy_lesserheal.jpg new file mode 100644 index 0000000..e940607 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_lesserheal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_lesserheal02.jpg b/other/AoWoW-master/images/icons/large/spell_holy_lesserheal02.jpg new file mode 100644 index 0000000..52ccbb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_lesserheal02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_lightsgrace.jpg b/other/AoWoW-master/images/icons/large/spell_holy_lightsgrace.jpg new file mode 100644 index 0000000..3d814d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_lightsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_magicalsentry.jpg b/other/AoWoW-master/images/icons/large/spell_holy_magicalsentry.jpg new file mode 100644 index 0000000..ae197ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_magicalsentry.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_mindsooth.jpg b/other/AoWoW-master/images/icons/large/spell_holy_mindsooth.jpg new file mode 100644 index 0000000..fd96c03 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_mindsooth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_mindvision.jpg b/other/AoWoW-master/images/icons/large/spell_holy_mindvision.jpg new file mode 100644 index 0000000..4d0f74c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_mindvision.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_nullifydisease.jpg b/other/AoWoW-master/images/icons/large/spell_holy_nullifydisease.jpg new file mode 100644 index 0000000..74f9e0f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_painsupression.jpg b/other/AoWoW-master/images/icons/large/spell_holy_painsupression.jpg new file mode 100644 index 0000000..b5cfbda Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_painsupression.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_persuitofjustice.jpg b/other/AoWoW-master/images/icons/large/spell_holy_persuitofjustice.jpg new file mode 100644 index 0000000..41b73e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_persuitofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_power.jpg b/other/AoWoW-master/images/icons/large/spell_holy_power.jpg new file mode 100644 index 0000000..755dfdc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_power.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_powerinfusion.jpg b/other/AoWoW-master/images/icons/large/spell_holy_powerinfusion.jpg new file mode 100644 index 0000000..e0de484 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_powerinfusion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_powerwordshield.jpg b/other/AoWoW-master/images/icons/large/spell_holy_powerwordshield.jpg new file mode 100644 index 0000000..0d4d36d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_powerwordshield.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_prayeroffortitude.jpg b/other/AoWoW-master/images/icons/large/spell_holy_prayeroffortitude.jpg new file mode 100644 index 0000000..dc145be Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_prayeroffortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_prayerofhealing.jpg b/other/AoWoW-master/images/icons/large/spell_holy_prayerofhealing.jpg new file mode 100644 index 0000000..4e37352 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_prayerofhealing.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_prayerofhealing02.jpg b/other/AoWoW-master/images/icons/large/spell_holy_prayerofhealing02.jpg new file mode 100644 index 0000000..0aebe88 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_prayerofhealing02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_prayerofmendingtga.jpg b/other/AoWoW-master/images/icons/large/spell_holy_prayerofmendingtga.jpg new file mode 100644 index 0000000..8a763e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_prayerofmendingtga.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_prayerofshadowprotection.jpg b/other/AoWoW-master/images/icons/large/spell_holy_prayerofshadowprotection.jpg new file mode 100644 index 0000000..647d5a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_prayerofshadowprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_prayerofspirit.jpg b/other/AoWoW-master/images/icons/large/spell_holy_prayerofspirit.jpg new file mode 100644 index 0000000..67f1c64 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_prayerofspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_proclaimchampion.jpg b/other/AoWoW-master/images/icons/large/spell_holy_proclaimchampion.jpg new file mode 100644 index 0000000..1bc5c66 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_proclaimchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_pureofheart.jpg b/other/AoWoW-master/images/icons/large/spell_holy_pureofheart.jpg new file mode 100644 index 0000000..7e40b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_pureofheart.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_purify.jpg b/other/AoWoW-master/images/icons/large/spell_holy_purify.jpg new file mode 100644 index 0000000..e9b50aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_purify.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_purifyingpower.jpg b/other/AoWoW-master/images/icons/large/spell_holy_purifyingpower.jpg new file mode 100644 index 0000000..26146c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_purifyingpower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_redemption.jpg b/other/AoWoW-master/images/icons/large/spell_holy_redemption.jpg new file mode 100644 index 0000000..75268ce Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_redemption.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_removecurse.jpg b/other/AoWoW-master/images/icons/large/spell_holy_removecurse.jpg new file mode 100644 index 0000000..83fb691 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_renew.jpg b/other/AoWoW-master/images/icons/large/spell_holy_renew.jpg new file mode 100644 index 0000000..8be7947 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_renew.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_restoration.jpg b/other/AoWoW-master/images/icons/large/spell_holy_restoration.jpg new file mode 100644 index 0000000..09834f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_restoration.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_resurrection.jpg b/other/AoWoW-master/images/icons/large/spell_holy_resurrection.jpg new file mode 100644 index 0000000..ab9bfc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_resurrection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_retribution.jpg b/other/AoWoW-master/images/icons/large/spell_holy_retribution.jpg new file mode 100644 index 0000000..b90ccb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_retribution.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_retributionaura.jpg b/other/AoWoW-master/images/icons/large/spell_holy_retributionaura.jpg new file mode 100644 index 0000000..4827e22 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_retributionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_revivechampion.jpg b/other/AoWoW-master/images/icons/large/spell_holy_revivechampion.jpg new file mode 100644 index 0000000..8398d58 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_revivechampion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_righteousfury.jpg b/other/AoWoW-master/images/icons/large/spell_holy_righteousfury.jpg new file mode 100644 index 0000000..6f24c7f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_righteousfury.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_righteousnessaura.jpg b/other/AoWoW-master/images/icons/large/spell_holy_righteousnessaura.jpg new file mode 100644 index 0000000..0db36bb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_righteousnessaura.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofblood.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofblood.jpg new file mode 100644 index 0000000..1bb97d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofblood.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealoffury.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealoffury.jpg new file mode 100644 index 0000000..9df3ea6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealoffury.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofmight.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofmight.jpg new file mode 100644 index 0000000..ea806aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofmight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofprotection.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofprotection.jpg new file mode 100644 index 0000000..824a8d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofrighteousness.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofrighteousness.jpg new file mode 100644 index 0000000..86e5d07 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofrighteousness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofsacrifice.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofsacrifice.jpg new file mode 100644 index 0000000..b408c7c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofsalvation.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofsalvation.jpg new file mode 100644 index 0000000..16cd300 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofvalor.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofvalor.jpg new file mode 100644 index 0000000..3502e38 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofvalor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofvengeance.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofvengeance.jpg new file mode 100644 index 0000000..8553edd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofvengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofwisdom.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofwisdom.jpg new file mode 100644 index 0000000..5b33519 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_sealofwrath.jpg b/other/AoWoW-master/images/icons/large/spell_holy_sealofwrath.jpg new file mode 100644 index 0000000..6b505e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_sealofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_searinglight.jpg b/other/AoWoW-master/images/icons/large/spell_holy_searinglight.jpg new file mode 100644 index 0000000..90f6738 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_searinglight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_searinglightpriest.jpg b/other/AoWoW-master/images/icons/large/spell_holy_searinglightpriest.jpg new file mode 100644 index 0000000..c4f68e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_searinglightpriest.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_senseundead.jpg b/other/AoWoW-master/images/icons/large/spell_holy_senseundead.jpg new file mode 100644 index 0000000..01e65aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_senseundead.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_silence.jpg b/other/AoWoW-master/images/icons/large/spell_holy_silence.jpg new file mode 100644 index 0000000..c6ca432 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_silence.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_spellwarding.jpg b/other/AoWoW-master/images/icons/large/spell_holy_spellwarding.jpg new file mode 100644 index 0000000..5195453 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_spellwarding.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_spiritualguidence.jpg b/other/AoWoW-master/images/icons/large/spell_holy_spiritualguidence.jpg new file mode 100644 index 0000000..916e990 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_spiritualguidence.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_stoicism.jpg b/other/AoWoW-master/images/icons/large/spell_holy_stoicism.jpg new file mode 100644 index 0000000..459a8e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_stoicism.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_summonchampion.jpg b/other/AoWoW-master/images/icons/large/spell_holy_summonchampion.jpg new file mode 100644 index 0000000..279b28a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_summonchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_summonlightwell.jpg b/other/AoWoW-master/images/icons/large/spell_holy_summonlightwell.jpg new file mode 100644 index 0000000..0ad3362 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_summonlightwell.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_surgeoflight.jpg b/other/AoWoW-master/images/icons/large/spell_holy_surgeoflight.jpg new file mode 100644 index 0000000..68696eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_surgeoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_symbolofhope.jpg b/other/AoWoW-master/images/icons/large/spell_holy_symbolofhope.jpg new file mode 100644 index 0000000..55152f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_symbolofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_turnundead.jpg b/other/AoWoW-master/images/icons/large/spell_holy_turnundead.jpg new file mode 100644 index 0000000..2796761 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_turnundead.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_unyieldingfaith.jpg b/other/AoWoW-master/images/icons/large/spell_holy_unyieldingfaith.jpg new file mode 100644 index 0000000..6e134f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_unyieldingfaith.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_vindication.jpg b/other/AoWoW-master/images/icons/large/spell_holy_vindication.jpg new file mode 100644 index 0000000..90d3cdf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_vindication.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_weaponmastery.jpg b/other/AoWoW-master/images/icons/large/spell_holy_weaponmastery.jpg new file mode 100644 index 0000000..ba2187e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_holy_wordfortitude.jpg b/other/AoWoW-master/images/icons/large/spell_holy_wordfortitude.jpg new file mode 100644 index 0000000..c30a975 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_holy_wordfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_ice_lament.jpg b/other/AoWoW-master/images/icons/large/spell_ice_lament.jpg new file mode 100644 index 0000000..2f95c8e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_ice_lament.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_ice_magicdamage.jpg b/other/AoWoW-master/images/icons/large/spell_ice_magicdamage.jpg new file mode 100644 index 0000000..7c21fef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_ice_magicdamage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_lightning_lightningbolt01.jpg b/other/AoWoW-master/images/icons/large/spell_lightning_lightningbolt01.jpg new file mode 100644 index 0000000..71e28c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_lightning_lightningbolt01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_magearmor.jpg b/other/AoWoW-master/images/icons/large/spell_magearmor.jpg new file mode 100644 index 0000000..470ad05 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_magic_featherfall.jpg b/other/AoWoW-master/images/icons/large/spell_magic_featherfall.jpg new file mode 100644 index 0000000..dce68b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_magic_featherfall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_magic_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/large/spell_magic_greaterblessingofkings.jpg new file mode 100644 index 0000000..5ed4713 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_magic_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_magic_lesserinvisibilty.jpg b/other/AoWoW-master/images/icons/large/spell_magic_lesserinvisibilty.jpg new file mode 100644 index 0000000..66206d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_magic_lesserinvisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_magic_magearmor.jpg b/other/AoWoW-master/images/icons/large/spell_magic_magearmor.jpg new file mode 100644 index 0000000..1a3e249 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_magic_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_magic_polymorphchicken.jpg b/other/AoWoW-master/images/icons/large/spell_magic_polymorphchicken.jpg new file mode 100644 index 0000000..56d07a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_magic_polymorphchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_magic_polymorphpig.jpg b/other/AoWoW-master/images/icons/large/spell_magic_polymorphpig.jpg new file mode 100644 index 0000000..01a5895 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_magic_polymorphpig.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_conjuremanajewel.jpg b/other/AoWoW-master/images/icons/large/spell_misc_conjuremanajewel.jpg new file mode 100644 index 0000000..25379e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_conjuremanajewel.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_drink.jpg b/other/AoWoW-master/images/icons/large/spell_misc_drink.jpg new file mode 100644 index 0000000..758af8c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_drink.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_food.jpg b/other/AoWoW-master/images/icons/large/spell_misc_food.jpg new file mode 100644 index 0000000..9074391 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_food.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvpcombatmorale.jpg b/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvpcombatmorale.jpg new file mode 100644 index 0000000..b9ea8f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvpcombatmorale.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvphonorholdfavor.jpg b/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvphonorholdfavor.jpg new file mode 100644 index 0000000..4daaa75 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvphonorholdfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvpthrallmarfavor.jpg b/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvpthrallmarfavor.jpg new file mode 100644 index 0000000..f0dbd2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_hellifrepvpthrallmarfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_warsongbrutal.jpg b/other/AoWoW-master/images/icons/large/spell_misc_warsongbrutal.jpg new file mode 100644 index 0000000..85b5ae2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_warsongbrutal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_misc_warsongfocus.jpg b/other/AoWoW-master/images/icons/large/spell_misc_warsongfocus.jpg new file mode 100644 index 0000000..037d623 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_misc_warsongfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_abolishmagic.jpg b/other/AoWoW-master/images/icons/large/spell_nature_abolishmagic.jpg new file mode 100644 index 0000000..6efdc42 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_abolishmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_acid_01.jpg b/other/AoWoW-master/images/icons/large/spell_nature_acid_01.jpg new file mode 100644 index 0000000..3c07583 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_acid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_agitatingtotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_agitatingtotem.jpg new file mode 100644 index 0000000..2842558 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_agitatingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_ancestralguardian.jpg b/other/AoWoW-master/images/icons/large/spell_nature_ancestralguardian.jpg new file mode 100644 index 0000000..63fc2c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_ancestralguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_astralrecal.jpg b/other/AoWoW-master/images/icons/large/spell_nature_astralrecal.jpg new file mode 100644 index 0000000..a3111ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_astralrecal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_astralrecalgroup.jpg b/other/AoWoW-master/images/icons/large/spell_nature_astralrecalgroup.jpg new file mode 100644 index 0000000..d30ca5d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_astralrecalgroup.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_bloodlust.jpg b/other/AoWoW-master/images/icons/large/spell_nature_bloodlust.jpg new file mode 100644 index 0000000..d9e5444 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_bloodlust.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_brilliance.jpg b/other/AoWoW-master/images/icons/large/spell_nature_brilliance.jpg new file mode 100644 index 0000000..1fc371f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_brilliance.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_callstorm.jpg b/other/AoWoW-master/images/icons/large/spell_nature_callstorm.jpg new file mode 100644 index 0000000..7dbfa50 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_callstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_chainlightning.jpg b/other/AoWoW-master/images/icons/large/spell_nature_chainlightning.jpg new file mode 100644 index 0000000..7e82d54 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_chainlightning.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_corrosivebreath.jpg b/other/AoWoW-master/images/icons/large/spell_nature_corrosivebreath.jpg new file mode 100644 index 0000000..01c0367 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_corrosivebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_crystalball.jpg b/other/AoWoW-master/images/icons/large/spell_nature_crystalball.jpg new file mode 100644 index 0000000..7ff3830 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_crystalball.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_cyclone.jpg b/other/AoWoW-master/images/icons/large/spell_nature_cyclone.jpg new file mode 100644 index 0000000..782d695 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_diseasecleansingtotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_diseasecleansingtotem.jpg new file mode 100644 index 0000000..13ef95e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_diseasecleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_drowsy.jpg b/other/AoWoW-master/images/icons/large/spell_nature_drowsy.jpg new file mode 100644 index 0000000..70dbe47 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_drowsy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_dryaddispelmagic.jpg b/other/AoWoW-master/images/icons/large/spell_nature_dryaddispelmagic.jpg new file mode 100644 index 0000000..901ce9f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_dryaddispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_earthbind.jpg b/other/AoWoW-master/images/icons/large/spell_nature_earthbind.jpg new file mode 100644 index 0000000..65f28d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_earthbind.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_earthbindtotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_earthbindtotem.jpg new file mode 100644 index 0000000..312b260 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_earthbindtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_earthelemental_totem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_earthelemental_totem.jpg new file mode 100644 index 0000000..8a3c1fb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_earthelemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_earthquake.jpg b/other/AoWoW-master/images/icons/large/spell_nature_earthquake.jpg new file mode 100644 index 0000000..31dd762 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_earthquake.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_earthshock.jpg b/other/AoWoW-master/images/icons/large/spell_nature_earthshock.jpg new file mode 100644 index 0000000..95980ad Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_earthshock.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_elementalabsorption.jpg b/other/AoWoW-master/images/icons/large/spell_nature_elementalabsorption.jpg new file mode 100644 index 0000000..cbc206a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_elementalabsorption.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_elementalprecision_1.jpg b/other/AoWoW-master/images/icons/large/spell_nature_elementalprecision_1.jpg new file mode 100644 index 0000000..25e5af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_elementalprecision_1.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_elementalprecision_2.jpg b/other/AoWoW-master/images/icons/large/spell_nature_elementalprecision_2.jpg new file mode 100644 index 0000000..711345e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_elementalprecision_2.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_elementalshields.jpg b/other/AoWoW-master/images/icons/large/spell_nature_elementalshields.jpg new file mode 100644 index 0000000..8248ddd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_elementalshields.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_enchantarmor.jpg b/other/AoWoW-master/images/icons/large/spell_nature_enchantarmor.jpg new file mode 100644 index 0000000..cd185c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_enchantarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_eyeofthestorm.jpg b/other/AoWoW-master/images/icons/large/spell_nature_eyeofthestorm.jpg new file mode 100644 index 0000000..4cf02b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_eyeofthestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_faeriefire.jpg b/other/AoWoW-master/images/icons/large/spell_nature_faeriefire.jpg new file mode 100644 index 0000000..341717a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_faeriefire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_farsight.jpg b/other/AoWoW-master/images/icons/large/spell_nature_farsight.jpg new file mode 100644 index 0000000..467e960 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_farsight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_focusedmind.jpg b/other/AoWoW-master/images/icons/large/spell_nature_focusedmind.jpg new file mode 100644 index 0000000..d0d43d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_focusedmind.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_forceofnature.jpg b/other/AoWoW-master/images/icons/large/spell_nature_forceofnature.jpg new file mode 100644 index 0000000..5421f96 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_giftofthewaterspirit.jpg b/other/AoWoW-master/images/icons/large/spell_nature_giftofthewaterspirit.jpg new file mode 100644 index 0000000..ed8a227 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_giftofthewaterspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_giftofthewild.jpg b/other/AoWoW-master/images/icons/large/spell_nature_giftofthewild.jpg new file mode 100644 index 0000000..f53d0b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_giftofthewild.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_groundingtotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_groundingtotem.jpg new file mode 100644 index 0000000..ea6547b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_groundingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_guardianward.jpg b/other/AoWoW-master/images/icons/large/spell_nature_guardianward.jpg new file mode 100644 index 0000000..83024e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_guardianward.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_healingtouch.jpg b/other/AoWoW-master/images/icons/large/spell_nature_healingtouch.jpg new file mode 100644 index 0000000..06c1b8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_healingtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_healingwavegreater.jpg b/other/AoWoW-master/images/icons/large/spell_nature_healingwavegreater.jpg new file mode 100644 index 0000000..453e373 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_healingwavegreater.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_healingwavelesser.jpg b/other/AoWoW-master/images/icons/large/spell_nature_healingwavelesser.jpg new file mode 100644 index 0000000..f8c7bee Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_healingwavelesser.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_healingway.jpg b/other/AoWoW-master/images/icons/large/spell_nature_healingway.jpg new file mode 100644 index 0000000..a078004 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_healingway.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_insectswarm.jpg b/other/AoWoW-master/images/icons/large/spell_nature_insectswarm.jpg new file mode 100644 index 0000000..3ae06a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_insectswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_invisibilitytotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_invisibilitytotem.jpg new file mode 100644 index 0000000..69bf5f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_invisibilitytotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_invisibilty.jpg b/other/AoWoW-master/images/icons/large/spell_nature_invisibilty.jpg new file mode 100644 index 0000000..90fc587 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_invisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_lightning.jpg b/other/AoWoW-master/images/icons/large/spell_nature_lightning.jpg new file mode 100644 index 0000000..638e059 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_lightning.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_lightningbolt.jpg b/other/AoWoW-master/images/icons/large/spell_nature_lightningbolt.jpg new file mode 100644 index 0000000..75e2694 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_lightningbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_lightningoverload.jpg b/other/AoWoW-master/images/icons/large/spell_nature_lightningoverload.jpg new file mode 100644 index 0000000..60f9be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_lightningoverload.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_lightningshield.jpg b/other/AoWoW-master/images/icons/large/spell_nature_lightningshield.jpg new file mode 100644 index 0000000..7a2ae3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_lightningshield.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_magicimmunity.jpg b/other/AoWoW-master/images/icons/large/spell_nature_magicimmunity.jpg new file mode 100644 index 0000000..c70d8c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_magicimmunity.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_manaregentotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_manaregentotem.jpg new file mode 100644 index 0000000..607cea6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_manaregentotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_massteleport.jpg b/other/AoWoW-master/images/icons/large/spell_nature_massteleport.jpg new file mode 100644 index 0000000..ea6af39 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_massteleport.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_mentalquickness.jpg b/other/AoWoW-master/images/icons/large/spell_nature_mentalquickness.jpg new file mode 100644 index 0000000..beccf94 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_mentalquickness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_mirrorimage.jpg b/other/AoWoW-master/images/icons/large/spell_nature_mirrorimage.jpg new file mode 100644 index 0000000..430d7de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_mirrorimage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_moonglow.jpg b/other/AoWoW-master/images/icons/large/spell_nature_moonglow.jpg new file mode 100644 index 0000000..79940e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_moonglow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_moonkey.jpg b/other/AoWoW-master/images/icons/large/spell_nature_moonkey.jpg new file mode 100644 index 0000000..4775c32 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_moonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_natureblessing.jpg b/other/AoWoW-master/images/icons/large/spell_nature_natureblessing.jpg new file mode 100644 index 0000000..d1dcc08 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_natureblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_natureguardian.jpg b/other/AoWoW-master/images/icons/large/spell_nature_natureguardian.jpg new file mode 100644 index 0000000..202a56f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_natureguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_natureresistancetotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_natureresistancetotem.jpg new file mode 100644 index 0000000..bcc3215 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_natureresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_naturesblessing.jpg b/other/AoWoW-master/images/icons/large/spell_nature_naturesblessing.jpg new file mode 100644 index 0000000..0cb943b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_naturesblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_natureswrath.jpg b/other/AoWoW-master/images/icons/large/spell_nature_natureswrath.jpg new file mode 100644 index 0000000..91ccb68 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_natureswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_naturetouchdecay.jpg b/other/AoWoW-master/images/icons/large/spell_nature_naturetouchdecay.jpg new file mode 100644 index 0000000..0ae3b01 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_naturetouchdecay.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_naturetouchgrow.jpg b/other/AoWoW-master/images/icons/large/spell_nature_naturetouchgrow.jpg new file mode 100644 index 0000000..fec168c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_naturetouchgrow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_nullifydisease.jpg b/other/AoWoW-master/images/icons/large/spell_nature_nullifydisease.jpg new file mode 100644 index 0000000..2e19828 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_nullifypoison.jpg b/other/AoWoW-master/images/icons/large/spell_nature_nullifypoison.jpg new file mode 100644 index 0000000..9957a87 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_nullifypoison.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_nullifypoison_02.jpg b/other/AoWoW-master/images/icons/large/spell_nature_nullifypoison_02.jpg new file mode 100644 index 0000000..80c15a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_nullifypoison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_nullward.jpg b/other/AoWoW-master/images/icons/large/spell_nature_nullward.jpg new file mode 100644 index 0000000..6e6a082 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_nullward.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_poisoncleansingtotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_poisoncleansingtotem.jpg new file mode 100644 index 0000000..c564474 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_poisoncleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_polymorph.jpg b/other/AoWoW-master/images/icons/large/spell_nature_polymorph.jpg new file mode 100644 index 0000000..746e4a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_polymorph.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_polymorph_cow.jpg b/other/AoWoW-master/images/icons/large/spell_nature_polymorph_cow.jpg new file mode 100644 index 0000000..1c58bba Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_polymorph_cow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_preservation.jpg b/other/AoWoW-master/images/icons/large/spell_nature_preservation.jpg new file mode 100644 index 0000000..aafc7a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_preservation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_protectionformnature.jpg b/other/AoWoW-master/images/icons/large/spell_nature_protectionformnature.jpg new file mode 100644 index 0000000..4a7a0b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_protectionformnature.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_purge.jpg b/other/AoWoW-master/images/icons/large/spell_nature_purge.jpg new file mode 100644 index 0000000..22bc936 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_purge.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_ravenform.jpg b/other/AoWoW-master/images/icons/large/spell_nature_ravenform.jpg new file mode 100644 index 0000000..c6fa244 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_ravenform.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_regenerate.jpg b/other/AoWoW-master/images/icons/large/spell_nature_regenerate.jpg new file mode 100644 index 0000000..02f6354 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_regenerate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_regeneration.jpg b/other/AoWoW-master/images/icons/large/spell_nature_regeneration.jpg new file mode 100644 index 0000000..8edb1b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_regeneration.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_regeneration_02.jpg b/other/AoWoW-master/images/icons/large/spell_nature_regeneration_02.jpg new file mode 100644 index 0000000..0ab1d68 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_regeneration_02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_reincarnation.jpg b/other/AoWoW-master/images/icons/large/spell_nature_reincarnation.jpg new file mode 100644 index 0000000..93b9215 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_reincarnation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_rejuvenation.jpg b/other/AoWoW-master/images/icons/large/spell_nature_rejuvenation.jpg new file mode 100644 index 0000000..39e4b5b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_rejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_removecurse.jpg b/other/AoWoW-master/images/icons/large/spell_nature_removecurse.jpg new file mode 100644 index 0000000..bfecb6a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_removedisease.jpg b/other/AoWoW-master/images/icons/large/spell_nature_removedisease.jpg new file mode 100644 index 0000000..d16631e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_removedisease.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_resistmagic.jpg b/other/AoWoW-master/images/icons/large/spell_nature_resistmagic.jpg new file mode 100644 index 0000000..1e3c526 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_resistmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_resistnature.jpg b/other/AoWoW-master/images/icons/large/spell_nature_resistnature.jpg new file mode 100644 index 0000000..544d693 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_resistnature.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_rockbiter.jpg b/other/AoWoW-master/images/icons/large/spell_nature_rockbiter.jpg new file mode 100644 index 0000000..6e3a523 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_rockbiter.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_sentinal.jpg b/other/AoWoW-master/images/icons/large/spell_nature_sentinal.jpg new file mode 100644 index 0000000..5270f8d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_sentinal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_shamanrage.jpg b/other/AoWoW-master/images/icons/large/spell_nature_shamanrage.jpg new file mode 100644 index 0000000..88b8eda Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_shamanrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_skinofearth.jpg b/other/AoWoW-master/images/icons/large/spell_nature_skinofearth.jpg new file mode 100644 index 0000000..d06d61d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_skinofearth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_sleep.jpg b/other/AoWoW-master/images/icons/large/spell_nature_sleep.jpg new file mode 100644 index 0000000..6dcf779 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_sleep.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_slow.jpg b/other/AoWoW-master/images/icons/large/spell_nature_slow.jpg new file mode 100644 index 0000000..3c39c37 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_slow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_slowingtotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_slowingtotem.jpg new file mode 100644 index 0000000..08c5164 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_slowingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_slowpoison.jpg b/other/AoWoW-master/images/icons/large/spell_nature_slowpoison.jpg new file mode 100644 index 0000000..5cb28ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_slowpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_spiritarmor.jpg b/other/AoWoW-master/images/icons/large/spell_nature_spiritarmor.jpg new file mode 100644 index 0000000..82c7c4b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_spiritarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_spiritwolf.jpg b/other/AoWoW-master/images/icons/large/spell_nature_spiritwolf.jpg new file mode 100644 index 0000000..b5ee2c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_spiritwolf.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_starfall.jpg b/other/AoWoW-master/images/icons/large/spell_nature_starfall.jpg new file mode 100644 index 0000000..28d9af4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_starfall.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_stoneclawtotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_stoneclawtotem.jpg new file mode 100644 index 0000000..a6e171a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_stoneclawtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_stoneskintotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_stoneskintotem.jpg new file mode 100644 index 0000000..2d57683 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_stoneskintotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_stormreach.jpg b/other/AoWoW-master/images/icons/large/spell_nature_stormreach.jpg new file mode 100644 index 0000000..c850d01 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_stormreach.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_stranglevines.jpg b/other/AoWoW-master/images/icons/large/spell_nature_stranglevines.jpg new file mode 100644 index 0000000..ed0660c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_stranglevines.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_strength.jpg b/other/AoWoW-master/images/icons/large/spell_nature_strength.jpg new file mode 100644 index 0000000..5dff799 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_strength.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_strengthofearthtotem02.jpg b/other/AoWoW-master/images/icons/large/spell_nature_strengthofearthtotem02.jpg new file mode 100644 index 0000000..c3a7390 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_strengthofearthtotem02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_swiftness.jpg b/other/AoWoW-master/images/icons/large/spell_nature_swiftness.jpg new file mode 100644 index 0000000..c46151c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_swiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_thorns.jpg b/other/AoWoW-master/images/icons/large/spell_nature_thorns.jpg new file mode 100644 index 0000000..09a1e4b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_thorns.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_thunderclap.jpg b/other/AoWoW-master/images/icons/large/spell_nature_thunderclap.jpg new file mode 100644 index 0000000..ce24ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_timestop.jpg b/other/AoWoW-master/images/icons/large/spell_nature_timestop.jpg new file mode 100644 index 0000000..54c4c27 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_timestop.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_tranquility.jpg b/other/AoWoW-master/images/icons/large/spell_nature_tranquility.jpg new file mode 100644 index 0000000..418febf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_tranquility.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_tremortotem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_tremortotem.jpg new file mode 100644 index 0000000..9bf2fc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_tremortotem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_undyingstrength.jpg b/other/AoWoW-master/images/icons/large/spell_nature_undyingstrength.jpg new file mode 100644 index 0000000..c21e18c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_undyingstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_unleashedrage.jpg b/other/AoWoW-master/images/icons/large/spell_nature_unleashedrage.jpg new file mode 100644 index 0000000..2bf115f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_unleashedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_unrelentingstorm.jpg b/other/AoWoW-master/images/icons/large/spell_nature_unrelentingstorm.jpg new file mode 100644 index 0000000..0ea6ff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_unrelentingstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_unyeildingstamina.jpg b/other/AoWoW-master/images/icons/large/spell_nature_unyeildingstamina.jpg new file mode 100644 index 0000000..4647537 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_unyeildingstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_web.jpg b/other/AoWoW-master/images/icons/large/spell_nature_web.jpg new file mode 100644 index 0000000..c50d9c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_web.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_windfury.jpg b/other/AoWoW-master/images/icons/large/spell_nature_windfury.jpg new file mode 100644 index 0000000..bf92d3d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_windfury.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_wispheal.jpg b/other/AoWoW-master/images/icons/large/spell_nature_wispheal.jpg new file mode 100644 index 0000000..649c608 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_wispheal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_wispsplode.jpg b/other/AoWoW-master/images/icons/large/spell_nature_wispsplode.jpg new file mode 100644 index 0000000..36aa7de Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_wispsplode.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_nature_wrathofair_totem.jpg b/other/AoWoW-master/images/icons/large/spell_nature_wrathofair_totem.jpg new file mode 100644 index 0000000..976d031 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_nature_wrathofair_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_abominationexplosion.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_abominationexplosion.jpg new file mode 100644 index 0000000..fe23c7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_abominationexplosion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_animatedead.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_animatedead.jpg new file mode 100644 index 0000000..fb32a86 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_animatedead.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_antimagicshell.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_antimagicshell.jpg new file mode 100644 index 0000000..757431b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_antimagicshell.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_antishadow.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_antishadow.jpg new file mode 100644 index 0000000..3e7536c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_antishadow.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_auraofdarkness.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_auraofdarkness.jpg new file mode 100644 index 0000000..aeff5da Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_auraofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_blackplague.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_blackplague.jpg new file mode 100644 index 0000000..8b2199c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_blackplague.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_bloodboil.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_bloodboil.jpg new file mode 100644 index 0000000..7c3b3fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_bloodboil.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_brainwash.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_brainwash.jpg new file mode 100644 index 0000000..2aa62ae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_brainwash.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_burningspirit.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_burningspirit.jpg new file mode 100644 index 0000000..ed8e116 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_burningspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_callofbone.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_callofbone.jpg new file mode 100644 index 0000000..190ab77 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_callofbone.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_carrionswarm.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_carrionswarm.jpg new file mode 100644 index 0000000..bf01795 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_carrionswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_charm.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_charm.jpg new file mode 100644 index 0000000..5586c2e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_charm.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_chilltouch.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_chilltouch.jpg new file mode 100644 index 0000000..ae5d196 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_chilltouch.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_coneofsilence.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_coneofsilence.jpg new file mode 100644 index 0000000..2f7f0fe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_coneofsilence.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_contagion.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_contagion.jpg new file mode 100644 index 0000000..27c08eb Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_contagion.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_corpseexplode.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_corpseexplode.jpg new file mode 100644 index 0000000..e6ebaf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_corpseexplode.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_creepingplague.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_creepingplague.jpg new file mode 100644 index 0000000..390f3e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_creepingplague.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_cripple.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_cripple.jpg new file mode 100644 index 0000000..bd6dcb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_cripple.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_curse.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_curse.jpg new file mode 100644 index 0000000..3fe0e45 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_curse.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_curseofachimonde.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_curseofachimonde.jpg new file mode 100644 index 0000000..d7ce892 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_curseofachimonde.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_curseofmannoroth.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_curseofmannoroth.jpg new file mode 100644 index 0000000..85d46e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_curseofmannoroth.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_curseofsargeras.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_curseofsargeras.jpg new file mode 100644 index 0000000..17ac87c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_curseofsargeras.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_curseoftounges.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_curseoftounges.jpg new file mode 100644 index 0000000..696771f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_curseoftounges.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_darkritual.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_darkritual.jpg new file mode 100644 index 0000000..86bddb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_darkritual.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_darksummoning.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_darksummoning.jpg new file mode 100644 index 0000000..a31cfa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_darksummoning.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_deadofnight.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_deadofnight.jpg new file mode 100644 index 0000000..f94e9c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_deadofnight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_deathanddecay.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_deathanddecay.jpg new file mode 100644 index 0000000..4f394ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_deathanddecay.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_deathcoil.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_deathcoil.jpg new file mode 100644 index 0000000..410d9ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_deathcoil.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_deathpact.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_deathpact.jpg new file mode 100644 index 0000000..eedf718 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_deathpact.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_deathscream.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_deathscream.jpg new file mode 100644 index 0000000..19a7aef Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_deathscream.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_demonbreath.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_demonbreath.jpg new file mode 100644 index 0000000..fd92f08 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_demonbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_demonicfortitude.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_demonicfortitude.jpg new file mode 100644 index 0000000..f1a8d98 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_demonicfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_demonictactics.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_demonictactics.jpg new file mode 100644 index 0000000..5ca0bc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_demonictactics.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_destructivesoul.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_destructivesoul.jpg new file mode 100644 index 0000000..b1ada9e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_destructivesoul.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_detectinvisibility.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_detectinvisibility.jpg new file mode 100644 index 0000000..754ab20 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_detectinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_detectlesserinvisibility.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_detectlesserinvisibility.jpg new file mode 100644 index 0000000..3cc4e3c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_detectlesserinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_enslavedemon.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_enslavedemon.jpg new file mode 100644 index 0000000..720b263 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_enslavedemon.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_evileye.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_evileye.jpg new file mode 100644 index 0000000..3b9a2cf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_evileye.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_felarmour.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_felarmour.jpg new file mode 100644 index 0000000..1647dca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_felarmour.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_fingerofdeath.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_fingerofdeath.jpg new file mode 100644 index 0000000..8ac95f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_fingerofdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_focusedpower.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_focusedpower.jpg new file mode 100644 index 0000000..b1b4c3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_fumble.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_fumble.jpg new file mode 100644 index 0000000..d496a08 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_fumble.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_gathershadows.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_gathershadows.jpg new file mode 100644 index 0000000..21a1dd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_gathershadows.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_ghostkey.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_ghostkey.jpg new file mode 100644 index 0000000..b531ed2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_ghostkey.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_grimward.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_grimward.jpg new file mode 100644 index 0000000..a2c99b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_grimward.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_haunting.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_haunting.jpg new file mode 100644 index 0000000..94c6dc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_haunting.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_impphaseshift.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_impphaseshift.jpg new file mode 100644 index 0000000..d6e37bf Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_impphaseshift.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_improvedvampiricembrace.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_improvedvampiricembrace.jpg new file mode 100644 index 0000000..b304928 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_improvedvampiricembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_lastingaffliction.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_lastingaffliction.jpg new file mode 100644 index 0000000..f52c8af Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_lastingaffliction.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_lastingafflictions.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_lastingafflictions.jpg new file mode 100644 index 0000000..da28986 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_lastingafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_lifedrain.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_lifedrain.jpg new file mode 100644 index 0000000..acc1152 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_lifedrain.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_lifedrain02.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_lifedrain02.jpg new file mode 100644 index 0000000..bb4eeae Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_lifedrain02.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_manaburn.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_manaburn.jpg new file mode 100644 index 0000000..43a0c4b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_manafeed.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_manafeed.jpg new file mode 100644 index 0000000..d68354e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_manafeed.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_metamorphosis.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_metamorphosis.jpg new file mode 100644 index 0000000..9eac3ea Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_metamorphosis.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_mindbomb.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_mindbomb.jpg new file mode 100644 index 0000000..2bd40d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_mindbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_mindrot.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_mindrot.jpg new file mode 100644 index 0000000..cb53cfe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_mindrot.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_mindsteal.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_mindsteal.jpg new file mode 100644 index 0000000..95e8456 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_mindsteal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_misery.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_misery.jpg new file mode 100644 index 0000000..cfb25e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_misery.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_nethercloak.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_nethercloak.jpg new file mode 100644 index 0000000..9401163 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_nethercloak.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_netherprotection.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_netherprotection.jpg new file mode 100644 index 0000000..4872666 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_netherprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_nightofthedead.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_nightofthedead.jpg new file mode 100644 index 0000000..cc846d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_nightofthedead.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_painfulafflictions.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_painfulafflictions.jpg new file mode 100644 index 0000000..2915a83 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_painfulafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_painspike.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_painspike.jpg new file mode 100644 index 0000000..800af27 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_painspike.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_plaguecloud.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_plaguecloud.jpg new file mode 100644 index 0000000..7ad7c72 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_plaguecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_possession.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_possession.jpg new file mode 100644 index 0000000..7448ffa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_possession.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_psychicscream.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_psychicscream.jpg new file mode 100644 index 0000000..83624e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_psychicscream.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_ragingscream.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_ragingscream.jpg new file mode 100644 index 0000000..d0b1c9f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_ragingscream.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_rainoffire.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_rainoffire.jpg new file mode 100644 index 0000000..706f12c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_rainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_raisedead.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_raisedead.jpg new file mode 100644 index 0000000..8319a91 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_raisedead.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_requiem.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_requiem.jpg new file mode 100644 index 0000000..7e8e67f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_requiem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_ritualofsacrifice.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_ritualofsacrifice.jpg new file mode 100644 index 0000000..6bbd3e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_ritualofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_sacrificialshield.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_sacrificialshield.jpg new file mode 100644 index 0000000..4d4cfc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_sacrificialshield.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_scourgebuild.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_scourgebuild.jpg new file mode 100644 index 0000000..619eafe Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_scourgebuild.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_sealofkings.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_sealofkings.jpg new file mode 100644 index 0000000..c97c18a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_sealofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_seedofdestruction.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_seedofdestruction.jpg new file mode 100644 index 0000000..b7237d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_seedofdestruction.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadesofdarkness.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadesofdarkness.jpg new file mode 100644 index 0000000..7f6d383 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadesofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadetruesight.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadetruesight.jpg new file mode 100644 index 0000000..767648a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadetruesight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowandflame.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowandflame.jpg new file mode 100644 index 0000000..cb2dd7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowandflame.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowbolt.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowbolt.jpg new file mode 100644 index 0000000..4f4c4fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowembrace.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowembrace.jpg new file mode 100644 index 0000000..83f884d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowfiend.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowfiend.jpg new file mode 100644 index 0000000..e262b3c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowfiend.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowform.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowform.jpg new file mode 100644 index 0000000..440e0e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowform.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowfury.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowfury.jpg new file mode 100644 index 0000000..2eedfb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowfury.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowmend.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowmend.jpg new file mode 100644 index 0000000..eb400fa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowmend.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowpact.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowpact.jpg new file mode 100644 index 0000000..23361b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowpact.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowpower.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowpower.jpg new file mode 100644 index 0000000..1cc2727 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowpower.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowward.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowward.jpg new file mode 100644 index 0000000..b459de4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowward.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowworddominate.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowworddominate.jpg new file mode 100644 index 0000000..314d786 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowworddominate.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_shadowwordpain.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_shadowwordpain.jpg new file mode 100644 index 0000000..a306c67 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_shadowwordpain.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_siphonmana.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_siphonmana.jpg new file mode 100644 index 0000000..c17ed7d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_siphonmana.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_soothingkiss.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_soothingkiss.jpg new file mode 100644 index 0000000..62996c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_soothingkiss.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_soulgem.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_soulgem.jpg new file mode 100644 index 0000000..2672a82 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_soulgem.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_soulleech.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech.jpg new file mode 100644 index 0000000..aba2315 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_1.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_1.jpg new file mode 100644 index 0000000..3827979 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_1.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_2.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_2.jpg new file mode 100644 index 0000000..2e6fa3e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_2.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_3.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_3.jpg new file mode 100644 index 0000000..cb0f292 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_soulleech_3.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_spectralsight.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_spectralsight.jpg new file mode 100644 index 0000000..5cd2e22 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_spectralsight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_summonfelguard.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_summonfelguard.jpg new file mode 100644 index 0000000..e9f0ae3 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_summonfelguard.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_summonfelhunter.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_summonfelhunter.jpg new file mode 100644 index 0000000..f09e1fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_summonfelhunter.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_summonimp.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_summonimp.jpg new file mode 100644 index 0000000..02f241c Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_summonimp.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_summoninfernal.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_summoninfernal.jpg new file mode 100644 index 0000000..5f283fc Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_summoninfernal.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_summonsuccubus.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_summonsuccubus.jpg new file mode 100644 index 0000000..b59cc06 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_summonsuccubus.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_summonvoidwalker.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_summonvoidwalker.jpg new file mode 100644 index 0000000..fb70a2f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_summonvoidwalker.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_teleport.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_teleport.jpg new file mode 100644 index 0000000..7b7c797 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_teleport.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_twilight.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_twilight.jpg new file mode 100644 index 0000000..5589cd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_twilight.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_unholyfrenzy.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_unholyfrenzy.jpg new file mode 100644 index 0000000..d416a51 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_unholyfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_unholystrength.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_unholystrength.jpg new file mode 100644 index 0000000..4dc3973 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_unholystrength.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_1.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_1.jpg new file mode 100644 index 0000000..8895a95 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_1.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_2.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_2.jpg new file mode 100644 index 0000000..63ad8dd Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_2.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_3.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_3.jpg new file mode 100644 index 0000000..2180064 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_unstableaffliction_3.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_unstableafllictions.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_unstableafllictions.jpg new file mode 100644 index 0000000..a37631e Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_unstableafllictions.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_unsummonbuilding.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_unsummonbuilding.jpg new file mode 100644 index 0000000..4ef4d2d Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_unsummonbuilding.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_shadow_vampiricaura.jpg b/other/AoWoW-master/images/icons/large/spell_shadow_vampiricaura.jpg new file mode 100644 index 0000000..b38d0aa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_shadow_vampiricaura.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_totem_wardofdraining.jpg b/other/AoWoW-master/images/icons/large/spell_totem_wardofdraining.jpg new file mode 100644 index 0000000..69952fa Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_totem_wardofdraining.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_unused.jpg b/other/AoWoW-master/images/icons/large/spell_unused.jpg new file mode 100644 index 0000000..52b202b Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_unused.jpg differ diff --git a/other/AoWoW-master/images/icons/large/spell_unused2.jpg b/other/AoWoW-master/images/icons/large/spell_unused2.jpg new file mode 100644 index 0000000..31f4920 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/spell_unused2.jpg differ diff --git a/other/AoWoW-master/images/icons/large/temp.jpg b/other/AoWoW-master/images/icons/large/temp.jpg new file mode 100644 index 0000000..6cc45b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/temp.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_alchemy.jpg b/other/AoWoW-master/images/icons/large/trade_alchemy.jpg new file mode 100644 index 0000000..25364ca Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_alchemy.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_blacksmithing.jpg b/other/AoWoW-master/images/icons/large/trade_blacksmithing.jpg new file mode 100644 index 0000000..397d58f Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_blacksmithing.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_brewpoison.jpg b/other/AoWoW-master/images/icons/large/trade_brewpoison.jpg new file mode 100644 index 0000000..052d7f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_brewpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_engineering.jpg b/other/AoWoW-master/images/icons/large/trade_engineering.jpg new file mode 100644 index 0000000..3a26219 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_engineering.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_engraving.jpg b/other/AoWoW-master/images/icons/large/trade_engraving.jpg new file mode 100644 index 0000000..7ddbd97 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_engraving.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_fishing.jpg b/other/AoWoW-master/images/icons/large/trade_fishing.jpg new file mode 100644 index 0000000..b92c3ab Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_fishing.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_herbalism.jpg b/other/AoWoW-master/images/icons/large/trade_herbalism.jpg new file mode 100644 index 0000000..a753703 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_herbalism.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_leatherworking.jpg b/other/AoWoW-master/images/icons/large/trade_leatherworking.jpg new file mode 100644 index 0000000..6c13430 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_leatherworking.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_mining.jpg b/other/AoWoW-master/images/icons/large/trade_mining.jpg new file mode 100644 index 0000000..197b249 Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_mining.jpg differ diff --git a/other/AoWoW-master/images/icons/large/trade_tailoring.jpg b/other/AoWoW-master/images/icons/large/trade_tailoring.jpg new file mode 100644 index 0000000..dcd525a Binary files /dev/null and b/other/AoWoW-master/images/icons/large/trade_tailoring.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_ambush.jpg b/other/AoWoW-master/images/icons/medium/ability_ambush.jpg new file mode 100644 index 0000000..1e806ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_backstab.jpg b/other/AoWoW-master/images/icons/medium/ability_backstab.jpg new file mode 100644 index 0000000..f6be571 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_backstab.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_bullrush.jpg b/other/AoWoW-master/images/icons/medium/ability_bullrush.jpg new file mode 100644 index 0000000..a1a97e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_bullrush.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_cheapshot.jpg b/other/AoWoW-master/images/icons/medium/ability_cheapshot.jpg new file mode 100644 index 0000000..d0436a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_cheapshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_cursed_01.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_01.jpg new file mode 100644 index 0000000..1cc07a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_cursed_02.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_02.jpg new file mode 100644 index 0000000..b69ab15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_cursed_03.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_03.jpg new file mode 100644 index 0000000..04446e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_cursed_04.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_04.jpg new file mode 100644 index 0000000..6de849b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_cursed_05.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_05.jpg new file mode 100644 index 0000000..38eaeee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_cursed_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_disease_01.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_disease_01.jpg new file mode 100644 index 0000000..abf51d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_disease_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_disease_02.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_disease_02.jpg new file mode 100644 index 0000000..22c6c23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_disease_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_disease_03.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_disease_03.jpg new file mode 100644 index 0000000..9a1d4b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_disease_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_disease_04.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_disease_04.jpg new file mode 100644 index 0000000..45d8564 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_disease_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_disease_05.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_disease_05.jpg new file mode 100644 index 0000000..6ee50fb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_disease_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_poison_01.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_poison_01.jpg new file mode 100644 index 0000000..22f2762 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_poison_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_poison_02.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_poison_02.jpg new file mode 100644 index 0000000..b4090c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_poison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_poison_03.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_poison_03.jpg new file mode 100644 index 0000000..84144d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_poison_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_poison_04.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_poison_04.jpg new file mode 100644 index 0000000..ad0f1c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_poison_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_poison_05.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_poison_05.jpg new file mode 100644 index 0000000..7fcc587 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_poison_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_creature_poison_06.jpg b/other/AoWoW-master/images/icons/medium/ability_creature_poison_06.jpg new file mode 100644 index 0000000..25e755b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_creature_poison_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_criticalstrike.jpg b/other/AoWoW-master/images/icons/medium/ability_criticalstrike.jpg new file mode 100644 index 0000000..0f121db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_criticalstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_defend.jpg b/other/AoWoW-master/images/icons/medium/ability_defend.jpg new file mode 100644 index 0000000..82b646a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_defend.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_devour.jpg b/other/AoWoW-master/images/icons/medium/ability_devour.jpg new file mode 100644 index 0000000..d26ed1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_devour.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_aquaticform.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_aquaticform.jpg new file mode 100644 index 0000000..c71c1b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_aquaticform.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_balanceofpower.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_balanceofpower.jpg new file mode 100644 index 0000000..be37558 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_balanceofpower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_bash.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_bash.jpg new file mode 100644 index 0000000..dde5d9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_bash.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_catform.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_catform.jpg new file mode 100644 index 0000000..c52a200 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_catform.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_catformattack.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_catformattack.jpg new file mode 100644 index 0000000..bc84ec4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_catformattack.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_challangingroar.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_challangingroar.jpg new file mode 100644 index 0000000..884102d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_challangingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_cower.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_cower.jpg new file mode 100644 index 0000000..7af1df9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_cower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_cyclone.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_cyclone.jpg new file mode 100644 index 0000000..76b82e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_dash.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_dash.jpg new file mode 100644 index 0000000..51081aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_dash.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_demoralizingroar.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_demoralizingroar.jpg new file mode 100644 index 0000000..48c5d94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_demoralizingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_disembowel.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_disembowel.jpg new file mode 100644 index 0000000..604ab9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_dreamstate.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_dreamstate.jpg new file mode 100644 index 0000000..0cdef49 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_dreamstate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_empoweredrejuvination.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_empoweredrejuvination.jpg new file mode 100644 index 0000000..46e93cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_empoweredrejuvination.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_empoweredtouch.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_empoweredtouch.jpg new file mode 100644 index 0000000..06ffa4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_empoweredtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_enrage.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_enrage.jpg new file mode 100644 index 0000000..47aee35 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_enrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_ferociousbite.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_ferociousbite.jpg new file mode 100644 index 0000000..37795a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_ferociousbite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_flightform.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_flightform.jpg new file mode 100644 index 0000000..81e721c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_flightform.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_forceofnature.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_forceofnature.jpg new file mode 100644 index 0000000..4c9a39e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_healinginstincts.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_healinginstincts.jpg new file mode 100644 index 0000000..aee0f94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_healinginstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_lacerate.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_lacerate.jpg new file mode 100644 index 0000000..a686e47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_lacerate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_lunarguidance.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_lunarguidance.jpg new file mode 100644 index 0000000..c3ddff7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_lunarguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_mangle.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_mangle.jpg new file mode 100644 index 0000000..30d1ed3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_mangle.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_mangle.tga.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_mangle.tga.jpg new file mode 100644 index 0000000..30d1ed3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_mangle.tga.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_mangle2.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_mangle2.jpg new file mode 100644 index 0000000..787b25e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_mangle2.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_maul.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_maul.jpg new file mode 100644 index 0000000..e8830c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_maul.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_naturalperfection.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_naturalperfection.jpg new file mode 100644 index 0000000..fe908ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_naturalperfection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_predatoryinstincts.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_predatoryinstincts.jpg new file mode 100644 index 0000000..2eb1124 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_predatoryinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_primaltenacity.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_primaltenacity.jpg new file mode 100644 index 0000000..74f1176 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_primaltenacity.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_rake.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_rake.jpg new file mode 100644 index 0000000..55de4c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_rake.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_ravage.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_ravage.jpg new file mode 100644 index 0000000..5df2516 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_ravage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_supriseattack.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_supriseattack.jpg new file mode 100644 index 0000000..a837f19 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_supriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_swipe.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_swipe.jpg new file mode 100644 index 0000000..d3534e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_swipe.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_travelform.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_travelform.jpg new file mode 100644 index 0000000..02d8879 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_travelform.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_treeoflife.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_treeoflife.jpg new file mode 100644 index 0000000..fa1dace Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_treeoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_druid_twilightswrath.jpg b/other/AoWoW-master/images/icons/medium/ability_druid_twilightswrath.jpg new file mode 100644 index 0000000..2db5c61 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_druid_twilightswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_dualwield.jpg b/other/AoWoW-master/images/icons/medium/ability_dualwield.jpg new file mode 100644 index 0000000..6c7aa68 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_dualwield.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_dualwieldspecialization.jpg b/other/AoWoW-master/images/icons/medium/ability_dualwieldspecialization.jpg new file mode 100644 index 0000000..e5c4cb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_dualwieldspecialization.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_ensnare.jpg b/other/AoWoW-master/images/icons/medium/ability_ensnare.jpg new file mode 100644 index 0000000..8cafb2e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_ensnare.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_eyeoftheowl.jpg b/other/AoWoW-master/images/icons/medium/ability_eyeoftheowl.jpg new file mode 100644 index 0000000..4b2efb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_eyeoftheowl.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_fiegndead.jpg b/other/AoWoW-master/images/icons/medium/ability_fiegndead.jpg new file mode 100644 index 0000000..df7fcf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_fiegndead.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_ghoulfrenzy.jpg b/other/AoWoW-master/images/icons/medium/ability_ghoulfrenzy.jpg new file mode 100644 index 0000000..afa5e0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_ghoulfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_golemstormbolt.jpg b/other/AoWoW-master/images/icons/medium/ability_golemstormbolt.jpg new file mode 100644 index 0000000..0373eae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_golemstormbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_golemthunderclap.jpg b/other/AoWoW-master/images/icons/medium/ability_golemthunderclap.jpg new file mode 100644 index 0000000..dbe3eb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_golemthunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_gouge.jpg b/other/AoWoW-master/images/icons/medium/ability_gouge.jpg new file mode 100644 index 0000000..bb31b0b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_gouge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hibernation.jpg b/other/AoWoW-master/images/icons/medium/ability_hibernation.jpg new file mode 100644 index 0000000..47d4371 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hibernation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_aimedshot.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_aimedshot.jpg new file mode 100644 index 0000000..0f9e6be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_aimedshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_animalhandler.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_animalhandler.jpg new file mode 100644 index 0000000..1ba2811 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_animalhandler.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_aspectofthemonkey.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_aspectofthemonkey.jpg new file mode 100644 index 0000000..d6503c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_aspectofthemonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_aspectoftheviper.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_aspectoftheviper.jpg new file mode 100644 index 0000000..fa54039 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_aspectoftheviper.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_beastcall.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_beastcall.jpg new file mode 100644 index 0000000..70bb903 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_beastcall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_beastcall02.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_beastcall02.jpg new file mode 100644 index 0000000..8d09f74 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_beastcall02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_beastsoothe.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_beastsoothe.jpg new file mode 100644 index 0000000..a7a7528 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_beastsoothe.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_beasttaming.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_beasttaming.jpg new file mode 100644 index 0000000..1f0ba84 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_beasttaming.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_beasttraining.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_beasttraining.jpg new file mode 100644 index 0000000..63326e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_beasttraining.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_beastwithin.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_beastwithin.jpg new file mode 100644 index 0000000..eca42ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_beastwithin.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_catlikereflexes.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_catlikereflexes.jpg new file mode 100644 index 0000000..94ec7c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_catlikereflexes.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_combatexperience.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_combatexperience.jpg new file mode 100644 index 0000000..3a0b914 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_combatexperience.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_criticalshot.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_criticalshot.jpg new file mode 100644 index 0000000..934c4b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_criticalshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_disarmingshot.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_disarmingshot.jpg new file mode 100644 index 0000000..da1398f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_disarmingshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_displacement.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_displacement.jpg new file mode 100644 index 0000000..0a51dc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_displacement.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_eagleeye.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_eagleeye.jpg new file mode 100644 index 0000000..d481fed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_eagleeye.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_ferociousinspiration.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_ferociousinspiration.jpg new file mode 100644 index 0000000..0006980 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_ferociousinspiration.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_goforthethroat.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_goforthethroat.jpg new file mode 100644 index 0000000..eeb101d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_goforthethroat.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_harass.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_harass.jpg new file mode 100644 index 0000000..6d72b45 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_harass.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_killcommand.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_killcommand.jpg new file mode 100644 index 0000000..2eb622d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_killcommand.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_mastermarksman.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_mastermarksman.jpg new file mode 100644 index 0000000..30ea891 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_mastermarksman.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_mastertactitian.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_mastertactitian.jpg new file mode 100644 index 0000000..f5cf5a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_mastertactitian.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_mendpet.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_mendpet.jpg new file mode 100644 index 0000000..a2b4f70 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_mendpet.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_misdirection.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_misdirection.jpg new file mode 100644 index 0000000..28eb7c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_misdirection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pathfinding.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pathfinding.jpg new file mode 100644 index 0000000..c166760 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pathfinding.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_bat.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_bat.jpg new file mode 100644 index 0000000..1aa2e46 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_bat.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_bear.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_bear.jpg new file mode 100644 index 0000000..2b0b94d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_bear.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_boar.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_boar.jpg new file mode 100644 index 0000000..16b7a64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_boar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_cat.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_cat.jpg new file mode 100644 index 0000000..c6055e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_cat.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_crab.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_crab.jpg new file mode 100644 index 0000000..a92bf5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_crab.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_crocolisk.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_crocolisk.jpg new file mode 100644 index 0000000..6239c15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_crocolisk.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_dragonhawk.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_dragonhawk.jpg new file mode 100644 index 0000000..526d10b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_dragonhawk.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_gorilla.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_gorilla.jpg new file mode 100644 index 0000000..c9deecf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_gorilla.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_hyena.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_hyena.jpg new file mode 100644 index 0000000..df4b1e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_hyena.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_netherray.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_netherray.jpg new file mode 100644 index 0000000..eb80497 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_netherray.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_owl.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_owl.jpg new file mode 100644 index 0000000..2cc416d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_owl.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_raptor.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_raptor.jpg new file mode 100644 index 0000000..338cc42 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_ravager.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_ravager.jpg new file mode 100644 index 0000000..246ec0f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_ravager.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_scorpid.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_scorpid.jpg new file mode 100644 index 0000000..fced63e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_scorpid.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_spider.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_spider.jpg new file mode 100644 index 0000000..adc8d31 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_spider.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_sporebat.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_sporebat.jpg new file mode 100644 index 0000000..bff25a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_sporebat.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_tallstrider.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_tallstrider.jpg new file mode 100644 index 0000000..3060c42 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_tallstrider.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_turtle.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_turtle.jpg new file mode 100644 index 0000000..71d59ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_turtle.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_vulture.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_vulture.jpg new file mode 100644 index 0000000..6750e91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_vulture.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_warpstalker.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_warpstalker.jpg new file mode 100644 index 0000000..c99f5ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_warpstalker.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_windserpent.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_windserpent.jpg new file mode 100644 index 0000000..a5628da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_windserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_pet_wolf.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_wolf.jpg new file mode 100644 index 0000000..224329d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_pet_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_quickshot.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_quickshot.jpg new file mode 100644 index 0000000..b00ce79 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_quickshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_rapidkilling.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_rapidkilling.jpg new file mode 100644 index 0000000..0552ca8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_rapidkilling.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_readiness.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_readiness.jpg new file mode 100644 index 0000000..e4bb7c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_readiness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_resourcefulness.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_resourcefulness.jpg new file mode 100644 index 0000000..0d430da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_resourcefulness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_runningshot.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_runningshot.jpg new file mode 100644 index 0000000..0568e1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_runningshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_serpentswiftness.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_serpentswiftness.jpg new file mode 100644 index 0000000..f6bb94f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_serpentswiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_silenthunter.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_silenthunter.jpg new file mode 100644 index 0000000..9b896eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_silenthunter.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_snaketrap.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_snaketrap.jpg new file mode 100644 index 0000000..f353957 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_snaketrap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_snipershot.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_snipershot.jpg new file mode 100644 index 0000000..cba06a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_snipershot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_steadyshot.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_steadyshot.jpg new file mode 100644 index 0000000..b866710 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_steadyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_survivalinstincts.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_survivalinstincts.jpg new file mode 100644 index 0000000..ca48f58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_survivalinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_swiftstrike.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_swiftstrike.jpg new file mode 100644 index 0000000..ce998eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_swiftstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_thrillofthehunt.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_thrillofthehunt.jpg new file mode 100644 index 0000000..4567269 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_thrillofthehunt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_hunter_zenarchery.jpg b/other/AoWoW-master/images/icons/medium/ability_hunter_zenarchery.jpg new file mode 100644 index 0000000..147cbf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_hunter_zenarchery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_impalingbolt.jpg b/other/AoWoW-master/images/icons/medium/ability_impalingbolt.jpg new file mode 100644 index 0000000..817b17b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_impalingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_kick.jpg b/other/AoWoW-master/images/icons/medium/ability_kick.jpg new file mode 100644 index 0000000..7984d80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_kick.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mage_invisibility.jpg b/other/AoWoW-master/images/icons/medium/ability_mage_invisibility.jpg new file mode 100644 index 0000000..f3f81ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mage_invisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mage_moltenarmor.jpg b/other/AoWoW-master/images/icons/medium/ability_mage_moltenarmor.jpg new file mode 100644 index 0000000..3a336b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mage_moltenarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_marksmanship.jpg b/other/AoWoW-master/images/icons/medium/ability_marksmanship.jpg new file mode 100644 index 0000000..509a77a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_marksmanship.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_meleedamage.jpg b/other/AoWoW-master/images/icons/medium/ability_meleedamage.jpg new file mode 100644 index 0000000..09d79eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_meleedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_blackdirewolf.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_blackdirewolf.jpg new file mode 100644 index 0000000..932865b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_blackdirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_blackpanther.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_blackpanther.jpg new file mode 100644 index 0000000..82a15e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_blackpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_charger.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_charger.jpg new file mode 100644 index 0000000..e9ea60f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_charger.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount.jpg new file mode 100644 index 0000000..f5d6bcc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_black.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_black.jpg new file mode 100644 index 0000000..fe6ee91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_black.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_blue.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_blue.jpg new file mode 100644 index 0000000..031ced1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_green.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_green.jpg new file mode 100644 index 0000000..954a739 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_purple.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_purple.jpg new file mode 100644 index 0000000..e1ac114 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemount_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite.jpg new file mode 100644 index 0000000..1bcfac2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_black.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_black.jpg new file mode 100644 index 0000000..2bfbfd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_black.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_blue.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_blue.jpg new file mode 100644 index 0000000..68a8889 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_green.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_green.jpg new file mode 100644 index 0000000..8eb8187 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_purple.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_purple.jpg new file mode 100644 index 0000000..e227273 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_white.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_white.jpg new file mode 100644 index 0000000..ce49f02 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_cockatricemountelite_white.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_dreadsteed.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_dreadsteed.jpg new file mode 100644 index 0000000..37aaba8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_dreadsteed.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_gryphon_01.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_gryphon_01.jpg new file mode 100644 index 0000000..5a18c91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_gryphon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_gyrocoptor.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_gyrocoptor.jpg new file mode 100644 index 0000000..e73bd2b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_gyrocoptor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_gyrocoptorelite.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_gyrocoptorelite.jpg new file mode 100644 index 0000000..e10a070 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_gyrocoptorelite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_jungletiger.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_jungletiger.jpg new file mode 100644 index 0000000..a967467 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_jungletiger.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_kodo_01.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_kodo_01.jpg new file mode 100644 index 0000000..fa5db36 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_kodo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_kodo_02.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_kodo_02.jpg new file mode 100644 index 0000000..e428035 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_kodo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_kodo_03.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_kodo_03.jpg new file mode 100644 index 0000000..6a6f748 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_kodo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_mechastrider.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_mechastrider.jpg new file mode 100644 index 0000000..f8bf025 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_mechastrider.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_mountainram.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_mountainram.jpg new file mode 100644 index 0000000..929a2ed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_mountainram.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_netherdrakeelite.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_netherdrakeelite.jpg new file mode 100644 index 0000000..b5c815b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_netherdrakeelite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_netherdrakepurple.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_netherdrakepurple.jpg new file mode 100644 index 0000000..eda3473 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_netherdrakepurple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_nightmarehorse.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_nightmarehorse.jpg new file mode 100644 index 0000000..0ca4c6d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_nightmarehorse.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_pinktiger.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_pinktiger.jpg new file mode 100644 index 0000000..7259215 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_pinktiger.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_raptor.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_raptor.jpg new file mode 100644 index 0000000..311e8c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk.jpg new file mode 100644 index 0000000..f66bee4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk_grey.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk_grey.jpg new file mode 100644 index 0000000..13380c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk_grey.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk_purple.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk_purple.jpg new file mode 100644 index 0000000..ac43631 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekk_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite.jpg new file mode 100644 index 0000000..547216d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_blue.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_blue.jpg new file mode 100644 index 0000000..31078b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_green.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_green.jpg new file mode 100644 index 0000000..504ad47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_purple.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_purple.jpg new file mode 100644 index 0000000..68e324c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridingelekkelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_ridinghorse.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_ridinghorse.jpg new file mode 100644 index 0000000..62d8746 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_ridinghorse.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_rocketmount.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_rocketmount.jpg new file mode 100644 index 0000000..55de78b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_rocketmount.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_rocketmountblue.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_rocketmountblue.jpg new file mode 100644 index 0000000..32cd126 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_rocketmountblue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_undeadhorse.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_undeadhorse.jpg new file mode 100644 index 0000000..871068f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_undeadhorse.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_warhippogryph.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_warhippogryph.jpg new file mode 100644 index 0000000..dd80a1b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_warhippogryph.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_whitedirewolf.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_whitedirewolf.jpg new file mode 100644 index 0000000..92e1424 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_whitedirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_whitetiger.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_whitetiger.jpg new file mode 100644 index 0000000..2ef5ffd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_whitetiger.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_mount_wyvern_01.jpg b/other/AoWoW-master/images/icons/medium/ability_mount_wyvern_01.jpg new file mode 100644 index 0000000..2424681 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_mount_wyvern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_parry.jpg b/other/AoWoW-master/images/icons/medium/ability_parry.jpg new file mode 100644 index 0000000..c45e875 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_parry.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_physical_taunt.jpg b/other/AoWoW-master/images/icons/medium/ability_physical_taunt.jpg new file mode 100644 index 0000000..89c7796 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_physical_taunt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_piercedamage.jpg b/other/AoWoW-master/images/icons/medium/ability_piercedamage.jpg new file mode 100644 index 0000000..89c6057 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_piercedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_poisonarrow.jpg b/other/AoWoW-master/images/icons/medium/ability_poisonarrow.jpg new file mode 100644 index 0000000..9cb3d69 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_poisonarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_poisons.jpg b/other/AoWoW-master/images/icons/medium/ability_poisons.jpg new file mode 100644 index 0000000..2f51abe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_poisons.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_poisonsting.jpg b/other/AoWoW-master/images/icons/medium/ability_poisonsting.jpg new file mode 100644 index 0000000..3cc6566 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_poisonsting.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_racial_avatar.jpg b/other/AoWoW-master/images/icons/medium/ability_racial_avatar.jpg new file mode 100644 index 0000000..a594aea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_racial_avatar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_racial_bearform.jpg b/other/AoWoW-master/images/icons/medium/ability_racial_bearform.jpg new file mode 100644 index 0000000..398835b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_racial_bearform.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_racial_bloodrage.jpg b/other/AoWoW-master/images/icons/medium/ability_racial_bloodrage.jpg new file mode 100644 index 0000000..b99faf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_racial_bloodrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_racial_cannibalize.jpg b/other/AoWoW-master/images/icons/medium/ability_racial_cannibalize.jpg new file mode 100644 index 0000000..e747a86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_racial_cannibalize.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_racial_shadowmeld.jpg b/other/AoWoW-master/images/icons/medium/ability_racial_shadowmeld.jpg new file mode 100644 index 0000000..390869f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_racial_shadowmeld.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_racial_ultravision.jpg b/other/AoWoW-master/images/icons/medium/ability_racial_ultravision.jpg new file mode 100644 index 0000000..12972a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_racial_ultravision.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_repair.jpg b/other/AoWoW-master/images/icons/medium/ability_repair.jpg new file mode 100644 index 0000000..0db9925 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_repair.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_ambush.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_ambush.jpg new file mode 100644 index 0000000..f7b2372 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_bladetwisting.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_bladetwisting.jpg new file mode 100644 index 0000000..1859040 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_bladetwisting.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_bloodyeye.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_bloodyeye.jpg new file mode 100644 index 0000000..42355a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_bloodyeye.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_cheatdeath.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_cheatdeath.jpg new file mode 100644 index 0000000..235c9a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_cheatdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_deadenednerves.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_deadenednerves.jpg new file mode 100644 index 0000000..cc6b4af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_deadenednerves.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_disembowel.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_disembowel.jpg new file mode 100644 index 0000000..b426ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_disguise.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_disguise.jpg new file mode 100644 index 0000000..0355a2c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_disguise.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_distract.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_distract.jpg new file mode 100644 index 0000000..65ea7df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_distract.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_dualweild.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_dualweild.jpg new file mode 100644 index 0000000..88e3c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_dualweild.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_envelopingshadows.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_envelopingshadows.jpg new file mode 100644 index 0000000..a4241ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_envelopingshadows.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_eviscerate.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_eviscerate.jpg new file mode 100644 index 0000000..9c8f381 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_eviscerate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_feigndeath.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_feigndeath.jpg new file mode 100644 index 0000000..5595fda Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_feigndeath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_feint.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_feint.jpg new file mode 100644 index 0000000..229cde7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_feint.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_findweakness.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_findweakness.jpg new file mode 100644 index 0000000..abeeb9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_findweakness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_fleetfooted.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_fleetfooted.jpg new file mode 100644 index 0000000..7e1edb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_fleetfooted.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_garrote.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_garrote.jpg new file mode 100644 index 0000000..a0e5fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_garrote.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_kidneyshot.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_kidneyshot.jpg new file mode 100644 index 0000000..5e62aa9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_kidneyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_masterofsubtlety.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_masterofsubtlety.jpg new file mode 100644 index 0000000..d962cba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_masterofsubtlety.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_nervesofsteel.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_nervesofsteel.jpg new file mode 100644 index 0000000..cbcbb95 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_nervesofsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_quickrecovery.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_quickrecovery.jpg new file mode 100644 index 0000000..7bae096 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_quickrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_rupture.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_rupture.jpg new file mode 100644 index 0000000..2f55831 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_rupture.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_shadowstep.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_shadowstep.jpg new file mode 100644 index 0000000..e34b101 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_shadowstep.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_shadowstrikes.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_shadowstrikes.jpg new file mode 100644 index 0000000..c79a808 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_shadowstrikes.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_sinistercalling.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_sinistercalling.jpg new file mode 100644 index 0000000..be8ab90 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_sinistercalling.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_slicedice.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_slicedice.jpg new file mode 100644 index 0000000..fd5cdc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_slicedice.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_sprint.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_sprint.jpg new file mode 100644 index 0000000..877d92f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_sprint.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_surpriseattack.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_surpriseattack.jpg new file mode 100644 index 0000000..1b08980 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_surpriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_rogue_trip.jpg b/other/AoWoW-master/images/icons/medium/ability_rogue_trip.jpg new file mode 100644 index 0000000..47a26cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_rogue_trip.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_sap.jpg b/other/AoWoW-master/images/icons/medium/ability_sap.jpg new file mode 100644 index 0000000..28456f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_sap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_seal.jpg b/other/AoWoW-master/images/icons/medium/ability_seal.jpg new file mode 100644 index 0000000..286ff37 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_seal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_searingarrow.jpg b/other/AoWoW-master/images/icons/medium/ability_searingarrow.jpg new file mode 100644 index 0000000..1c1eac4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_searingarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_shaman_heroism.jpg b/other/AoWoW-master/images/icons/medium/ability_shaman_heroism.jpg new file mode 100644 index 0000000..967a256 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_shaman_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_shaman_stormstrike.jpg b/other/AoWoW-master/images/icons/medium/ability_shaman_stormstrike.jpg new file mode 100644 index 0000000..89136b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_shaman_stormstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_shaman_watershield.jpg b/other/AoWoW-master/images/icons/medium/ability_shaman_watershield.jpg new file mode 100644 index 0000000..8a6f3f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_shaman_watershield.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_shockwave.jpg b/other/AoWoW-master/images/icons/medium/ability_shockwave.jpg new file mode 100644 index 0000000..3d6ea80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_shockwave.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_shootwand.jpg b/other/AoWoW-master/images/icons/medium/ability_shootwand.jpg new file mode 100644 index 0000000..1412956 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_shootwand.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_smash.jpg b/other/AoWoW-master/images/icons/medium/ability_smash.jpg new file mode 100644 index 0000000..4cba682 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_smash.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_spy.jpg b/other/AoWoW-master/images/icons/medium/ability_spy.jpg new file mode 100644 index 0000000..e1e5c2f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_spy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_stealth.jpg b/other/AoWoW-master/images/icons/medium/ability_stealth.jpg new file mode 100644 index 0000000..79531af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_stealth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_steelmelee.jpg b/other/AoWoW-master/images/icons/medium/ability_steelmelee.jpg new file mode 100644 index 0000000..6b13d17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_steelmelee.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_suffocate.jpg b/other/AoWoW-master/images/icons/medium/ability_suffocate.jpg new file mode 100644 index 0000000..f5f42a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_suffocate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_theblackarrow.jpg b/other/AoWoW-master/images/icons/medium/ability_theblackarrow.jpg new file mode 100644 index 0000000..5071d9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_theblackarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_throw.jpg b/other/AoWoW-master/images/icons/medium/ability_throw.jpg new file mode 100644 index 0000000..d5da34a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_throw.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_thunderbolt.jpg b/other/AoWoW-master/images/icons/medium/ability_thunderbolt.jpg new file mode 100644 index 0000000..4db808f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_thunderbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_thunderclap.jpg b/other/AoWoW-master/images/icons/medium/ability_thunderclap.jpg new file mode 100644 index 0000000..b32e9c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_townwatch.jpg b/other/AoWoW-master/images/icons/medium/ability_townwatch.jpg new file mode 100644 index 0000000..8cf8929 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_townwatch.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_tracking.jpg b/other/AoWoW-master/images/icons/medium/ability_tracking.jpg new file mode 100644 index 0000000..664b2da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_tracking.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_trueshot.jpg b/other/AoWoW-master/images/icons/medium/ability_trueshot.jpg new file mode 100644 index 0000000..c286b40 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_trueshot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_upgrademoonglaive.jpg b/other/AoWoW-master/images/icons/medium/ability_upgrademoonglaive.jpg new file mode 100644 index 0000000..0c08308 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_upgrademoonglaive.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_vanish.jpg b/other/AoWoW-master/images/icons/medium/ability_vanish.jpg new file mode 100644 index 0000000..300051d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_vanish.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warlock_avoidance.jpg b/other/AoWoW-master/images/icons/medium/ability_warlock_avoidance.jpg new file mode 100644 index 0000000..7b2f78b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warlock_avoidance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_battleshout.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_battleshout.jpg new file mode 100644 index 0000000..213573f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_battleshout.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_bloodfrenzy.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_bloodfrenzy.jpg new file mode 100644 index 0000000..dc098d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_bloodfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_challange.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_challange.jpg new file mode 100644 index 0000000..ad4ac1a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_challange.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_charge.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_charge.jpg new file mode 100644 index 0000000..b3699d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_charge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_cleave.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_cleave.jpg new file mode 100644 index 0000000..0e2911e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_cleave.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_commandingshout.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_commandingshout.jpg new file mode 100644 index 0000000..2530c0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_commandingshout.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_decisivestrike.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_decisivestrike.jpg new file mode 100644 index 0000000..f60771b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_decisivestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_defensivestance.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_defensivestance.jpg new file mode 100644 index 0000000..0903748 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_defensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_devastate.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_devastate.jpg new file mode 100644 index 0000000..2e55d00 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_devastate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_disarm.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_disarm.jpg new file mode 100644 index 0000000..262247f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_disarm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_endlessrage.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_endlessrage.jpg new file mode 100644 index 0000000..3e71228 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_endlessrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_focusedrage.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_focusedrage.jpg new file mode 100644 index 0000000..2613297 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_focusedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_improveddisciplines.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_improveddisciplines.jpg new file mode 100644 index 0000000..dc62af4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_improveddisciplines.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_innerrage.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_innerrage.jpg new file mode 100644 index 0000000..86ae8b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_innerrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_intervene.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_intervene.jpg new file mode 100644 index 0000000..c502009 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_intervene.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_offensivestance.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_offensivestance.jpg new file mode 100644 index 0000000..9e75205 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_offensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_punishingblow.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_punishingblow.jpg new file mode 100644 index 0000000..6be5de7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_punishingblow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_rallyingcry.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_rallyingcry.jpg new file mode 100644 index 0000000..6726dd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_rallyingcry.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_rampage.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_rampage.jpg new file mode 100644 index 0000000..1c76586 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_rampage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_revenge.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_revenge.jpg new file mode 100644 index 0000000..79a5226 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_revenge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_riposte.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_riposte.jpg new file mode 100644 index 0000000..552d5c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_riposte.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_savageblow.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_savageblow.jpg new file mode 100644 index 0000000..5abf406 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_savageblow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_secondwind.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_secondwind.jpg new file mode 100644 index 0000000..5b2d4aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_secondwind.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_shieldbash.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldbash.jpg new file mode 100644 index 0000000..4cd722f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldbash.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_shieldguard.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldguard.jpg new file mode 100644 index 0000000..72e5dd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldguard.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_shieldmastery.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldmastery.jpg new file mode 100644 index 0000000..101a182 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_shieldreflection.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldreflection.jpg new file mode 100644 index 0000000..17b0aac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldreflection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_shieldwall.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldwall.jpg new file mode 100644 index 0000000..f8db2d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_shieldwall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_sunder.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_sunder.jpg new file mode 100644 index 0000000..89b393a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_sunder.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_victoryrush.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_victoryrush.jpg new file mode 100644 index 0000000..52520d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_victoryrush.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_warcry.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_warcry.jpg new file mode 100644 index 0000000..09fa4be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_warcry.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warrior_weaponmastery.jpg b/other/AoWoW-master/images/icons/medium/ability_warrior_weaponmastery.jpg new file mode 100644 index 0000000..924e226 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warrior_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_warstomp.jpg b/other/AoWoW-master/images/icons/medium/ability_warstomp.jpg new file mode 100644 index 0000000..62cfbde Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_warstomp.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/ability_whirlwind.jpg b/other/AoWoW-master/images/icons/medium/ability_whirlwind.jpg new file mode 100644 index 0000000..fa6ced9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/ability_whirlwind.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/axe_1h_draenei_b_01.jpg b/other/AoWoW-master/images/icons/medium/axe_1h_draenei_b_01.jpg new file mode 100644 index 0000000..04d27da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/axe_1h_draenei_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/creature_sporemushroom.jpg b/other/AoWoW-master/images/icons/medium/creature_sporemushroom.jpg new file mode 100644 index 0000000..6ed1ab6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/creature_sporemushroom.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv-mount_raven_54.jpg b/other/AoWoW-master/images/icons/medium/inv-mount_raven_54.jpg new file mode 100644 index 0000000..93841fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv-mount_raven_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv-sword_53.jpg b/other/AoWoW-master/images/icons/medium/inv-sword_53.jpg new file mode 100644 index 0000000..eb4bb97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv-sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_1h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/medium/inv_1h_auchindoun_01.jpg new file mode 100644 index 0000000..72fc5e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_1h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_1h_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_1h_haremmatron_d_01.jpg new file mode 100644 index 0000000..56fc653 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_1h_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_2h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/medium/inv_2h_auchindoun_01.jpg new file mode 100644 index 0000000..0226bff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_2h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ammo_arrow_01.jpg new file mode 100644 index 0000000..d177fe6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/medium/inv_ammo_arrow_02.jpg new file mode 100644 index 0000000..b98e4a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_01.jpg new file mode 100644 index 0000000..538931d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_02.jpg new file mode 100644 index 0000000..f1af8c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_03.jpg new file mode 100644 index 0000000..bc40230 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ammo_firetar.jpg b/other/AoWoW-master/images/icons/medium/inv_ammo_firetar.jpg new file mode 100644 index 0000000..033059a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ammo_firetar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ammo_snowball.jpg b/other/AoWoW-master/images/icons/medium/inv_ammo_snowball.jpg new file mode 100644 index 0000000..9194632 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ammo_snowball.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/medium/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..5b2de64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_armor_shield_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_armor_shield_naxxramas_d_01.jpg new file mode 100644 index 0000000..66986c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_armor_shield_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_armor_shield_naxxramas_d_02.jpg b/other/AoWoW-master/images/icons/medium/inv_armor_shield_naxxramas_d_02.jpg new file mode 100644 index 0000000..5cd166f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_armor_shield_naxxramas_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/medium/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..b43c798 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_01.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_01.jpg new file mode 100644 index 0000000..c8bd42e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_02.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_02.jpg new file mode 100644 index 0000000..a68bf37 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_03.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_03.jpg new file mode 100644 index 0000000..4bc1bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_04.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_04.jpg new file mode 100644 index 0000000..dc4f3d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_05.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_05.jpg new file mode 100644 index 0000000..44f2afe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_06.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_06.jpg new file mode 100644 index 0000000..38b762c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_07.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_07.jpg new file mode 100644 index 0000000..3ec2c0f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_08.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_08.jpg new file mode 100644 index 0000000..51d4d3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_09.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_09.jpg new file mode 100644 index 0000000..4adba89 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_10.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_10.jpg new file mode 100644 index 0000000..fcf3e2e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_11.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_11.jpg new file mode 100644 index 0000000..fd194a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_12.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_12.jpg new file mode 100644 index 0000000..b93767d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_13.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_13.jpg new file mode 100644 index 0000000..2e0238c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_14.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_14.jpg new file mode 100644 index 0000000..fd982b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_15.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_15.jpg new file mode 100644 index 0000000..7290078 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_16.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_16.jpg new file mode 100644 index 0000000..33789fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_17.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_17.jpg new file mode 100644 index 0000000..a8141e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_18.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_18.jpg new file mode 100644 index 0000000..be4bfa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_19.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_19.jpg new file mode 100644 index 0000000..0beb30f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..a11ac99 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..cef4481 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..5f143ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_20.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_20.jpg new file mode 100644 index 0000000..4150eb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_21.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_21.jpg new file mode 100644 index 0000000..a0f4f36 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_22.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_22.jpg new file mode 100644 index 0000000..c498011 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_23.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_23.jpg new file mode 100644 index 0000000..de34bdc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_24.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_24.jpg new file mode 100644 index 0000000..ce36381 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_25.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_25.jpg new file mode 100644 index 0000000..a6d49ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_26.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_26.jpg new file mode 100644 index 0000000..ffe1f5c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_29.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_29.jpg new file mode 100644 index 0000000..e5da25e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_2h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_2h_stratholme_d_01.jpg new file mode 100644 index 0000000..db216c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_2h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_30.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_30.jpg new file mode 100644 index 0000000..c52c168 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_31.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_31.jpg new file mode 100644 index 0000000..9ee7209 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_32.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_32.jpg new file mode 100644 index 0000000..9ee7209 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_33.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_33.jpg new file mode 100644 index 0000000..1f72362 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_34.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_34.jpg new file mode 100644 index 0000000..d007e17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_35.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_35.jpg new file mode 100644 index 0000000..556f6b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_36.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_36.jpg new file mode 100644 index 0000000..8bd6bcb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_37.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_37.jpg new file mode 100644 index 0000000..2afb15c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_38.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_38.jpg new file mode 100644 index 0000000..b18054d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_39.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_39.jpg new file mode 100644 index 0000000..3b43ed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_40.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_40.jpg new file mode 100644 index 0000000..51c66b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_44.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_44.jpg new file mode 100644 index 0000000..432aaac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_45.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_45.jpg new file mode 100644 index 0000000..9271b70 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_46.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_46.jpg new file mode 100644 index 0000000..b6b3187 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_49.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_49.jpg new file mode 100644 index 0000000..86b0c75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_50.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_50.jpg new file mode 100644 index 0000000..5d88820 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_51.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_51.jpg new file mode 100644 index 0000000..a896f11 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_52.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_52.jpg new file mode 100644 index 0000000..b80735e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_53.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_53.jpg new file mode 100644 index 0000000..85f9845 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_54.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_54.jpg new file mode 100644 index 0000000..219700f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_55.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_55.jpg new file mode 100644 index 0000000..2b7f9a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_56.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_56.jpg new file mode 100644 index 0000000..fcde358 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_57.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_57.jpg new file mode 100644 index 0000000..a44e438 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_59.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_59.jpg new file mode 100644 index 0000000..609f6cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_60.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_60.jpg new file mode 100644 index 0000000..cbb5ec8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_61.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_61.jpg new file mode 100644 index 0000000..0122e9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_62.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_62.jpg new file mode 100644 index 0000000..3a16a5c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_63.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_63.jpg new file mode 100644 index 0000000..dfdaaa5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_64.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_64.jpg new file mode 100644 index 0000000..c518e17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_65.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_65.jpg new file mode 100644 index 0000000..d22d4a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_66.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_66.jpg new file mode 100644 index 0000000..c30e824 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_67.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_67.jpg new file mode 100644 index 0000000..0c1b893 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_68.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_68.jpg new file mode 100644 index 0000000..53c7a91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_69.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_69.jpg new file mode 100644 index 0000000..592d97d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_70.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_70.jpg new file mode 100644 index 0000000..02a8ab9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_70.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_71.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_71.jpg new file mode 100644 index 0000000..4532e6b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_72.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_72.jpg new file mode 100644 index 0000000..aaa785e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_73.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_73.jpg new file mode 100644 index 0000000..335d6af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_84.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_84.jpg new file mode 100644 index 0000000..61267b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_84.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_axe_85.jpg b/other/AoWoW-master/images/icons/medium/inv_axe_85.jpg new file mode 100644 index 0000000..9897a62 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_axe_85.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_banner_01.jpg b/other/AoWoW-master/images/icons/medium/inv_banner_01.jpg new file mode 100644 index 0000000..afa17a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_banner_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_banner_02.jpg b/other/AoWoW-master/images/icons/medium/inv_banner_02.jpg new file mode 100644 index 0000000..36f3085 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_banner_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_banner_03.jpg b/other/AoWoW-master/images/icons/medium/inv_banner_03.jpg new file mode 100644 index 0000000..9a58b7d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_banner_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bannerpvp_01.jpg b/other/AoWoW-master/images/icons/medium/inv_bannerpvp_01.jpg new file mode 100644 index 0000000..47e0c7f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bannerpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bannerpvp_02.jpg b/other/AoWoW-master/images/icons/medium/inv_bannerpvp_02.jpg new file mode 100644 index 0000000..c65ffb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bannerpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bannerpvp_03.jpg b/other/AoWoW-master/images/icons/medium/inv_bannerpvp_03.jpg new file mode 100644 index 0000000..2f7eed6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bannerpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_battery_01.jpg b/other/AoWoW-master/images/icons/medium/inv_battery_01.jpg new file mode 100644 index 0000000..c4bb142 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_battery_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_battery_02.jpg b/other/AoWoW-master/images/icons/medium/inv_battery_02.jpg new file mode 100644 index 0000000..7835de4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_battery_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_01.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_01.jpg new file mode 100644 index 0000000..a05f2d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_02.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_02.jpg new file mode 100644 index 0000000..2cb7ea2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_03.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_03.jpg new file mode 100644 index 0000000..6297785 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_04.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_04.jpg new file mode 100644 index 0000000..50b090d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_05.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_05.jpg new file mode 100644 index 0000000..47c0893 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_06.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_06.jpg new file mode 100644 index 0000000..aa89208 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_07.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_07.jpg new file mode 100644 index 0000000..16e6619 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_08.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_08.jpg new file mode 100644 index 0000000..3e6e752 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_09.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_09.jpg new file mode 100644 index 0000000..f208377 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_10.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_10.jpg new file mode 100644 index 0000000..a6cb60d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_11.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_11.jpg new file mode 100644 index 0000000..533ecc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_12.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_12.jpg new file mode 100644 index 0000000..47d125a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_13.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_13.jpg new file mode 100644 index 0000000..c28b565 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_14.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_14.jpg new file mode 100644 index 0000000..726bb26 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_15.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_15.jpg new file mode 100644 index 0000000..f52a9cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_16.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_16.jpg new file mode 100644 index 0000000..112e983 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_17.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_17.jpg new file mode 100644 index 0000000..76f9472 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_18.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_18.jpg new file mode 100644 index 0000000..f165a42 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_19.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_19.jpg new file mode 100644 index 0000000..a7aa275 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_20.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_20.jpg new file mode 100644 index 0000000..1303cc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_21.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_21.jpg new file mode 100644 index 0000000..19d00a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_22.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_22.jpg new file mode 100644 index 0000000..1a9063b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_23.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_23.jpg new file mode 100644 index 0000000..86d7f62 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_24.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_24.jpg new file mode 100644 index 0000000..f4d60a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_25.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_25.jpg new file mode 100644 index 0000000..5684d8c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_26.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_26.jpg new file mode 100644 index 0000000..fbcb528 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_27.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_27.jpg new file mode 100644 index 0000000..af6a8b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_28.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_28.jpg new file mode 100644 index 0000000..1bd5b3b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_29.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_29.jpg new file mode 100644 index 0000000..247fee8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_30.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_30.jpg new file mode 100644 index 0000000..1385333 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_31.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_31.jpg new file mode 100644 index 0000000..d23de95 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_32.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_32.jpg new file mode 100644 index 0000000..7d2fdf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_33.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_33.jpg new file mode 100644 index 0000000..b392932 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_34.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_34.jpg new file mode 100644 index 0000000..0982b53 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_belt_35.jpg b/other/AoWoW-master/images/icons/medium/inv_belt_35.jpg new file mode 100644 index 0000000..2c8a171 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_belt_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_blue.jpg new file mode 100644 index 0000000..e9f390f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_bronze.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_bronze.jpg new file mode 100644 index 0000000..fe69f07 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_gold.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_gold.jpg new file mode 100644 index 0000000..06bbad2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_green.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_green.jpg new file mode 100644 index 0000000..90e1ee8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_orange.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_orange.jpg new file mode 100644 index 0000000..210e2b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_orange.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_purple.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_purple.jpg new file mode 100644 index 0000000..6732d97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_red.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_red.jpg new file mode 100644 index 0000000..01bf55e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_silver.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_silver.jpg new file mode 100644 index 0000000..dd90db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bijou_yellow.jpg b/other/AoWoW-master/images/icons/medium/inv_bijou_yellow.jpg new file mode 100644 index 0000000..8bd65ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bijou_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_01.jpg new file mode 100644 index 0000000..cabc436 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_02.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_02.jpg new file mode 100644 index 0000000..1bb4962 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_03.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_03.jpg new file mode 100644 index 0000000..a4ee75b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_04.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_04.jpg new file mode 100644 index 0000000..03d9821 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_05.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_05.jpg new file mode 100644 index 0000000..4d3ee47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_06.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_06.jpg new file mode 100644 index 0000000..3076145 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_07.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_07.jpg new file mode 100644 index 0000000..478af53 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_08.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_08.jpg new file mode 100644 index 0000000..037b1d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_09.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_09.jpg new file mode 100644 index 0000000..6e398e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_01.jpg new file mode 100644 index 0000000..cf29523 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_02.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_02.jpg new file mode 100644 index 0000000..095e5e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_03.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_03.jpg new file mode 100644 index 0000000..701edb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_04.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_04.jpg new file mode 100644 index 0000000..05f2f65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_05.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_05.jpg new file mode 100644 index 0000000..c8b4403 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_06.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_06.jpg new file mode 100644 index 0000000..08f3d86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_07.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_07.jpg new file mode 100644 index 0000000..9e4a958 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_08.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_08.jpg new file mode 100644 index 0000000..4b16a8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_09.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_09.jpg new file mode 100644 index 0000000..a8aa63d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_10.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_10.jpg new file mode 100644 index 0000000..0ba2fb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_11.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_11.jpg new file mode 100644 index 0000000..c2ae3bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_12.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_12.jpg new file mode 100644 index 0000000..6732c49 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_chain_13.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_chain_13.jpg new file mode 100644 index 0000000..46f026c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_christmas01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_christmas01.jpg new file mode 100644 index 0000000..3e6050e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_01.jpg new file mode 100644 index 0000000..bde74ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_02.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_02.jpg new file mode 100644 index 0000000..b16aaef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_03.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_03.jpg new file mode 100644 index 0000000..73c4b68 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_04.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_04.jpg new file mode 100644 index 0000000..910ec44 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_05.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_05.jpg new file mode 100644 index 0000000..4c726ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_06.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_06.jpg new file mode 100644 index 0000000..0efe055 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_07.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_07.jpg new file mode 100644 index 0000000..980e9a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_08.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_08.jpg new file mode 100644 index 0000000..6fec79f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_09.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_09.jpg new file mode 100644 index 0000000..28f8ea8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_10.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_10.jpg new file mode 100644 index 0000000..ae8d7a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_11.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_11.jpg new file mode 100644 index 0000000..807639d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_12.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_12.jpg new file mode 100644 index 0000000..308e6b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_13.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_13.jpg new file mode 100644 index 0000000..e742112 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_14.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_14.jpg new file mode 100644 index 0000000..e2363a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_15.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_15.jpg new file mode 100644 index 0000000..cb8aee3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_16.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_16.jpg new file mode 100644 index 0000000..0025619 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_17.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_17.jpg new file mode 100644 index 0000000..8e081fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_18.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_18.jpg new file mode 100644 index 0000000..18a02e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_cloth_20.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_20.jpg new file mode 100644 index 0000000..47cb65b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_fabric_01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_fabric_01.jpg new file mode 100644 index 0000000..071ce1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_fabric_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_leather01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_leather01.jpg new file mode 100644 index 0000000..f1ddeac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_leather01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_mail_01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_mail_01.jpg new file mode 100644 index 0000000..8b7c86e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_01.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_01.jpg new file mode 100644 index 0000000..8981bf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_02.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_02.jpg new file mode 100644 index 0000000..22e12df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_03.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_03.jpg new file mode 100644 index 0000000..16b45a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_04.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_04.jpg new file mode 100644 index 0000000..3497248 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_05.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_05.jpg new file mode 100644 index 0000000..9ea7adf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_06.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_06.jpg new file mode 100644 index 0000000..e63f811 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_07.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_07.jpg new file mode 100644 index 0000000..f32a223 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_08.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_08.jpg new file mode 100644 index 0000000..64941f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_09.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_09.jpg new file mode 100644 index 0000000..0df91b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_plate_10.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_plate_10.jpg new file mode 100644 index 0000000..b3f26ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_boots_wolf.jpg b/other/AoWoW-master/images/icons/medium/inv_boots_wolf.jpg new file mode 100644 index 0000000..9e1deea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_boots_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bow_1h_auchindoun_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_bow_1h_auchindoun_d_01.jpg new file mode 100644 index 0000000..a97754f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bow_1h_auchindoun_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_box_01.jpg b/other/AoWoW-master/images/icons/medium/inv_box_01.jpg new file mode 100644 index 0000000..eca3f74 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_box_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_box_02.jpg b/other/AoWoW-master/images/icons/medium/inv_box_02.jpg new file mode 100644 index 0000000..7eed0f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_box_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_box_03.jpg b/other/AoWoW-master/images/icons/medium/inv_box_03.jpg new file mode 100644 index 0000000..1eba374 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_box_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_box_04.jpg b/other/AoWoW-master/images/icons/medium/inv_box_04.jpg new file mode 100644 index 0000000..e5c96d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_box_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_box_birdcage_01.jpg b/other/AoWoW-master/images/icons/medium/inv_box_birdcage_01.jpg new file mode 100644 index 0000000..06dbf24 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_box_birdcage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_box_petcarrier_01.jpg b/other/AoWoW-master/images/icons/medium/inv_box_petcarrier_01.jpg new file mode 100644 index 0000000..720e7e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_box_petcarrier_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_01.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_01.jpg new file mode 100644 index 0000000..4df201f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_02.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_02.jpg new file mode 100644 index 0000000..c24862c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_03.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_03.jpg new file mode 100644 index 0000000..0f5a3bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_04.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_04.jpg new file mode 100644 index 0000000..642301a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_05.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_05.jpg new file mode 100644 index 0000000..231b834 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_06.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_06.jpg new file mode 100644 index 0000000..ce150bc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_07.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_07.jpg new file mode 100644 index 0000000..ef660a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_08.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_08.jpg new file mode 100644 index 0000000..d61ba65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_09.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_09.jpg new file mode 100644 index 0000000..2ba3270 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_10.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_10.jpg new file mode 100644 index 0000000..3da370a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_11.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_11.jpg new file mode 100644 index 0000000..2b20d21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_12.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_12.jpg new file mode 100644 index 0000000..da4dcbf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_13.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_13.jpg new file mode 100644 index 0000000..1560112 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_14.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_14.jpg new file mode 100644 index 0000000..354e2da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_15.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_15.jpg new file mode 100644 index 0000000..fab0a25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_16.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_16.jpg new file mode 100644 index 0000000..4b52e9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_17.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_17.jpg new file mode 100644 index 0000000..36a2535 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_18.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_18.jpg new file mode 100644 index 0000000..2bfc921 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_bracer_19.jpg b/other/AoWoW-master/images/icons/medium/inv_bracer_19.jpg new file mode 100644 index 0000000..96afe80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_bracer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_brd_banner.jpg b/other/AoWoW-master/images/icons/medium/inv_brd_banner.jpg new file mode 100644 index 0000000..ed7a44a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_brd_banner.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_cask_01.jpg b/other/AoWoW-master/images/icons/medium/inv_cask_01.jpg new file mode 100644 index 0000000..2065ffd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_cask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_cask_02.jpg b/other/AoWoW-master/images/icons/medium/inv_cask_02.jpg new file mode 100644 index 0000000..657ed0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_cask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_cask_03.jpg b/other/AoWoW-master/images/icons/medium/inv_cask_03.jpg new file mode 100644 index 0000000..2c3bb34 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_cask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_cask_04.jpg b/other/AoWoW-master/images/icons/medium/inv_cask_04.jpg new file mode 100644 index 0000000..d599554 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_cask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain.jpg new file mode 100644 index 0000000..dd18d5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_03.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_03.jpg new file mode 100644 index 0000000..b1ce8f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_04.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_04.jpg new file mode 100644 index 0000000..02f172a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_05.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_05.jpg new file mode 100644 index 0000000..caf99b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_06.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_06.jpg new file mode 100644 index 0000000..16466ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_07.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_07.jpg new file mode 100644 index 0000000..4bf4e9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_08.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_08.jpg new file mode 100644 index 0000000..0632a28 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_09.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_09.jpg new file mode 100644 index 0000000..3217ac1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_10.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_10.jpg new file mode 100644 index 0000000..8228549 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_11.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_11.jpg new file mode 100644 index 0000000..179d695 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_12.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_12.jpg new file mode 100644 index 0000000..4a97268 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_13.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_13.jpg new file mode 100644 index 0000000..5d8fe57 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_14.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_14.jpg new file mode 100644 index 0000000..621e24f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_15.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_15.jpg new file mode 100644 index 0000000..42b36fc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_16.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_16.jpg new file mode 100644 index 0000000..04853af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_chain_17.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_chain_17.jpg new file mode 100644 index 0000000..81d5dd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_chain_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_christmas01.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_christmas01.jpg new file mode 100644 index 0000000..6d73b89 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_christmas02.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_christmas02.jpg new file mode 100644 index 0000000..85f0c47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_christmas02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_01.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_01.jpg new file mode 100644 index 0000000..ed3ecc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_02.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_02.jpg new file mode 100644 index 0000000..38895b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_03.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_03.jpg new file mode 100644 index 0000000..23978a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_04.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_04.jpg new file mode 100644 index 0000000..2a36e18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_05.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_05.jpg new file mode 100644 index 0000000..be4758c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_06.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_06.jpg new file mode 100644 index 0000000..7172a51 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_07.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_07.jpg new file mode 100644 index 0000000..ed30978 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_08.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_08.jpg new file mode 100644 index 0000000..fc35e8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_09.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_09.jpg new file mode 100644 index 0000000..f4e5844 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_10.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_10.jpg new file mode 100644 index 0000000..07947b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_11.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_11.jpg new file mode 100644 index 0000000..9dcfec3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_12.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_12.jpg new file mode 100644 index 0000000..cb2704e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_13.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_13.jpg new file mode 100644 index 0000000..d70b537 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_14.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_14.jpg new file mode 100644 index 0000000..34757df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_15.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_15.jpg new file mode 100644 index 0000000..17f8346 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_16.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_16.jpg new file mode 100644 index 0000000..aeab22a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_17.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_17.jpg new file mode 100644 index 0000000..394a217 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_18.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_18.jpg new file mode 100644 index 0000000..40fd76c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_19.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_19.jpg new file mode 100644 index 0000000..fe0c004 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_20.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_20.jpg new file mode 100644 index 0000000..66e3149 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_21.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_21.jpg new file mode 100644 index 0000000..fd2b9bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_22.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_22.jpg new file mode 100644 index 0000000..e994d79 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_23.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_23.jpg new file mode 100644 index 0000000..c6c3e81 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_24.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_24.jpg new file mode 100644 index 0000000..81b2ff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_25.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_25.jpg new file mode 100644 index 0000000..0ff86b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_26.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_26.jpg new file mode 100644 index 0000000..d59f649 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_27.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_27.jpg new file mode 100644 index 0000000..956a44e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_28.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_28.jpg new file mode 100644 index 0000000..cf3e13c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_29.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_29.jpg new file mode 100644 index 0000000..d007331 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_30.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_30.jpg new file mode 100644 index 0000000..047651e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_31.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_31.jpg new file mode 100644 index 0000000..c56319e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_32.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_32.jpg new file mode 100644 index 0000000..7909aa3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_33.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_33.jpg new file mode 100644 index 0000000..e9e3ba5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_34.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_34.jpg new file mode 100644 index 0000000..f404f70 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_35.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_35.jpg new file mode 100644 index 0000000..537661d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_36.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_36.jpg new file mode 100644 index 0000000..bb86caa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_37.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_37.jpg new file mode 100644 index 0000000..753d00a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_38.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_38.jpg new file mode 100644 index 0000000..bf7ea5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_39.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_39.jpg new file mode 100644 index 0000000..b175f74 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_40.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_40.jpg new file mode 100644 index 0000000..0bf4261 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_41.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_41.jpg new file mode 100644 index 0000000..7771350 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_42.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_42.jpg new file mode 100644 index 0000000..7cb9df1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_43.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_43.jpg new file mode 100644 index 0000000..3253c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_44.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_44.jpg new file mode 100644 index 0000000..6c373f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_45.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_45.jpg new file mode 100644 index 0000000..33325d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_46.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_46.jpg new file mode 100644 index 0000000..a0d9268 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_47.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_47.jpg new file mode 100644 index 0000000..ce21f5e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_48.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_48.jpg new file mode 100644 index 0000000..53ded06 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_49.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_49.jpg new file mode 100644 index 0000000..dad3294 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_50.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_50.jpg new file mode 100644 index 0000000..93a1c43 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_51.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_51.jpg new file mode 100644 index 0000000..846e80a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_52.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_52.jpg new file mode 100644 index 0000000..e352d11 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_53.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_53.jpg new file mode 100644 index 0000000..108301e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_54.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_54.jpg new file mode 100644 index 0000000..8f5713a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_55.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_55.jpg new file mode 100644 index 0000000..90a5f97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_56.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_56.jpg new file mode 100644 index 0000000..2ab82f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_57.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_57.jpg new file mode 100644 index 0000000..a13ac6f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_58.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_58.jpg new file mode 100644 index 0000000..dba619e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_59.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_59.jpg new file mode 100644 index 0000000..94372a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_60.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_60.jpg new file mode 100644 index 0000000..abad262 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_61.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_61.jpg new file mode 100644 index 0000000..8f0cc9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_62.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_62.jpg new file mode 100644 index 0000000..64aecdb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_63.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_63.jpg new file mode 100644 index 0000000..1931508 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_64.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_64.jpg new file mode 100644 index 0000000..15854a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_65.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_65.jpg new file mode 100644 index 0000000..ed2b89f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_66.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_66.jpg new file mode 100644 index 0000000..38c11f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_67.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_67.jpg new file mode 100644 index 0000000..be84371 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_68.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_68.jpg new file mode 100644 index 0000000..9392457 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_69.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_69.jpg new file mode 100644 index 0000000..3b11979 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_70.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_70.jpg new file mode 100644 index 0000000..e5e1cba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_70.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_cloth_72.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_72.jpg new file mode 100644 index 0000000..90a6bf8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_cloth_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_fur.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_fur.jpg new file mode 100644 index 0000000..2f36a4a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_fur.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_01.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_01.jpg new file mode 100644 index 0000000..a623993 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_02.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_02.jpg new file mode 100644 index 0000000..5e3ad76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_03.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_03.jpg new file mode 100644 index 0000000..ff9a982 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_04.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_04.jpg new file mode 100644 index 0000000..734e2c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_05.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_05.jpg new file mode 100644 index 0000000..599be25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_06.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_06.jpg new file mode 100644 index 0000000..0328c86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_07.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_07.jpg new file mode 100644 index 0000000..b59343e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_08.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_08.jpg new file mode 100644 index 0000000..f41590e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_09.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_09.jpg new file mode 100644 index 0000000..0c72739 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_10.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_10.jpg new file mode 100644 index 0000000..aa88d44 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_11.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_11.jpg new file mode 100644 index 0000000..aa37966 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_12.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_12.jpg new file mode 100644 index 0000000..fabee7b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_13.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_13.jpg new file mode 100644 index 0000000..cc965dc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_14.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_14.jpg new file mode 100644 index 0000000..f88590a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_15.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_15.jpg new file mode 100644 index 0000000..7a6b627 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_leather_16.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_leather_16.jpg new file mode 100644 index 0000000..f4199c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_mail_02.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_mail_02.jpg new file mode 100644 index 0000000..1184a34 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_mail_03.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_mail_03.jpg new file mode 100644 index 0000000..ff7ae30 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_mail_04.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_mail_04.jpg new file mode 100644 index 0000000..957246b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_mail_05.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_mail_05.jpg new file mode 100644 index 0000000..30abb7a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate01.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate01.jpg new file mode 100644 index 0000000..676134b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate02.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate02.jpg new file mode 100644 index 0000000..db5253c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate03.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate03.jpg new file mode 100644 index 0000000..a2408b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate04.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate04.jpg new file mode 100644 index 0000000..79b14cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate05.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate05.jpg new file mode 100644 index 0000000..5093a64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate06.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate06.jpg new file mode 100644 index 0000000..43fc048 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate07.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate07.jpg new file mode 100644 index 0000000..624a608 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate08.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate08.jpg new file mode 100644 index 0000000..9470e82 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate09.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate09.jpg new file mode 100644 index 0000000..02c2a54 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate10.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate10.jpg new file mode 100644 index 0000000..1ce6d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate11.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate11.jpg new file mode 100644 index 0000000..1d9ad4a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate12.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate12.jpg new file mode 100644 index 0000000..9c831ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate13.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate13.jpg new file mode 100644 index 0000000..feba67a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate14.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate14.jpg new file mode 100644 index 0000000..ce89bbf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate15.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate15.jpg new file mode 100644 index 0000000..a72fa3a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate16.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate16.jpg new file mode 100644 index 0000000..dcc821f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate18.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate18.jpg new file mode 100644 index 0000000..324cc4e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate19.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate19.jpg new file mode 100644 index 0000000..427fd73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate20.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate20.jpg new file mode 100644 index 0000000..bf4ede9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate21.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate21.jpg new file mode 100644 index 0000000..6fc4cc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate_22.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate_22.jpg new file mode 100644 index 0000000..be8bcf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate_23.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate_23.jpg new file mode 100644 index 0000000..09eaee4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_plate_24.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_plate_24.jpg new file mode 100644 index 0000000..c571479 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_samurai.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_samurai.jpg new file mode 100644 index 0000000..dd6adf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_samurai.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_chest_wolf.jpg b/other/AoWoW-master/images/icons/medium/inv_chest_wolf.jpg new file mode 100644 index 0000000..410be16 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_chest_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crate_01.jpg b/other/AoWoW-master/images/icons/medium/inv_crate_01.jpg new file mode 100644 index 0000000..c876952 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crate_02.jpg b/other/AoWoW-master/images/icons/medium/inv_crate_02.jpg new file mode 100644 index 0000000..2013b12 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crate_03.jpg b/other/AoWoW-master/images/icons/medium/inv_crate_03.jpg new file mode 100644 index 0000000..805b905 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crate_04.jpg b/other/AoWoW-master/images/icons/medium/inv_crate_04.jpg new file mode 100644 index 0000000..0564a7f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crate_05.jpg b/other/AoWoW-master/images/icons/medium/inv_crate_05.jpg new file mode 100644 index 0000000..79dd8a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crate_06.jpg b/other/AoWoW-master/images/icons/medium/inv_crate_06.jpg new file mode 100644 index 0000000..441f8e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crown_01.jpg b/other/AoWoW-master/images/icons/medium/inv_crown_01.jpg new file mode 100644 index 0000000..064b99e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crown_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crown_02.jpg b/other/AoWoW-master/images/icons/medium/inv_crown_02.jpg new file mode 100644 index 0000000..3650a5b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crown_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crown_13.jpg b/other/AoWoW-master/images/icons/medium/inv_crown_13.jpg new file mode 100644 index 0000000..37e13da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crown_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crown_14.jpg b/other/AoWoW-master/images/icons/medium/inv_crown_14.jpg new file mode 100644 index 0000000..e8807e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crown_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_crown_15.jpg b/other/AoWoW-master/images/icons/medium/inv_crown_15.jpg new file mode 100644 index 0000000..4448cc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_crown_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal01.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal01.jpg new file mode 100644 index 0000000..58cd180 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal02.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal02.jpg new file mode 100644 index 0000000..2e76637 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal03.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal03.jpg new file mode 100644 index 0000000..bf9ae2b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal04.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal04.jpg new file mode 100644 index 0000000..9bd764a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal05.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal05.jpg new file mode 100644 index 0000000..b64c064 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal06.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal06.jpg new file mode 100644 index 0000000..a6d347b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal07.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal07.jpg new file mode 100644 index 0000000..15956bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal08.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal08.jpg new file mode 100644 index 0000000..6ab8de7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal09.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal09.jpg new file mode 100644 index 0000000..0d1253c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal10.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal10.jpg new file mode 100644 index 0000000..624dab4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal11.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal11.jpg new file mode 100644 index 0000000..8209e65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_datacrystal12.jpg b/other/AoWoW-master/images/icons/medium/inv_datacrystal12.jpg new file mode 100644 index 0000000..8e6fb3a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_datacrystal12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_diablostone.jpg b/other/AoWoW-master/images/icons/medium/inv_diablostone.jpg new file mode 100644 index 0000000..b371919 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_diablostone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_01.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_01.jpg new file mode 100644 index 0000000..d953c30 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_02.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_02.jpg new file mode 100644 index 0000000..04ae238 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_03.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_03.jpg new file mode 100644 index 0000000..985f017 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_04.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_04.jpg new file mode 100644 index 0000000..ad7adba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_05.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_05.jpg new file mode 100644 index 0000000..b80ac67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_06.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_06.jpg new file mode 100644 index 0000000..b1738ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_07.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_07.jpg new file mode 100644 index 0000000..4bd0558 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_08.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_08.jpg new file mode 100644 index 0000000..1947a52 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_09.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_09.jpg new file mode 100644 index 0000000..dd2ee45 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_10.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_10.jpg new file mode 100644 index 0000000..f0a11ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_11.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_11.jpg new file mode 100644 index 0000000..2cd0b4d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_12.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_12.jpg new file mode 100644 index 0000000..8d7aad8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_13.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_13.jpg new file mode 100644 index 0000000..0a52270 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_14.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_14.jpg new file mode 100644 index 0000000..5241647 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_15.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_15.jpg new file mode 100644 index 0000000..1b1ebca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_16.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_16.jpg new file mode 100644 index 0000000..9793261 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_17.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_17.jpg new file mode 100644 index 0000000..11efe6a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_18.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_18.jpg new file mode 100644 index 0000000..9fcdff9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_19.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_19.jpg new file mode 100644 index 0000000..2d0555e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_20.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_20.jpg new file mode 100644 index 0000000..d1f6eed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_21.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_21.jpg new file mode 100644 index 0000000..eeb08a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_22.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_22.jpg new file mode 100644 index 0000000..42a6cb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_23.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_23.jpg new file mode 100644 index 0000000..b1ab6f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_milk_01.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_milk_01.jpg new file mode 100644 index 0000000..759beb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_milk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_milk_02.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_milk_02.jpg new file mode 100644 index 0000000..8add1bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_milk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_milk_03.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_milk_03.jpg new file mode 100644 index 0000000..8fcb382 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_milk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_milk_04.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_milk_04.jpg new file mode 100644 index 0000000..dfa56b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_milk_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_milk_05.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_milk_05.jpg new file mode 100644 index 0000000..8d27e7b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_milk_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_01.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_01.jpg new file mode 100644 index 0000000..d772850 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_02.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_02.jpg new file mode 100644 index 0000000..49b514e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_03.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_03.jpg new file mode 100644 index 0000000..0c6421b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_04.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_04.jpg new file mode 100644 index 0000000..bf953fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_05.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_05.jpg new file mode 100644 index 0000000..b9fe0c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_06.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_06.jpg new file mode 100644 index 0000000..42c4d32 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_07.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_07.jpg new file mode 100644 index 0000000..863f5b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_08.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_08.jpg new file mode 100644 index 0000000..4c6ed74 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_09.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_09.jpg new file mode 100644 index 0000000..38742e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_10.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_10.jpg new file mode 100644 index 0000000..e7fc1fb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_11.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_11.jpg new file mode 100644 index 0000000..96d7e5d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_12.jpg b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_12.jpg new file mode 100644 index 0000000..565fec9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_drink_waterskin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_egg_01.jpg b/other/AoWoW-master/images/icons/medium/inv_egg_01.jpg new file mode 100644 index 0000000..a2dc7e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_egg_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_egg_02.jpg b/other/AoWoW-master/images/icons/medium/inv_egg_02.jpg new file mode 100644 index 0000000..dabaea5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_egg_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_egg_03.jpg b/other/AoWoW-master/images/icons/medium/inv_egg_03.jpg new file mode 100644 index 0000000..3e375f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_egg_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_egg_04.jpg b/other/AoWoW-master/images/icons/medium/inv_egg_04.jpg new file mode 100644 index 0000000..6403ff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_egg_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_egg_05.jpg b/other/AoWoW-master/images/icons/medium/inv_egg_05.jpg new file mode 100644 index 0000000..dc54e96 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_egg_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_air01.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_air01.jpg new file mode 100644 index 0000000..afd512f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_air01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_earth01.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_earth01.jpg new file mode 100644 index 0000000..f07ca42 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_earth01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_fire01.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_fire01.jpg new file mode 100644 index 0000000..bfec05b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_fire01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_life01.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_life01.jpg new file mode 100644 index 0000000..705a0cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_life01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_mana.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_mana.jpg new file mode 100644 index 0000000..66570c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_nether.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_nether.jpg new file mode 100644 index 0000000..0ed14cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_shadow01.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_shadow01.jpg new file mode 100644 index 0000000..980ebb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_shadow01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_mote_water01.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_water01.jpg new file mode 100644 index 0000000..c5b6581 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_mote_water01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_air.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_air.jpg new file mode 100644 index 0000000..46f53a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_air.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_earth.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_earth.jpg new file mode 100644 index 0000000..1b0b71a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_earth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_fire.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_fire.jpg new file mode 100644 index 0000000..637180e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_life.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_life.jpg new file mode 100644 index 0000000..56a57d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_life.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_mana.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_mana.jpg new file mode 100644 index 0000000..3ca8128 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_nether.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_nether.jpg new file mode 100644 index 0000000..f4b45d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_shadow.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_shadow.jpg new file mode 100644 index 0000000..cc1ce4a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_elemental_primal_water.jpg b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_water.jpg new file mode 100644 index 0000000..03bae2d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_elemental_primal_water.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_disenchant.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_disenchant.jpg new file mode 100644 index 0000000..0adefa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_disenchant.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_dustarcane.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_dustarcane.jpg new file mode 100644 index 0000000..349aa63 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_dustarcane.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_dustdream.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_dustdream.jpg new file mode 100644 index 0000000..500057b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_dustdream.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_dustillusion.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_dustillusion.jpg new file mode 100644 index 0000000..617cfbe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_dustillusion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_dustsoul.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_dustsoul.jpg new file mode 100644 index 0000000..4500d91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_dustsoul.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_duststrange.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_duststrange.jpg new file mode 100644 index 0000000..423b8f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_duststrange.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_dustvision.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_dustvision.jpg new file mode 100644 index 0000000..c71b806 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_dustvision.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencearcanelarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencearcanelarge.jpg new file mode 100644 index 0000000..b6b58d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencearcanelarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencearcanesmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencearcanesmall.jpg new file mode 100644 index 0000000..e6dc42d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencearcanesmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essenceastrallarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceastrallarge.jpg new file mode 100644 index 0000000..8d3afe9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceastrallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essenceastralsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceastralsmall.jpg new file mode 100644 index 0000000..68cc8f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceastralsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essenceeternallarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceeternallarge.jpg new file mode 100644 index 0000000..b876623 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceeternallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essenceeternalsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceeternalsmall.jpg new file mode 100644 index 0000000..889037b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essenceeternalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencemagiclarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemagiclarge.jpg new file mode 100644 index 0000000..6cc21cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemagiclarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencemagicsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemagicsmall.jpg new file mode 100644 index 0000000..02e9af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemagicsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencemysticallarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemysticallarge.jpg new file mode 100644 index 0000000..f381d6e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemysticallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencemysticalsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemysticalsmall.jpg new file mode 100644 index 0000000..58f32b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencemysticalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencenetherlarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencenetherlarge.jpg new file mode 100644 index 0000000..c2a6dfb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencenetherlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_essencenethersmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_essencenethersmall.jpg new file mode 100644 index 0000000..e725314 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_essencenethersmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_prismaticsphere.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_prismaticsphere.jpg new file mode 100644 index 0000000..57eff83 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_prismaticsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardbrilliantlarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardbrilliantlarge.jpg new file mode 100644 index 0000000..3e4d048 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardbrilliantlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardbrilliantsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardbrilliantsmall.jpg new file mode 100644 index 0000000..b55563d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardbrilliantsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardgleamingsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardgleamingsmall.jpg new file mode 100644 index 0000000..f3493ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardgleamingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardglimmeringlarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglimmeringlarge.jpg new file mode 100644 index 0000000..8b2c0d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglimmeringlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardglimmeringsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglimmeringsmall.jpg new file mode 100644 index 0000000..11112e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglimmeringsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardglowinglarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglowinglarge.jpg new file mode 100644 index 0000000..9c26ff0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglowinglarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardglowingsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglowingsmall.jpg new file mode 100644 index 0000000..7b6a462 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardglowingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardnexuslarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardnexuslarge.jpg new file mode 100644 index 0000000..8e20310 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardnexuslarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardprismaticlarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardprismaticlarge.jpg new file mode 100644 index 0000000..474c21c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardprismaticlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardprismaticsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardprismaticsmall.jpg new file mode 100644 index 0000000..03ca6bd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardprismaticsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardradientlarge.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardradientlarge.jpg new file mode 100644 index 0000000..fc03b73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardradientlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_shardradientsmall.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_shardradientsmall.jpg new file mode 100644 index 0000000..b597620 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_shardradientsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_voidcrystal.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_voidcrystal.jpg new file mode 100644 index 0000000..1d36063 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_voidcrystal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_enchant_voidsphere.jpg b/other/AoWoW-master/images/icons/medium/inv_enchant_voidsphere.jpg new file mode 100644 index 0000000..bd320de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_enchant_voidsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_felcloth_ebon.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_felcloth_ebon.jpg new file mode 100644 index 0000000..40e8888 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_felcloth_ebon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_felrag.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_felrag.jpg new file mode 100644 index 0000000..933d576 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_felrag.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_linen_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_linen_01.jpg new file mode 100644 index 0000000..b521a15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_linen_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_linen_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_linen_02.jpg new file mode 100644 index 0000000..1859d80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_linen_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_linen_03.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_linen_03.jpg new file mode 100644 index 0000000..bc7e69a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_linen_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_01.jpg new file mode 100644 index 0000000..18c6451 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_02.jpg new file mode 100644 index 0000000..0cf8200 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_03.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_03.jpg new file mode 100644 index 0000000..030ac95 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_mageweave_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_01.jpg new file mode 100644 index 0000000..ebbcf0b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_02.jpg new file mode 100644 index 0000000..ce73138 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_primal.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_primal.jpg new file mode 100644 index 0000000..bb2a39c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_moonrag_primal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave.jpg new file mode 100644 index 0000000..e77697c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave_bolt.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave_bolt.jpg new file mode 100644 index 0000000..e770324 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave_bolt_imbued.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave_bolt_imbued.jpg new file mode 100644 index 0000000..c5f1316 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_netherweave_bolt_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_purple_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_purple_01.jpg new file mode 100644 index 0000000..7aee4e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_purple_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_purple_02.jpg new file mode 100644 index 0000000..615db4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_purple_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_purplefire_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_purplefire_01.jpg new file mode 100644 index 0000000..00a5048 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_purplefire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_purplefire_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_purplefire_02.jpg new file mode 100644 index 0000000..7baa45e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_purplefire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_silk_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_silk_01.jpg new file mode 100644 index 0000000..c101d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_silk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_silk_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_silk_02.jpg new file mode 100644 index 0000000..a280341 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_silk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_silk_03.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_silk_03.jpg new file mode 100644 index 0000000..df518c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_silk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_soulcloth.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_soulcloth.jpg new file mode 100644 index 0000000..47081e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_soulcloth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_soulcloth_bolt.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_soulcloth_bolt.jpg new file mode 100644 index 0000000..d24448a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_soulcloth_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_spellfire.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_spellfire.jpg new file mode 100644 index 0000000..43ea0d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_wool_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_wool_01.jpg new file mode 100644 index 0000000..fe2a36c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_wool_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_wool_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_wool_02.jpg new file mode 100644 index 0000000..089361f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_wool_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fabric_wool_03.jpg b/other/AoWoW-master/images/icons/medium/inv_fabric_wool_03.jpg new file mode 100644 index 0000000..47b293c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fabric_wool_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_01.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_01.jpg new file mode 100644 index 0000000..ebd952a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_02.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_02.jpg new file mode 100644 index 0000000..c4cc359 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_03.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_03.jpg new file mode 100644 index 0000000..16ee0e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_04.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_04.jpg new file mode 100644 index 0000000..71fe6da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_05.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_05.jpg new file mode 100644 index 0000000..31cb219 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_06.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_06.jpg new file mode 100644 index 0000000..989b5f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_07.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_07.jpg new file mode 100644 index 0000000..81731f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_08.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_08.jpg new file mode 100644 index 0000000..e68f054 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_09.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_09.jpg new file mode 100644 index 0000000..a80c71d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_10.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_10.jpg new file mode 100644 index 0000000..4db7029 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_11.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_11.jpg new file mode 100644 index 0000000..c167d10 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_12.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_12.jpg new file mode 100644 index 0000000..3b6e1e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_13.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_13.jpg new file mode 100644 index 0000000..446bf5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_14.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_14.jpg new file mode 100644 index 0000000..972e218 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_15.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_15.jpg new file mode 100644 index 0000000..fe64447 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_feather_16.jpg b/other/AoWoW-master/images/icons/medium/inv_feather_16.jpg new file mode 100644 index 0000000..db79cbe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_feather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fishingchair.jpg b/other/AoWoW-master/images/icons/medium/inv_fishingchair.jpg new file mode 100644 index 0000000..e0cf26f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fishingchair.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fishingpole_01.jpg b/other/AoWoW-master/images/icons/medium/inv_fishingpole_01.jpg new file mode 100644 index 0000000..d6cbb76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fishingpole_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_fishingpole_02.jpg b/other/AoWoW-master/images/icons/medium/inv_fishingpole_02.jpg new file mode 100644 index 0000000..c42eecb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_fishingpole_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_food_christmasfruitcake_01.jpg b/other/AoWoW-master/images/icons/medium/inv_food_christmasfruitcake_01.jpg new file mode 100644 index 0000000..945feef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_food_christmasfruitcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_01.jpg new file mode 100644 index 0000000..cf16ba0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_02.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_02.jpg new file mode 100644 index 0000000..f636b19 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_03.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_03.jpg new file mode 100644 index 0000000..fa44e56 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_04.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_04.jpg new file mode 100644 index 0000000..424738e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_05.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_05.jpg new file mode 100644 index 0000000..7d8719f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_06.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_06.jpg new file mode 100644 index 0000000..fa5d639 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_07.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_07.jpg new file mode 100644 index 0000000..5f275fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_08.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_08.jpg new file mode 100644 index 0000000..4c3fa73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_09.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_09.jpg new file mode 100644 index 0000000..311fcc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_10.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_10.jpg new file mode 100644 index 0000000..074f59f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_11.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_11.jpg new file mode 100644 index 0000000..9fbbb45 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_12.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_12.jpg new file mode 100644 index 0000000..d3b7552 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_13.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_13.jpg new file mode 100644 index 0000000..ca78771 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_14.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_14.jpg new file mode 100644 index 0000000..d089529 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_15.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_15.jpg new file mode 100644 index 0000000..45b6583 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_16.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_16.jpg new file mode 100644 index 0000000..4ab3e27 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_17.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_17.jpg new file mode 100644 index 0000000..1b73630 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_18.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_18.jpg new file mode 100644 index 0000000..1ba14f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_19.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_19.jpg new file mode 100644 index 0000000..72840de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_20.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_20.jpg new file mode 100644 index 0000000..7f04d1b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_21.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_21.jpg new file mode 100644 index 0000000..d9d8b49 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_22.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_22.jpg new file mode 100644 index 0000000..4e6ce6a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_23.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_23.jpg new file mode 100644 index 0000000..39b2844 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_24.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_24.jpg new file mode 100644 index 0000000..7b164fc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_25.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_25.jpg new file mode 100644 index 0000000..97399e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_26.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_26.jpg new file mode 100644 index 0000000..aa2adcc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_27.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_27.jpg new file mode 100644 index 0000000..730abd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_28.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_28.jpg new file mode 100644 index 0000000..0353dff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_29.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_29.jpg new file mode 100644 index 0000000..263adc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_30.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_30.jpg new file mode 100644 index 0000000..f538da0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_31.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_31.jpg new file mode 100644 index 0000000..a157258 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_32.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_32.jpg new file mode 100644 index 0000000..e4cd47c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_40.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_40.jpg new file mode 100644 index 0000000..f38e85e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_41.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_41.jpg new file mode 100644 index 0000000..ef15270 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_44.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_44.jpg new file mode 100644 index 0000000..60dc699 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_47.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_47.jpg new file mode 100644 index 0000000..5561a43 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_48.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_48.jpg new file mode 100644 index 0000000..fee20b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_49.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_49.jpg new file mode 100644 index 0000000..0c45e91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_50.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_50.jpg new file mode 100644 index 0000000..56579da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_51.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_51.jpg new file mode 100644 index 0000000..cb4f8cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_52.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_52.jpg new file mode 100644 index 0000000..8d8cc02 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_53.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_53.jpg new file mode 100644 index 0000000..bbe0dbb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_54.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_54.jpg new file mode 100644 index 0000000..a0a09c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_55.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_55.jpg new file mode 100644 index 0000000..0a58e56 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_56.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_56.jpg new file mode 100644 index 0000000..ca417de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_57.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_57.jpg new file mode 100644 index 0000000..a4f3954 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_58.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_58.jpg new file mode 100644 index 0000000..8f2ebec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_59.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_59.jpg new file mode 100644 index 0000000..735dacf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_60.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_60.jpg new file mode 100644 index 0000000..da42b1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_61.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_61.jpg new file mode 100644 index 0000000..126b4f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_62.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_62.jpg new file mode 100644 index 0000000..9793650 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_63.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_63.jpg new file mode 100644 index 0000000..c9e5fa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_64.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_64.jpg new file mode 100644 index 0000000..1e997be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_65.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_65.jpg new file mode 100644 index 0000000..bc5f487 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_66.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_66.jpg new file mode 100644 index 0000000..c879b50 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_67.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_67.jpg new file mode 100644 index 0000000..0463b5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_68.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_68.jpg new file mode 100644 index 0000000..2b40f9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gauntlets_69.jpg b/other/AoWoW-master/images/icons/medium/inv_gauntlets_69.jpg new file mode 100644 index 0000000..9f1d6f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gauntlets_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_01.jpg new file mode 100644 index 0000000..a3ad28e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_02.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_02.jpg new file mode 100644 index 0000000..4d5fc5c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_03.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_03.jpg new file mode 100644 index 0000000..d8c7990 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_04.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_04.jpg new file mode 100644 index 0000000..50fcafe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_05.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_05.jpg new file mode 100644 index 0000000..1ba42c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_06.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_06.jpg new file mode 100644 index 0000000..479771a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_07.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_07.jpg new file mode 100644 index 0000000..99b6ee8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_08.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_08.jpg new file mode 100644 index 0000000..7c1a288 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_09.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_09.jpg new file mode 100644 index 0000000..baeb4df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_adamantiteframe.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_adamantiteframe.jpg new file mode 100644 index 0000000..79b318e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_adamantiteframe.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_adamantiteshells.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_adamantiteshells.jpg new file mode 100644 index 0000000..a765c83 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_adamantiteshells.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_bronzeframework_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_bronzeframework_01.jpg new file mode 100644 index 0000000..03fd103 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_bronzeframework_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_elementalblastingpowder.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_elementalblastingpowder.jpg new file mode 100644 index 0000000..1ee2e92 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_elementalblastingpowder.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_felironbolts.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironbolts.jpg new file mode 100644 index 0000000..df9b626 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironbolts.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_felironbomb.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironbomb.jpg new file mode 100644 index 0000000..4f0b6bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_felironcasing.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironcasing.jpg new file mode 100644 index 0000000..b5fd7fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironcasing.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_felironshell.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironshell.jpg new file mode 100644 index 0000000..39c79a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_felironshell.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_felstabilizer.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_felstabilizer.jpg new file mode 100644 index 0000000..9aa1893 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_felstabilizer.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_gnomishflameturret.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_gnomishflameturret.jpg new file mode 100644 index 0000000..b8e0a44 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_gnomishflameturret.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_goblinboombox_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_goblinboombox_01.jpg new file mode 100644 index 0000000..6ca9871 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_goblinboombox_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_goblingtonkcontroller.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_goblingtonkcontroller.jpg new file mode 100644 index 0000000..fa2ac9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_goblingtonkcontroller.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_hardenedadamantitetube.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_hardenedadamantitetube.jpg new file mode 100644 index 0000000..273de6b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_hardenedadamantitetube.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_healthpotionpack.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_healthpotionpack.jpg new file mode 100644 index 0000000..e69692b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_healthpotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_khoriumpowercore.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_khoriumpowercore.jpg new file mode 100644 index 0000000..6f49482 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_khoriumpowercore.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_manapotionpack.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_manapotionpack.jpg new file mode 100644 index 0000000..3f0e917 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_manapotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_manasyphon.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_manasyphon.jpg new file mode 100644 index 0000000..0270dfc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_manasyphon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_mithrilcasing_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_mithrilcasing_01.jpg new file mode 100644 index 0000000..8937d94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_mithrilcasing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_mithrilcasing_02.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_mithrilcasing_02.jpg new file mode 100644 index 0000000..35b84cf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_mithrilcasing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_newgoggles.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_newgoggles.jpg new file mode 100644 index 0000000..70f6f0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_newgoggles.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_01.jpg new file mode 100644 index 0000000..d3746c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_02.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_02.jpg new file mode 100644 index 0000000..3f1f15e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_03.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_03.jpg new file mode 100644 index 0000000..4452b3b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_04.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_04.jpg new file mode 100644 index 0000000..181d131 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_pipe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_poltryiser_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_poltryiser_01.jpg new file mode 100644 index 0000000..ff4cfa2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_poltryiser_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketboot_01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketboot_01.jpg new file mode 100644 index 0000000..7137b95 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketboot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketboot_destroyed_02.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketboot_destroyed_02.jpg new file mode 100644 index 0000000..9c4fe18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketboot_destroyed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketbootextreme.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketbootextreme.jpg new file mode 100644 index 0000000..c737c73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketbootextreme.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketlauncher.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketlauncher.jpg new file mode 100644 index 0000000..ae0312d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_rocketlauncher.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_scope01.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_scope01.jpg new file mode 100644 index 0000000..7d77714 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_scope01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_scope02.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_scope02.jpg new file mode 100644 index 0000000..f467be5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_scope02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_supersappercharge.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_supersappercharge.jpg new file mode 100644 index 0000000..d6cf867 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_supersappercharge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_thebiggerone.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_thebiggerone.jpg new file mode 100644 index 0000000..4af9ccd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_thebiggerone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_gizmo_zapthrottlegascollector.jpg b/other/AoWoW-master/images/icons/medium/inv_gizmo_zapthrottlegascollector.jpg new file mode 100644 index 0000000..a301ad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_gizmo_zapthrottlegascollector.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_01.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_01.jpg new file mode 100644 index 0000000..3d9a0be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_02.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_02.jpg new file mode 100644 index 0000000..d2d4358 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_03.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_03.jpg new file mode 100644 index 0000000..b08ebcd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_04.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_04.jpg new file mode 100644 index 0000000..dbaa7ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_05.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_05.jpg new file mode 100644 index 0000000..d7481eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_06.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_06.jpg new file mode 100644 index 0000000..b7c8086 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_07.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_07.jpg new file mode 100644 index 0000000..bcf8096 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_08.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_08.jpg new file mode 100644 index 0000000..a1e3438 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_09.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_09.jpg new file mode 100644 index 0000000..4a1845c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_10.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_10.jpg new file mode 100644 index 0000000..2d1baad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_11.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_11.jpg new file mode 100644 index 0000000..0bc582f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_12.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_12.jpg new file mode 100644 index 0000000..dc85a8c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_13.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_13.jpg new file mode 100644 index 0000000..a7ebe96 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_14.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_14.jpg new file mode 100644 index 0000000..2cbb3d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_15.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_15.jpg new file mode 100644 index 0000000..7500e84 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_16.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_16.jpg new file mode 100644 index 0000000..815c962 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_17.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_17.jpg new file mode 100644 index 0000000..edb6a3f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_18.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_18.jpg new file mode 100644 index 0000000..d8ba5ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_19.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_19.jpg new file mode 100644 index 0000000..7a71961 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_20.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_20.jpg new file mode 100644 index 0000000..02de090 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_21.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_21.jpg new file mode 100644 index 0000000..084338b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_22.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_22.jpg new file mode 100644 index 0000000..473c996 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_23.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_23.jpg new file mode 100644 index 0000000..72ffa5b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_24.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_24.jpg new file mode 100644 index 0000000..25eed62 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_25.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_25.jpg new file mode 100644 index 0000000..1159f63 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_26.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_26.jpg new file mode 100644 index 0000000..3cacc81 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_27.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_27.jpg new file mode 100644 index 0000000..bcbb78d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_28.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_28.jpg new file mode 100644 index 0000000..87ba97d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_hammer_unique_sulfuras.jpg b/other/AoWoW-master/images/icons/medium/inv_hammer_unique_sulfuras.jpg new file mode 100644 index 0000000..6ca5d4f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_hammer_unique_sulfuras.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helm_mask_zulgurub_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_helm_mask_zulgurub_d_01.jpg new file mode 100644 index 0000000..5b487bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helm_mask_zulgurub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet128.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet128.jpg new file mode 100644 index 0000000..1e7ac48 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet128.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_01.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_01.jpg new file mode 100644 index 0000000..eeedee2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_02.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_02.jpg new file mode 100644 index 0000000..b26e058 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_03.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_03.jpg new file mode 100644 index 0000000..a449e7d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_04.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_04.jpg new file mode 100644 index 0000000..665047e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_05.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_05.jpg new file mode 100644 index 0000000..af15d8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_06.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_06.jpg new file mode 100644 index 0000000..ec7579e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_07.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_07.jpg new file mode 100644 index 0000000..09c4bf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_08.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_08.jpg new file mode 100644 index 0000000..6443e6d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_09.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_09.jpg new file mode 100644 index 0000000..c9080ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_10.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_10.jpg new file mode 100644 index 0000000..1bf3551 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_100.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_100.jpg new file mode 100644 index 0000000..06135a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_100.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_101.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_101.jpg new file mode 100644 index 0000000..2a0e0ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_101.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_102.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_102.jpg new file mode 100644 index 0000000..bab3ac4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_102.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_103.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_103.jpg new file mode 100644 index 0000000..c0fabed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_103.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_11.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_11.jpg new file mode 100644 index 0000000..6efdbf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_111.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_111.jpg new file mode 100644 index 0000000..b98c404 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_111.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_112.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_112.jpg new file mode 100644 index 0000000..b8bb885 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_112.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_113.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_113.jpg new file mode 100644 index 0000000..1830bf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_113.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_114.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_114.jpg new file mode 100644 index 0000000..781c741 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_114.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_116.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_116.jpg new file mode 100644 index 0000000..50c68cd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_116.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_117.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_117.jpg new file mode 100644 index 0000000..bb9ba89 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_117.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_118.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_118.jpg new file mode 100644 index 0000000..ed8677a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_118.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_119.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_119.jpg new file mode 100644 index 0000000..aedc775 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_119.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_12.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_12.jpg new file mode 100644 index 0000000..f6a7cb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_120.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_120.jpg new file mode 100644 index 0000000..ef4e548 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_120.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_126.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_126.jpg new file mode 100644 index 0000000..8d0b484 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_126.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_127.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_127.jpg new file mode 100644 index 0000000..2068e1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_127.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_129.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_129.jpg new file mode 100644 index 0000000..7999bf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_129.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_13.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_13.jpg new file mode 100644 index 0000000..af632f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_14.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_14.jpg new file mode 100644 index 0000000..6ae1db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_15.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_15.jpg new file mode 100644 index 0000000..2e72d77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_16.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_16.jpg new file mode 100644 index 0000000..0d114f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_17.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_17.jpg new file mode 100644 index 0000000..739077d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_18.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_18.jpg new file mode 100644 index 0000000..b3c7f2b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_19.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_19.jpg new file mode 100644 index 0000000..7edfce6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_20.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_20.jpg new file mode 100644 index 0000000..16c9ad6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_21.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_21.jpg new file mode 100644 index 0000000..bb1f586 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_22.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_22.jpg new file mode 100644 index 0000000..bcb8d75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_23.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_23.jpg new file mode 100644 index 0000000..7d54c4b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_24.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_24.jpg new file mode 100644 index 0000000..e82e811 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_25.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_25.jpg new file mode 100644 index 0000000..2b07e0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_26.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_26.jpg new file mode 100644 index 0000000..0fa43e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_27.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_27.jpg new file mode 100644 index 0000000..2cd9aac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_28.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_28.jpg new file mode 100644 index 0000000..788d293 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_29.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_29.jpg new file mode 100644 index 0000000..1861d65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_30.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_30.jpg new file mode 100644 index 0000000..246e64a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_31.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_31.jpg new file mode 100644 index 0000000..8b09457 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_32.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_32.jpg new file mode 100644 index 0000000..6586b25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_33.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_33.jpg new file mode 100644 index 0000000..593ec01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_34.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_34.jpg new file mode 100644 index 0000000..33c0589 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_35.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_35.jpg new file mode 100644 index 0000000..01fd3f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_36.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_36.jpg new file mode 100644 index 0000000..06a1df5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_37.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_37.jpg new file mode 100644 index 0000000..511c4cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_38.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_38.jpg new file mode 100644 index 0000000..73bb038 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_39.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_39.jpg new file mode 100644 index 0000000..e82bbb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_40.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_40.jpg new file mode 100644 index 0000000..b19cd05 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_41.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_41.jpg new file mode 100644 index 0000000..45850e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_42.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_42.jpg new file mode 100644 index 0000000..99b7fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_43.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_43.jpg new file mode 100644 index 0000000..d8e7812 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_44.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_44.jpg new file mode 100644 index 0000000..b8c1e5e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_45.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_45.jpg new file mode 100644 index 0000000..b199482 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_46.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_46.jpg new file mode 100644 index 0000000..92bbd15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_47.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_47.jpg new file mode 100644 index 0000000..b0846fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_48.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_48.jpg new file mode 100644 index 0000000..a7875de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_49.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_49.jpg new file mode 100644 index 0000000..85d9acd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_50.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_50.jpg new file mode 100644 index 0000000..ebbdce5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_51.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_51.jpg new file mode 100644 index 0000000..7518920 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_52.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_52.jpg new file mode 100644 index 0000000..b36eff7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_53.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_53.jpg new file mode 100644 index 0000000..237cfd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_54.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_54.jpg new file mode 100644 index 0000000..1452e53 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_55.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_55.jpg new file mode 100644 index 0000000..9c53ca9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_56.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_56.jpg new file mode 100644 index 0000000..74ebee3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_57.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_57.jpg new file mode 100644 index 0000000..db1e902 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_58.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_58.jpg new file mode 100644 index 0000000..9ddc8cf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_59.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_59.jpg new file mode 100644 index 0000000..82abbf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_60.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_60.jpg new file mode 100644 index 0000000..2c33a8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_61.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_61.jpg new file mode 100644 index 0000000..0dfcc9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_62.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_62.jpg new file mode 100644 index 0000000..6235506 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_63.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_63.jpg new file mode 100644 index 0000000..4ae93be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_64.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_64.jpg new file mode 100644 index 0000000..dfcc99b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_65.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_65.jpg new file mode 100644 index 0000000..4f2ce77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_66.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_66.jpg new file mode 100644 index 0000000..baf26d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_67.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_67.jpg new file mode 100644 index 0000000..98ad921 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_68.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_68.jpg new file mode 100644 index 0000000..7a96a81 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_69.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_69.jpg new file mode 100644 index 0000000..535d954 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_70.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_70.jpg new file mode 100644 index 0000000..cb79bea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_70.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_71.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_71.jpg new file mode 100644 index 0000000..47df491 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_72.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_72.jpg new file mode 100644 index 0000000..3879ea1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_73.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_73.jpg new file mode 100644 index 0000000..8d19145 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_74.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_74.jpg new file mode 100644 index 0000000..7b31700 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_77.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_77.jpg new file mode 100644 index 0000000..66d8e54 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_77.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_78.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_78.jpg new file mode 100644 index 0000000..d0b1ad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_78.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_81.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_81.jpg new file mode 100644 index 0000000..9c1b292 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_81.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_84.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_84.jpg new file mode 100644 index 0000000..fa623e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_84.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_85.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_85.jpg new file mode 100644 index 0000000..e2aade2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_85.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_86.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_86.jpg new file mode 100644 index 0000000..72bc112 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_86.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_87.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_87.jpg new file mode 100644 index 0000000..6b9e694 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_87.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_88.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_88.jpg new file mode 100644 index 0000000..f0e27ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_88.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_89.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_89.jpg new file mode 100644 index 0000000..35a7dd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_89.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_90.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_90.jpg new file mode 100644 index 0000000..9687155 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_90.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_91.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_91.jpg new file mode 100644 index 0000000..bdd9a37 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_91.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_92.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_92.jpg new file mode 100644 index 0000000..5f4b542 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_92.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_93.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_93.jpg new file mode 100644 index 0000000..c8cc4c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_93.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_94.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_94.jpg new file mode 100644 index 0000000..77d28bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_94.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_95.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_95.jpg new file mode 100644 index 0000000..401cf21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_95.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_96.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_96.jpg new file mode 100644 index 0000000..b90f100 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_96.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_97.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_97.jpg new file mode 100644 index 0000000..543f3dc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_97.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_98.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_98.jpg new file mode 100644 index 0000000..507a88b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_98.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_helmet_99.jpg b/other/AoWoW-master/images/icons/medium/inv_helmet_99.jpg new file mode 100644 index 0000000..9f9e836 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_helmet_99.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestpretzel01.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestpretzel01.jpg new file mode 100644 index 0000000..8ce863f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestpretzel01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage01.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage01.jpg new file mode 100644 index 0000000..99f1087 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage02.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage02.jpg new file mode 100644 index 0000000..c64b6d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage03.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage03.jpg new file mode 100644 index 0000000..62a9631 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage04.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage04.jpg new file mode 100644 index 0000000..a39dcf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_beerfestsausage04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_brewfestbuff_01.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_brewfestbuff_01.jpg new file mode 100644 index 0000000..6eb08ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_brewfestbuff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_01.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_01.jpg new file mode 100644 index 0000000..412b575 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_02.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_02.jpg new file mode 100644 index 0000000..767d19a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_03.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_03.jpg new file mode 100644 index 0000000..6109f0a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_present_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_01.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_01.jpg new file mode 100644 index 0000000..f128f1e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_02.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_02.jpg new file mode 100644 index 0000000..b27b180 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_03.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_03.jpg new file mode 100644 index 0000000..4df483f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_christmas_wrapping_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_summerfest_petals.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_summerfest_petals.jpg new file mode 100644 index 0000000..70efb9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_summerfest_petals.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebandage.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebandage.jpg new file mode 100644 index 0000000..86fafce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebandage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebowl.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebowl.jpg new file mode 100644 index 0000000..7eb674b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebowl.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebrownie.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebrownie.jpg new file mode 100644 index 0000000..5c8622f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicebrownie.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion01.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion01.jpg new file mode 100644 index 0000000..998f4c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion02.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion02.jpg new file mode 100644 index 0000000..b4cff8e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion03.jpg b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion03.jpg new file mode 100644 index 0000000..8a8525f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_holiday_tow_spicepotion03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_01.jpg new file mode 100644 index 0000000..0369f9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_02.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_02.jpg new file mode 100644 index 0000000..b056d5e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_03.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_03.jpg new file mode 100644 index 0000000..7b579cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_04.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_04.jpg new file mode 100644 index 0000000..a79deca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_05.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_05.jpg new file mode 100644 index 0000000..afd33d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_06.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_06.jpg new file mode 100644 index 0000000..90b7afc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_07.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_07.jpg new file mode 100644 index 0000000..fa49da2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_08.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_08.jpg new file mode 100644 index 0000000..c913df0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_09.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_09.jpg new file mode 100644 index 0000000..2429fcd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_10.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_10.jpg new file mode 100644 index 0000000..1707d05 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_11.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_11.jpg new file mode 100644 index 0000000..8ece45d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_adamantite.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_adamantite.jpg new file mode 100644 index 0000000..fa7c679 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_bronze.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_bronze.jpg new file mode 100644 index 0000000..8df52b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_eternium.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_eternium.jpg new file mode 100644 index 0000000..2c406e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_feliron.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_feliron.jpg new file mode 100644 index 0000000..82948fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_felsteel.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_felsteel.jpg new file mode 100644 index 0000000..ffd7091 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_iron.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_iron.jpg new file mode 100644 index 0000000..0903c64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_mithril.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_mithril.jpg new file mode 100644 index 0000000..0a914e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_steel.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_steel.jpg new file mode 100644 index 0000000..091bb75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_steel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ingot_thorium.jpg b/other/AoWoW-master/images/icons/medium/inv_ingot_thorium.jpg new file mode 100644 index 0000000..684e2f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ingot_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_blackpearlpanther.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_blackpearlpanther.jpg new file mode 100644 index 0000000..9422ed2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_blackpearlpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_bronzesetting.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_bronzesetting.jpg new file mode 100644 index 0000000..4d642b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_bronzesetting.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_crimsonspinel_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_crimsonspinel_01.jpg new file mode 100644 index 0000000..871c612 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_crimsonspinel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_crimsonspinel_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_crimsonspinel_02.jpg new file mode 100644 index 0000000..780db50 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_crimsonspinel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_01.jpg new file mode 100644 index 0000000..588df9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_02.jpg new file mode 100644 index 0000000..a616114 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_03.jpg new file mode 100644 index 0000000..3f1917e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_dawnstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_delicatecopperwire.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_delicatecopperwire.jpg new file mode 100644 index 0000000..54589b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_delicatecopperwire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_empyreansapphire_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_empyreansapphire_01.jpg new file mode 100644 index 0000000..6362cf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_empyreansapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_empyreansapphire_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_empyreansapphire_02.jpg new file mode 100644 index 0000000..ebdc6af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_empyreansapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_goldenhare.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_goldenhare.jpg new file mode 100644 index 0000000..5795d3a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_goldenhare.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_jadeowl.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_jadeowl.jpg new file mode 100644 index 0000000..e3bd16d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_jadeowl.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_lionseye_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_lionseye_01.jpg new file mode 100644 index 0000000..7ca5be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_lionseye_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_lionseye_02.jpg new file mode 100644 index 0000000..02bf50f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_lionseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_01.jpg new file mode 100644 index 0000000..be771c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_02.jpg new file mode 100644 index 0000000..a9ec4a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_03.jpg new file mode 100644 index 0000000..4018b9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_livingruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_mithrilfiligree.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_mithrilfiligree.jpg new file mode 100644 index 0000000..734893c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_mithrilfiligree.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_01.jpg new file mode 100644 index 0000000..3046cf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_02.jpg new file mode 100644 index 0000000..4ce9688 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_03.jpg new file mode 100644 index 0000000..ef9433d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nightseye_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_01.jpg new file mode 100644 index 0000000..1f390d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_02.jpg new file mode 100644 index 0000000..e82adaf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_03.jpg new file mode 100644 index 0000000..c71da27 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_nobletopaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_pyrestone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_pyrestone_01.jpg new file mode 100644 index 0000000..cd06fa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_pyrestone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_pyrestone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_pyrestone_02.jpg new file mode 100644 index 0000000..7db6852 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_pyrestone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_rubyserpent.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_rubyserpent.jpg new file mode 100644 index 0000000..2147be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_rubyserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_seasprayemerald_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_seasprayemerald_01.jpg new file mode 100644 index 0000000..a004453 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_seasprayemerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_seasprayemerald_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_seasprayemerald_02.jpg new file mode 100644 index 0000000..cac871b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_seasprayemerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_shadowsongamethyst_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_shadowsongamethyst_01.jpg new file mode 100644 index 0000000..fbab275 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_shadowsongamethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_shadowsongamethyst_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_shadowsongamethyst_02.jpg new file mode 100644 index 0000000..c1c08e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_shadowsongamethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_01.jpg new file mode 100644 index 0000000..69b5737 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_02.jpg new file mode 100644 index 0000000..f1da81f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_03.jpg new file mode 100644 index 0000000..5f390e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_starofelune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_01.jpg new file mode 100644 index 0000000..8473b80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_02.jpg new file mode 100644 index 0000000..7c789cf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_03.jpg new file mode 100644 index 0000000..25c670d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_talasite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_thoriumsetting.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_thoriumsetting.jpg new file mode 100644 index 0000000..0a55174 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_thoriumsetting.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_truesilverboar.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_truesilverboar.jpg new file mode 100644 index 0000000..0f64ae0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_truesilverboar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_truesilvercrab.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_truesilvercrab.jpg new file mode 100644 index 0000000..5b14304 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelcrafting_truesilvercrab.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_01.jpg new file mode 100644 index 0000000..1ee09b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_02.jpg new file mode 100644 index 0000000..0ae826d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_03.jpg new file mode 100644 index 0000000..a835575 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_04.jpg new file mode 100644 index 0000000..93e6cbc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_05.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_05.jpg new file mode 100644 index 0000000..158db8e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_06.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_06.jpg new file mode 100644 index 0000000..895c7e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_07.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_07.jpg new file mode 100644 index 0000000..dbd9379 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_amulet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_01.jpg new file mode 100644 index 0000000..6723f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_02.jpg new file mode 100644 index 0000000..35dc60e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_03.jpg new file mode 100644 index 0000000..1cc2094 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_04.jpg new file mode 100644 index 0000000..2c461db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_05.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_05.jpg new file mode 100644 index 0000000..f9e8b67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_frostwolftrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_01.jpg new file mode 100644 index 0000000..0d1c80f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_02.jpg new file mode 100644 index 0000000..f668a60 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_03.jpg new file mode 100644 index 0000000..40bedee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_04.jpg new file mode 100644 index 0000000..e465c7f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_05.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_05.jpg new file mode 100644 index 0000000..a3cbdb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_06.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_06.jpg new file mode 100644 index 0000000..d6c62eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_07.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_07.jpg new file mode 100644 index 0000000..8a934c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_08.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_08.jpg new file mode 100644 index 0000000..7163a45 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_09.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_09.jpg new file mode 100644 index 0000000..edf3b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_10.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_10.jpg new file mode 100644 index 0000000..4524bf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_11.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_11.jpg new file mode 100644 index 0000000..7ed9230 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_12.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_12.jpg new file mode 100644 index 0000000..e2a71cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_13.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_13.jpg new file mode 100644 index 0000000..ce3dde4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_14.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_14.jpg new file mode 100644 index 0000000..dcbaf07 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_15.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_15.jpg new file mode 100644 index 0000000..8a1733b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_16.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_16.jpg new file mode 100644 index 0000000..52b2f6a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_17.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_17.jpg new file mode 100644 index 0000000..9bd1fca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_18.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_18.jpg new file mode 100644 index 0000000..b7da6bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_19.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_19.jpg new file mode 100644 index 0000000..a904cf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_20.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_20.jpg new file mode 100644 index 0000000..aa179e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_21.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_21.jpg new file mode 100644 index 0000000..c4b7ddc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_22.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_22.jpg new file mode 100644 index 0000000..cc07956 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_23.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_23.jpg new file mode 100644 index 0000000..a9595b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_24.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_24.jpg new file mode 100644 index 0000000..79ec3eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_25.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_25.jpg new file mode 100644 index 0000000..4679360 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_26.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_26.jpg new file mode 100644 index 0000000..811b6cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_27.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_27.jpg new file mode 100644 index 0000000..d129225 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_27naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_27naxxramas.jpg new file mode 100644 index 0000000..85fdc3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_27naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_28.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_28.jpg new file mode 100644 index 0000000..200f5f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_28naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_28naxxramas.jpg new file mode 100644 index 0000000..e0029e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_28naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_29.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_29.jpg new file mode 100644 index 0000000..db53cab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_29naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_29naxxramas.jpg new file mode 100644 index 0000000..57e2a07 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_29naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_30.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_30.jpg new file mode 100644 index 0000000..ef6ece9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_30naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_30naxxramas.jpg new file mode 100644 index 0000000..78ce518 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_30naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_31.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_31.jpg new file mode 100644 index 0000000..a3e85a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_32.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_32.jpg new file mode 100644 index 0000000..4bd2dd2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_33.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_33.jpg new file mode 100644 index 0000000..0b55693 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_34.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_34.jpg new file mode 100644 index 0000000..34aba39 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_35.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_35.jpg new file mode 100644 index 0000000..9719da3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_36.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_36.jpg new file mode 100644 index 0000000..2ff80ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_37.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_37.jpg new file mode 100644 index 0000000..54cde97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_38.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_38.jpg new file mode 100644 index 0000000..0aab251 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_39.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_39.jpg new file mode 100644 index 0000000..3c66894 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_40.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_40.jpg new file mode 100644 index 0000000..046d8c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_41.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_41.jpg new file mode 100644 index 0000000..ce4c546 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_42.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_42.jpg new file mode 100644 index 0000000..420d5a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_43.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_43.jpg new file mode 100644 index 0000000..38a0ae8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_44.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_44.jpg new file mode 100644 index 0000000..0f13d6b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_45.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_45.jpg new file mode 100644 index 0000000..6388d9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_46.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_46.jpg new file mode 100644 index 0000000..3ad19b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_47.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_47.jpg new file mode 100644 index 0000000..185648c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_01.jpg new file mode 100644 index 0000000..02611f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_02.jpg new file mode 100644 index 0000000..6f888ef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_03.jpg new file mode 100644 index 0000000..7b49137 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_04.jpg new file mode 100644 index 0000000..0067599 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_necklace_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_01.jpg new file mode 100644 index 0000000..8cd2d15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_02.jpg new file mode 100644 index 0000000..72d1b0d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_03.jpg new file mode 100644 index 0000000..fdf9e89 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_04.jpg new file mode 100644 index 0000000..a147f25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_05.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_05.jpg new file mode 100644 index 0000000..b0112dc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_06.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_06.jpg new file mode 100644 index 0000000..cd8b518 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_07.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_07.jpg new file mode 100644 index 0000000..1f2fa26 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_08.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_08.jpg new file mode 100644 index 0000000..269f7e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_09.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_09.jpg new file mode 100644 index 0000000..fcc5797 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_10.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_10.jpg new file mode 100644 index 0000000..f8c9a05 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_11.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_11.jpg new file mode 100644 index 0000000..2f6f13e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_12.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_12.jpg new file mode 100644 index 0000000..758c850 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_13.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_13.jpg new file mode 100644 index 0000000..35ecbe7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_14.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_14.jpg new file mode 100644 index 0000000..08ca6ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_15.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_15.jpg new file mode 100644 index 0000000..6ba51f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_16.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_16.jpg new file mode 100644 index 0000000..f33713c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_17.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_17.jpg new file mode 100644 index 0000000..cb4f6ce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_18.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_18.jpg new file mode 100644 index 0000000..c69495d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_19.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_19.jpg new file mode 100644 index 0000000..4dc0176 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_20.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_20.jpg new file mode 100644 index 0000000..b06f7b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_21.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_21.jpg new file mode 100644 index 0000000..f97bab6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_22.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_22.jpg new file mode 100644 index 0000000..b71ff62 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_23.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_23.jpg new file mode 100644 index 0000000..4dbb123 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_24.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_24.jpg new file mode 100644 index 0000000..1d4546c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_25.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_25.jpg new file mode 100644 index 0000000..9b25ef7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_26.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_26.jpg new file mode 100644 index 0000000..50f0469 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_27.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_27.jpg new file mode 100644 index 0000000..2a7bccb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_28.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_28.jpg new file mode 100644 index 0000000..2652469 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_29.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_29.jpg new file mode 100644 index 0000000..e67730e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_30.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_30.jpg new file mode 100644 index 0000000..0838894 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_31.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_31.jpg new file mode 100644 index 0000000..6db8739 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_32.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_32.jpg new file mode 100644 index 0000000..9531ba9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_33.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_33.jpg new file mode 100644 index 0000000..aa1e7f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_34.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_34.jpg new file mode 100644 index 0000000..492ac2a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_35.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_35.jpg new file mode 100644 index 0000000..22f1683 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_36.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_36.jpg new file mode 100644 index 0000000..f950723 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_37.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_37.jpg new file mode 100644 index 0000000..2a391f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_38.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_38.jpg new file mode 100644 index 0000000..8c7e9ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_39.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_39.jpg new file mode 100644 index 0000000..7c806d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_40.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_40.jpg new file mode 100644 index 0000000..22dd0f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_41.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_41.jpg new file mode 100644 index 0000000..342ce66 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_42.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_42.jpg new file mode 100644 index 0000000..210ef94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_43.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_43.jpg new file mode 100644 index 0000000..9096cb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_44.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_44.jpg new file mode 100644 index 0000000..aca07e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_45.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_45.jpg new file mode 100644 index 0000000..6a7508d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_46.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_46.jpg new file mode 100644 index 0000000..7c40bd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_47.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_47.jpg new file mode 100644 index 0000000..453c79d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_48naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_48naxxramas.jpg new file mode 100644 index 0000000..b1a2640 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_48naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_49naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_49naxxramas.jpg new file mode 100644 index 0000000..08061ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_49naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_50naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_50naxxramas.jpg new file mode 100644 index 0000000..19d0664 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_50naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_51naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_51naxxramas.jpg new file mode 100644 index 0000000..b401ec5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_51naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_52naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_52naxxramas.jpg new file mode 100644 index 0000000..9886c88 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_52naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_53naxxramas.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_53naxxramas.jpg new file mode 100644 index 0000000..87c1af8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_53naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_54.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_54.jpg new file mode 100644 index 0000000..c95ebe8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_55.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_55.jpg new file mode 100644 index 0000000..d465ecf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_56.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_56.jpg new file mode 100644 index 0000000..6fc9460 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_57.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_57.jpg new file mode 100644 index 0000000..e821991 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_58.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_58.jpg new file mode 100644 index 0000000..a512904 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_59.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_59.jpg new file mode 100644 index 0000000..93930e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_60.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_60.jpg new file mode 100644 index 0000000..5f6fd40 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_61.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_61.jpg new file mode 100644 index 0000000..aac9e2a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_62.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_62.jpg new file mode 100644 index 0000000..f7c18a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_63.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_63.jpg new file mode 100644 index 0000000..2ad797d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_64.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_64.jpg new file mode 100644 index 0000000..8c26f2a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_65.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_65.jpg new file mode 100644 index 0000000..ff4d07e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_66.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_66.jpg new file mode 100644 index 0000000..6c5af58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_67.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_67.jpg new file mode 100644 index 0000000..362e977 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_68.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_68.jpg new file mode 100644 index 0000000..5b25208 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_69.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_69.jpg new file mode 100644 index 0000000..e10e0f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_70.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_70.jpg new file mode 100644 index 0000000..b4588ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_70.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_71.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_71.jpg new file mode 100644 index 0000000..937e6bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_72.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_72.jpg new file mode 100644 index 0000000..63e8f23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_73.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_73.jpg new file mode 100644 index 0000000..3cbf0b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_74.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_74.jpg new file mode 100644 index 0000000..793d08d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_75.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_75.jpg new file mode 100644 index 0000000..078c317 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_75.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_76.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_76.jpg new file mode 100644 index 0000000..9fd4a2f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_76.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_77.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_77.jpg new file mode 100644 index 0000000..3e5579e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_77.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_78.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_78.jpg new file mode 100644 index 0000000..53f2279 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_78.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_79.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_79.jpg new file mode 100644 index 0000000..3d8b4b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_79.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_80.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_80.jpg new file mode 100644 index 0000000..ba02007 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_80.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_01.jpg new file mode 100644 index 0000000..141461e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_02.jpg new file mode 100644 index 0000000..d92873f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_03.jpg new file mode 100644 index 0000000..1f7519d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_04.jpg new file mode 100644 index 0000000..6010129 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_05.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_05.jpg new file mode 100644 index 0000000..694e8a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_06.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_06.jpg new file mode 100644 index 0000000..447624b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_ring_ahnqiraj_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_01.jpg new file mode 100644 index 0000000..f25e82a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_02.jpg new file mode 100644 index 0000000..8a856d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_03.jpg new file mode 100644 index 0000000..c4e9526 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_04.jpg new file mode 100644 index 0000000..c8d5be7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_05.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_05.jpg new file mode 100644 index 0000000..68da285 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_stormpiketrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_01.jpg new file mode 100644 index 0000000..c04b424 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_02.jpg new file mode 100644 index 0000000..7e18ecb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_03.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_03.jpg new file mode 100644 index 0000000..50164c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_04.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_04.jpg new file mode 100644 index 0000000..af5c049 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_05.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_05.jpg new file mode 100644 index 0000000..79785e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_06.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_06.jpg new file mode 100644 index 0000000..0daccdd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_07.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_07.jpg new file mode 100644 index 0000000..957a953 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_08.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_08.jpg new file mode 100644 index 0000000..95c85ce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_09.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_09.jpg new file mode 100644 index 0000000..8c61f3a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_10.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_10.jpg new file mode 100644 index 0000000..bce60cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_11.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_11.jpg new file mode 100644 index 0000000..0eda0de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_12.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_12.jpg new file mode 100644 index 0000000..fa8f659 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_13.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_13.jpg new file mode 100644 index 0000000..5fb5005 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_14.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_14.jpg new file mode 100644 index 0000000..db043c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_15.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_15.jpg new file mode 100644 index 0000000..73e7669 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_16.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_16.jpg new file mode 100644 index 0000000..64b08a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_17.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_17.jpg new file mode 100644 index 0000000..dd4088d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_18.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_18.jpg new file mode 100644 index 0000000..2e2b2d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_talisman_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_trinketpvp_01.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_trinketpvp_01.jpg new file mode 100644 index 0000000..864a707 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_trinketpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_jewelry_trinketpvp_02.jpg b/other/AoWoW-master/images/icons/medium/inv_jewelry_trinketpvp_02.jpg new file mode 100644 index 0000000..9398bec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_jewelry_trinketpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..d3de1c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..500290c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_03.jpg b/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_03.jpg new file mode 100644 index 0000000..dd8725f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_knife_1h_stratholme_d_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_01.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_01.jpg new file mode 100644 index 0000000..ebbdc4b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_02.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_02.jpg new file mode 100644 index 0000000..6ade326 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_03.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_03.jpg new file mode 100644 index 0000000..25e16b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_04.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_04.jpg new file mode 100644 index 0000000..47b567a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_05.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_05.jpg new file mode 100644 index 0000000..08a1ab7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_06.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_06.jpg new file mode 100644 index 0000000..e9504c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_07.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_07.jpg new file mode 100644 index 0000000..4d8d22b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_08.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_08.jpg new file mode 100644 index 0000000..1ede53e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_09.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_09.jpg new file mode 100644 index 0000000..4f26514 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_10.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_10.jpg new file mode 100644 index 0000000..2ac99fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_11.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_11.jpg new file mode 100644 index 0000000..039a949 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_12.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_12.jpg new file mode 100644 index 0000000..34ceb41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_13.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_13.jpg new file mode 100644 index 0000000..0448f4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_14.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_14.jpg new file mode 100644 index 0000000..04ca009 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_15.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_15.jpg new file mode 100644 index 0000000..4366b2c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_16.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_16.jpg new file mode 100644 index 0000000..5c1af28 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_letter_17.jpg b/other/AoWoW-master/images/icons/medium/inv_letter_17.jpg new file mode 100644 index 0000000..9ab1176 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_letter_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace22.jpg b/other/AoWoW-master/images/icons/medium/inv_mace22.jpg new file mode 100644 index 0000000..05200de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace23.jpg b/other/AoWoW-master/images/icons/medium/inv_mace23.jpg new file mode 100644 index 0000000..f3f62a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_01.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_01.jpg new file mode 100644 index 0000000..efdb9ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_02.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_02.jpg new file mode 100644 index 0000000..c6c2c92 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_03.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_03.jpg new file mode 100644 index 0000000..ff5c0e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_04.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_04.jpg new file mode 100644 index 0000000..c17eaf8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_05.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_05.jpg new file mode 100644 index 0000000..6df512d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_06.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_06.jpg new file mode 100644 index 0000000..e939dbd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_07.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_07.jpg new file mode 100644 index 0000000..bbc5b86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_08.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_08.jpg new file mode 100644 index 0000000..71ee018 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_09.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_09.jpg new file mode 100644 index 0000000..27ce354 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_10.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_10.jpg new file mode 100644 index 0000000..bb2faf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_11.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_11.jpg new file mode 100644 index 0000000..dbd7866 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_12.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_12.jpg new file mode 100644 index 0000000..4598729 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_13.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_13.jpg new file mode 100644 index 0000000..b87af97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_14.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_14.jpg new file mode 100644 index 0000000..cf5d9b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_15.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_15.jpg new file mode 100644 index 0000000..0b23bf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_16.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_16.jpg new file mode 100644 index 0000000..e93dbde Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_17.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_17.jpg new file mode 100644 index 0000000..fbfc4fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_18.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_18.jpg new file mode 100644 index 0000000..2b61b76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_19.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_19.jpg new file mode 100644 index 0000000..6615275 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..8566ac3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..359bf64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_20.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_20.jpg new file mode 100644 index 0000000..fbdbb9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_21.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_21.jpg new file mode 100644 index 0000000..1e774da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_22.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_22.jpg new file mode 100644 index 0000000..05200de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_23.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_23.jpg new file mode 100644 index 0000000..f3f62a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_24.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_24.jpg new file mode 100644 index 0000000..362c87f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_25.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_25.jpg new file mode 100644 index 0000000..4702ad7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_26.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_26.jpg new file mode 100644 index 0000000..bb729c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_27.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_27.jpg new file mode 100644 index 0000000..5e634d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_28.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_28.jpg new file mode 100644 index 0000000..de2cb08 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_29.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_29.jpg new file mode 100644 index 0000000..92b1c30 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..b271486 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..00ad3de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..ef7276d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_30.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_30.jpg new file mode 100644 index 0000000..c78a934 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_31.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_31.jpg new file mode 100644 index 0000000..4ecc577 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_32.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_32.jpg new file mode 100644 index 0000000..84c9d3f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_33.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_33.jpg new file mode 100644 index 0000000..821a008 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_34.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_34.jpg new file mode 100644 index 0000000..2296fc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_35.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_35.jpg new file mode 100644 index 0000000..525fb69 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_36.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_36.jpg new file mode 100644 index 0000000..2cfef28 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_37.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_37.jpg new file mode 100644 index 0000000..5b5a816 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_38.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_38.jpg new file mode 100644 index 0000000..bd5e436 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_39.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_39.jpg new file mode 100644 index 0000000..a428463 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_40.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_40.jpg new file mode 100644 index 0000000..413fc5f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_41.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_41.jpg new file mode 100644 index 0000000..ae09f15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_42.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_42.jpg new file mode 100644 index 0000000..ff5117a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_43.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_43.jpg new file mode 100644 index 0000000..afeddd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_44.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_44.jpg new file mode 100644 index 0000000..051c94b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_45.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_45.jpg new file mode 100644 index 0000000..f9c5f18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_46.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_46.jpg new file mode 100644 index 0000000..6c93db9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_47.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_47.jpg new file mode 100644 index 0000000..efb0608 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_48.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_48.jpg new file mode 100644 index 0000000..fcd1aa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_49.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_49.jpg new file mode 100644 index 0000000..dd14fe1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_50.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_50.jpg new file mode 100644 index 0000000..7c0ed38 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_51.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_51.jpg new file mode 100644 index 0000000..fabfb35 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_52.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_52.jpg new file mode 100644 index 0000000..961cfc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_53.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_53.jpg new file mode 100644 index 0000000..2ba0350 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_54.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_54.jpg new file mode 100644 index 0000000..c20ded7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_55.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_55.jpg new file mode 100644 index 0000000..a1df926 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_56.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_56.jpg new file mode 100644 index 0000000..732324a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_57.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_57.jpg new file mode 100644 index 0000000..fe71a9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_66.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_66.jpg new file mode 100644 index 0000000..2acff78 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_71.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_71.jpg new file mode 100644 index 0000000..584124b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_72.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_72.jpg new file mode 100644 index 0000000..798e536 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_73.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_73.jpg new file mode 100644 index 0000000..8f8e321 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_74.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_74.jpg new file mode 100644 index 0000000..1a9b138 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mace_82.jpg b/other/AoWoW-master/images/icons/medium/inv_mace_82.jpg new file mode 100644 index 0000000..65e17a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mace_82.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mask_01.jpg b/other/AoWoW-master/images/icons/medium/inv_mask_01.jpg new file mode 100644 index 0000000..7e97371 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mask_02.jpg b/other/AoWoW-master/images/icons/medium/inv_mask_02.jpg new file mode 100644 index 0000000..7302b9e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mask_03.jpg b/other/AoWoW-master/images/icons/medium/inv_mask_03.jpg new file mode 100644 index 0000000..196968e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mask_04.jpg b/other/AoWoW-master/images/icons/medium/inv_mask_04.jpg new file mode 100644 index 0000000..d05f04e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mask_05.jpg b/other/AoWoW-master/images/icons/medium/inv_mask_05.jpg new file mode 100644 index 0000000..76378ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mask_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mask_06.jpg b/other/AoWoW-master/images/icons/medium/inv_mask_06.jpg new file mode 100644 index 0000000..fda847e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mask_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_01.jpg new file mode 100644 index 0000000..3275aa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_02.jpg new file mode 100644 index 0000000..e02a4bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_03.jpg new file mode 100644 index 0000000..a74b800 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_04.jpg new file mode 100644 index 0000000..f643d9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_05.jpg new file mode 100644 index 0000000..22b4152 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_06.jpg new file mode 100644 index 0000000..f8249ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ahnqirajtrinket_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_01.jpg new file mode 100644 index 0000000..15f71f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_02.jpg new file mode 100644 index 0000000..7267490 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_03.jpg new file mode 100644 index 0000000..9cc7094 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_04.jpg new file mode 100644 index 0000000..d75e99f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_05.jpg new file mode 100644 index 0000000..5c316f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_arrow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_01.jpg new file mode 100644 index 0000000..04e5c2f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_02.jpg new file mode 100644 index 0000000..530f43a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_03.jpg new file mode 100644 index 0000000..3c6d8ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_04.jpg new file mode 100644 index 0000000..d286aca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_05.jpg new file mode 100644 index 0000000..2b288ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_06.jpg new file mode 100644 index 0000000..04a61ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_bullet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_01.jpg new file mode 100644 index 0000000..7a9d98c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_02.jpg new file mode 100644 index 0000000..114de94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_03.jpg new file mode 100644 index 0000000..193a7eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_04.jpg new file mode 100644 index 0000000..a408e3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_05.jpg new file mode 100644 index 0000000..4b79b80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_06.jpg new file mode 100644 index 0000000..20490db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_07.jpg new file mode 100644 index 0000000..8463107 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ammo_gunpowder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_apexis_crystal.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_apexis_crystal.jpg new file mode 100644 index 0000000..ea24b1b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_apexis_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_apexis_shard.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_apexis_shard.jpg new file mode 100644 index 0000000..6f6bf3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_apexis_shard.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_01.jpg new file mode 100644 index 0000000..482d435 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_02.jpg new file mode 100644 index 0000000..bde81f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_03.jpg new file mode 100644 index 0000000..1a303b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_04.jpg new file mode 100644 index 0000000..ae013ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_05.jpg new file mode 100644 index 0000000..35cbda1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_06.jpg new file mode 100644 index 0000000..449a237 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_07.jpg new file mode 100644 index 0000000..f01b3bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_08.jpg new file mode 100644 index 0000000..c58b3ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_09.jpg new file mode 100644 index 0000000..e5e22fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_10.jpg new file mode 100644 index 0000000..3ef0c42 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_11.jpg new file mode 100644 index 0000000..f337277 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_12.jpg new file mode 100644 index 0000000..1b1968e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_14.jpg new file mode 100644 index 0000000..f2f1281 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_15.jpg new file mode 100644 index 0000000..7929a7e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_16.jpg new file mode 100644 index 0000000..3f31925 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_17.jpg new file mode 100644 index 0000000..e5bf108 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_18.jpg new file mode 100644 index 0000000..08a9c3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_19.jpg new file mode 100644 index 0000000..0830fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_20.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_20.jpg new file mode 100644 index 0000000..8c42291 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_21.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_21.jpg new file mode 100644 index 0000000..ecefea0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_22.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_22.jpg new file mode 100644 index 0000000..c6a7cb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_23.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_23.jpg new file mode 100644 index 0000000..8153a3b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_24.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_24.jpg new file mode 100644 index 0000000..0594157 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_25.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_25.jpg new file mode 100644 index 0000000..ddbafbf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_26.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_26.jpg new file mode 100644 index 0000000..5178065 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_27.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_27.jpg new file mode 100644 index 0000000..b9523c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_armorkit_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_01.jpg new file mode 100644 index 0000000..4da6769 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_02.jpg new file mode 100644 index 0000000..21122cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_03.jpg new file mode 100644 index 0000000..c7a8e95 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_04.jpg new file mode 100644 index 0000000..9df428e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_05.jpg new file mode 100644 index 0000000..62c22f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_06.jpg new file mode 100644 index 0000000..5ecc80d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07.jpg new file mode 100644 index 0000000..cba43f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_black.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_black.jpg new file mode 100644 index 0000000..1577b58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_black.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_blue.jpg new file mode 100644 index 0000000..7cbf98b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_green.jpg new file mode 100644 index 0000000..d96cd69 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_red.jpg new file mode 100644 index 0000000..38b1c70 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_07_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_08.jpg new file mode 100644 index 0000000..9c8c409 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09.jpg new file mode 100644 index 0000000..a304056 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_black.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_black.jpg new file mode 100644 index 0000000..d3df6d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_black.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_blue.jpg new file mode 100644 index 0000000..08aadf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_green.jpg new file mode 100644 index 0000000..479cb7c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_red.jpg new file mode 100644 index 0000000..57fc36a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_09_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10.jpg new file mode 100644 index 0000000..c829482 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_black.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_black.jpg new file mode 100644 index 0000000..9f3f51a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_black.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_blue.jpg new file mode 100644 index 0000000..d875298 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_green.jpg new file mode 100644 index 0000000..409baa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_red.jpg new file mode 100644 index 0000000..afacdd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_10_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_11.jpg new file mode 100644 index 0000000..b3cbdf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_12.jpg new file mode 100644 index 0000000..0d7e1e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_13.jpg new file mode 100644 index 0000000..0367689 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_14.jpg new file mode 100644 index 0000000..61a8520 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_15.jpg new file mode 100644 index 0000000..ba98d5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_16.jpg new file mode 100644 index 0000000..4d930b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_17.jpg new file mode 100644 index 0000000..c506a37 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_18.jpg new file mode 100644 index 0000000..179dde2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_19.jpg new file mode 100644 index 0000000..586521c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_20.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_20.jpg new file mode 100644 index 0000000..94024ef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_21.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_21.jpg new file mode 100644 index 0000000..ba95ef5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_22.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_22.jpg new file mode 100644 index 0000000..14579d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_23_netherweave.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_23_netherweave.jpg new file mode 100644 index 0000000..0dbee98 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_23_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_24_netherweave_imbued.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_24_netherweave_imbued.jpg new file mode 100644 index 0000000..948b615 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_24_netherweave_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_25_mooncloth.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_25_mooncloth.jpg new file mode 100644 index 0000000..859613b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_25_mooncloth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_26_spellfire.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_26_spellfire.jpg new file mode 100644 index 0000000..58efca8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_26_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_27.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_27.jpg new file mode 100644 index 0000000..ab406a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_28_halloween.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_28_halloween.jpg new file mode 100644 index 0000000..61b0178 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_28_halloween.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_bigbagofenchantments.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_bigbagofenchantments.jpg new file mode 100644 index 0000000..57af682 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_bigbagofenchantments.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_cenarionherbbag.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_cenarionherbbag.jpg new file mode 100644 index 0000000..a399fc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_cenarionherbbag.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_corefelclothbag.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_corefelclothbag.jpg new file mode 100644 index 0000000..7986541 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_corefelclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_enchantedmageweave.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_enchantedmageweave.jpg new file mode 100644 index 0000000..41ba8a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_enchantedmageweave.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_enchantedrunecloth.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_enchantedrunecloth.jpg new file mode 100644 index 0000000..3c788b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_enchantedrunecloth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_felclothbag.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_felclothbag.jpg new file mode 100644 index 0000000..f59f5dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_felclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_herbpouch.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_herbpouch.jpg new file mode 100644 index 0000000..b6eae88 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_herbpouch.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_satchelofcenarius.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_satchelofcenarius.jpg new file mode 100644 index 0000000..e44aa9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_satchelofcenarius.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bag_soulbag.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bag_soulbag.jpg new file mode 100644 index 0000000..b34ec46 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bag_soulbag.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_01.jpg new file mode 100644 index 0000000..93dd4cf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_02.jpg new file mode 100644 index 0000000..eb4ccdb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_03.jpg new file mode 100644 index 0000000..3b305db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_04.jpg new file mode 100644 index 0000000..4579b4e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_05.jpg new file mode 100644 index 0000000..4857bac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_06.jpg new file mode 100644 index 0000000..7e23a73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_07.jpg new file mode 100644 index 0000000..64c35ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_08.jpg new file mode 100644 index 0000000..52c8845 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_09.jpg new file mode 100644 index 0000000..71dc2b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_10.jpg new file mode 100644 index 0000000..f1da359 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_11.jpg new file mode 100644 index 0000000..19df22b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_12.jpg new file mode 100644 index 0000000..c15d093 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_13.jpg new file mode 100644 index 0000000..1c7c720 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_14.jpg new file mode 100644 index 0000000..7b09c6c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_15.jpg new file mode 100644 index 0000000..2ee1acd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_16.jpg new file mode 100644 index 0000000..d96d19d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_17.jpg new file mode 100644 index 0000000..9ea7045 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_18.jpg new file mode 100644 index 0000000..e38c6a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_19.jpg new file mode 100644 index 0000000..bb988f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_20.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_20.jpg new file mode 100644 index 0000000..6984d06 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_netherweave.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_netherweave.jpg new file mode 100644 index 0000000..a2b26f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandage_netherweave_heavy.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_netherweave_heavy.jpg new file mode 100644 index 0000000..a45a080 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandage_netherweave_heavy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandana_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandana_01.jpg new file mode 100644 index 0000000..de544a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandana_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bandana_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bandana_03.jpg new file mode 100644 index 0000000..a05d94c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bandana_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_basket_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_basket_01.jpg new file mode 100644 index 0000000..cffdf06 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_basket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_beer_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_beer_01.jpg new file mode 100644 index 0000000..2f1cc08 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_beer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_beer_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_beer_02.jpg new file mode 100644 index 0000000..b76d3ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_beer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bell_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bell_01.jpg new file mode 100644 index 0000000..53fe45e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_birdbeck_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_birdbeck_01.jpg new file mode 100644 index 0000000..a05fc9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_birdbeck_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_birdbeck_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_birdbeck_02.jpg new file mode 100644 index 0000000..316b78c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_birdbeck_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_01.jpg new file mode 100644 index 0000000..4b71df1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_02.jpg new file mode 100644 index 0000000..2fea177 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_03.jpg new file mode 100644 index 0000000..8aceed6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_04.jpg new file mode 100644 index 0000000..f07d202 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_05.jpg new file mode 100644 index 0000000..c542d47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_06.jpg new file mode 100644 index 0000000..db6d1bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_07.jpg new file mode 100644 index 0000000..191b214 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_08.jpg new file mode 100644 index 0000000..ab2c77b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bomb_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_09.jpg new file mode 100644 index 0000000..022ec7e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bomb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_01.jpg new file mode 100644 index 0000000..37af737 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_02.jpg new file mode 100644 index 0000000..53b7601 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_03.jpg new file mode 100644 index 0000000..6ec3ae0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_04.jpg new file mode 100644 index 0000000..b04e9b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_05.jpg new file mode 100644 index 0000000..5003fd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_06.jpg new file mode 100644 index 0000000..f01b3ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_07.jpg new file mode 100644 index 0000000..e3caae4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_08.jpg new file mode 100644 index 0000000..cd968d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_09.jpg new file mode 100644 index 0000000..a8d8c03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_10.jpg new file mode 100644 index 0000000..d94dcb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_dwarfskull_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_dwarfskull_01.jpg new file mode 100644 index 0000000..8e8e965 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_dwarfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_elfskull_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_elfskull_01.jpg new file mode 100644 index 0000000..37168a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_elfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_humanskull_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_humanskull_01.jpg new file mode 100644 index 0000000..1cc1eb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_humanskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_orcskull_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_orcskull_01.jpg new file mode 100644 index 0000000..e5a7cc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_orcskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bone_taurenskull_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bone_taurenskull_01.jpg new file mode 100644 index 0000000..d7cc7f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bone_taurenskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_01.jpg new file mode 100644 index 0000000..bc966dc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_02.jpg new file mode 100644 index 0000000..4462375 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_03.jpg new file mode 100644 index 0000000..b2e56e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_04.jpg new file mode 100644 index 0000000..8fbfeeb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_05.jpg new file mode 100644 index 0000000..8f30f76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_06.jpg new file mode 100644 index 0000000..7282c94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_07.jpg new file mode 100644 index 0000000..4f50e00 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_08.jpg new file mode 100644 index 0000000..034adf8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_09.jpg new file mode 100644 index 0000000..9166c5f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_10.jpg new file mode 100644 index 0000000..d4a9389 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_11.jpg new file mode 100644 index 0000000..e26a878 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_12.jpg new file mode 100644 index 0000000..b380c67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_13.jpg new file mode 100644 index 0000000..0af476a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_14.jpg new file mode 100644 index 0000000..2c70bda Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_book_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_book_15.jpg new file mode 100644 index 0000000..a39deac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_book_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_bowl_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_bowl_01.jpg new file mode 100644 index 0000000..faa67ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_bowl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_branch_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_branch_01.jpg new file mode 100644 index 0000000..8b8bfef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_branch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_candle_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_candle_01.jpg new file mode 100644 index 0000000..74b2ed1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_candle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_candle_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_candle_02.jpg new file mode 100644 index 0000000..f8ce21a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_candle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_candle_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_candle_03.jpg new file mode 100644 index 0000000..fcf52ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_candle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_01.jpg new file mode 100644 index 0000000..e3330f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_02.jpg new file mode 100644 index 0000000..240b7dc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_03.jpg new file mode 100644 index 0000000..ffb5c9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_04.jpg new file mode 100644 index 0000000..7ac98fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_05.jpg new file mode 100644 index 0000000..806ec29 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_06.jpg new file mode 100644 index 0000000..11d9af9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_07.jpg new file mode 100644 index 0000000..7328692 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_08.jpg new file mode 100644 index 0000000..02b8f3a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_09.jpg new file mode 100644 index 0000000..4e7cf99 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_10.jpg new file mode 100644 index 0000000..f56d760 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_11.jpg new file mode 100644 index 0000000..a724430 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_12.jpg new file mode 100644 index 0000000..7d0a5fb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_13.jpg new file mode 100644 index 0000000..bfd8256 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_14.jpg new file mode 100644 index 0000000..2e47663 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_15.jpg new file mode 100644 index 0000000..7865b28 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_16.jpg new file mode 100644 index 0000000..871bf26 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_17.jpg new file mode 100644 index 0000000..efda5e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_18.jpg new file mode 100644 index 0000000..73915eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_19.jpg new file mode 100644 index 0000000..1dea984 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_20.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_20.jpg new file mode 100644 index 0000000..1a56576 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_21.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_21.jpg new file mode 100644 index 0000000..63be0b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_22.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_22.jpg new file mode 100644 index 0000000..19370d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_01.jpg new file mode 100644 index 0000000..b8abeff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_02.jpg new file mode 100644 index 0000000..f1a3cae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_03.jpg new file mode 100644 index 0000000..f28bc83 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cape_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_arcane.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_arcane.jpg new file mode 100644 index 0000000..8f3b36b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_arcane.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_fire.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_fire.jpg new file mode 100644 index 0000000..dfd80cf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_frost.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_frost.jpg new file mode 100644 index 0000000..0f56e5f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_nature.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_nature.jpg new file mode 100644 index 0000000..50cbfaa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_nature.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_shadow.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_shadow.jpg new file mode 100644 index 0000000..c4fbaec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_cauldron_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_celebrationcake_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_celebrationcake_01.jpg new file mode 100644 index 0000000..0905816 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_celebrationcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_01.jpg new file mode 100644 index 0000000..01e1ca1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_02.jpg new file mode 100644 index 0000000..91a636e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_03.jpg new file mode 100644 index 0000000..c4f4007 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_04.jpg new file mode 100644 index 0000000..fdf2365 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_05.jpg new file mode 100644 index 0000000..ccb95f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_06.jpg new file mode 100644 index 0000000..9001cf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_07.jpg new file mode 100644 index 0000000..2e72843 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_08.jpg new file mode 100644 index 0000000..6743c1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_09.jpg new file mode 100644 index 0000000..8a59f01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_10.jpg new file mode 100644 index 0000000..11202fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_11.jpg new file mode 100644 index 0000000..f487630 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_12.jpg new file mode 100644 index 0000000..5148bb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_13.jpg new file mode 100644 index 0000000..27c6c9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_14.jpg new file mode 100644 index 0000000..97bef6f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_coin_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_coin_15.jpg new file mode 100644 index 0000000..02f3108 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_coin_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_comb_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_comb_01.jpg new file mode 100644 index 0000000..2396f89 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_comb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_comb_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_comb_02.jpg new file mode 100644 index 0000000..652ddca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_comb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_crop_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_crop_01.jpg new file mode 100644 index 0000000..84485d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_crop_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_crop_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_crop_02.jpg new file mode 100644 index 0000000..b484d03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_crop_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothbelt.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothbelt.jpg new file mode 100644 index 0000000..1c11748 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothboots.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothboots.jpg new file mode 100644 index 0000000..5cf7b80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothboots.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothbracer.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothbracer.jpg new file mode 100644 index 0000000..910698f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothchest.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothchest.jpg new file mode 100644 index 0000000..4b97267 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothchest.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothglove.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothglove.jpg new file mode 100644 index 0000000..a4df788 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothglove.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothhelm.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothhelm.jpg new file mode 100644 index 0000000..4bdae22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothpants.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothpants.jpg new file mode 100644 index 0000000..789b525 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothpants.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothshoulder.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothshoulder.jpg new file mode 100644 index 0000000..03e9d48 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_clothshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherbelt.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherbelt.jpg new file mode 100644 index 0000000..1160a58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherboots.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherboots.jpg new file mode 100644 index 0000000..70c2ceb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherboots.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherbracer.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherbracer.jpg new file mode 100644 index 0000000..27d74ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherchest.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherchest.jpg new file mode 100644 index 0000000..e7a3678 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherchest.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherglove.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherglove.jpg new file mode 100644 index 0000000..b85aa45 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherglove.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherhelm.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherhelm.jpg new file mode 100644 index 0000000..a33fe4f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherpants.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherpants.jpg new file mode 100644 index 0000000..ce248b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leatherpants.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leathershoulder.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leathershoulder.jpg new file mode 100644 index 0000000..443d3f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_leathershoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailbelt.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailbelt.jpg new file mode 100644 index 0000000..a65bd80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailboots.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailboots.jpg new file mode 100644 index 0000000..52b8a41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailboots.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailbracer.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailbracer.jpg new file mode 100644 index 0000000..f5f5edf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailchest.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailchest.jpg new file mode 100644 index 0000000..f9074a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailchest.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailglove.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailglove.jpg new file mode 100644 index 0000000..4cc4cf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailglove.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailhelm.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailhelm.jpg new file mode 100644 index 0000000..1c3b8aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailpants.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailpants.jpg new file mode 100644 index 0000000..573330c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailpants.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailshoulder.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailshoulder.jpg new file mode 100644 index 0000000..c8d9dda Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_mailshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platebelt.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platebelt.jpg new file mode 100644 index 0000000..22b5ef5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platebelt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plateboots.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plateboots.jpg new file mode 100644 index 0000000..ba75fba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plateboots.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platebracer.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platebracer.jpg new file mode 100644 index 0000000..8f13ef4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platebracer.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platechest.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platechest.jpg new file mode 100644 index 0000000..aee2ac4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platechest.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plategloves.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plategloves.jpg new file mode 100644 index 0000000..e91f978 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plategloves.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platehelm.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platehelm.jpg new file mode 100644 index 0000000..c1f69ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platehelm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platepants.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platepants.jpg new file mode 100644 index 0000000..0de278a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_platepants.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plateshoulder.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plateshoulder.jpg new file mode 100644 index 0000000..5d9e3e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_desecrated_plateshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_01.jpg new file mode 100644 index 0000000..aa4f608 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_02.jpg new file mode 100644 index 0000000..2eb3bbb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_03.jpg new file mode 100644 index 0000000..4b07926 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_04.jpg new file mode 100644 index 0000000..0ea3297 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dragonkite_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_drum_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_drum_01.jpg new file mode 100644 index 0000000..9eadb8c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_drum_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_drum_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_drum_02.jpg new file mode 100644 index 0000000..4ac8cf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_drum_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_drum_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_drum_03.jpg new file mode 100644 index 0000000..d512918 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_drum_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_drum_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_drum_04.jpg new file mode 100644 index 0000000..7c7c452 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_drum_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_drum_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_drum_05.jpg new file mode 100644 index 0000000..532a87e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_drum_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_drum_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_drum_06.jpg new file mode 100644 index 0000000..4169635 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_drum_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_drum_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_drum_07.jpg new file mode 100644 index 0000000..a50bf8e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_drum_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dust_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dust_01.jpg new file mode 100644 index 0000000..687978e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dust_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dust_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dust_02.jpg new file mode 100644 index 0000000..ed5c45c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dust_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dust_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dust_03.jpg new file mode 100644 index 0000000..2593354 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dust_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dust_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dust_04.jpg new file mode 100644 index 0000000..62a82e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dust_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dust_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dust_05.jpg new file mode 100644 index 0000000..5d240b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dust_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_dust_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_dust_06.jpg new file mode 100644 index 0000000..8d334de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_dust_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ear_human_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ear_human_01.jpg new file mode 100644 index 0000000..128509b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ear_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ear_human_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ear_human_02.jpg new file mode 100644 index 0000000..675e287 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ear_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ear_nightelf_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ear_nightelf_01.jpg new file mode 100644 index 0000000..e0d358d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ear_nightelf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ear_nightelf_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ear_nightelf_02.jpg new file mode 100644 index 0000000..69b81a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ear_nightelf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_elvencoins.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_elvencoins.jpg new file mode 100644 index 0000000..3594ae9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_elvencoins.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_01.jpg new file mode 100644 index 0000000..74e3a8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_02.jpg new file mode 100644 index 0000000..f812de4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_03.jpg new file mode 100644 index 0000000..91a0dd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_04.jpg new file mode 100644 index 0000000..7f04b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_05.jpg new file mode 100644 index 0000000..4431a2c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_06.jpg new file mode 100644 index 0000000..3e912db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_07.jpg new file mode 100644 index 0000000..0fefa91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_08.jpg new file mode 100644 index 0000000..18dc7fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_09.jpg new file mode 100644 index 0000000..0d92a78 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_10.jpg new file mode 100644 index 0000000..81d6c25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_11.jpg new file mode 100644 index 0000000..5b02fb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_12.jpg new file mode 100644 index 0000000..363ee74 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_13.jpg new file mode 100644 index 0000000..210aea5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_14.jpg new file mode 100644 index 0000000..b9adb49 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_15.jpg new file mode 100644 index 0000000..a008b23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_16.jpg new file mode 100644 index 0000000..16db710 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_17.jpg new file mode 100644 index 0000000..971b796 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_18.jpg new file mode 100644 index 0000000..b7cd68b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_19.jpg new file mode 100644 index 0000000..f81d284 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_20.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_20.jpg new file mode 100644 index 0000000..1d58308 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_21.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_21.jpg new file mode 100644 index 0000000..3df09c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_23.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_23.jpg new file mode 100644 index 0000000..6898bfd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_24.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_24.jpg new file mode 100644 index 0000000..97181dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_essencedistiller.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_essencedistiller.jpg new file mode 100644 index 0000000..a5960d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_essencedistiller.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_rocketchicken.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_rocketchicken.jpg new file mode 100644 index 0000000..20a8f0e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_enggizmos_rocketchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_eye_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_eye_01.jpg new file mode 100644 index 0000000..3f74959 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_eye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_film_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_film_01.jpg new file mode 100644 index 0000000..a45002e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_film_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_firedancer_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_firedancer_01.jpg new file mode 100644 index 0000000..ae45568 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_firedancer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_01.jpg new file mode 100644 index 0000000..de2ebfa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_02.jpg new file mode 100644 index 0000000..04f5c1a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_03.jpg new file mode 100644 index 0000000..6241a5f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_04.jpg new file mode 100644 index 0000000..e71b3fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_05.jpg new file mode 100644 index 0000000..3fc233d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_06.jpg new file mode 100644 index 0000000..77c29af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_07.jpg new file mode 100644 index 0000000..ec0a8f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_08.jpg new file mode 100644 index 0000000..00a3e21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_09.jpg new file mode 100644 index 0000000..60d9781 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_10.jpg new file mode 100644 index 0000000..b542af6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_11.jpg new file mode 100644 index 0000000..13a327a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_12.jpg new file mode 100644 index 0000000..13c225a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_13.jpg new file mode 100644 index 0000000..1d5fac7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_14.jpg new file mode 100644 index 0000000..0a3a4e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_15.jpg new file mode 100644 index 0000000..6f8bb63 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_16.jpg new file mode 100644 index 0000000..23f2f75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_17.jpg new file mode 100644 index 0000000..d322b51 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_18.jpg new file mode 100644 index 0000000..14318fc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_19.jpg new file mode 100644 index 0000000..8d66b18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_20.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_20.jpg new file mode 100644 index 0000000..f7967b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_21.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_21.jpg new file mode 100644 index 0000000..f47eebd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_22.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_22.jpg new file mode 100644 index 0000000..9d868e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_23.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_23.jpg new file mode 100644 index 0000000..5ba3943 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_24.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_24.jpg new file mode 100644 index 0000000..b962643 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_25.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_25.jpg new file mode 100644 index 0000000..3aa40db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_26.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_26.jpg new file mode 100644 index 0000000..89b57cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_27.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_27.jpg new file mode 100644 index 0000000..1a3d29a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_28.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_28.jpg new file mode 100644 index 0000000..8896268 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_29.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_29.jpg new file mode 100644 index 0000000..4951a50 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_30.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_30.jpg new file mode 100644 index 0000000..b5234f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_31.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_31.jpg new file mode 100644 index 0000000..a1030f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_32.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_32.jpg new file mode 100644 index 0000000..f5e7e87 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_33.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_33.jpg new file mode 100644 index 0000000..f0a4121 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_34.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_34.jpg new file mode 100644 index 0000000..67f4820 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_35.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_35.jpg new file mode 100644 index 0000000..00ec00b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_36.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_36.jpg new file mode 100644 index 0000000..8dbd2d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_37.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_37.jpg new file mode 100644 index 0000000..60e1512 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_38.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_38.jpg new file mode 100644 index 0000000..5f163e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_39.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_39.jpg new file mode 100644 index 0000000..972c1ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_40.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_40.jpg new file mode 100644 index 0000000..b4b1c80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_41.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_41.jpg new file mode 100644 index 0000000..6c02823 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_42.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_42.jpg new file mode 100644 index 0000000..97a2bd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_43.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_43.jpg new file mode 100644 index 0000000..76cbb50 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_44.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_44.jpg new file mode 100644 index 0000000..9f2ba96 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_45.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_45.jpg new file mode 100644 index 0000000..218ff43 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_01.jpg new file mode 100644 index 0000000..cd6e863 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_02.jpg new file mode 100644 index 0000000..d09fc53 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_03.jpg new file mode 100644 index 0000000..50f99ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fish_turtle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_flower_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_flower_01.jpg new file mode 100644 index 0000000..e761337 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_flower_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_flower_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_flower_02.jpg new file mode 100644 index 0000000..f18224e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_flower_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_flower_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_flower_03.jpg new file mode 100644 index 0000000..79b6274 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_flower_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_flower_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_flower_04.jpg new file mode 100644 index 0000000..eb310e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_flower_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_flute_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_flute_01.jpg new file mode 100644 index 0000000..550f309 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_flute_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_01.jpg new file mode 100644 index 0000000..ff7db4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_02.jpg new file mode 100644 index 0000000..e0ed221 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_03.jpg new file mode 100644 index 0000000..cc80e3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_04.jpg new file mode 100644 index 0000000..bee610c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_05.jpg new file mode 100644 index 0000000..8049dbe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_06.jpg new file mode 100644 index 0000000..882dc7f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_07.jpg new file mode 100644 index 0000000..c33c2c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_08.jpg new file mode 100644 index 0000000..bb6ec61 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_09.jpg new file mode 100644 index 0000000..b5d849a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_10.jpg new file mode 100644 index 0000000..97edc1e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_100.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_100.jpg new file mode 100644 index 0000000..9de3410 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_100.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_11.jpg new file mode 100644 index 0000000..f64a951 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_12.jpg new file mode 100644 index 0000000..164f7af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_13.jpg new file mode 100644 index 0000000..159b07d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_14.jpg new file mode 100644 index 0000000..6c61f02 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_15.jpg new file mode 100644 index 0000000..c2658b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_16.jpg new file mode 100644 index 0000000..a11ef4b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_17.jpg new file mode 100644 index 0000000..2d3feb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_18.jpg new file mode 100644 index 0000000..309cff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_19.jpg new file mode 100644 index 0000000..e96d988 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_20.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_20.jpg new file mode 100644 index 0000000..5d5bc8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_21.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_21.jpg new file mode 100644 index 0000000..fef54c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_22.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_22.jpg new file mode 100644 index 0000000..4368c56 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_23.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_23.jpg new file mode 100644 index 0000000..83c12c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_24.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_24.jpg new file mode 100644 index 0000000..2a37666 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_25.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_25.jpg new file mode 100644 index 0000000..0830808 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_26.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_26.jpg new file mode 100644 index 0000000..aa70ff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_27.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_27.jpg new file mode 100644 index 0000000..a737c19 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_28.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_28.jpg new file mode 100644 index 0000000..cacf500 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_29.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_29.jpg new file mode 100644 index 0000000..68dd760 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_30.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_30.jpg new file mode 100644 index 0000000..fe4ba80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_31.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_31.jpg new file mode 100644 index 0000000..c9c651b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_32.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_32.jpg new file mode 100644 index 0000000..35e3465 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_33.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_33.jpg new file mode 100644 index 0000000..3ccc2cd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_34.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_34.jpg new file mode 100644 index 0000000..5f6228c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_35.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_35.jpg new file mode 100644 index 0000000..40674ce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_36.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_36.jpg new file mode 100644 index 0000000..ff3f2e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_37.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_37.jpg new file mode 100644 index 0000000..4082d11 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_38.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_38.jpg new file mode 100644 index 0000000..0ea1151 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_39.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_39.jpg new file mode 100644 index 0000000..11aa053 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_40.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_40.jpg new file mode 100644 index 0000000..aac330f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_41.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_41.jpg new file mode 100644 index 0000000..f97ec5c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_42.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_42.jpg new file mode 100644 index 0000000..16cb373 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_43.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_43.jpg new file mode 100644 index 0000000..0504146 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_44.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_44.jpg new file mode 100644 index 0000000..a6f309a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_45.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_45.jpg new file mode 100644 index 0000000..c107c67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_46.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_46.jpg new file mode 100644 index 0000000..98b10d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_47.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_47.jpg new file mode 100644 index 0000000..19b5308 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_48.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_48.jpg new file mode 100644 index 0000000..cef3f45 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_49.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_49.jpg new file mode 100644 index 0000000..357f357 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_50.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_50.jpg new file mode 100644 index 0000000..f0be04d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_51.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_51.jpg new file mode 100644 index 0000000..e565c26 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_52.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_52.jpg new file mode 100644 index 0000000..2cf2c38 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_53.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_53.jpg new file mode 100644 index 0000000..bfc6a90 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_54.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_54.jpg new file mode 100644 index 0000000..c648f90 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_55.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_55.jpg new file mode 100644 index 0000000..007efcf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_56.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_56.jpg new file mode 100644 index 0000000..20c75d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_57.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_57.jpg new file mode 100644 index 0000000..755f047 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_58.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_58.jpg new file mode 100644 index 0000000..2494f80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_59.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_59.jpg new file mode 100644 index 0000000..9016b6d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_60.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_60.jpg new file mode 100644 index 0000000..639e90a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_61.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_61.jpg new file mode 100644 index 0000000..faf5e97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_62.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_62.jpg new file mode 100644 index 0000000..30d8561 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_63.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_63.jpg new file mode 100644 index 0000000..1215a9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_64.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_64.jpg new file mode 100644 index 0000000..1412e06 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_65.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_65.jpg new file mode 100644 index 0000000..2cffcc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_66.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_66.jpg new file mode 100644 index 0000000..066332e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_67.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_67.jpg new file mode 100644 index 0000000..b6f40d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_68.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_68.jpg new file mode 100644 index 0000000..aaf8549 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_69.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_69.jpg new file mode 100644 index 0000000..49436b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_70.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_70.jpg new file mode 100644 index 0000000..69eab3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_70.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_71.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_71.jpg new file mode 100644 index 0000000..86fe472 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_72.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_72.jpg new file mode 100644 index 0000000..71b7086 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_73cinnamonroll.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_73cinnamonroll.jpg new file mode 100644 index 0000000..c7b236e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_73cinnamonroll.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_74.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_74.jpg new file mode 100644 index 0000000..005b41d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_75.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_75.jpg new file mode 100644 index 0000000..68d66fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_75.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_76.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_76.jpg new file mode 100644 index 0000000..7aea8e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_76.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_77.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_77.jpg new file mode 100644 index 0000000..0ddeb72 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_77.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_78.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_78.jpg new file mode 100644 index 0000000..976b0f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_78.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_79.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_79.jpg new file mode 100644 index 0000000..6165e3d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_79.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_80.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_80.jpg new file mode 100644 index 0000000..6c3110c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_80.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_81.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_81.jpg new file mode 100644 index 0000000..07d1c64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_81.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_82.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_82.jpg new file mode 100644 index 0000000..cd67d49 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_82.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_83_talbuksteak.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_83_talbuksteak.jpg new file mode 100644 index 0000000..6763322 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_83_talbuksteak.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_84_roastclefthoof.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_84_roastclefthoof.jpg new file mode 100644 index 0000000..6e9244d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_84_roastclefthoof.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_85_stegadonbite.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_85_stegadonbite.jpg new file mode 100644 index 0000000..601f43a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_85_stegadonbite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_86_basilisk.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_86_basilisk.jpg new file mode 100644 index 0000000..251b522 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_86_basilisk.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_87_sporelingsnack.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_87_sporelingsnack.jpg new file mode 100644 index 0000000..a64f4be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_87_sporelingsnack.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_88_ravagernuggets.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_88_ravagernuggets.jpg new file mode 100644 index 0000000..fe771f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_88_ravagernuggets.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_89.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_89.jpg new file mode 100644 index 0000000..7694dfd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_89.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_90.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_90.jpg new file mode 100644 index 0000000..6c46849 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_90.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_91.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_91.jpg new file mode 100644 index 0000000..bb6a686 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_91.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_92_lobster.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_92_lobster.jpg new file mode 100644 index 0000000..d11d364 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_92_lobster.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_93_skethylberries.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_93_skethylberries.jpg new file mode 100644 index 0000000..5894e16 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_93_skethylberries.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_94_garadarsharp.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_94_garadarsharp.jpg new file mode 100644 index 0000000..cd75441 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_94_garadarsharp.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_95_grainbread.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_95_grainbread.jpg new file mode 100644 index 0000000..e6ac9f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_95_grainbread.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_96_zangarcaps.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_96_zangarcaps.jpg new file mode 100644 index 0000000..fa89f63 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_96_zangarcaps.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_97_sunspringcarp.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_97_sunspringcarp.jpg new file mode 100644 index 0000000..f307989 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_97_sunspringcarp.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_98_talbuk.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_98_talbuk.jpg new file mode 100644 index 0000000..77a8bb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_98_talbuk.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_99.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_99.jpg new file mode 100644 index 0000000..0f95b83 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_99.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_dimsum.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_dimsum.jpg new file mode 100644 index 0000000..52621fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_dimsum.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_wheat_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_wheat_01.jpg new file mode 100644 index 0000000..2eae5e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_wheat_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_food_wheat_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_food_wheat_02.jpg new file mode 100644 index 0000000..2fe04b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_food_wheat_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_foot_centaur.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_foot_centaur.jpg new file mode 100644 index 0000000..889c272 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_foot_centaur.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_foot_kodo.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_foot_kodo.jpg new file mode 100644 index 0000000..cb92507 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_foot_kodo.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_fork&knife.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_fork&knife.jpg new file mode 100644 index 0000000..c5d877a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_fork&knife.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_01.jpg new file mode 100644 index 0000000..4a369ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_02.jpg new file mode 100644 index 0000000..6ba3915 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_03.jpg new file mode 100644 index 0000000..98460f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_04.jpg new file mode 100644 index 0000000..81da2a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_05.jpg new file mode 100644 index 0000000..84ebb01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_06.jpg new file mode 100644 index 0000000..cfa6e21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_07.jpg new file mode 100644 index 0000000..d3d73fb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gear_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gear_08.jpg new file mode 100644 index 0000000..9724146 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_01.jpg new file mode 100644 index 0000000..531a1a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_02.jpg new file mode 100644 index 0000000..65d5b34 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_03.jpg new file mode 100644 index 0000000..a01bb87 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_01.jpg new file mode 100644 index 0000000..6d41bbe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_02.jpg new file mode 100644 index 0000000..1f7d76a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_03.jpg new file mode 100644 index 0000000..c07eca9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethyst_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethystrough_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethystrough_01.jpg new file mode 100644 index 0000000..0256aee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_amethystrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_01.jpg new file mode 100644 index 0000000..968e31e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_02.jpg new file mode 100644 index 0000000..d1570e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_03.jpg new file mode 100644 index 0000000..742e599 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_azuredraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_01.jpg new file mode 100644 index 0000000..d40ef6b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_02.jpg new file mode 100644 index 0000000..682b27d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_03.jpg new file mode 100644 index 0000000..5b428ef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodgem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_01.jpg new file mode 100644 index 0000000..0355a4b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_02.jpg new file mode 100644 index 0000000..dff4bc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_03.jpg new file mode 100644 index 0000000..927bb12 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_bloodstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_01.jpg new file mode 100644 index 0000000..ee1a97a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_02.jpg new file mode 100644 index 0000000..a7ab6cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_03.jpg new file mode 100644 index 0000000..5aeb346 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystalcut_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystalcut_01.jpg new file mode 100644 index 0000000..a91ee8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_crystalcut_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_01.jpg new file mode 100644 index 0000000..7ba8452 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_02.jpg new file mode 100644 index 0000000..e9b0570 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_03.jpg new file mode 100644 index 0000000..4427e5d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_deepperidot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_01.jpg new file mode 100644 index 0000000..d001475 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_02.jpg new file mode 100644 index 0000000..f470363 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_03.jpg new file mode 100644 index 0000000..9aff742 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_04.jpg new file mode 100644 index 0000000..eb40972 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_05.jpg new file mode 100644 index 0000000..1dd7b1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_06.jpg new file mode 100644 index 0000000..72a7f7a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_07.jpg new file mode 100644 index 0000000..4e153b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_diamond_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_01.jpg new file mode 100644 index 0000000..0256aee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_02.jpg new file mode 100644 index 0000000..7281732 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_03.jpg new file mode 100644 index 0000000..3970ef9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ebondraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_01.jpg new file mode 100644 index 0000000..d5ac58f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_02.jpg new file mode 100644 index 0000000..8a12e84 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_03.jpg new file mode 100644 index 0000000..047259b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emerald_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_emeraldrough_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emeraldrough_01.jpg new file mode 100644 index 0000000..b101598 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emeraldrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_emeraldrough_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emeraldrough_02.jpg new file mode 100644 index 0000000..a05f06f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_emeraldrough_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_01.jpg new file mode 100644 index 0000000..c1af1d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_02.jpg new file mode 100644 index 0000000..8f5f9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_03.jpg new file mode 100644 index 0000000..e28ff65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_flamespessarite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_01.jpg new file mode 100644 index 0000000..0a290f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_02.jpg new file mode 100644 index 0000000..f634a3d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_03.jpg new file mode 100644 index 0000000..aa70abf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_goldendraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_lionseye_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_lionseye_01.jpg new file mode 100644 index 0000000..608dcf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_01.jpg new file mode 100644 index 0000000..47b77e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_02.jpg new file mode 100644 index 0000000..a413690 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_03.jpg new file mode 100644 index 0000000..2b06e87 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_opalrough_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opalrough_01.jpg new file mode 100644 index 0000000..55f5cc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_opalrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_01.jpg new file mode 100644 index 0000000..c523e41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_02.jpg new file mode 100644 index 0000000..a028ba0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_03.jpg new file mode 100644 index 0000000..db66e0b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_04.jpg new file mode 100644 index 0000000..23921de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_05.jpg new file mode 100644 index 0000000..2259f65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_06.jpg new file mode 100644 index 0000000..82fb0d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_07.jpg new file mode 100644 index 0000000..a9cbcd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_08.jpg new file mode 100644 index 0000000..bc55ff3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_pearl_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_01.jpg new file mode 100644 index 0000000..b2dc65e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_02.jpg new file mode 100644 index 0000000..12302d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_03.jpg new file mode 100644 index 0000000..0810fcc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_ruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_01.jpg new file mode 100644 index 0000000..cf3a131 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_02.jpg new file mode 100644 index 0000000..6a50b7d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_03.jpg new file mode 100644 index 0000000..16c3d03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_sapphire_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_stone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_stone_01.jpg new file mode 100644 index 0000000..23116b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_01.jpg new file mode 100644 index 0000000..99245ef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_02.jpg new file mode 100644 index 0000000..e0d5365 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_03.jpg new file mode 100644 index 0000000..cc55a06 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_topaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_variety_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_variety_01.jpg new file mode 100644 index 0000000..524e8b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_variety_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gem_variety_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gem_variety_02.jpg new file mode 100644 index 0000000..40e1d71 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gem_variety_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gift_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gift_01.jpg new file mode 100644 index 0000000..50b8342 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gift_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gift_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gift_02.jpg new file mode 100644 index 0000000..87d6427 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gift_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gift_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gift_03.jpg new file mode 100644 index 0000000..f4d99d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gift_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gift_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gift_04.jpg new file mode 100644 index 0000000..5e6a1f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gift_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_gift_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_gift_05.jpg new file mode 100644 index 0000000..93052a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_gift_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_01.jpg new file mode 100644 index 0000000..168d069 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_02.jpg new file mode 100644 index 0000000..52b66cf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_03.jpg new file mode 100644 index 0000000..ee2f9d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_giftwrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_grouplooking.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_grouplooking.jpg new file mode 100644 index 0000000..14b95ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_grouplooking.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_groupneedmore.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_groupneedmore.jpg new file mode 100644 index 0000000..e071077 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_groupneedmore.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_02.jpg new file mode 100644 index 0000000..bf10f20 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_centaur_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_centaur_01.jpg new file mode 100644 index 0000000..61aac03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_centaur_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_01.jpg new file mode 100644 index 0000000..a8f3d62 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_black.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_black.jpg new file mode 100644 index 0000000..51b59e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_black.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_blue.jpg new file mode 100644 index 0000000..bdb6c87 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_bronze.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_bronze.jpg new file mode 100644 index 0000000..3f0ab94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_green.jpg new file mode 100644 index 0000000..61a7468 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_red.jpg new file mode 100644 index 0000000..0e6d284 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dragon_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dwarf_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dwarf_01.jpg new file mode 100644 index 0000000..e8a50e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dwarf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_dwarf_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_dwarf_02.jpg new file mode 100644 index 0000000..324b231 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_dwarf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_elf_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_elf_01.jpg new file mode 100644 index 0000000..ad1a1d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_elf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_elf_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_elf_02.jpg new file mode 100644 index 0000000..9755635 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_elf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_gnoll_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_gnoll_01.jpg new file mode 100644 index 0000000..601a13f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_gnoll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_gnome_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_gnome_01.jpg new file mode 100644 index 0000000..a467c1b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_gnome_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_gnome_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_gnome_02.jpg new file mode 100644 index 0000000..a68719f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_gnome_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_human_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_human_01.jpg new file mode 100644 index 0000000..e672e73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_human_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_human_02.jpg new file mode 100644 index 0000000..4d8761a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_kobold_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_kobold_01.jpg new file mode 100644 index 0000000..9407ce1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_kobold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_murloc_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_murloc_01.jpg new file mode 100644 index 0000000..f5da38c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_murloc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_orc_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_orc_01.jpg new file mode 100644 index 0000000..140bada Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_orc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_orc_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_orc_02.jpg new file mode 100644 index 0000000..901fd68 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_orc_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_quillboar_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_quillboar_01.jpg new file mode 100644 index 0000000..5b05c0b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_quillboar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_scourge_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_scourge_01.jpg new file mode 100644 index 0000000..4a60122 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_scourge_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_tauren_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_tauren_01.jpg new file mode 100644 index 0000000..32503d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_tauren_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_tauren_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_tauren_02.jpg new file mode 100644 index 0000000..57c695f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_tauren_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_tiger_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_tiger_01.jpg new file mode 100644 index 0000000..1679c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_tiger_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_troll_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_troll_01.jpg new file mode 100644 index 0000000..d4a258c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_troll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_troll_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_troll_02.jpg new file mode 100644 index 0000000..18d644c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_troll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_undead_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_undead_01.jpg new file mode 100644 index 0000000..ff57403 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_undead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_head_undead_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_head_undead_02.jpg new file mode 100644 index 0000000..bff6e04 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_head_undead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_01.jpg new file mode 100644 index 0000000..2df1948 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_02.jpg new file mode 100644 index 0000000..160ee35 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_03.jpg new file mode 100644 index 0000000..e8b9189 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_04.jpg new file mode 100644 index 0000000..aef4a10 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_05.jpg new file mode 100644 index 0000000..5efec90 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_06.jpg new file mode 100644 index 0000000..5a6fb22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_07.jpg new file mode 100644 index 0000000..76e9e77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_08.jpg new file mode 100644 index 0000000..7777740 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_09.jpg new file mode 100644 index 0000000..bf7e504 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_10.jpg new file mode 100644 index 0000000..2a9c6a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_11.jpg new file mode 100644 index 0000000..a19efc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_11a.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_11a.jpg new file mode 100644 index 0000000..38a520b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_11a.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_12.jpg new file mode 100644 index 0000000..3eb712b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_13.jpg new file mode 100644 index 0000000..98f1180 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_14.jpg new file mode 100644 index 0000000..f77f57b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_15.jpg new file mode 100644 index 0000000..1ad47b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_16.jpg new file mode 100644 index 0000000..8839ee7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_17.jpg new file mode 100644 index 0000000..48303fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_18.jpg new file mode 100644 index 0000000..653429b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_19.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_19.jpg new file mode 100644 index 0000000..7d9a3ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_ancientlichen.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_ancientlichen.jpg new file mode 100644 index 0000000..26f3714 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_ancientlichen.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_blacklotus.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_blacklotus.jpg new file mode 100644 index 0000000..e839aeb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_blacklotus.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_dreamfoil.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_dreamfoil.jpg new file mode 100644 index 0000000..1ae6384 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_dreamfoil.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_dreamingglory.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_dreamingglory.jpg new file mode 100644 index 0000000..8ce9194 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_dreamingglory.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_felblossom.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_felblossom.jpg new file mode 100644 index 0000000..ec67150 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_felblossom.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_fellotus.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_fellotus.jpg new file mode 100644 index 0000000..875a5dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_fellotus.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_felweed.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_felweed.jpg new file mode 100644 index 0000000..37eb4dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_felweed.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_flamecap.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_flamecap.jpg new file mode 100644 index 0000000..efda09e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_flamecap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_icecap.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_icecap.jpg new file mode 100644 index 0000000..8044e68 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_icecap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_manathistle.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_manathistle.jpg new file mode 100644 index 0000000..1d80876 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_manathistle.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_mountainsilversage.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_mountainsilversage.jpg new file mode 100644 index 0000000..c477c69 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_mountainsilversage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_netherbloom.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_netherbloom.jpg new file mode 100644 index 0000000..d3a4b69 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_netherbloom.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_nightmareseed.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_nightmareseed.jpg new file mode 100644 index 0000000..74c6630 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_nightmareseed.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_nightmarevine.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_nightmarevine.jpg new file mode 100644 index 0000000..e883728 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_nightmarevine.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_plaguebloom.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_plaguebloom.jpg new file mode 100644 index 0000000..193e6f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_plaguebloom.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_ragveil.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_ragveil.jpg new file mode 100644 index 0000000..e3f73e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_ragveil.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_sansamroot.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_sansamroot.jpg new file mode 100644 index 0000000..3b41283 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_sansamroot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_herb_terrocone.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_herb_terrocone.jpg new file mode 100644 index 0000000..fb2a43d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_herb_terrocone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_hook_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_hook_01.jpg new file mode 100644 index 0000000..539eeee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_hook_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_horn_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_horn_01.jpg new file mode 100644 index 0000000..3d7e1ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_horn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_horn_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_horn_02.jpg new file mode 100644 index 0000000..331e534 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_horn_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_horn_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_horn_03.jpg new file mode 100644 index 0000000..f4cc08c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_horn_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_idol_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_idol_01.jpg new file mode 100644 index 0000000..0786ef0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_idol_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_idol_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_idol_02.jpg new file mode 100644 index 0000000..4dffd4d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_idol_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_idol_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_idol_03.jpg new file mode 100644 index 0000000..57ee4d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_idol_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_idol_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_idol_04.jpg new file mode 100644 index 0000000..f344dfa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_idol_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_idol_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_idol_05.jpg new file mode 100644 index 0000000..9ebfc80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_idol_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_01.jpg new file mode 100644 index 0000000..17b8de8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_02.jpg new file mode 100644 index 0000000..53c5e70 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_03.jpg new file mode 100644 index 0000000..d9f127c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_04.jpg new file mode 100644 index 0000000..9ef95d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_05.jpg new file mode 100644 index 0000000..b416d05 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_06.jpg new file mode 100644 index 0000000..f211894 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_07.jpg new file mode 100644 index 0000000..5c290e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_08.jpg new file mode 100644 index 0000000..74b6b76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_09.jpg new file mode 100644 index 0000000..0c5feac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_10.jpg new file mode 100644 index 0000000..3818ecd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_11.jpg new file mode 100644 index 0000000..cabf68f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_12.jpg new file mode 100644 index 0000000..1384995 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_13.jpg new file mode 100644 index 0000000..44e1d30 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_key_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_key_14.jpg new file mode 100644 index 0000000..69b5c58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_key_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_lantern_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_lantern_01.jpg new file mode 100644 index 0000000..d84eeb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_lantern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_01.jpg new file mode 100644 index 0000000..a92f438 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_02.jpg new file mode 100644 index 0000000..4393929 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_03.jpg new file mode 100644 index 0000000..fdae6e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_04.jpg new file mode 100644 index 0000000..27b568b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_05.jpg new file mode 100644 index 0000000..e716c30 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_06.jpg new file mode 100644 index 0000000..91cede8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_07.jpg new file mode 100644 index 0000000..0544360 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_08.jpg new file mode 100644 index 0000000..cf97457 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_09.jpg new file mode 100644 index 0000000..03ee65e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_10.jpg new file mode 100644 index 0000000..642d86e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_11.jpg new file mode 100644 index 0000000..9ce4fa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_12.jpg new file mode 100644 index 0000000..13ebfde Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_13.jpg new file mode 100644 index 0000000..1ed679a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_14.jpg new file mode 100644 index 0000000..28d0b16 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_leatherscrap_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_luckymoneyenvelope.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_luckymoneyenvelope.jpg new file mode 100644 index 0000000..c19171d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_luckymoneyenvelope.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_map_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_map_01.jpg new file mode 100644 index 0000000..5f55df7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_map_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_blue.jpg new file mode 100644 index 0000000..0e5e125 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_green.jpg new file mode 100644 index 0000000..5f92cbf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_purple.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_purple.jpg new file mode 100644 index 0000000..f8f0fac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_red.jpg new file mode 100644 index 0000000..972e0db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_white.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_white.jpg new file mode 100644 index 0000000..a34a879 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_white.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_yellow.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_yellow.jpg new file mode 100644 index 0000000..5000dd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelarge_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_blue.jpg new file mode 100644 index 0000000..8e1fd2c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_green.jpg new file mode 100644 index 0000000..64d505a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_purple.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_purple.jpg new file mode 100644 index 0000000..356f8c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_red.jpg new file mode 100644 index 0000000..b91edb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_white.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_white.jpg new file mode 100644 index 0000000..96a9bab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_yellow.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_yellow.jpg new file mode 100644 index 0000000..6a9045f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilelargecluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_blue.jpg new file mode 100644 index 0000000..fcaa4dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_green.jpg new file mode 100644 index 0000000..fda7c39 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_purple.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_purple.jpg new file mode 100644 index 0000000..f003f9a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_red.jpg new file mode 100644 index 0000000..ee03776 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_white.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_white.jpg new file mode 100644 index 0000000..eea9f67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_white.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_yellow.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_yellow.jpg new file mode 100644 index 0000000..f4022a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmall_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_blue.jpg new file mode 100644 index 0000000..5f022a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_green.jpg new file mode 100644 index 0000000..1f67300 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_purple.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_purple.jpg new file mode 100644 index 0000000..54fae76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_red.jpg new file mode 100644 index 0000000..b57634b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_white.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_white.jpg new file mode 100644 index 0000000..561fd79 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_yellow.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_yellow.jpg new file mode 100644 index 0000000..c41b19c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_missilesmallcluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_01.jpg new file mode 100644 index 0000000..3656981 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_02.jpg new file mode 100644 index 0000000..804042a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_03.jpg new file mode 100644 index 0000000..e629aa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_04.jpg new file mode 100644 index 0000000..6a99e78 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterclaw_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterfang_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterfang_01.jpg new file mode 100644 index 0000000..ce80f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterfang_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_01.jpg new file mode 100644 index 0000000..3a2d932 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_02.jpg new file mode 100644 index 0000000..fa50095 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_03.jpg new file mode 100644 index 0000000..a1d59a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_04.jpg new file mode 100644 index 0000000..0d100f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterhead_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_01.jpg new file mode 100644 index 0000000..6a8bc6b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_02.jpg new file mode 100644 index 0000000..4885b41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_03.jpg new file mode 100644 index 0000000..d2f8248 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_04.jpg new file mode 100644 index 0000000..144afa3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_05.jpg new file mode 100644 index 0000000..0f79129 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_06.jpg new file mode 100644 index 0000000..32d6e9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_07.jpg new file mode 100644 index 0000000..b959a4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_08.jpg new file mode 100644 index 0000000..fa2f4c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_09.jpg new file mode 100644 index 0000000..13a4544 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_10.jpg new file mode 100644 index 0000000..b99c690 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_11.jpg new file mode 100644 index 0000000..3240c37 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_12.jpg new file mode 100644 index 0000000..05e5482 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_13.jpg new file mode 100644 index 0000000..bef8836 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_14.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_14.jpg new file mode 100644 index 0000000..806a1af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_15.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_15.jpg new file mode 100644 index 0000000..f8f5c7d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_16.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_16.jpg new file mode 100644 index 0000000..6a86ad6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_17.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_17.jpg new file mode 100644 index 0000000..86795df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_18.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_18.jpg new file mode 100644 index 0000000..12e3bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterscales_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monsterspidercarapace_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monsterspidercarapace_01.jpg new file mode 100644 index 0000000..b64eb6d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monsterspidercarapace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_01.jpg new file mode 100644 index 0000000..598413d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_02.jpg new file mode 100644 index 0000000..c2f628f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_03.jpg new file mode 100644 index 0000000..1b37206 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_monstertail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_net_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_net_01.jpg new file mode 100644 index 0000000..987bafe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_net_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_noose_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_noose_01.jpg new file mode 100644 index 0000000..7580b94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_noose_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_note_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_note_01.jpg new file mode 100644 index 0000000..c122965 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_note_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_note_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_note_02.jpg new file mode 100644 index 0000000..de909ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_note_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_note_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_note_03.jpg new file mode 100644 index 0000000..16e1110 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_note_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_note_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_note_04.jpg new file mode 100644 index 0000000..95ddb9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_note_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_note_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_note_05.jpg new file mode 100644 index 0000000..7440985 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_note_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_note_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_note_06.jpg new file mode 100644 index 0000000..1b5f2c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_note_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_orb_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_orb_01.jpg new file mode 100644 index 0000000..3215a82 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_orb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_orb_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_orb_02.jpg new file mode 100644 index 0000000..0a0849b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_orb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_orb_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_orb_03.jpg new file mode 100644 index 0000000..3fd063c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_orb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_orb_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_orb_04.jpg new file mode 100644 index 0000000..9cb07a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_orb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_orb_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_orb_05.jpg new file mode 100644 index 0000000..f76c2df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_orb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_organ_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_organ_01.jpg new file mode 100644 index 0000000..aba7fc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_organ_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_organ_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_organ_02.jpg new file mode 100644 index 0000000..c35eb3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_organ_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_organ_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_organ_03.jpg new file mode 100644 index 0000000..3212b09 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_organ_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_organ_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_organ_04.jpg new file mode 100644 index 0000000..08c842b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_organ_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_organ_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_organ_05.jpg new file mode 100644 index 0000000..6782632 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_organ_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_organ_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_organ_06.jpg new file mode 100644 index 0000000..6dc25cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_organ_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ornatebox.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ornatebox.jpg new file mode 100644 index 0000000..790df11 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ornatebox.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_01.jpg new file mode 100644 index 0000000..73f4b96 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_02.jpg new file mode 100644 index 0000000..7f30e5c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_03.jpg new file mode 100644 index 0000000..11e78bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_04.jpg new file mode 100644 index 0000000..df50779 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_05.jpg new file mode 100644 index 0000000..473b130 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_06.jpg new file mode 100644 index 0000000..5d9d080 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_01.jpg new file mode 100644 index 0000000..8c75bcc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_02.jpg new file mode 100644 index 0000000..f36c93c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_03.jpg new file mode 100644 index 0000000..bda8a4e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_01.jpg new file mode 100644 index 0000000..03974a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_02.jpg new file mode 100644 index 0000000..7faf0d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_03.jpg new file mode 100644 index 0000000..9f4ece3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_04.jpg new file mode 100644 index 0000000..70fc639 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_05.jpg new file mode 100644 index 0000000..d6176b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_bear_ruin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_01.jpg new file mode 100644 index 0000000..2ce7d1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_02.jpg new file mode 100644 index 0000000..0104125 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_01.jpg new file mode 100644 index 0000000..b93feb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_02.jpg new file mode 100644 index 0000000..f97b4cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_03.jpg new file mode 100644 index 0000000..56915c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_boar_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_01.jpg new file mode 100644 index 0000000..6eb9de8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_02.jpg new file mode 100644 index 0000000..92e68fc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_01.jpg new file mode 100644 index 0000000..0bfc938 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_02.jpg new file mode 100644 index 0000000..1c5615d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_03.jpg new file mode 100644 index 0000000..be4a62b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_04.jpg new file mode 100644 index 0000000..23673f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pelt_wolf_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_petbiscuit_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_petbiscuit_01.jpg new file mode 100644 index 0000000..e85ae58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_petbiscuit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pheonixpet_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pheonixpet_01.jpg new file mode 100644 index 0000000..3b2e89e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pheonixpet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pipe_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pipe_01.jpg new file mode 100644 index 0000000..93a29f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_platnumdisks.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_platnumdisks.jpg new file mode 100644 index 0000000..0fffc10 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_platnumdisks.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_01.jpg new file mode 100644 index 0000000..ffe921c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_02.jpg new file mode 100644 index 0000000..6363c34 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_03.jpg new file mode 100644 index 0000000..7e1e3ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_pocketwatch_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_adamantite.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_adamantite.jpg new file mode 100644 index 0000000..4cb430c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_black.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_black.jpg new file mode 100644 index 0000000..072a035 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_black.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_blue.jpg new file mode 100644 index 0000000..4b79b80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_copper.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_copper.jpg new file mode 100644 index 0000000..5b9c126 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_copper.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_feliron.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_feliron.jpg new file mode 100644 index 0000000..5815829 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_green.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_green.jpg new file mode 100644 index 0000000..989b0a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_green.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_iron.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_iron.jpg new file mode 100644 index 0000000..f70cf1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_mithril.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_mithril.jpg new file mode 100644 index 0000000..bdd6e2c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_purple.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_purple.jpg new file mode 100644 index 0000000..36d27a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_thorium.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_thorium.jpg new file mode 100644 index 0000000..cc14870 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_powder_tin.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_powder_tin.jpg new file mode 100644 index 0000000..bf60ae1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_powder_tin.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_blue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_blue.jpg new file mode 100644 index 0000000..92df6be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_prismatic.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_prismatic.jpg new file mode 100644 index 0000000..3b8dbcb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_prismatic.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_red.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_red.jpg new file mode 100644 index 0000000..7b59f98 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_red.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_white.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_white.jpg new file mode 100644 index 0000000..7094d5b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_white.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_yellow.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_yellow.jpg new file mode 100644 index 0000000..4e10f78 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_punchcards_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_01.jpg new file mode 100644 index 0000000..e289ea3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_02.jpg new file mode 100644 index 0000000..5fbb3d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_03.jpg new file mode 100644 index 0000000..0f246f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_04.jpg new file mode 100644 index 0000000..e563c31 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_05.jpg new file mode 100644 index 0000000..163d55c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_qirajicrystal_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_questionmark.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_questionmark.jpg new file mode 100644 index 0000000..f22c5e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_questionmark.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_01.jpg new file mode 100644 index 0000000..3c2b737 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_02.jpg new file mode 100644 index 0000000..a8cafdb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_03.jpg new file mode 100644 index 0000000..9439472 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_04.jpg new file mode 100644 index 0000000..2eb4306 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_05.jpg new file mode 100644 index 0000000..5b261b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_06.jpg new file mode 100644 index 0000000..6948353 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_07.jpg new file mode 100644 index 0000000..26ac669 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_08.jpg new file mode 100644 index 0000000..5bcd010 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_09.jpg new file mode 100644 index 0000000..9ac7614 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_quiver_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_10.jpg new file mode 100644 index 0000000..a62a3db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_quiver_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ribbon_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ribbon_01.jpg new file mode 100644 index 0000000..edc7501 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ribbon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_root_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_root_01.jpg new file mode 100644 index 0000000..49cd22b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_root_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_root_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_root_02.jpg new file mode 100644 index 0000000..e2659c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_root_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_01.jpg new file mode 100644 index 0000000..dbdc8de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_02.jpg new file mode 100644 index 0000000..0bd6113 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_03.jpg new file mode 100644 index 0000000..83a4f93 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_04.jpg new file mode 100644 index 0000000..421f315 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_05.jpg new file mode 100644 index 0000000..6e1650b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_06.jpg new file mode 100644 index 0000000..d2afa94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_07.jpg new file mode 100644 index 0000000..c98be97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_08.jpg new file mode 100644 index 0000000..441b129 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_09.jpg new file mode 100644 index 0000000..56a2076 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_10.jpg new file mode 100644 index 0000000..1b0a0c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_11.jpg new file mode 100644 index 0000000..4bf7481 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_12.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_12.jpg new file mode 100644 index 0000000..9333963 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_rune_13.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_rune_13.jpg new file mode 100644 index 0000000..67af0bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_rune_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_screwdriver_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_screwdriver_01.jpg new file mode 100644 index 0000000..91969d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_screwdriver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_screwdriver_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_screwdriver_02.jpg new file mode 100644 index 0000000..1bd3ec3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_screwdriver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_shadowegg.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_shadowegg.jpg new file mode 100644 index 0000000..c2bfdb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_shadowegg.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_shell_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_shell_01.jpg new file mode 100644 index 0000000..d67e731 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_shell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_shell_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_shell_02.jpg new file mode 100644 index 0000000..8af9b17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_shell_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_shell_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_shell_03.jpg new file mode 100644 index 0000000..01c9c2a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_shell_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_shell_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_shell_04.jpg new file mode 100644 index 0000000..70da4f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_shell_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_shovel_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_shovel_01.jpg new file mode 100644 index 0000000..6aff8ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_shovel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_shovel_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_shovel_02.jpg new file mode 100644 index 0000000..8016ad0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_shovel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_slime_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_slime_01.jpg new file mode 100644 index 0000000..62ff385 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_slime_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_spineleaf_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_spineleaf_01.jpg new file mode 100644 index 0000000..827122f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_spineleaf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_01.jpg new file mode 100644 index 0000000..f0424c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_02.jpg new file mode 100644 index 0000000..5509b97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_03.jpg new file mode 100644 index 0000000..f4021c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_spyglass_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_01.jpg new file mode 100644 index 0000000..4dc38cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_02.jpg new file mode 100644 index 0000000..5e6f276 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_03.jpg new file mode 100644 index 0000000..a5317d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_04.jpg new file mode 100644 index 0000000..d38af56 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_05.jpg new file mode 100644 index 0000000..480c5ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_06.jpg new file mode 100644 index 0000000..a5fe8c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_07.jpg new file mode 100644 index 0000000..54df95a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_08.jpg new file mode 100644 index 0000000..633ec1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_09.jpg new file mode 100644 index 0000000..ea38815 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_statue_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_statue_10.jpg new file mode 100644 index 0000000..0b2f6ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_statue_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_01.jpg new file mode 100644 index 0000000..23001fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_02.jpg new file mode 100644 index 0000000..3b797cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_03.jpg new file mode 100644 index 0000000..ce18c1b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_04.jpg new file mode 100644 index 0000000..83d2a86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_05.jpg new file mode 100644 index 0000000..a90fa7b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_06.jpg new file mode 100644 index 0000000..ca534a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_07.jpg new file mode 100644 index 0000000..ccf2489 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_08.jpg new file mode 100644 index 0000000..0e748f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_09.jpg new file mode 100644 index 0000000..af24c91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_10.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_10.jpg new file mode 100644 index 0000000..04a15ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_11.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_11.jpg new file mode 100644 index 0000000..c7d054f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_stonetablet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierblue.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierblue.jpg new file mode 100644 index 0000000..9fadb77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierblue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_braziergreen.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_braziergreen.jpg new file mode 100644 index 0000000..b628050 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_braziergreen.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierorange.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierorange.jpg new file mode 100644 index 0000000..036c3a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierorange.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierred.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierred.jpg new file mode 100644 index 0000000..1f07560 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_summerfest_brazierred.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_surgeonglove_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_surgeonglove_01.jpg new file mode 100644 index 0000000..091730e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_surgeonglove_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_symbolofkings_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_symbolofkings_01.jpg new file mode 100644 index 0000000..d7786c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_symbolofkings_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_01.jpg new file mode 100644 index 0000000..2582fea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_02.jpg new file mode 100644 index 0000000..dd5c3f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_03.jpg new file mode 100644 index 0000000..fa498b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_04.jpg new file mode 100644 index 0000000..a575d5f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_tabardpvp_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_tabardsummer01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_tabardsummer01.jpg new file mode 100644 index 0000000..731c567 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_tabardsummer01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_tabardsummer02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_tabardsummer02.jpg new file mode 100644 index 0000000..b7a2e7c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_tabardsummer02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_thegoldencheep.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_thegoldencheep.jpg new file mode 100644 index 0000000..7d8941a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_thegoldencheep.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_thread_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_thread_01.jpg new file mode 100644 index 0000000..e1a4d9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_thread_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_throwingball_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_throwingball_01.jpg new file mode 100644 index 0000000..0ae546d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_throwingball_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_darkmoon_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_darkmoon_01.jpg new file mode 100644 index 0000000..455b222 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_darkmoon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_beasts_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_beasts_01.jpg new file mode 100644 index 0000000..c22cde4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_beasts_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_blessings.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_blessings.jpg new file mode 100644 index 0000000..f7253ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_blessings.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_bluedragon_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_bluedragon_01.jpg new file mode 100644 index 0000000..cc742cd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_bluedragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_crusade.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_crusade.jpg new file mode 100644 index 0000000..e2f4a00 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_elemental_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_elemental_01.jpg new file mode 100644 index 0000000..3414d17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_elemental_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_furies.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_furies.jpg new file mode 100644 index 0000000..db6202d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_furies.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_heroism_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_heroism_01.jpg new file mode 100644 index 0000000..1b44c88 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_heroism_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_lunacy.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_lunacy.jpg new file mode 100644 index 0000000..55e4161 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_lunacy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_madness.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_madness.jpg new file mode 100644 index 0000000..4ccf62e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_madness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_maelstrom_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_maelstrom_01.jpg new file mode 100644 index 0000000..c46b051 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_maelstrom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_portal_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_portal_01.jpg new file mode 100644 index 0000000..a1937ce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_portal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_stack_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_stack_01.jpg new file mode 100644 index 0000000..86b1325 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_stack_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_storms.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_storms.jpg new file mode 100644 index 0000000..b436b10 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_storms.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_twistingnether_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_twistingnether_01.jpg new file mode 100644 index 0000000..4560dda Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_twistingnether_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_vengeance.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_vengeance.jpg new file mode 100644 index 0000000..2990219 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_vengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_warlord_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_warlord_01.jpg new file mode 100644 index 0000000..ef193a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_warlord_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_wrath.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_wrath.jpg new file mode 100644 index 0000000..1b3f328 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_ticket_tarot_wrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn.jpg new file mode 100644 index 0000000..2687ba4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn2.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn2.jpg new file mode 100644 index 0000000..64754ed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn2.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn3.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn3.jpg new file mode 100644 index 0000000..4c35064 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_token_argentdawn3.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_token_honorhold.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_token_honorhold.jpg new file mode 100644 index 0000000..8817361 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_token_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_token_scarletcrusade.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_token_scarletcrusade.jpg new file mode 100644 index 0000000..3f76bfb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_token_scarletcrusade.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_token_thrallmar.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_token_thrallmar.jpg new file mode 100644 index 0000000..19d2cbf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_token_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_01.jpg new file mode 100644 index 0000000..e2c2dff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_02.jpg new file mode 100644 index 0000000..32ae510 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_03.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_03.jpg new file mode 100644 index 0000000..aeb490f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_04.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_04.jpg new file mode 100644 index 0000000..c55fe0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_05.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_05.jpg new file mode 100644 index 0000000..aa8eb15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_06.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_06.jpg new file mode 100644 index 0000000..d51ee12 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_07.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_07.jpg new file mode 100644 index 0000000..180b9c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_08.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_08.jpg new file mode 100644 index 0000000..1f66dd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_toy_09.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_toy_09.jpg new file mode 100644 index 0000000..5b71058 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_toy_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_urn_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_urn_01.jpg new file mode 100644 index 0000000..6ac4d81 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_urn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_chain.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_chain.jpg new file mode 100644 index 0000000..24955cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_cloth.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_cloth.jpg new file mode 100644 index 0000000..8da6605 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_cloth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_leather.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_leather.jpg new file mode 100644 index 0000000..a20aaa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_leather.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_plate.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_plate.jpg new file mode 100644 index 0000000..67751d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_wartornscrap_plate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_weathermachine_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_weathermachine_01.jpg new file mode 100644 index 0000000..c17c4c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_weathermachine_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_wrench_01.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_wrench_01.jpg new file mode 100644 index 0000000..a72a5f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_wrench_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_misc_wrench_02.jpg b/other/AoWoW-master/images/icons/medium/inv_misc_wrench_02.jpg new file mode 100644 index 0000000..58f4745 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_misc_wrench_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_01.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_01.jpg new file mode 100644 index 0000000..69fc08d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_02.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_02.jpg new file mode 100644 index 0000000..0003130 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_03.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_03.jpg new file mode 100644 index 0000000..45db101 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_04.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_04.jpg new file mode 100644 index 0000000..28fbcfa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_05.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_05.jpg new file mode 100644 index 0000000..80cd97b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_06.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_06.jpg new file mode 100644 index 0000000..34aeef6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_07.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_07.jpg new file mode 100644 index 0000000..05efaed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_08.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_08.jpg new file mode 100644 index 0000000..5e3d0f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_09.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_09.jpg new file mode 100644 index 0000000..234f5d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_10.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_10.jpg new file mode 100644 index 0000000..91b0711 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_11.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_11.jpg new file mode 100644 index 0000000..427bda3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_12.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_12.jpg new file mode 100644 index 0000000..3b12738 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_mushroom_13.jpg b/other/AoWoW-master/images/icons/medium/inv_mushroom_13.jpg new file mode 100644 index 0000000..e4c1717 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_mushroom_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_musket_01.jpg b/other/AoWoW-master/images/icons/medium/inv_musket_01.jpg new file mode 100644 index 0000000..10f1ff1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_musket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_musket_02.jpg b/other/AoWoW-master/images/icons/medium/inv_musket_02.jpg new file mode 100644 index 0000000..f2c9c86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_musket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_musket_03.jpg b/other/AoWoW-master/images/icons/medium/inv_musket_03.jpg new file mode 100644 index 0000000..9e59b8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_musket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_musket_04.jpg b/other/AoWoW-master/images/icons/medium/inv_musket_04.jpg new file mode 100644 index 0000000..c3b23d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_musket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_netherwhelp.jpg b/other/AoWoW-master/images/icons/medium/inv_netherwhelp.jpg new file mode 100644 index 0000000..03f316a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_netherwhelp.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_blood_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_blood_01.jpg new file mode 100644 index 0000000..9712960 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_blood_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_blood_02.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_blood_02.jpg new file mode 100644 index 0000000..5327bc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_blood_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_draenei_a_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_draenei_a_01.jpg new file mode 100644 index 0000000..e6ae48b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_draenei_a_02.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_draenei_a_02.jpg new file mode 100644 index 0000000..22668ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_hyjal_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_hyjal_d_01.jpg new file mode 100644 index 0000000..ab038ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_hyjal_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_02.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_02.jpg new file mode 100644 index 0000000..da94aa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_03.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_03.jpg new file mode 100644 index 0000000..7c042c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_04.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_04.jpg new file mode 100644 index 0000000..8dd5dbb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_d_01.jpg new file mode 100644 index 0000000..94abd52 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_01.jpg new file mode 100644 index 0000000..b502da9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_02.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_02.jpg new file mode 100644 index 0000000..c3393bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03blue.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03blue.jpg new file mode 100644 index 0000000..31c066f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03blue.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03orange.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03orange.jpg new file mode 100644 index 0000000..cb3eead Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03orange.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03white.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03white.jpg new file mode 100644 index 0000000..0165142 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_outlandraid_03white.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_stratholme_a_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_stratholme_a_01.jpg new file mode 100644 index 0000000..4916308 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_stratholme_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_stratholme_a_02.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_stratholme_a_02.jpg new file mode 100644 index 0000000..02c98de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_stratholme_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_sunwell_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_sunwell_d_01.jpg new file mode 100644 index 0000000..bbfe6ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_sunwell_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_sunwell_d_02.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_sunwell_d_02.jpg new file mode 100644 index 0000000..166c545 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_sunwell_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_zulaman_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_zulaman_d_01.jpg new file mode 100644 index 0000000..bd22f9a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_zulaman_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_offhand_zulaman_d_02.jpg b/other/AoWoW-master/images/icons/medium/inv_offhand_zulaman_d_02.jpg new file mode 100644 index 0000000..576b698 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_offhand_zulaman_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_adamantium.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_adamantium.jpg new file mode 100644 index 0000000..16b1304 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_adamantium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_adamantium_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_adamantium_01.jpg new file mode 100644 index 0000000..282e782 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_adamantium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_arcanite_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_arcanite_01.jpg new file mode 100644 index 0000000..faf51c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_arcanite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_arcanite_02.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_arcanite_02.jpg new file mode 100644 index 0000000..17a67f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_arcanite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_copper_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_copper_01.jpg new file mode 100644 index 0000000..5fb3394 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_copper_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_eternium.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_eternium.jpg new file mode 100644 index 0000000..7131294 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_ethernium_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_ethernium_01.jpg new file mode 100644 index 0000000..de66771 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_ethernium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_feliron.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_feliron.jpg new file mode 100644 index 0000000..1f00c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_feliron_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_feliron_01.jpg new file mode 100644 index 0000000..f3b1448 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_feliron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_gold_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_gold_01.jpg new file mode 100644 index 0000000..59c5f3b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_gold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_iron_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_iron_01.jpg new file mode 100644 index 0000000..2fa58e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_iron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_khorium.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_khorium.jpg new file mode 100644 index 0000000..bd9e42e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_khorium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_khorium_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_khorium_01.jpg new file mode 100644 index 0000000..3f420a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_khorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_mithril_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_mithril_01.jpg new file mode 100644 index 0000000..f9e97da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_mithril_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_mithril_02.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_mithril_02.jpg new file mode 100644 index 0000000..4e259ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_mithril_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_thorium_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_thorium_01.jpg new file mode 100644 index 0000000..99128e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_thorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_thorium_02.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_thorium_02.jpg new file mode 100644 index 0000000..7053c64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_thorium_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_tin_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_tin_01.jpg new file mode 100644 index 0000000..7bf499a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_tin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_ore_truesilver_01.jpg b/other/AoWoW-master/images/icons/medium/inv_ore_truesilver_01.jpg new file mode 100644 index 0000000..4697558 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_ore_truesilver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_01.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_01.jpg new file mode 100644 index 0000000..7f3a4b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_02.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_02.jpg new file mode 100644 index 0000000..38fdbea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_03.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_03.jpg new file mode 100644 index 0000000..5dc2a63 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_04.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_04.jpg new file mode 100644 index 0000000..56f8cea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_05.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_05.jpg new file mode 100644 index 0000000..ffcc9a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_06.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_06.jpg new file mode 100644 index 0000000..311f3bc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_07.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_07.jpg new file mode 100644 index 0000000..583c4e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_08.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_08.jpg new file mode 100644 index 0000000..c390c00 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_09.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_09.jpg new file mode 100644 index 0000000..612ccf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_10.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_10.jpg new file mode 100644 index 0000000..7a8feb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_11.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_11.jpg new file mode 100644 index 0000000..a6f7b09 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_12.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_12.jpg new file mode 100644 index 0000000..56aa024 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_13.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_13.jpg new file mode 100644 index 0000000..1fe197e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_14.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_14.jpg new file mode 100644 index 0000000..163f7e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_01.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_01.jpg new file mode 100644 index 0000000..e0b91d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_02.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_02.jpg new file mode 100644 index 0000000..6bcbc7e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_03.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_03.jpg new file mode 100644 index 0000000..f5f9943 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_04.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_04.jpg new file mode 100644 index 0000000..7cb1ef5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_05.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_05.jpg new file mode 100644 index 0000000..3d83d01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_06.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_06.jpg new file mode 100644 index 0000000..4d174ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_07.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_07.jpg new file mode 100644 index 0000000..20537eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_08.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_08.jpg new file mode 100644 index 0000000..c84fa76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_09.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_09.jpg new file mode 100644 index 0000000..115614f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_10.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_10.jpg new file mode 100644 index 0000000..226b4d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_11.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_11.jpg new file mode 100644 index 0000000..42de47c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_12.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_12.jpg new file mode 100644 index 0000000..d05d2f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_13.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_13.jpg new file mode 100644 index 0000000..5b8441f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_14.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_14.jpg new file mode 100644 index 0000000..772f184 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_15.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_15.jpg new file mode 100644 index 0000000..cfe960d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_16.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_16.jpg new file mode 100644 index 0000000..7303c66 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_17.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_17.jpg new file mode 100644 index 0000000..503c438 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_18.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_18.jpg new file mode 100644 index 0000000..1c4e8a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_19.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_19.jpg new file mode 100644 index 0000000..78f7f7f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_20.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_20.jpg new file mode 100644 index 0000000..5f9dd10 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_21.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_21.jpg new file mode 100644 index 0000000..02c8ec0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_22.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_22.jpg new file mode 100644 index 0000000..b81cf19 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_23.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_23.jpg new file mode 100644 index 0000000..2b4003b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_24.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_24.jpg new file mode 100644 index 0000000..2b179f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_25.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_25.jpg new file mode 100644 index 0000000..ce7c09c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_26.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_26.jpg new file mode 100644 index 0000000..50a0275 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_27.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_27.jpg new file mode 100644 index 0000000..f70c08a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_28.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_28.jpg new file mode 100644 index 0000000..d7bfecd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_cloth_29.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_29.jpg new file mode 100644 index 0000000..178be42 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_01.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_01.jpg new file mode 100644 index 0000000..453cf11 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_02.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_02.jpg new file mode 100644 index 0000000..29a4ba3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_03.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_03.jpg new file mode 100644 index 0000000..686ae76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_04.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_04.jpg new file mode 100644 index 0000000..9c6f5c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_05.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_05.jpg new file mode 100644 index 0000000..7f1338b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_06.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_06.jpg new file mode 100644 index 0000000..a453e8d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_07.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_07.jpg new file mode 100644 index 0000000..2d5a3b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_08.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_08.jpg new file mode 100644 index 0000000..17f076d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_09.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_09.jpg new file mode 100644 index 0000000..d7bea76 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_10.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_10.jpg new file mode 100644 index 0000000..8ec1a03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_11.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_11.jpg new file mode 100644 index 0000000..70547a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_12.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_12.jpg new file mode 100644 index 0000000..85808d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_13.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_13.jpg new file mode 100644 index 0000000..a06fb7e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_14.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_14.jpg new file mode 100644 index 0000000..16b4d3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_15.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_15.jpg new file mode 100644 index 0000000..74b022a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_16.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_16.jpg new file mode 100644 index 0000000..53a18a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_17.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_17.jpg new file mode 100644 index 0000000..695d228 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_18.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_18.jpg new file mode 100644 index 0000000..b3c88df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_19.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_19.jpg new file mode 100644 index 0000000..6ad5e44 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_20.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_20.jpg new file mode 100644 index 0000000..6cbadfc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_21.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_21.jpg new file mode 100644 index 0000000..4229233 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_22.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_22.jpg new file mode 100644 index 0000000..3de3e22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_23.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_23.jpg new file mode 100644 index 0000000..27b22e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_24.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_24.jpg new file mode 100644 index 0000000..46ecc2a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_25.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_25.jpg new file mode 100644 index 0000000..986f41a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_26.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_26.jpg new file mode 100644 index 0000000..7a2dbc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_leather_27.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_leather_27.jpg new file mode 100644 index 0000000..f54d03d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_leather_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_01.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_01.jpg new file mode 100644 index 0000000..845863b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_02.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_02.jpg new file mode 100644 index 0000000..9b26bd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_03.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_03.jpg new file mode 100644 index 0000000..9f62897 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_04.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_04.jpg new file mode 100644 index 0000000..9d1be16 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_05.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_05.jpg new file mode 100644 index 0000000..2faa36a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_06.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_06.jpg new file mode 100644 index 0000000..a6f6f61 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_07.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_07.jpg new file mode 100644 index 0000000..19cf3df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_08.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_08.jpg new file mode 100644 index 0000000..2550e1e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_09.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_09.jpg new file mode 100644 index 0000000..50f4c3f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_10.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_10.jpg new file mode 100644 index 0000000..04e0bc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_11.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_11.jpg new file mode 100644 index 0000000..23b83e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_12.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_12.jpg new file mode 100644 index 0000000..a403c9e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_13.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_13.jpg new file mode 100644 index 0000000..292625b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_14.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_14.jpg new file mode 100644 index 0000000..7506143 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_15.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_15.jpg new file mode 100644 index 0000000..8f39479 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_16.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_16.jpg new file mode 100644 index 0000000..8ea932f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_17.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_17.jpg new file mode 100644 index 0000000..54a855e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_18.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_18.jpg new file mode 100644 index 0000000..aac5dce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_19.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_19.jpg new file mode 100644 index 0000000..15d5b8f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_20.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_20.jpg new file mode 100644 index 0000000..4208a2e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_21.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_21.jpg new file mode 100644 index 0000000..c79bfdf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_24.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_24.jpg new file mode 100644 index 0000000..54ca7ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_25.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_25.jpg new file mode 100644 index 0000000..2289bca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_mail_26.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_mail_26.jpg new file mode 100644 index 0000000..028b8dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_mail_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_01.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_01.jpg new file mode 100644 index 0000000..e742caf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_02.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_02.jpg new file mode 100644 index 0000000..1c6ba2b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_03.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_03.jpg new file mode 100644 index 0000000..05f9770 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_04.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_04.jpg new file mode 100644 index 0000000..21e0fa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_05.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_05.jpg new file mode 100644 index 0000000..dd56508 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_06.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_06.jpg new file mode 100644 index 0000000..9fa04ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_07.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_07.jpg new file mode 100644 index 0000000..a1938fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_08.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_08.jpg new file mode 100644 index 0000000..6df72bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_09.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_09.jpg new file mode 100644 index 0000000..5a4a4a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_10.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_10.jpg new file mode 100644 index 0000000..91eebfb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_11.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_11.jpg new file mode 100644 index 0000000..58f388e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_12.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_12.jpg new file mode 100644 index 0000000..4e0ceea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_13.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_13.jpg new file mode 100644 index 0000000..b32e084 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_14.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_14.jpg new file mode 100644 index 0000000..ad2dae6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_15.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_15.jpg new file mode 100644 index 0000000..a474c01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_16.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_16.jpg new file mode 100644 index 0000000..2b3f39a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_17.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_17.jpg new file mode 100644 index 0000000..5d0bdd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_18.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_18.jpg new file mode 100644 index 0000000..06e4f29 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_19.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_19.jpg new file mode 100644 index 0000000..69fd5df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_20.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_20.jpg new file mode 100644 index 0000000..a6b8050 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_21.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_21.jpg new file mode 100644 index 0000000..60bcebc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_22.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_22.jpg new file mode 100644 index 0000000..81355b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_23.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_23.jpg new file mode 100644 index 0000000..628c384 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_24.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_24.jpg new file mode 100644 index 0000000..f043849 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_25.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_25.jpg new file mode 100644 index 0000000..46ee265 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_26.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_26.jpg new file mode 100644 index 0000000..06c065f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_27.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_27.jpg new file mode 100644 index 0000000..7136ec8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_28.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_28.jpg new file mode 100644 index 0000000..1fc1c15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_plate_29.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_plate_29.jpg new file mode 100644 index 0000000..50771f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_plate_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pants_wolf.jpg b/other/AoWoW-master/images/icons/medium/inv_pants_wolf.jpg new file mode 100644 index 0000000..7261158 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pants_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pick_01.jpg b/other/AoWoW-master/images/icons/medium/inv_pick_01.jpg new file mode 100644 index 0000000..10ac39a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pick_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pick_02.jpg b/other/AoWoW-master/images/icons/medium/inv_pick_02.jpg new file mode 100644 index 0000000..32fa2b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pick_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pick_03.jpg b/other/AoWoW-master/images/icons/medium/inv_pick_03.jpg new file mode 100644 index 0000000..7ed914b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pick_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_pick_05.jpg b/other/AoWoW-master/images/icons/medium/inv_pick_05.jpg new file mode 100644 index 0000000..5b50037 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_pick_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_poison_mindnumbing.jpg b/other/AoWoW-master/images/icons/medium/inv_poison_mindnumbing.jpg new file mode 100644 index 0000000..e9c178d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_poison_mindnumbing.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_01.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_01.jpg new file mode 100644 index 0000000..20ddd1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_02.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_02.jpg new file mode 100644 index 0000000..c67fe97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_03.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_03.jpg new file mode 100644 index 0000000..218369c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_04.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_04.jpg new file mode 100644 index 0000000..178f13f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_05.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_05.jpg new file mode 100644 index 0000000..74bd49a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_06.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_06.jpg new file mode 100644 index 0000000..56af77b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_07.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_07.jpg new file mode 100644 index 0000000..ab8bea3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_08.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_08.jpg new file mode 100644 index 0000000..2d35179 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_09.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_09.jpg new file mode 100644 index 0000000..f096015 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_10.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_10.jpg new file mode 100644 index 0000000..91c30d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_100.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_100.jpg new file mode 100644 index 0000000..2adb6bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_100.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_101.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_101.jpg new file mode 100644 index 0000000..3dbcf0f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_101.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_102.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_102.jpg new file mode 100644 index 0000000..1484edc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_102.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_103.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_103.jpg new file mode 100644 index 0000000..f86b40e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_103.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_104.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_104.jpg new file mode 100644 index 0000000..769c67b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_104.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_105.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_105.jpg new file mode 100644 index 0000000..1569c2c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_105.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_106.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_106.jpg new file mode 100644 index 0000000..281b654 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_106.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_107.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_107.jpg new file mode 100644 index 0000000..04e1360 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_107.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_108.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_108.jpg new file mode 100644 index 0000000..782b414 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_108.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_109.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_109.jpg new file mode 100644 index 0000000..de22be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_109.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_11.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_11.jpg new file mode 100644 index 0000000..769b588 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_110.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_110.jpg new file mode 100644 index 0000000..c3119a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_110.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_111.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_111.jpg new file mode 100644 index 0000000..7183c94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_111.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_112.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_112.jpg new file mode 100644 index 0000000..16b8bc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_112.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_113.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_113.jpg new file mode 100644 index 0000000..caaffa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_113.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_114.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_114.jpg new file mode 100644 index 0000000..8db6c16 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_114.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_115.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_115.jpg new file mode 100644 index 0000000..bb859d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_115.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_116.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_116.jpg new file mode 100644 index 0000000..cd39376 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_116.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_117.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_117.jpg new file mode 100644 index 0000000..3912b20 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_117.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_118.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_118.jpg new file mode 100644 index 0000000..fbb3b59 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_118.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_119.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_119.jpg new file mode 100644 index 0000000..e2c3657 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_119.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_12.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_12.jpg new file mode 100644 index 0000000..ca647aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_120.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_120.jpg new file mode 100644 index 0000000..6a78c6b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_120.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_121.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_121.jpg new file mode 100644 index 0000000..6379e71 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_121.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_122.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_122.jpg new file mode 100644 index 0000000..1285a27 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_122.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_123.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_123.jpg new file mode 100644 index 0000000..a4d446e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_123.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_124.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_124.jpg new file mode 100644 index 0000000..ba37bf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_124.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_125.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_125.jpg new file mode 100644 index 0000000..04572e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_125.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_126.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_126.jpg new file mode 100644 index 0000000..341a069 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_126.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_127.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_127.jpg new file mode 100644 index 0000000..2bbcf07 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_127.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_128.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_128.jpg new file mode 100644 index 0000000..dba3bbf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_128.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_129.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_129.jpg new file mode 100644 index 0000000..b08393d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_129.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_13.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_13.jpg new file mode 100644 index 0000000..7df147e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_130.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_130.jpg new file mode 100644 index 0000000..842786b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_130.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_131.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_131.jpg new file mode 100644 index 0000000..3a55c34 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_131.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_132.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_132.jpg new file mode 100644 index 0000000..ee9faaa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_132.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_133.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_133.jpg new file mode 100644 index 0000000..114d1b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_133.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_134.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_134.jpg new file mode 100644 index 0000000..b946362 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_134.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_135.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_135.jpg new file mode 100644 index 0000000..3b3cf33 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_135.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_136.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_136.jpg new file mode 100644 index 0000000..83d8ef1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_136.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_137.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_137.jpg new file mode 100644 index 0000000..17b17db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_137.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_138.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_138.jpg new file mode 100644 index 0000000..923f8a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_138.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_139.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_139.jpg new file mode 100644 index 0000000..1c8053d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_139.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_14.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_14.jpg new file mode 100644 index 0000000..5ff401e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_140.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_140.jpg new file mode 100644 index 0000000..f6b1e55 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_140.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_141.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_141.jpg new file mode 100644 index 0000000..7839bfc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_141.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_142.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_142.jpg new file mode 100644 index 0000000..82055a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_142.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_143.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_143.jpg new file mode 100644 index 0000000..81f2a30 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_143.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_144.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_144.jpg new file mode 100644 index 0000000..4801a7c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_144.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_145.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_145.jpg new file mode 100644 index 0000000..2403250 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_145.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_146.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_146.jpg new file mode 100644 index 0000000..ec27fd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_146.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_147.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_147.jpg new file mode 100644 index 0000000..9bca2e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_147.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_148.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_148.jpg new file mode 100644 index 0000000..63e14fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_148.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_149.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_149.jpg new file mode 100644 index 0000000..7846e59 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_149.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_15.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_15.jpg new file mode 100644 index 0000000..f5c361c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_150.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_150.jpg new file mode 100644 index 0000000..3e6fc39 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_150.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_151.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_151.jpg new file mode 100644 index 0000000..8c7a94f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_151.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_152.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_152.jpg new file mode 100644 index 0000000..446ec83 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_152.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_153.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_153.jpg new file mode 100644 index 0000000..ffbc68c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_153.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_154.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_154.jpg new file mode 100644 index 0000000..ce28af8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_154.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_155.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_155.jpg new file mode 100644 index 0000000..08bb281 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_155.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_156.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_156.jpg new file mode 100644 index 0000000..e07354e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_156.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_157.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_157.jpg new file mode 100644 index 0000000..d8c5bfd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_157.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_158.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_158.jpg new file mode 100644 index 0000000..dae2c4e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_158.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_159.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_159.jpg new file mode 100644 index 0000000..67d4f57 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_159.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_16.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_16.jpg new file mode 100644 index 0000000..969316f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_160.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_160.jpg new file mode 100644 index 0000000..d52b7a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_160.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_161.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_161.jpg new file mode 100644 index 0000000..6b1af3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_161.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_162.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_162.jpg new file mode 100644 index 0000000..e62ff86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_162.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_163.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_163.jpg new file mode 100644 index 0000000..bab5169 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_163.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_164.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_164.jpg new file mode 100644 index 0000000..069e587 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_164.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_165.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_165.jpg new file mode 100644 index 0000000..4e2774d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_165.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_166.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_166.jpg new file mode 100644 index 0000000..6299077 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_166.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_167.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_167.jpg new file mode 100644 index 0000000..f72d7d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_167.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_168.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_168.jpg new file mode 100644 index 0000000..da6e15c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_168.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_17.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_17.jpg new file mode 100644 index 0000000..e3f6a22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_18.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_18.jpg new file mode 100644 index 0000000..5a0f426 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_19.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_19.jpg new file mode 100644 index 0000000..4716367 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_20.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_20.jpg new file mode 100644 index 0000000..93d819f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_21.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_21.jpg new file mode 100644 index 0000000..4faf739 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_22.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_22.jpg new file mode 100644 index 0000000..4393e07 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_23.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_23.jpg new file mode 100644 index 0000000..0bda939 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_24.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_24.jpg new file mode 100644 index 0000000..91e266d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_25.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_25.jpg new file mode 100644 index 0000000..c775bf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_26.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_26.jpg new file mode 100644 index 0000000..b8e06b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_27.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_27.jpg new file mode 100644 index 0000000..a060cec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_28.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_28.jpg new file mode 100644 index 0000000..95f7703 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_29.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_29.jpg new file mode 100644 index 0000000..47917e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_30.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_30.jpg new file mode 100644 index 0000000..15e9282 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_31.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_31.jpg new file mode 100644 index 0000000..f31a9c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_32.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_32.jpg new file mode 100644 index 0000000..acbfa67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_33.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_33.jpg new file mode 100644 index 0000000..5f25d37 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_34.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_34.jpg new file mode 100644 index 0000000..b84b688 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_35.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_35.jpg new file mode 100644 index 0000000..2e5c22c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_36.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_36.jpg new file mode 100644 index 0000000..7a6e9a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_37.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_37.jpg new file mode 100644 index 0000000..5dfdf05 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_38.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_38.jpg new file mode 100644 index 0000000..91fa249 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_39.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_39.jpg new file mode 100644 index 0000000..247cb90 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_40.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_40.jpg new file mode 100644 index 0000000..f8e6ad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_41.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_41.jpg new file mode 100644 index 0000000..d6f3fca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_42.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_42.jpg new file mode 100644 index 0000000..ae84421 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_43.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_43.jpg new file mode 100644 index 0000000..f5af667 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_44.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_44.jpg new file mode 100644 index 0000000..6542039 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_45.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_45.jpg new file mode 100644 index 0000000..5c090b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_46.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_46.jpg new file mode 100644 index 0000000..f920495 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_47.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_47.jpg new file mode 100644 index 0000000..7220f49 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_48.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_48.jpg new file mode 100644 index 0000000..6956a77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_49.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_49.jpg new file mode 100644 index 0000000..179638f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_50.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_50.jpg new file mode 100644 index 0000000..c098c93 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_51.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_51.jpg new file mode 100644 index 0000000..f12c93a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_52.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_52.jpg new file mode 100644 index 0000000..57404a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_53.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_53.jpg new file mode 100644 index 0000000..7f5e436 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_54.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_54.jpg new file mode 100644 index 0000000..0f6366d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_55.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_55.jpg new file mode 100644 index 0000000..2a76bf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_56.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_56.jpg new file mode 100644 index 0000000..164244b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_57.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_57.jpg new file mode 100644 index 0000000..6113f35 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_58.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_58.jpg new file mode 100644 index 0000000..ac8f22a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_59.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_59.jpg new file mode 100644 index 0000000..e650f11 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_60.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_60.jpg new file mode 100644 index 0000000..07ee584 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_61.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_61.jpg new file mode 100644 index 0000000..f4aec53 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_62.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_62.jpg new file mode 100644 index 0000000..621e85d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_63.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_63.jpg new file mode 100644 index 0000000..f975be7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_64.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_64.jpg new file mode 100644 index 0000000..9fd8a9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_65.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_65.jpg new file mode 100644 index 0000000..5a17f9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_66.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_66.jpg new file mode 100644 index 0000000..c1076bc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_67.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_67.jpg new file mode 100644 index 0000000..8b543cd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_68.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_68.jpg new file mode 100644 index 0000000..ceb68bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_69.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_69.jpg new file mode 100644 index 0000000..28fb1c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_70.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_70.jpg new file mode 100644 index 0000000..194b348 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_70.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_71.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_71.jpg new file mode 100644 index 0000000..af9e15a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_72.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_72.jpg new file mode 100644 index 0000000..8e0e089 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_73.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_73.jpg new file mode 100644 index 0000000..2505c70 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_74.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_74.jpg new file mode 100644 index 0000000..b464893 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_75.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_75.jpg new file mode 100644 index 0000000..1e7e8c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_75.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_76.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_76.jpg new file mode 100644 index 0000000..bd31b67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_76.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_77.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_77.jpg new file mode 100644 index 0000000..3bc99af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_77.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_78.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_78.jpg new file mode 100644 index 0000000..2c831fb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_78.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_79.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_79.jpg new file mode 100644 index 0000000..c995c9a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_79.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_80.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_80.jpg new file mode 100644 index 0000000..60e1064 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_80.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_81.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_81.jpg new file mode 100644 index 0000000..c72e903 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_81.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_82.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_82.jpg new file mode 100644 index 0000000..2ec604a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_82.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_83.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_83.jpg new file mode 100644 index 0000000..b44d38e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_83.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_84.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_84.jpg new file mode 100644 index 0000000..a50161f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_84.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_85.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_85.jpg new file mode 100644 index 0000000..621d3c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_85.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_86.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_86.jpg new file mode 100644 index 0000000..6e2aa19 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_86.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_87.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_87.jpg new file mode 100644 index 0000000..b180a26 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_87.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_88.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_88.jpg new file mode 100644 index 0000000..b485b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_88.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_89.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_89.jpg new file mode 100644 index 0000000..5a26afd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_89.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_90.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_90.jpg new file mode 100644 index 0000000..5af6701 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_90.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_91.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_91.jpg new file mode 100644 index 0000000..f0ce850 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_91.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_92.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_92.jpg new file mode 100644 index 0000000..b8cf6a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_92.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_93.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_93.jpg new file mode 100644 index 0000000..975bb13 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_93.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_94.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_94.jpg new file mode 100644 index 0000000..a6bcd3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_94.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_95.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_95.jpg new file mode 100644 index 0000000..8a3140b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_95.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_96.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_96.jpg new file mode 100644 index 0000000..59b8472 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_96.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_97.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_97.jpg new file mode 100644 index 0000000..c5fbed5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_97.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_98.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_98.jpg new file mode 100644 index 0000000..b5b5781 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_98.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_potion_99.jpg b/other/AoWoW-master/images/icons/medium/inv_potion_99.jpg new file mode 100644 index 0000000..fd4b5d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_potion_99.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_bindingscommand.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_bindingscommand.jpg new file mode 100644 index 0000000..13e48f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_bindingscommand.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_bindingsdominance.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_bindingsdominance.jpg new file mode 100644 index 0000000..b65d11d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_bindingsdominance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_carapaceoldgod.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_carapaceoldgod.jpg new file mode 100644 index 0000000..6361902 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_carapaceoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_drapemartial.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_drapemartial.jpg new file mode 100644 index 0000000..2bbc907 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_drapemartial.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_draperegal.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_draperegal.jpg new file mode 100644 index 0000000..1d62718 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_draperegal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_hiltornate.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_hiltornate.jpg new file mode 100644 index 0000000..57c2fcc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_hiltornate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_hiltspiked.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_hiltspiked.jpg new file mode 100644 index 0000000..9127ddc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_hiltspiked.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_huskoldgod.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_huskoldgod.jpg new file mode 100644 index 0000000..0b0b4df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_huskoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelblessed.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelblessed.jpg new file mode 100644 index 0000000..14988d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelblessed.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelencased.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelencased.jpg new file mode 100644 index 0000000..29ce05d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelencased.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelengraved.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelengraved.jpg new file mode 100644 index 0000000..ecc2f58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelengraved.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelglyphed.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelglyphed.jpg new file mode 100644 index 0000000..dbabf32 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_jewelglyphed.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_ourohide.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_ourohide.jpg new file mode 100644 index 0000000..0e106f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_ourohide.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_ringceremonial.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_ringceremonial.jpg new file mode 100644 index 0000000..d34344b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_ringceremonial.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_ringmagisterial.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_ringmagisterial.jpg new file mode 100644 index 0000000..6ce597f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_ringmagisterial.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qiraj_skinsandworm.jpg b/other/AoWoW-master/images/icons/medium/inv_qiraj_skinsandworm.jpg new file mode 100644 index 0000000..8c1b5aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qiraj_skinsandworm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_alabaster.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_alabaster.jpg new file mode 100644 index 0000000..74da279 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_alabaster.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_amber.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_amber.jpg new file mode 100644 index 0000000..3d28857 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_amber.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_azure.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_azure.jpg new file mode 100644 index 0000000..b0fdd18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_azure.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_death.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_death.jpg new file mode 100644 index 0000000..b87e511 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_death.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_jasper.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_jasper.jpg new file mode 100644 index 0000000..39752d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_jasper.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_lambent.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_lambent.jpg new file mode 100644 index 0000000..e316ff4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_lambent.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_life.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_life.jpg new file mode 100644 index 0000000..f74191f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_life.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_night.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_night.jpg new file mode 100644 index 0000000..3fe0518 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_night.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_obsidian.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_obsidian.jpg new file mode 100644 index 0000000..b0cf730 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_obsidian.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_onyx.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_onyx.jpg new file mode 100644 index 0000000..55a62d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_onyx.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_rebirth.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_rebirth.jpg new file mode 100644 index 0000000..3ed301b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_rebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_sage.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_sage.jpg new file mode 100644 index 0000000..9e5ba4a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_sage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_strife.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_strife.jpg new file mode 100644 index 0000000..7eb68a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_strife.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_sun.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_sun.jpg new file mode 100644 index 0000000..d5ac16a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_sun.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_vermillion.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_vermillion.jpg new file mode 100644 index 0000000..1a880c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_vermillion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_qirajidol_war.jpg b/other/AoWoW-master/images/icons/medium/inv_qirajidol_war.jpg new file mode 100644 index 0000000..324a9eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_qirajidol_war.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_idolofferocity.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_idolofferocity.jpg new file mode 100644 index 0000000..be0c07c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_idolofferocity.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_idolofhealth.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_idolofhealth.jpg new file mode 100644 index 0000000..9fd4ae1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_idolofhealth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_idolofrejuvenation.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_idolofrejuvenation.jpg new file mode 100644 index 0000000..97a7cfa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_idolofrejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_libramofgrace.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_libramofgrace.jpg new file mode 100644 index 0000000..4089f33 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_libramofgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_libramofhope.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_libramofhope.jpg new file mode 100644 index 0000000..045cae7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_libramofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_libramoftruth.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_libramoftruth.jpg new file mode 100644 index 0000000..2571ba9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_libramoftruth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_totemoflife.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_totemoflife.jpg new file mode 100644 index 0000000..b497b77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_totemoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_totemofrage.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_totemofrage.jpg new file mode 100644 index 0000000..f4c0e67 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_totemofrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_relics_totemofrebirth.jpg b/other/AoWoW-master/images/icons/medium/inv_relics_totemofrebirth.jpg new file mode 100644 index 0000000..e4f3ff7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_relics_totemofrebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rod_adamantite.jpg b/other/AoWoW-master/images/icons/medium/inv_rod_adamantite.jpg new file mode 100644 index 0000000..908cee6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rod_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rod_enchantedadamantite.jpg b/other/AoWoW-master/images/icons/medium/inv_rod_enchantedadamantite.jpg new file mode 100644 index 0000000..07e5f21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rod_enchantedadamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rod_enchantedeternium.jpg b/other/AoWoW-master/images/icons/medium/inv_rod_enchantedeternium.jpg new file mode 100644 index 0000000..4a38aee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rod_enchantedeternium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rod_enchantedfelsteel.jpg b/other/AoWoW-master/images/icons/medium/inv_rod_enchantedfelsteel.jpg new file mode 100644 index 0000000..f9bb3c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rod_enchantedfelsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rod_eternium.jpg b/other/AoWoW-master/images/icons/medium/inv_rod_eternium.jpg new file mode 100644 index 0000000..a02b3d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rod_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rod_felsteel.jpg b/other/AoWoW-master/images/icons/medium/inv_rod_felsteel.jpg new file mode 100644 index 0000000..6d7724b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rod_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rosebouquet01.jpg b/other/AoWoW-master/images/icons/medium/inv_rosebouquet01.jpg new file mode 100644 index 0000000..7e6629b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rosebouquet01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_rosepotted01.jpg b/other/AoWoW-master/images/icons/medium/inv_rosepotted01.jpg new file mode 100644 index 0000000..44d4458 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_rosepotted01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_bone.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_bone.jpg new file mode 100644 index 0000000..d5e67b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_bone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_bronze.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_bronze.jpg new file mode 100644 index 0000000..ebecc46 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_clay.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_clay.jpg new file mode 100644 index 0000000..dece02e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_clay.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_crystal.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_crystal.jpg new file mode 100644 index 0000000..23650a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_gold.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_gold.jpg new file mode 100644 index 0000000..05f168c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_ivory.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_ivory.jpg new file mode 100644 index 0000000..d5e67b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_ivory.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_silver.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_silver.jpg new file mode 100644 index 0000000..c8012d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scarab_stone.jpg b/other/AoWoW-master/images/icons/medium/inv_scarab_stone.jpg new file mode 100644 index 0000000..29fd924 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scarab_stone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_01.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_01.jpg new file mode 100644 index 0000000..c720467 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_02.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_02.jpg new file mode 100644 index 0000000..e0abe9a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_03.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_03.jpg new file mode 100644 index 0000000..7a733c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_04.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_04.jpg new file mode 100644 index 0000000..fe5c0da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_05.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_05.jpg new file mode 100644 index 0000000..89fa58f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_06.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_06.jpg new file mode 100644 index 0000000..e2d347d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_07.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_07.jpg new file mode 100644 index 0000000..92dce25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_08.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_08.jpg new file mode 100644 index 0000000..9203f59 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_09.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_09.jpg new file mode 100644 index 0000000..c1c6f4e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_scroll_10.jpg b/other/AoWoW-master/images/icons/medium/inv_scroll_10.jpg new file mode 100644 index 0000000..b65a007 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_scroll_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_01.jpg new file mode 100644 index 0000000..0750dce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_02.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_02.jpg new file mode 100644 index 0000000..1136c09 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_03.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_03.jpg new file mode 100644 index 0000000..d508d18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_04.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_04.jpg new file mode 100644 index 0000000..ae7bdee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_05.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_05.jpg new file mode 100644 index 0000000..f5eef3f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_06.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_06.jpg new file mode 100644 index 0000000..9beee70 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_07.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_07.jpg new file mode 100644 index 0000000..7da602c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_08.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_08.jpg new file mode 100644 index 0000000..5eccb0a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_09.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_09.jpg new file mode 100644 index 0000000..f8a6732 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_10.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_10.jpg new file mode 100644 index 0000000..f931b3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_11.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_11.jpg new file mode 100644 index 0000000..b01a32c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_12.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_12.jpg new file mode 100644 index 0000000..f254bbc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_13.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_13.jpg new file mode 100644 index 0000000..5ef8f55 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_14.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_14.jpg new file mode 100644 index 0000000..12e8fe9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_15.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_15.jpg new file mode 100644 index 0000000..72640a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_16.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_16.jpg new file mode 100644 index 0000000..6dbc186 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_17.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_17.jpg new file mode 100644 index 0000000..6c1a963 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_18.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_18.jpg new file mode 100644 index 0000000..3e9995e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_19.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_19.jpg new file mode 100644 index 0000000..0ebfedc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_20.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_20.jpg new file mode 100644 index 0000000..89b1676 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_21.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_21.jpg new file mode 100644 index 0000000..d3e4a32 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_22.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_22.jpg new file mode 100644 index 0000000..0a8657b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_23.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_23.jpg new file mode 100644 index 0000000..c0a3c71 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_24.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_24.jpg new file mode 100644 index 0000000..0ee3e13 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_26.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_26.jpg new file mode 100644 index 0000000..62d99e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_27.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_27.jpg new file mode 100644 index 0000000..119758c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_28.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_28.jpg new file mode 100644 index 0000000..880dacc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_29.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_29.jpg new file mode 100644 index 0000000..f9f3ab1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_30.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_30.jpg new file mode 100644 index 0000000..31a998a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_31.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_31.jpg new file mode 100644 index 0000000..14d1685 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_32.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_32.jpg new file mode 100644 index 0000000..48d4470 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_33.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_33.jpg new file mode 100644 index 0000000..ea19e97 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_34.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_34.jpg new file mode 100644 index 0000000..ddb1578 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_35.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_35.jpg new file mode 100644 index 0000000..0ece2b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_36.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_36.jpg new file mode 100644 index 0000000..481cb7c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_37.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_37.jpg new file mode 100644 index 0000000..0eced10 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_38.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_38.jpg new file mode 100644 index 0000000..89be63e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_39.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_39.jpg new file mode 100644 index 0000000..2ec0f40 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_40.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_40.jpg new file mode 100644 index 0000000..92009cf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_41.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_41.jpg new file mode 100644 index 0000000..2a04a0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_42.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_42.jpg new file mode 100644 index 0000000..3df70e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_43.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_43.jpg new file mode 100644 index 0000000..bb7a406 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_48.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_48.jpg new file mode 100644 index 0000000..44baaba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_52.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_52.jpg new file mode 100644 index 0000000..cc15be2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_53.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_53.jpg new file mode 100644 index 0000000..71dfa23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shield_54.jpg b/other/AoWoW-master/images/icons/medium/inv_shield_54.jpg new file mode 100644 index 0000000..9d3a725 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shield_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_01.jpg new file mode 100644 index 0000000..2414cf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_02.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_02.jpg new file mode 100644 index 0000000..6b126be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_03.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_03.jpg new file mode 100644 index 0000000..47c1ccd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_04.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_04.jpg new file mode 100644 index 0000000..71dae13 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_05.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_05.jpg new file mode 100644 index 0000000..ee24844 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_06.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_06.jpg new file mode 100644 index 0000000..878da7a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_07.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_07.jpg new file mode 100644 index 0000000..0063c3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_08.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_08.jpg new file mode 100644 index 0000000..a11d1aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_09.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_09.jpg new file mode 100644 index 0000000..4ab9f29 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_10.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_10.jpg new file mode 100644 index 0000000..2ff3f15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_11.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_11.jpg new file mode 100644 index 0000000..76416f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_12.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_12.jpg new file mode 100644 index 0000000..848cf6f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_13.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_13.jpg new file mode 100644 index 0000000..5ed670c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_14.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_14.jpg new file mode 100644 index 0000000..1b283ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_15.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_15.jpg new file mode 100644 index 0000000..5b1ec7a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_16.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_16.jpg new file mode 100644 index 0000000..0dbc25e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_17.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_17.jpg new file mode 100644 index 0000000..3678288 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_black_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_black_01.jpg new file mode 100644 index 0000000..83da3ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_black_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_blue_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_blue_01.jpg new file mode 100644 index 0000000..a82a32f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_blue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_green_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_green_01.jpg new file mode 100644 index 0000000..8ef4c6f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_green_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_grey_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_grey_01.jpg new file mode 100644 index 0000000..f4728fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_grey_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_guildtabard_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_guildtabard_01.jpg new file mode 100644 index 0000000..ecafb4b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_guildtabard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_orange_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_orange_01.jpg new file mode 100644 index 0000000..9d500c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_orange_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_purple_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_purple_01.jpg new file mode 100644 index 0000000..80b8b44 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_red_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_red_01.jpg new file mode 100644 index 0000000..7f971b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_red_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_white_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_white_01.jpg new file mode 100644 index 0000000..d191b8b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_white_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shirt_yellow_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shirt_yellow_01.jpg new file mode 100644 index 0000000..8235954 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shirt_yellow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_01.jpg new file mode 100644 index 0000000..b95f8c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_02.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_02.jpg new file mode 100644 index 0000000..22f0733 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_03.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_03.jpg new file mode 100644 index 0000000..d0c611b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_04.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_04.jpg new file mode 100644 index 0000000..e54cfa3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_05.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_05.jpg new file mode 100644 index 0000000..cccc119 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_06.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_06.jpg new file mode 100644 index 0000000..7454e5f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_07.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_07.jpg new file mode 100644 index 0000000..64c9c9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_08.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_08.jpg new file mode 100644 index 0000000..b921cf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_09.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_09.jpg new file mode 100644 index 0000000..c8249c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_10.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_10.jpg new file mode 100644 index 0000000..520a0c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_11.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_11.jpg new file mode 100644 index 0000000..998d10a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_12.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_12.jpg new file mode 100644 index 0000000..8bcfbf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_13.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_13.jpg new file mode 100644 index 0000000..d3b8a3a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_14.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_14.jpg new file mode 100644 index 0000000..f00c1d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_15.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_15.jpg new file mode 100644 index 0000000..ad8d5dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_16.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_16.jpg new file mode 100644 index 0000000..a1ad98b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_17.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_17.jpg new file mode 100644 index 0000000..dd1d723 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_18.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_18.jpg new file mode 100644 index 0000000..b6d9ed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_19.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_19.jpg new file mode 100644 index 0000000..5c2da3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_20.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_20.jpg new file mode 100644 index 0000000..736c254 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_21.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_21.jpg new file mode 100644 index 0000000..b5edc07 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_22.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_22.jpg new file mode 100644 index 0000000..602b4f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_23.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_23.jpg new file mode 100644 index 0000000..a86823e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_24.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_24.jpg new file mode 100644 index 0000000..79eadaf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_25.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_25.jpg new file mode 100644 index 0000000..0c3fc1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_26.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_26.jpg new file mode 100644 index 0000000..b6880b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_27.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_27.jpg new file mode 100644 index 0000000..95501e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_28.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_28.jpg new file mode 100644 index 0000000..d2b464a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_29.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_29.jpg new file mode 100644 index 0000000..eb4440d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_30.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_30.jpg new file mode 100644 index 0000000..73178d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_31.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_31.jpg new file mode 100644 index 0000000..62dae7e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_32.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_32.jpg new file mode 100644 index 0000000..859a1be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_33.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_33.jpg new file mode 100644 index 0000000..b973369 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_34.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_34.jpg new file mode 100644 index 0000000..11f39d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_35.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_35.jpg new file mode 100644 index 0000000..3011329 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_36.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_36.jpg new file mode 100644 index 0000000..26b24ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_37.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_37.jpg new file mode 100644 index 0000000..9951ec9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_40.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_40.jpg new file mode 100644 index 0000000..647f187 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_41.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_41.jpg new file mode 100644 index 0000000..ca3a681 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_44.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_44.jpg new file mode 100644 index 0000000..d601512 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_47.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_47.jpg new file mode 100644 index 0000000..cc01bdd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_48.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_48.jpg new file mode 100644 index 0000000..3b06056 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_49.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_49.jpg new file mode 100644 index 0000000..46d5147 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_50.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_50.jpg new file mode 100644 index 0000000..c0d2ce4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_51.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_51.jpg new file mode 100644 index 0000000..faf7214 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_52.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_52.jpg new file mode 100644 index 0000000..4ad1c66 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_53.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_53.jpg new file mode 100644 index 0000000..3e37986 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_54.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_54.jpg new file mode 100644 index 0000000..73a5a7c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_55.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_55.jpg new file mode 100644 index 0000000..c3bc8b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_56.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_56.jpg new file mode 100644 index 0000000..aa105d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_57.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_57.jpg new file mode 100644 index 0000000..3416f2f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_58.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_58.jpg new file mode 100644 index 0000000..6e0a125 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_59.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_59.jpg new file mode 100644 index 0000000..cfd0400 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_60.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_60.jpg new file mode 100644 index 0000000..14ce8da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_61.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_61.jpg new file mode 100644 index 0000000..4be6e21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_62.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_62.jpg new file mode 100644 index 0000000..509d01c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_63.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_63.jpg new file mode 100644 index 0000000..a328e9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_64.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_64.jpg new file mode 100644 index 0000000..9dace7f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_65.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_65.jpg new file mode 100644 index 0000000..944b57a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_66.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_66.jpg new file mode 100644 index 0000000..94f1a21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_67.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_67.jpg new file mode 100644 index 0000000..2082609 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_68.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_68.jpg new file mode 100644 index 0000000..6c42039 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_81.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_81.jpg new file mode 100644 index 0000000..53f7052 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_81.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_82.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_82.jpg new file mode 100644 index 0000000..ab728b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_82.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_83.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_83.jpg new file mode 100644 index 0000000..eb8a663 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_83.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_84.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_84.jpg new file mode 100644 index 0000000..ee7b19d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_84.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_85.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_85.jpg new file mode 100644 index 0000000..2c4f204 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_85.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_86.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_86.jpg new file mode 100644 index 0000000..d1e30da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_86.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_88.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_88.jpg new file mode 100644 index 0000000..307ef69 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_88.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_90.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_90.jpg new file mode 100644 index 0000000..6960fb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_90.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_91.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_91.jpg new file mode 100644 index 0000000..69cd725 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_91.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_shoulder_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_shoulder_haremmatron_d_01.jpg new file mode 100644 index 0000000..08506ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_shoulder_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_01.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_01.jpg new file mode 100644 index 0000000..1a95431 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_02.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_02.jpg new file mode 100644 index 0000000..5a39337 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_03.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_03.jpg new file mode 100644 index 0000000..e281f9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_04.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_04.jpg new file mode 100644 index 0000000..012f2a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_05.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_05.jpg new file mode 100644 index 0000000..a943d25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_06.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_06.jpg new file mode 100644 index 0000000..6ca036d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_07.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_07.jpg new file mode 100644 index 0000000..c741d3d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_08.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_08.jpg new file mode 100644 index 0000000..f75ba8e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_09.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_09.jpg new file mode 100644 index 0000000..ce3a477 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_10.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_10.jpg new file mode 100644 index 0000000..fcc7256 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_spear_11.jpg b/other/AoWoW-master/images/icons/medium/inv_spear_11.jpg new file mode 100644 index 0000000..3b2ddfd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_spear_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_01.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_01.jpg new file mode 100644 index 0000000..353df2e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_02.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_02.jpg new file mode 100644 index 0000000..8debb24 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_03.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_03.jpg new file mode 100644 index 0000000..8138e98 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_04.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_04.jpg new file mode 100644 index 0000000..1c97a13 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_05.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_05.jpg new file mode 100644 index 0000000..1807e6d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_06.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_06.jpg new file mode 100644 index 0000000..4d68f33 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_07.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_07.jpg new file mode 100644 index 0000000..ee92ab9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_08.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_08.jpg new file mode 100644 index 0000000..55e08e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_09.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_09.jpg new file mode 100644 index 0000000..cab47f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_10.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_10.jpg new file mode 100644 index 0000000..d064ec5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_11.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_11.jpg new file mode 100644 index 0000000..9a45558 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_12.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_12.jpg new file mode 100644 index 0000000..80ed8c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_13.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_13.jpg new file mode 100644 index 0000000..7442b85 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_14.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_14.jpg new file mode 100644 index 0000000..49005bc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_15.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_15.jpg new file mode 100644 index 0000000..7abdc56 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_16.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_16.jpg new file mode 100644 index 0000000..aa3a46c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_17.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_17.jpg new file mode 100644 index 0000000..185478e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_18.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_18.jpg new file mode 100644 index 0000000..39c53ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_19.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_19.jpg new file mode 100644 index 0000000..2c7b919 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_20.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_20.jpg new file mode 100644 index 0000000..4ecf9bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_21.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_21.jpg new file mode 100644 index 0000000..e81f14f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_22.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_22.jpg new file mode 100644 index 0000000..f892df5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_23.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_23.jpg new file mode 100644 index 0000000..8f7313d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_24.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_24.jpg new file mode 100644 index 0000000..66be157 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_25.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_25.jpg new file mode 100644 index 0000000..8772b3b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_26.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_26.jpg new file mode 100644 index 0000000..7bce5ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_27.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_27.jpg new file mode 100644 index 0000000..7086ae3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_28.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_28.jpg new file mode 100644 index 0000000..7812ace Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_29.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_29.jpg new file mode 100644 index 0000000..dd0bf74 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_30.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_30.jpg new file mode 100644 index 0000000..fec6616 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_31.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_31.jpg new file mode 100644 index 0000000..4e108f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_32.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_32.jpg new file mode 100644 index 0000000..262c5f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_33.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_33.jpg new file mode 100644 index 0000000..f115223 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_34.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_34.jpg new file mode 100644 index 0000000..bcc65d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_35.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_35.jpg new file mode 100644 index 0000000..9fd127f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_36.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_36.jpg new file mode 100644 index 0000000..93e2457 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_37.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_37.jpg new file mode 100644 index 0000000..17cf8c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_38.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_38.jpg new file mode 100644 index 0000000..c0f8260 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_39.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_39.jpg new file mode 100644 index 0000000..f7b9934 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_40.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_40.jpg new file mode 100644 index 0000000..4e86440 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_41.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_41.jpg new file mode 100644 index 0000000..d3edcf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_42.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_42.jpg new file mode 100644 index 0000000..9b1fff2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_43.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_43.jpg new file mode 100644 index 0000000..5834be3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_45.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_45.jpg new file mode 100644 index 0000000..e189950 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_46.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_46.jpg new file mode 100644 index 0000000..4a6b839 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_47.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_47.jpg new file mode 100644 index 0000000..98ef2a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_48.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_48.jpg new file mode 100644 index 0000000..8da1640 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_49.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_49.jpg new file mode 100644 index 0000000..dc6b845 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_50.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_50.jpg new file mode 100644 index 0000000..1a042e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_51.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_51.jpg new file mode 100644 index 0000000..7189c86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_52.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_52.jpg new file mode 100644 index 0000000..05ef662 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_53.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_53.jpg new file mode 100644 index 0000000..03a38a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_54.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_54.jpg new file mode 100644 index 0000000..885e183 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_55.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_55.jpg new file mode 100644 index 0000000..da4f2c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_56.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_56.jpg new file mode 100644 index 0000000..4cbd5ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_57.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_57.jpg new file mode 100644 index 0000000..76d840a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_58.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_58.jpg new file mode 100644 index 0000000..52def61 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_59.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_59.jpg new file mode 100644 index 0000000..a3c3768 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_60.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_60.jpg new file mode 100644 index 0000000..6c075e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_61.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_61.jpg new file mode 100644 index 0000000..f265058 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_63.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_63.jpg new file mode 100644 index 0000000..7236a6c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_64.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_64.jpg new file mode 100644 index 0000000..acd4f37 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_65.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_65.jpg new file mode 100644 index 0000000..7d23247 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_73.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_73.jpg new file mode 100644 index 0000000..91a9868 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_74.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_74.jpg new file mode 100644 index 0000000..03d22a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_78.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_78.jpg new file mode 100644 index 0000000..f8e80c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_78.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_79.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_79.jpg new file mode 100644 index 0000000..47cb231 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_79.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_01.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_01.jpg new file mode 100644 index 0000000..1c092e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_02.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_02.jpg new file mode 100644 index 0000000..adbb381 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_03.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_03.jpg new file mode 100644 index 0000000..9d53937 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_draenei_a_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_goldfeathered_01.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_goldfeathered_01.jpg new file mode 100644 index 0000000..413a606 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_goldfeathered_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_staff_medivh.jpg b/other/AoWoW-master/images/icons/medium/inv_staff_medivh.jpg new file mode 100644 index 0000000..49f93b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_staff_medivh.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_01.jpg new file mode 100644 index 0000000..41f86ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_02.jpg new file mode 100644 index 0000000..307c193 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_03.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_03.jpg new file mode 100644 index 0000000..d100cef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_04.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_04.jpg new file mode 100644 index 0000000..2fae36d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_05.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_05.jpg new file mode 100644 index 0000000..f9d9257 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_06.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_06.jpg new file mode 100644 index 0000000..bb1f0a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_07.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_07.jpg new file mode 100644 index 0000000..253c771 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_08.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_08.jpg new file mode 100644 index 0000000..aa6a104 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_09.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_09.jpg new file mode 100644 index 0000000..70d98ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_10.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_10.jpg new file mode 100644 index 0000000..3ade40c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_11.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_11.jpg new file mode 100644 index 0000000..5e484e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_12.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_12.jpg new file mode 100644 index 0000000..7a5bbfa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_13.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_13.jpg new file mode 100644 index 0000000..e20f5ec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_14.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_14.jpg new file mode 100644 index 0000000..11d040d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_15.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_15.jpg new file mode 100644 index 0000000..4c6208a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_16.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_16.jpg new file mode 100644 index 0000000..bc8b450 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_01.jpg new file mode 100644 index 0000000..da1bcb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_02.jpg new file mode 100644 index 0000000..710f4a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_03.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_03.jpg new file mode 100644 index 0000000..7c4fbfb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_04.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_04.jpg new file mode 100644 index 0000000..905e032 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_05.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_05.jpg new file mode 100644 index 0000000..96a7a1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_grindingstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_01.jpg new file mode 100644 index 0000000..028a7b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_02.jpg new file mode 100644 index 0000000..ad2cb75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_03.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_03.jpg new file mode 100644 index 0000000..83e6005 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_04.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_04.jpg new file mode 100644 index 0000000..d8eb5b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_05.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_05.jpg new file mode 100644 index 0000000..dd05a00 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_06.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_06.jpg new file mode 100644 index 0000000..7d73e09 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_07.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_07.jpg new file mode 100644 index 0000000..4f23c08 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_sharpeningstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_01.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_01.jpg new file mode 100644 index 0000000..831abce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_02.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_02.jpg new file mode 100644 index 0000000..212c165 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_03.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_03.jpg new file mode 100644 index 0000000..a931438 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_04.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_04.jpg new file mode 100644 index 0000000..df5d687 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_05.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_05.jpg new file mode 100644 index 0000000..9b8010c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_06.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_06.jpg new file mode 100644 index 0000000..d7c5827 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_07.jpg b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_07.jpg new file mode 100644 index 0000000..7f751a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_stone_weightstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_firedrink.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_firedrink.jpg new file mode 100644 index 0000000..78cc846 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_firedrink.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_fireflower.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_fireflower.jpg new file mode 100644 index 0000000..8e1c43f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_fireflower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_firepotion.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_firepotion.jpg new file mode 100644 index 0000000..1757cab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_firepotion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_firespirit.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_firespirit.jpg new file mode 100644 index 0000000..a6ec17b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_firespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_groundflower.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_groundflower.jpg new file mode 100644 index 0000000..3fea634 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_groundflower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_smorc.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_smorc.jpg new file mode 100644 index 0000000..78a2526 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_smorc.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_high.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_high.jpg new file mode 100644 index 0000000..6f5dfaf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_high.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_low.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_low.jpg new file mode 100644 index 0000000..a100dd2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_low.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_medium.jpg b/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_medium.jpg new file mode 100644 index 0000000..84ce415 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_summerfest_symbol_medium.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_01.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_01.jpg new file mode 100644 index 0000000..163a00d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_02.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_02.jpg new file mode 100644 index 0000000..7ca1c0c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_03.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_03.jpg new file mode 100644 index 0000000..5599753 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_04.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_04.jpg new file mode 100644 index 0000000..bce9ad0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_05.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_05.jpg new file mode 100644 index 0000000..a1c70f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_06.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_06.jpg new file mode 100644 index 0000000..b4b2156 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_07.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_07.jpg new file mode 100644 index 0000000..c8b4427 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_08.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_08.jpg new file mode 100644 index 0000000..ce449ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_09.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_09.jpg new file mode 100644 index 0000000..c5be5d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_10.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_10.jpg new file mode 100644 index 0000000..6fd8812 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_107.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_107.jpg new file mode 100644 index 0000000..9183500 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_107.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_108.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_108.jpg new file mode 100644 index 0000000..fb5edb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_108.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_109.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_109.jpg new file mode 100644 index 0000000..3bb52b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_109.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_11.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_11.jpg new file mode 100644 index 0000000..0226bff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_114.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_114.jpg new file mode 100644 index 0000000..cf2e8ca Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_114.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_115.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_115.jpg new file mode 100644 index 0000000..6b41db6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_115.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_116.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_116.jpg new file mode 100644 index 0000000..37f9acf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_116.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_118.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_118.jpg new file mode 100644 index 0000000..f06a41a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_118.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_12.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_12.jpg new file mode 100644 index 0000000..678a511 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_13.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_13.jpg new file mode 100644 index 0000000..3246bf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_14.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_14.jpg new file mode 100644 index 0000000..d6435fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_15.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_15.jpg new file mode 100644 index 0000000..7a22765 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_16.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_16.jpg new file mode 100644 index 0000000..d378e5e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_17.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_17.jpg new file mode 100644 index 0000000..f1cb1aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_18.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_18.jpg new file mode 100644 index 0000000..42c2407 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_19.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_19.jpg new file mode 100644 index 0000000..0eb7288 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..24bb74c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..8b93039 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..25179d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_20.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_20.jpg new file mode 100644 index 0000000..e3d54b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_21.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_21.jpg new file mode 100644 index 0000000..33f835c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_22.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_22.jpg new file mode 100644 index 0000000..70f4225 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_23.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_23.jpg new file mode 100644 index 0000000..8a2b8dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_24.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_24.jpg new file mode 100644 index 0000000..bb2a7bd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_25.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_25.jpg new file mode 100644 index 0000000..71ab244 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_26.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_26.jpg new file mode 100644 index 0000000..c2bf0fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_27.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_27.jpg new file mode 100644 index 0000000..261e5fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_28.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_28.jpg new file mode 100644 index 0000000..24ed153 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_29.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_29.jpg new file mode 100644 index 0000000..46948c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_ashbringercorrupt.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_ashbringercorrupt.jpg new file mode 100644 index 0000000..77a99ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_ashbringercorrupt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..031f4e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..ac98f79 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..031fac5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_b_01.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_b_01.jpg new file mode 100644 index 0000000..b5d6c03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_b_02.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_b_02.jpg new file mode 100644 index 0000000..91ef34c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_b_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_01.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_01.jpg new file mode 100644 index 0000000..5757fa9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_02.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_02.jpg new file mode 100644 index 0000000..0715419 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_03.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_03.jpg new file mode 100644 index 0000000..cdfa227 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_2h_blood_c_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_30.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_30.jpg new file mode 100644 index 0000000..2c43a38 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_31.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_31.jpg new file mode 100644 index 0000000..c9a12cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_32.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_32.jpg new file mode 100644 index 0000000..8bed9fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_33.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_33.jpg new file mode 100644 index 0000000..3cd8262 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_34.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_34.jpg new file mode 100644 index 0000000..d35835e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_35.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_35.jpg new file mode 100644 index 0000000..fac296a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_36.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_36.jpg new file mode 100644 index 0000000..e7dd733 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_36.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_37.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_37.jpg new file mode 100644 index 0000000..35fafd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_38.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_38.jpg new file mode 100644 index 0000000..7c6a934 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_39.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_39.jpg new file mode 100644 index 0000000..bf08a9e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_40.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_40.jpg new file mode 100644 index 0000000..145f944 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_41.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_41.jpg new file mode 100644 index 0000000..e4bf30d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_42.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_42.jpg new file mode 100644 index 0000000..f5e86b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_43.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_43.jpg new file mode 100644 index 0000000..c2792ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_44.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_44.jpg new file mode 100644 index 0000000..c4cf2d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_45.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_45.jpg new file mode 100644 index 0000000..190d7c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_46.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_46.jpg new file mode 100644 index 0000000..2643451 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_47.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_47.jpg new file mode 100644 index 0000000..1c444f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_48.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_48.jpg new file mode 100644 index 0000000..382b2c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_49.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_49.jpg new file mode 100644 index 0000000..64b164e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_50.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_50.jpg new file mode 100644 index 0000000..a91ced5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_51.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_51.jpg new file mode 100644 index 0000000..2ec9c75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_52.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_52.jpg new file mode 100644 index 0000000..be8c2b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_53.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_53.jpg new file mode 100644 index 0000000..1ac714c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_54.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_54.jpg new file mode 100644 index 0000000..abdcb52 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_55.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_55.jpg new file mode 100644 index 0000000..7d49d00 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_56.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_56.jpg new file mode 100644 index 0000000..be8c2b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_57.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_57.jpg new file mode 100644 index 0000000..44c9584 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_58.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_58.jpg new file mode 100644 index 0000000..cb3e624 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_59.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_59.jpg new file mode 100644 index 0000000..5269a1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_60.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_60.jpg new file mode 100644 index 0000000..ca7c537 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_61.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_61.jpg new file mode 100644 index 0000000..c7f3f32 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_62.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_62.jpg new file mode 100644 index 0000000..ec73dcf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_63.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_63.jpg new file mode 100644 index 0000000..1f28718 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_64.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_64.jpg new file mode 100644 index 0000000..1a058a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_65.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_65.jpg new file mode 100644 index 0000000..16e1c18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_66.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_66.jpg new file mode 100644 index 0000000..d40c135 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_67.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_67.jpg new file mode 100644 index 0000000..29dcc17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_67.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_68.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_68.jpg new file mode 100644 index 0000000..81c6131 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_68.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_69.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_69.jpg new file mode 100644 index 0000000..4f72bdd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_69.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_70.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_70.jpg new file mode 100644 index 0000000..6862606 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_70.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_71.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_71.jpg new file mode 100644 index 0000000..41ed2aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_72.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_72.jpg new file mode 100644 index 0000000..a12e75c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_72.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_73.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_73.jpg new file mode 100644 index 0000000..62709a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_74.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_74.jpg new file mode 100644 index 0000000..f4eab3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_75.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_75.jpg new file mode 100644 index 0000000..648f2b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_75.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_76.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_76.jpg new file mode 100644 index 0000000..b2230cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_76.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_77.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_77.jpg new file mode 100644 index 0000000..6e95cbe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_77.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_78.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_78.jpg new file mode 100644 index 0000000..dd8d6b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_78.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_79.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_79.jpg new file mode 100644 index 0000000..de654a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_79.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_80.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_80.jpg new file mode 100644 index 0000000..98934fd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_80.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_81.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_81.jpg new file mode 100644 index 0000000..e100025 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_81.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_82.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_82.jpg new file mode 100644 index 0000000..0864877 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_82.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_83.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_83.jpg new file mode 100644 index 0000000..9f68ef6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_83.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_84.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_84.jpg new file mode 100644 index 0000000..ade7d7c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_84.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_85.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_85.jpg new file mode 100644 index 0000000..c7e818e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_85.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_86.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_86.jpg new file mode 100644 index 0000000..1c5c405 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_86.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_87.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_87.jpg new file mode 100644 index 0000000..9a3968a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_87.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_88.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_88.jpg new file mode 100644 index 0000000..28b474f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_88.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_89.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_89.jpg new file mode 100644 index 0000000..7ac81c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_89.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_90.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_90.jpg new file mode 100644 index 0000000..e563f36 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_90.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_91.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_91.jpg new file mode 100644 index 0000000..035a04c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_91.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_92.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_92.jpg new file mode 100644 index 0000000..f09fecc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_92.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_93.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_93.jpg new file mode 100644 index 0000000..600f760 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_93.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_94.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_94.jpg new file mode 100644 index 0000000..bec34c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_94.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_bloodelf_03.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_bloodelf_03.jpg new file mode 100644 index 0000000..45d3cd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_bloodelf_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_01.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_01.jpg new file mode 100644 index 0000000..257a3e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_02.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_02.jpg new file mode 100644 index 0000000..5abf152 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_03.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_03.jpg new file mode 100644 index 0000000..7054d6b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_04.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_04.jpg new file mode 100644 index 0000000..55f6dce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_05.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_05.jpg new file mode 100644 index 0000000..e645ba7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_06.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_06.jpg new file mode 100644 index 0000000..91f1d19 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_07.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_07.jpg new file mode 100644 index 0000000..9312be3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_sword_draenei_08.jpg b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_08.jpg new file mode 100644 index 0000000..b5b72e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_sword_draenei_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingaxe_01.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_01.jpg new file mode 100644 index 0000000..e8ff0e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingaxe_02.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_02.jpg new file mode 100644 index 0000000..b2da677 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingaxe_03.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_03.jpg new file mode 100644 index 0000000..ae90c22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingaxe_04.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_04.jpg new file mode 100644 index 0000000..5cc912b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingaxe_05.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_05.jpg new file mode 100644 index 0000000..7a13ff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingaxe_06.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_06.jpg new file mode 100644 index 0000000..681f4b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingaxe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingknife_01.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingknife_01.jpg new file mode 100644 index 0000000..2201b17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingknife_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingknife_02.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingknife_02.jpg new file mode 100644 index 0000000..6bb70b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingknife_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingknife_03.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingknife_03.jpg new file mode 100644 index 0000000..39e9914 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingknife_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingknife_04.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingknife_04.jpg new file mode 100644 index 0000000..012ae23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingknife_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingknife_05.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingknife_05.jpg new file mode 100644 index 0000000..0f2d37a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingknife_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingknife_06.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingknife_06.jpg new file mode 100644 index 0000000..d1a2b1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingknife_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_throwingknife_07.jpg b/other/AoWoW-master/images/icons/medium/inv_throwingknife_07.jpg new file mode 100644 index 0000000..56a3ae0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_throwingknife_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_torch_lit.jpg b/other/AoWoW-master/images/icons/medium/inv_torch_lit.jpg new file mode 100644 index 0000000..74a169b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_torch_lit.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_torch_thrown.jpg b/other/AoWoW-master/images/icons/medium/inv_torch_thrown.jpg new file mode 100644 index 0000000..c2a6155 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_torch_thrown.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_torch_unlit.jpg b/other/AoWoW-master/images/icons/medium/inv_torch_unlit.jpg new file mode 100644 index 0000000..4cf98b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_torch_unlit.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_01.jpg b/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_01.jpg new file mode 100644 index 0000000..7cedc03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_02.jpg b/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_02.jpg new file mode 100644 index 0000000..b13f8ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_03.jpg b/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_03.jpg new file mode 100644 index 0000000..83a21cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_tradeskillitem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_honorhold.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_honorhold.jpg new file mode 100644 index 0000000..d79f8fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas01.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas01.jpg new file mode 100644 index 0000000..ebe4749 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas02.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas02.jpg new file mode 100644 index 0000000..1a23e9e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas03.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas03.jpg new file mode 100644 index 0000000..944fc8d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas04.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas04.jpg new file mode 100644 index 0000000..fa39c01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas05.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas05.jpg new file mode 100644 index 0000000..541e7c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas06.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas06.jpg new file mode 100644 index 0000000..e7dea2d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_naxxramas06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_trinket_thrallmar.jpg b/other/AoWoW-master/images/icons/medium/inv_trinket_thrallmar.jpg new file mode 100644 index 0000000..23a0869 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_trinket_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinecolognebottle.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinecolognebottle.jpg new file mode 100644 index 0000000..c5fe501 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinecolognebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentineperfumebottle.jpg b/other/AoWoW-master/images/icons/medium/inv_valentineperfumebottle.jpg new file mode 100644 index 0000000..1927d15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentineperfumebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinepinkrocket.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinepinkrocket.jpg new file mode 100644 index 0000000..706c9ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinepinkrocket.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinesboxofchocolates01.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinesboxofchocolates01.jpg new file mode 100644 index 0000000..5dfefe1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinesboxofchocolates01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinesboxofchocolates02.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinesboxofchocolates02.jpg new file mode 100644 index 0000000..3190854 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinesboxofchocolates02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinescandy.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinescandy.jpg new file mode 100644 index 0000000..7fb4737 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinescandy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinescandysack.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinescandysack.jpg new file mode 100644 index 0000000..c18d75d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinescandysack.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinescard01.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinescard01.jpg new file mode 100644 index 0000000..55338ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinescard01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinescard02.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinescard02.jpg new file mode 100644 index 0000000..8ed00df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinescard02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinescardtornleft.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinescardtornleft.jpg new file mode 100644 index 0000000..269ef1e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinescardtornleft.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentinescardtornright.jpg b/other/AoWoW-master/images/icons/medium/inv_valentinescardtornright.jpg new file mode 100644 index 0000000..22a0586 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentinescardtornright.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentineschocolate01.jpg b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate01.jpg new file mode 100644 index 0000000..358f69f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentineschocolate02.jpg b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate02.jpg new file mode 100644 index 0000000..58f30e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentineschocolate03.jpg b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate03.jpg new file mode 100644 index 0000000..4cb2cb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_valentineschocolate04.jpg b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate04.jpg new file mode 100644 index 0000000..b8725ae Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_valentineschocolate04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_waepon_bow_zulgrub_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_waepon_bow_zulgrub_d_01.jpg new file mode 100644 index 0000000..f081b98 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_waepon_bow_zulgrub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_waepon_bow_zulgrub_d_02.jpg b/other/AoWoW-master/images/icons/medium/inv_waepon_bow_zulgrub_d_02.jpg new file mode 100644 index 0000000..17ad9de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_waepon_bow_zulgrub_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_01.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_01.jpg new file mode 100644 index 0000000..bb5077c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_02.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_02.jpg new file mode 100644 index 0000000..30287ef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_03.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_03.jpg new file mode 100644 index 0000000..dcfc610 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_04.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_04.jpg new file mode 100644 index 0000000..c47b7ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_05.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_05.jpg new file mode 100644 index 0000000..f815f7a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_06.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_06.jpg new file mode 100644 index 0000000..9dd8fdc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_07.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_07.jpg new file mode 100644 index 0000000..b588f47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_08.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_08.jpg new file mode 100644 index 0000000..451e9eb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_09.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_09.jpg new file mode 100644 index 0000000..85b7e34 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_10.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_10.jpg new file mode 100644 index 0000000..fdb2527 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_11.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_11.jpg new file mode 100644 index 0000000..9dfa78b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_12.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_12.jpg new file mode 100644 index 0000000..87a2328 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_14.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_14.jpg new file mode 100644 index 0000000..e725d90 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_15.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_15.jpg new file mode 100644 index 0000000..e7e4f52 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_16.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_16.jpg new file mode 100644 index 0000000..f622956 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_17.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_17.jpg new file mode 100644 index 0000000..652ba22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_18.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_18.jpg new file mode 100644 index 0000000..12132af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_19.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_19.jpg new file mode 100644 index 0000000..b06a401 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..a96d257 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..81ad37a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_20.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_20.jpg new file mode 100644 index 0000000..f723129 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_21.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_21.jpg new file mode 100644 index 0000000..272ef7f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_22.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_22.jpg new file mode 100644 index 0000000..c519efc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_23.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_23.jpg new file mode 100644 index 0000000..56f5716 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_24.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_24.jpg new file mode 100644 index 0000000..4155167 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_wand_25.jpg b/other/AoWoW-master/images/icons/medium/inv_wand_25.jpg new file mode 100644 index 0000000..29cff73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_wand_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_01.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_01.jpg new file mode 100644 index 0000000..80fff12 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_02.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_02.jpg new file mode 100644 index 0000000..26f4b72 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_03.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_03.jpg new file mode 100644 index 0000000..078dc77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_04.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_04.jpg new file mode 100644 index 0000000..6a58c25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_05.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_05.jpg new file mode 100644 index 0000000..c8c4591 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_06.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_06.jpg new file mode 100644 index 0000000..24075cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_07.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_07.jpg new file mode 100644 index 0000000..76bd786 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_08.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_08.jpg new file mode 100644 index 0000000..4f5902a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_09.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_09.jpg new file mode 100644 index 0000000..b07b1e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_10.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_10.jpg new file mode 100644 index 0000000..80aaacc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_11.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_11.jpg new file mode 100644 index 0000000..76d18ef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_12.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_12.jpg new file mode 100644 index 0000000..5064767 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_13.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_13.jpg new file mode 100644 index 0000000..f86d1f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_14.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_14.jpg new file mode 100644 index 0000000..113aa21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_15.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_15.jpg new file mode 100644 index 0000000..935c240 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_16.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_16.jpg new file mode 100644 index 0000000..5008ce0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_17.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_17.jpg new file mode 100644 index 0000000..bfa1917 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_18.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_18.jpg new file mode 100644 index 0000000..d2e5cd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_19.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_19.jpg new file mode 100644 index 0000000..061471a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_20.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_20.jpg new file mode 100644 index 0000000..782966e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_28.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_28.jpg new file mode 100644 index 0000000..113aa21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_30.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_30.jpg new file mode 100644 index 0000000..217a999 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_31.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_31.jpg new file mode 100644 index 0000000..be173fb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_32.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_32.jpg new file mode 100644 index 0000000..86ed304 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_37.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_37.jpg new file mode 100644 index 0000000..9dd87c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_38.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_38.jpg new file mode 100644 index 0000000..beccae3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_bow_39.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_39.jpg new file mode 100644 index 0000000..1897a50 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_bow_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_01.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_01.jpg new file mode 100644 index 0000000..5d82546 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_02.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_02.jpg new file mode 100644 index 0000000..e264efb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_03.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_03.jpg new file mode 100644 index 0000000..94ed50a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_04.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_04.jpg new file mode 100644 index 0000000..f66fb3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_05.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_05.jpg new file mode 100644 index 0000000..f36e1ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_06.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_06.jpg new file mode 100644 index 0000000..df995db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_07.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_07.jpg new file mode 100644 index 0000000..daa7c08 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_08.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_08.jpg new file mode 100644 index 0000000..802c00c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_09.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_09.jpg new file mode 100644 index 0000000..3cdaa10 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_10.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_10.jpg new file mode 100644 index 0000000..6b57308 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_11.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_11.jpg new file mode 100644 index 0000000..7b06132 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_12.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_12.jpg new file mode 100644 index 0000000..ecb3bd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_13.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_13.jpg new file mode 100644 index 0000000..9ab700b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_14.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_14.jpg new file mode 100644 index 0000000..f173ab7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_15.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_15.jpg new file mode 100644 index 0000000..a5fab5d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_16.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_16.jpg new file mode 100644 index 0000000..a457f3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_17.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_17.jpg new file mode 100644 index 0000000..6b685e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_18.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_18.jpg new file mode 100644 index 0000000..b6b854f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_19.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_19.jpg new file mode 100644 index 0000000..048b95e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_20.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_20.jpg new file mode 100644 index 0000000..f140c1f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_25.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_25.jpg new file mode 100644 index 0000000..722d9ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_26.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_26.jpg new file mode 100644 index 0000000..a091c22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_crossbow_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_glave_01.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_glave_01.jpg new file mode 100644 index 0000000..8cee28a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_glave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halbard_01.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halbard_01.jpg new file mode 100644 index 0000000..5cef60e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halbard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd13.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd13.jpg new file mode 100644 index 0000000..522cd9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd14.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd14.jpg new file mode 100644 index 0000000..a5f717b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd15.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd15.jpg new file mode 100644 index 0000000..d6f27c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd16.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd16.jpg new file mode 100644 index 0000000..aaeab80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd17.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd17.jpg new file mode 100644 index 0000000..7ac5a60 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd18.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd18.jpg new file mode 100644 index 0000000..9997eda Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd19.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd19.jpg new file mode 100644 index 0000000..f100123 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_02.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_02.jpg new file mode 100644 index 0000000..c8014d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_03.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_03.jpg new file mode 100644 index 0000000..d9ab431 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_04.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_04.jpg new file mode 100644 index 0000000..f9dcd69 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_05.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_05.jpg new file mode 100644 index 0000000..0d1ca82 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_06.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_06.jpg new file mode 100644 index 0000000..25b2e20 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_07.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_07.jpg new file mode 100644 index 0000000..3a30aa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_08.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_08.jpg new file mode 100644 index 0000000..91cdb23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_09.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_09.jpg new file mode 100644 index 0000000..633bfe7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_10.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_10.jpg new file mode 100644 index 0000000..7b2bf5c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_11.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_11.jpg new file mode 100644 index 0000000..7040323 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_12.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_12.jpg new file mode 100644 index 0000000..0c6b031 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_20.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_20.jpg new file mode 100644 index 0000000..0311dd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_22.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_22.jpg new file mode 100644 index 0000000..4921e61 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_ahnqiraj.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_ahnqiraj.jpg new file mode 100644 index 0000000..42f78fb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_halberd_ahnqiraj.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_01.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_01.jpg new file mode 100644 index 0000000..d7ad21a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_02.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_02.jpg new file mode 100644 index 0000000..2f35434 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_03.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_03.jpg new file mode 100644 index 0000000..7510770 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_04.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_04.jpg new file mode 100644 index 0000000..c87d94e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_05.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_05.jpg new file mode 100644 index 0000000..62f39be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_06.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_06.jpg new file mode 100644 index 0000000..1b87561 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_07.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_07.jpg new file mode 100644 index 0000000..a38561b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_08.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_08.jpg new file mode 100644 index 0000000..26d2e8a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_09.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_09.jpg new file mode 100644 index 0000000..9eb4d47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_10.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_10.jpg new file mode 100644 index 0000000..607d2c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_11.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_11.jpg new file mode 100644 index 0000000..edf058f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_12.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_12.jpg new file mode 100644 index 0000000..626bfd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_13.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_13.jpg new file mode 100644 index 0000000..a5c8037 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_14.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_14.jpg new file mode 100644 index 0000000..0920bd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_15.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_15.jpg new file mode 100644 index 0000000..ec13966 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_hand_16.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_16.jpg new file mode 100644 index 0000000..726b2c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_hand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_01.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_01.jpg new file mode 100644 index 0000000..96aadee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_02.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_02.jpg new file mode 100644 index 0000000..8151f22 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_03.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_03.jpg new file mode 100644 index 0000000..7515de7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_04.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_04.jpg new file mode 100644 index 0000000..e8fa955 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_05.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_05.jpg new file mode 100644 index 0000000..5c158d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_06.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_06.jpg new file mode 100644 index 0000000..8676241 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_07.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_07.jpg new file mode 100644 index 0000000..148e45d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_08.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_08.jpg new file mode 100644 index 0000000..37b1739 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_09.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_09.jpg new file mode 100644 index 0000000..bd42ce8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_10.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_10.jpg new file mode 100644 index 0000000..4e6fb93 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_11.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_11.jpg new file mode 100644 index 0000000..87b6793 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_13.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_13.jpg new file mode 100644 index 0000000..1e9b6b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_14.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_14.jpg new file mode 100644 index 0000000..eba5b8a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_15.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_15.jpg new file mode 100644 index 0000000..aed004b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_16.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_16.jpg new file mode 100644 index 0000000..c790c28 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_17.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_17.jpg new file mode 100644 index 0000000..55b01ee Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_18.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_18.jpg new file mode 100644 index 0000000..aebf3fc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_19.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_19.jpg new file mode 100644 index 0000000..7eacbed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_20.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_20.jpg new file mode 100644 index 0000000..04bd9a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_21.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_21.jpg new file mode 100644 index 0000000..f1ffc3a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_22.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_22.jpg new file mode 100644 index 0000000..6cb4be6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_23.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_23.jpg new file mode 100644 index 0000000..e4fb88c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_24.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_24.jpg new file mode 100644 index 0000000..66b7b41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_rifle_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_01.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_01.jpg new file mode 100644 index 0000000..2a8c9c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_02.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_02.jpg new file mode 100644 index 0000000..bd4ebc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_03.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_03.jpg new file mode 100644 index 0000000..315c261 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_04.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_04.jpg new file mode 100644 index 0000000..db64ec2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_05.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_05.jpg new file mode 100644 index 0000000..bf69dbd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_05.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_06.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_06.jpg new file mode 100644 index 0000000..c5025f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_06.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_07.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_07.jpg new file mode 100644 index 0000000..fe63dfc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_07.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_08.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_08.jpg new file mode 100644 index 0000000..47ea690 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_08.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_09.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_09.jpg new file mode 100644 index 0000000..e876e1d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_09.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_10.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_10.jpg new file mode 100644 index 0000000..0fb86ea Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_10.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_11.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_11.jpg new file mode 100644 index 0000000..b0821b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_11.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_12.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_12.jpg new file mode 100644 index 0000000..69f1b5b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_12.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_13.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_13.jpg new file mode 100644 index 0000000..c4ff4ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_13.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_14.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_14.jpg new file mode 100644 index 0000000..5f7103d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_14.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_15.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_15.jpg new file mode 100644 index 0000000..76ca8ce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_15.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_16.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_16.jpg new file mode 100644 index 0000000..ab37622 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_16.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_17.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_17.jpg new file mode 100644 index 0000000..6c66158 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_17.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_18.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_18.jpg new file mode 100644 index 0000000..0bbc552 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_18.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_19.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_19.jpg new file mode 100644 index 0000000..d5376ce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_19.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_20.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_20.jpg new file mode 100644 index 0000000..70b7a64 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_20.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_21.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_21.jpg new file mode 100644 index 0000000..5a21e91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_21.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_22.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_22.jpg new file mode 100644 index 0000000..34712ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_22.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_23.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_23.jpg new file mode 100644 index 0000000..454c80f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_23.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_24.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_24.jpg new file mode 100644 index 0000000..952ee3d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_24.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_25.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_25.jpg new file mode 100644 index 0000000..d3f5ccc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_25.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_26.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_26.jpg new file mode 100644 index 0000000..716979d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_26.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_27.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_27.jpg new file mode 100644 index 0000000..f41ad1e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_27.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_28.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_28.jpg new file mode 100644 index 0000000..40f2007 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_28.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_29.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_29.jpg new file mode 100644 index 0000000..2921a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_29.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_30.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_30.jpg new file mode 100644 index 0000000..d0ec4cd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_30.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_31.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_31.jpg new file mode 100644 index 0000000..f5dd294 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_31.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_32.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_32.jpg new file mode 100644 index 0000000..c416a0b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_32.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_33.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_33.jpg new file mode 100644 index 0000000..cdfdedb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_33.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_34.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_34.jpg new file mode 100644 index 0000000..03f9acb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_34.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_35.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_35.jpg new file mode 100644 index 0000000..6257199 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_35.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_37.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_37.jpg new file mode 100644 index 0000000..c918bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_37.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_38.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_38.jpg new file mode 100644 index 0000000..0e53be0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_38.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_39.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_39.jpg new file mode 100644 index 0000000..c24e555 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_39.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_40.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_40.jpg new file mode 100644 index 0000000..004542d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_40.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_41.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_41.jpg new file mode 100644 index 0000000..fd00f78 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_41.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_42.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_42.jpg new file mode 100644 index 0000000..6618ba7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_42.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_43.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_43.jpg new file mode 100644 index 0000000..d8b714b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_43.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_44.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_44.jpg new file mode 100644 index 0000000..6ff3a56 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_44.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_45.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_45.jpg new file mode 100644 index 0000000..3c5469a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_45.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_46.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_46.jpg new file mode 100644 index 0000000..3efc442 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_46.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_47.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_47.jpg new file mode 100644 index 0000000..79b19de Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_47.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_48.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_48.jpg new file mode 100644 index 0000000..ac4f9bc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_48.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_49.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_49.jpg new file mode 100644 index 0000000..f2cc28f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_49.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_50.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_50.jpg new file mode 100644 index 0000000..741f743 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_50.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_51.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_51.jpg new file mode 100644 index 0000000..51c7a49 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_51.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_52.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_52.jpg new file mode 100644 index 0000000..e16a380 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_52.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_53.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_53.jpg new file mode 100644 index 0000000..0ff388d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_53.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_54.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_54.jpg new file mode 100644 index 0000000..eab3f96 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_54.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_55.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_55.jpg new file mode 100644 index 0000000..080987d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_55.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_56.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_56.jpg new file mode 100644 index 0000000..dc3fc59 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_56.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_57.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_57.jpg new file mode 100644 index 0000000..4454b08 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_57.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_58.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_58.jpg new file mode 100644 index 0000000..0bcfbff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_58.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_59.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_59.jpg new file mode 100644 index 0000000..1a9c9b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_59.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_60.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_60.jpg new file mode 100644 index 0000000..1156070 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_60.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_61.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_61.jpg new file mode 100644 index 0000000..43324ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_61.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_62.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_62.jpg new file mode 100644 index 0000000..fa9f86a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_62.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_63.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_63.jpg new file mode 100644 index 0000000..fd42b5d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_63.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_64.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_64.jpg new file mode 100644 index 0000000..79ec2b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_64.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_65.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_65.jpg new file mode 100644 index 0000000..fb6299d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_65.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_66.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_66.jpg new file mode 100644 index 0000000..380d208 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_66.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_71.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_71.jpg new file mode 100644 index 0000000..20fc0ed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_71.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_73.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_73.jpg new file mode 100644 index 0000000..92aba60 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_73.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_74.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_74.jpg new file mode 100644 index 0000000..f09f179 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_74.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_75.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_75.jpg new file mode 100644 index 0000000..8f0fbd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_75.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_78.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_78.jpg new file mode 100644 index 0000000..c8b8b72 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_78.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_79.jpg b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_79.jpg new file mode 100644 index 0000000..97c08b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_weapon_shortblade_79.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/inv_zulgurubtrinket.jpg b/other/AoWoW-master/images/icons/medium/inv_zulgurubtrinket.jpg new file mode 100644 index 0000000..5d38deb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/inv_zulgurubtrinket.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/mail_gmicon.jpg b/other/AoWoW-master/images/icons/medium/mail_gmicon.jpg new file mode 100644 index 0000000..d86ebf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/mail_gmicon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/racial_dwarf_findtreasure.jpg b/other/AoWoW-master/images/icons/medium/racial_dwarf_findtreasure.jpg new file mode 100644 index 0000000..684cb89 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/racial_dwarf_findtreasure.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/racial_orc_berserkerstrength.jpg b/other/AoWoW-master/images/icons/medium/racial_orc_berserkerstrength.jpg new file mode 100644 index 0000000..fb7af12 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/racial_orc_berserkerstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/racial_troll_berserk.jpg b/other/AoWoW-master/images/icons/medium/racial_troll_berserk.jpg new file mode 100644 index 0000000..336865d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/racial_troll_berserk.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_arcane01.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane01.jpg new file mode 100644 index 0000000..ad84219 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_arcane02.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane02.jpg new file mode 100644 index 0000000..efde6e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_arcane03.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane03.jpg new file mode 100644 index 0000000..2effaa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane03.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_arcane04.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane04.jpg new file mode 100644 index 0000000..6415c32 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_arcane04.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_arcanepotency.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_arcanepotency.jpg new file mode 100644 index 0000000..46f93bc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_arcanepotency.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_arcaneresilience.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_arcaneresilience.jpg new file mode 100644 index 0000000..92447a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_arcaneresilience.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_arcanetorrent.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_arcanetorrent.jpg new file mode 100644 index 0000000..6edb7a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_arcanetorrent.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_blast.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_blast.jpg new file mode 100644 index 0000000..5b46657 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_blast.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_blink.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_blink.jpg new file mode 100644 index 0000000..e381175 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_blink.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_focusedpower.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_focusedpower.jpg new file mode 100644 index 0000000..e241f2c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_manatap.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_manatap.jpg new file mode 100644 index 0000000..05daee4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_manatap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_massdispel.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_massdispel.jpg new file mode 100644 index 0000000..58185bc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_massdispel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_mindmastery.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_mindmastery.jpg new file mode 100644 index 0000000..f91cbfc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_mindmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portaldarnassus.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portaldarnassus.jpg new file mode 100644 index 0000000..9dd507e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portaldarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalexodar.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalexodar.jpg new file mode 100644 index 0000000..2a6c78b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalironforge.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalironforge.jpg new file mode 100644 index 0000000..03cd283 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalorgrimmar.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalorgrimmar.jpg new file mode 100644 index 0000000..cb36b0b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalshattrath.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalshattrath.jpg new file mode 100644 index 0000000..161f84d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalsilvermoon.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalsilvermoon.jpg new file mode 100644 index 0000000..4b7bccc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalstonard.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalstonard.jpg new file mode 100644 index 0000000..b2fe7af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalstormwind.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalstormwind.jpg new file mode 100644 index 0000000..8a64479 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portaltheramore.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portaltheramore.jpg new file mode 100644 index 0000000..789b170 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portaltheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalthunderbluff.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalthunderbluff.jpg new file mode 100644 index 0000000..3a1762b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_portalundercity.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_portalundercity.jpg new file mode 100644 index 0000000..9e96ec6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_portalundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_prismaticcloak.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_prismaticcloak.jpg new file mode 100644 index 0000000..d8a173f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_prismaticcloak.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_starfire.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_starfire.jpg new file mode 100644 index 0000000..89bf975 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_starfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_studentofmagic.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_studentofmagic.jpg new file mode 100644 index 0000000..9b74615 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_studentofmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportdarnassus.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportdarnassus.jpg new file mode 100644 index 0000000..095c3f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportdarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportexodar.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportexodar.jpg new file mode 100644 index 0000000..c7f853d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportironforge.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportironforge.jpg new file mode 100644 index 0000000..9305da8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportmoonglade.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportmoonglade.jpg new file mode 100644 index 0000000..1e3af9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportmoonglade.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportorgrimmar.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportorgrimmar.jpg new file mode 100644 index 0000000..e9e3a34 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportshattrath.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportshattrath.jpg new file mode 100644 index 0000000..51ef6ed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportsilvermoon.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportsilvermoon.jpg new file mode 100644 index 0000000..f6cf53f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportstonard.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportstonard.jpg new file mode 100644 index 0000000..be25749 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportstormwind.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportstormwind.jpg new file mode 100644 index 0000000..a2f7c47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleporttheramore.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleporttheramore.jpg new file mode 100644 index 0000000..67fb95f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleporttheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportthunderbluff.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportthunderbluff.jpg new file mode 100644 index 0000000..26c1a55 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_arcane_teleportundercity.jpg b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportundercity.jpg new file mode 100644 index 0000000..5a3015d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_arcane_teleportundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_brokenheart.jpg b/other/AoWoW-master/images/icons/medium/spell_brokenheart.jpg new file mode 100644 index 0000000..4008f77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_brokenheart.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_chargenegative.jpg b/other/AoWoW-master/images/icons/medium/spell_chargenegative.jpg new file mode 100644 index 0000000..fafc034 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_chargenegative.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_chargepositive.jpg b/other/AoWoW-master/images/icons/medium/spell_chargepositive.jpg new file mode 100644 index 0000000..a65d4ef Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_chargepositive.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_bluecano.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_bluecano.jpg new file mode 100644 index 0000000..e0c970b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_bluecano.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_bluefire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_bluefire.jpg new file mode 100644 index 0000000..cc508a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_bluefire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_bluefirenova.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_bluefirenova.jpg new file mode 100644 index 0000000..1cd1480 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_bluefirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_bluefireward.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_bluefireward.jpg new file mode 100644 index 0000000..606e278 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_bluefireward.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_blueflamebolt.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamebolt.jpg new file mode 100644 index 0000000..eb7324b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_blueflamebreath.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamebreath.jpg new file mode 100644 index 0000000..a891d25 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_blueflamering.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamering.jpg new file mode 100644 index 0000000..a952770 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_blueflamestrike.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamestrike.jpg new file mode 100644 index 0000000..ad2104f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_blueflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_bluehellfire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_bluehellfire.jpg new file mode 100644 index 0000000..0393d3e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_bluehellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_blueimmolation.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_blueimmolation.jpg new file mode 100644 index 0000000..8ebf9c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_blueimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_bluepyroblast.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_bluepyroblast.jpg new file mode 100644 index 0000000..10cfe08 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_bluepyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_bluerainoffire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_bluerainoffire.jpg new file mode 100644 index 0000000..4623168 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_bluerainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_burningspeed.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_burningspeed.jpg new file mode 100644 index 0000000..4f70d2d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_burningspeed.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_burnout.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_burnout.jpg new file mode 100644 index 0000000..dab9f20 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_burnout.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_elemental_totem.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_elemental_totem.jpg new file mode 100644 index 0000000..a4efb95 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_elemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_elementaldevastation.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_elementaldevastation.jpg new file mode 100644 index 0000000..06ebc38 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_elementaldevastation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_enchantweapon.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_enchantweapon.jpg new file mode 100644 index 0000000..6ac8249 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_enchantweapon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felcano.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felcano.jpg new file mode 100644 index 0000000..4b88e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felcano.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felfire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felfire.jpg new file mode 100644 index 0000000..6cf959c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felfirenova.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felfirenova.jpg new file mode 100644 index 0000000..2929167 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felfirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felfireward.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felfireward.jpg new file mode 100644 index 0000000..a5ea7a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felfireward.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felflamebolt.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felflamebolt.jpg new file mode 100644 index 0000000..91cae74 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felflamebreath.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felflamebreath.jpg new file mode 100644 index 0000000..a000f15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felflamering.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felflamering.jpg new file mode 100644 index 0000000..d269ee3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felflamestrike.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felflamestrike.jpg new file mode 100644 index 0000000..eb202d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felhellfire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felhellfire.jpg new file mode 100644 index 0000000..b41ff59 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felhellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felimmolation.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felimmolation.jpg new file mode 100644 index 0000000..9719d06 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felpyroblast.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felpyroblast.jpg new file mode 100644 index 0000000..255384d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felpyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_felrainoffire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_felrainoffire.jpg new file mode 100644 index 0000000..d59d606 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_felrainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_fire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_fire.jpg new file mode 100644 index 0000000..2b15bec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_firearmor.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_firearmor.jpg new file mode 100644 index 0000000..89fa458 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_firearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_fireball.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_fireball.jpg new file mode 100644 index 0000000..ef68fcc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_fireball.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_fireball02.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_fireball02.jpg new file mode 100644 index 0000000..99f65ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_fireball02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_firebolt.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_firebolt.jpg new file mode 100644 index 0000000..1e28241 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_firebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_firebolt02.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_firebolt02.jpg new file mode 100644 index 0000000..e53b8d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_firebolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_flameblades.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_flameblades.jpg new file mode 100644 index 0000000..ab3fb21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_flameblades.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_flamebolt.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_flamebolt.jpg new file mode 100644 index 0000000..416d751 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_flamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_flameshock.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_flameshock.jpg new file mode 100644 index 0000000..0797346 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_flameshock.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_flametounge.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_flametounge.jpg new file mode 100644 index 0000000..5f62e4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_flametounge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_flare.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_flare.jpg new file mode 100644 index 0000000..64ba6ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_flare.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_frostresistancetotem.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_frostresistancetotem.jpg new file mode 100644 index 0000000..cbab86d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_frostresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_immolation.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_immolation.jpg new file mode 100644 index 0000000..3262e1b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_immolation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_incinerate.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_incinerate.jpg new file mode 100644 index 0000000..2085787 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_incinerate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_lavaspawn.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_lavaspawn.jpg new file mode 100644 index 0000000..39ad153 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_lavaspawn.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_masterofelements.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_masterofelements.jpg new file mode 100644 index 0000000..76fa01b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_masterofelements.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_meteorstorm.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_meteorstorm.jpg new file mode 100644 index 0000000..8ba22f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_meteorstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_moltenblood.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_moltenblood.jpg new file mode 100644 index 0000000..6c6c4a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_moltenblood.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_playingwithfire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_playingwithfire.jpg new file mode 100644 index 0000000..6191597 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_playingwithfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_sealoffire.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_sealoffire.jpg new file mode 100644 index 0000000..3050921 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_sealoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_searingtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_searingtotem.jpg new file mode 100644 index 0000000..8dafd9e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_searingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_selfdestruct.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_selfdestruct.jpg new file mode 100644 index 0000000..eb0b99e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_selfdestruct.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_soulburn.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_soulburn.jpg new file mode 100644 index 0000000..84486cd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_soulburn.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_sunkey.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_sunkey.jpg new file mode 100644 index 0000000..7c36e9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_sunkey.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_totemofwrath.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_totemofwrath.jpg new file mode 100644 index 0000000..e263379 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_totemofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_volcano.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_volcano.jpg new file mode 100644 index 0000000..2929bdc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_volcano.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fire_windsofwoe.jpg b/other/AoWoW-master/images/icons/medium/spell_fire_windsofwoe.jpg new file mode 100644 index 0000000..58c5e3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fire_windsofwoe.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_fireresistancetotem_01.jpg b/other/AoWoW-master/images/icons/medium/spell_fireresistancetotem_01.jpg new file mode 100644 index 0000000..4e2313e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_fireresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_arcticwinds.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_arcticwinds.jpg new file mode 100644 index 0000000..0a69b18 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_arcticwinds.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_chainsofice.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_chainsofice.jpg new file mode 100644 index 0000000..b55ee4e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_chainsofice.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_chillingarmor.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_chillingarmor.jpg new file mode 100644 index 0000000..91e5bb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_chillingarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_chillingblast.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_chillingblast.jpg new file mode 100644 index 0000000..70886b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_chillingblast.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_chillingbolt.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_chillingbolt.jpg new file mode 100644 index 0000000..8d4d23d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_chillingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_coldhearted.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_coldhearted.jpg new file mode 100644 index 0000000..8181b32 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_coldhearted.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_fireresistancetotem.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_fireresistancetotem.jpg new file mode 100644 index 0000000..de0c2da Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_fireresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_freezingbreath.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_freezingbreath.jpg new file mode 100644 index 0000000..c8d5204 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_freezingbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frost.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frost.jpg new file mode 100644 index 0000000..7cf7022 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostarmor.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostarmor.jpg new file mode 100644 index 0000000..cd71c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostarmor02.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostarmor02.jpg new file mode 100644 index 0000000..bdfb42d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostarmor02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostblast.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostblast.jpg new file mode 100644 index 0000000..b23818e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostblast.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostbolt.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostbolt.jpg new file mode 100644 index 0000000..4ebe3b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostbolt02.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostbolt02.jpg new file mode 100644 index 0000000..78cabe7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostbolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostbrand.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostbrand.jpg new file mode 100644 index 0000000..4bec652 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostbrand.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostnova.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostnova.jpg new file mode 100644 index 0000000..39ac070 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostnova.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostshock.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostshock.jpg new file mode 100644 index 0000000..257ca81 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostshock.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frostward.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frostward.jpg new file mode 100644 index 0000000..f99f843 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frostward.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_frozencore.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_frozencore.jpg new file mode 100644 index 0000000..09eef24 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_frozencore.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_glacier.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_glacier.jpg new file mode 100644 index 0000000..36f61dd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_glacier.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_iceclaw.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_iceclaw.jpg new file mode 100644 index 0000000..dfae5c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_iceclaw.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_icefloes.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_icefloes.jpg new file mode 100644 index 0000000..06aaec5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_icefloes.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_iceshard.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_iceshard.jpg new file mode 100644 index 0000000..36f394e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_iceshard.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_iceshock.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_iceshock.jpg new file mode 100644 index 0000000..0b6276c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_iceshock.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_icestorm.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_icestorm.jpg new file mode 100644 index 0000000..0e3058b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_icestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_manaburn.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_manaburn.jpg new file mode 100644 index 0000000..a290507 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_manarecharge.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_manarecharge.jpg new file mode 100644 index 0000000..978971c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_manarecharge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_stun.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_stun.jpg new file mode 100644 index 0000000..30328df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_stun.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_summonwaterelemental.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_summonwaterelemental.jpg new file mode 100644 index 0000000..6697b01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_summonwaterelemental.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_summonwaterelemental_2.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_summonwaterelemental_2.jpg new file mode 100644 index 0000000..a9125c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_summonwaterelemental_2.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_windwalkon.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_windwalkon.jpg new file mode 100644 index 0000000..ede1e68 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_windwalkon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_wisp.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_wisp.jpg new file mode 100644 index 0000000..b257936 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_wisp.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frost_wizardmark.jpg b/other/AoWoW-master/images/icons/medium/spell_frost_wizardmark.jpg new file mode 100644 index 0000000..b192dc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frost_wizardmark.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_frostresistancetotem_01.jpg b/other/AoWoW-master/images/icons/medium/spell_frostresistancetotem_01.jpg new file mode 100644 index 0000000..3cb89f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_frostresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holiday_tow_spicecloud.jpg b/other/AoWoW-master/images/icons/medium/spell_holiday_tow_spicecloud.jpg new file mode 100644 index 0000000..64f49c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holiday_tow_spicecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_absolution.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_absolution.jpg new file mode 100644 index 0000000..11d6e9f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_absolution.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_arcaneintellect.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_arcaneintellect.jpg new file mode 100644 index 0000000..df8d26d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_arcaneintellect.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_ardentdefender.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_ardentdefender.jpg new file mode 100644 index 0000000..704e08c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_ardentdefender.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_ashestoashes.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_ashestoashes.jpg new file mode 100644 index 0000000..7c27aaf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_ashestoashes.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_auramastery.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_auramastery.jpg new file mode 100644 index 0000000..971a395 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_auramastery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_auraoflight.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_auraoflight.jpg new file mode 100644 index 0000000..f985f46 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_auraoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_avengersshield.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_avengersshield.jpg new file mode 100644 index 0000000..b6c5d4d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_avengersshield.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_avenginewrath.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_avenginewrath.jpg new file mode 100644 index 0000000..ba6243a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_avenginewrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blessedlife.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blessedlife.jpg new file mode 100644 index 0000000..087c405 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blessedlife.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blessedrecovery.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blessedrecovery.jpg new file mode 100644 index 0000000..bd294af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blessedrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blessedresillience.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blessedresillience.jpg new file mode 100644 index 0000000..4018cac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blessedresillience.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blessingofagility.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofagility.jpg new file mode 100644 index 0000000..d8e93c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofagility.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blessingofprotection.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofprotection.jpg new file mode 100644 index 0000000..de89fa4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blessingofstamina.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofstamina.jpg new file mode 100644 index 0000000..e15d11d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blessingofstrength.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofstrength.jpg new file mode 100644 index 0000000..269c102 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blessingofstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_blindingheal.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_blindingheal.jpg new file mode 100644 index 0000000..b37dc4a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_blindingheal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_championsbond.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_championsbond.jpg new file mode 100644 index 0000000..6404d63 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_championsbond.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_championsgrace.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_championsgrace.jpg new file mode 100644 index 0000000..9f440fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_championsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_chastise.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_chastise.jpg new file mode 100644 index 0000000..d52cf5b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_chastise.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_circleofrenewal.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_circleofrenewal.jpg new file mode 100644 index 0000000..b36421f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_circleofrenewal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_consumemagic.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_consumemagic.jpg new file mode 100644 index 0000000..198ed47 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_consumemagic.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_crusade.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_crusade.jpg new file mode 100644 index 0000000..3632ffe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_crusaderaura.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_crusaderaura.jpg new file mode 100644 index 0000000..06fd63d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_crusaderaura.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_crusaderstrike.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_crusaderstrike.jpg new file mode 100644 index 0000000..f289e86 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_crusaderstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_devotion.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_devotion.jpg new file mode 100644 index 0000000..6b5dd82 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_devotion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_devotionaura.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_devotionaura.jpg new file mode 100644 index 0000000..d5d4d91 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_devotionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_dispelmagic.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_dispelmagic.jpg new file mode 100644 index 0000000..2f21776 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_dispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_divineillumination.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_divineillumination.jpg new file mode 100644 index 0000000..fe783a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_divineillumination.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_divineintervention.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_divineintervention.jpg new file mode 100644 index 0000000..50fa515 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_divineintervention.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_divinepurpose.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_divinepurpose.jpg new file mode 100644 index 0000000..240f70d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_divinepurpose.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_divinespirit.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_divinespirit.jpg new file mode 100644 index 0000000..0e85dd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_divinespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_dizzy.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_dizzy.jpg new file mode 100644 index 0000000..edd79c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_dizzy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_elunesgrace.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_elunesgrace.jpg new file mode 100644 index 0000000..4c778ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_elunesgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_empowerchampion.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_empowerchampion.jpg new file mode 100644 index 0000000..50ace41 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_empowerchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_excorcism.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_excorcism.jpg new file mode 100644 index 0000000..5c786f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_excorcism.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_excorcism_02.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_excorcism_02.jpg new file mode 100644 index 0000000..a80a4b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_excorcism_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_eyeforaneye.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_eyeforaneye.jpg new file mode 100644 index 0000000..a2a7b93 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_eyeforaneye.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_fanaticism.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_fanaticism.jpg new file mode 100644 index 0000000..7463400 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_fanaticism.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_fistofjustice.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_fistofjustice.jpg new file mode 100644 index 0000000..304d515 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_fistofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_flashheal.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_flashheal.jpg new file mode 100644 index 0000000..df8c884 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_flashheal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofkings.jpg new file mode 100644 index 0000000..f417dd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingoflight.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingoflight.jpg new file mode 100644 index 0000000..139a864 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofsalvation.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofsalvation.jpg new file mode 100644 index 0000000..2346753 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofsanctuary.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofsanctuary.jpg new file mode 100644 index 0000000..fcccadf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofsanctuary.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofwisdom.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofwisdom.jpg new file mode 100644 index 0000000..9894848 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_greaterblessingofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_greaterheal.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_greaterheal.jpg new file mode 100644 index 0000000..63729f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_greaterheal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_harmundeadaura.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_harmundeadaura.jpg new file mode 100644 index 0000000..075b97a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_harmundeadaura.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_heal.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_heal.jpg new file mode 100644 index 0000000..691d020 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_heal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_heal02.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_heal02.jpg new file mode 100644 index 0000000..96afb0e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_heal02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_healingaura.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_healingaura.jpg new file mode 100644 index 0000000..68ab949 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_healingaura.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_healingfocus.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_healingfocus.jpg new file mode 100644 index 0000000..a20d72b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_healingfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_heroism.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_heroism.jpg new file mode 100644 index 0000000..9a3184b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_holybolt.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_holybolt.jpg new file mode 100644 index 0000000..2993497 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_holybolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_holyguidance.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_holyguidance.jpg new file mode 100644 index 0000000..79e3ff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_holyguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_holynova.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_holynova.jpg new file mode 100644 index 0000000..50943d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_holynova.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_holyprotection.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_holyprotection.jpg new file mode 100644 index 0000000..5f88604 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_holyprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_holysmite.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_holysmite.jpg new file mode 100644 index 0000000..0d63e4a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_holysmite.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_improvedresistanceauras.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_improvedresistanceauras.jpg new file mode 100644 index 0000000..4000516 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_improvedresistanceauras.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_innerfire.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_innerfire.jpg new file mode 100644 index 0000000..3247f82 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_innerfire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_lastingdefense.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_lastingdefense.jpg new file mode 100644 index 0000000..137984a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_lastingdefense.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_layonhands.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_layonhands.jpg new file mode 100644 index 0000000..a4e3526 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_layonhands.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_lesserheal.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_lesserheal.jpg new file mode 100644 index 0000000..26e9bbb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_lesserheal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_lesserheal02.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_lesserheal02.jpg new file mode 100644 index 0000000..8b2c25c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_lesserheal02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_lightsgrace.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_lightsgrace.jpg new file mode 100644 index 0000000..87089ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_lightsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_magicalsentry.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_magicalsentry.jpg new file mode 100644 index 0000000..27898cd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_magicalsentry.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_mindsooth.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_mindsooth.jpg new file mode 100644 index 0000000..14160f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_mindsooth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_mindvision.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_mindvision.jpg new file mode 100644 index 0000000..2bf1fb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_mindvision.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_nullifydisease.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_nullifydisease.jpg new file mode 100644 index 0000000..8a359f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_painsupression.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_painsupression.jpg new file mode 100644 index 0000000..27e5992 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_painsupression.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_persuitofjustice.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_persuitofjustice.jpg new file mode 100644 index 0000000..edc2ee4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_persuitofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_power.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_power.jpg new file mode 100644 index 0000000..a075ace Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_power.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_powerinfusion.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_powerinfusion.jpg new file mode 100644 index 0000000..1a64c62 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_powerinfusion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_powerwordshield.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_powerwordshield.jpg new file mode 100644 index 0000000..6512729 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_powerwordshield.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_prayeroffortitude.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_prayeroffortitude.jpg new file mode 100644 index 0000000..87281be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_prayeroffortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_prayerofhealing.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofhealing.jpg new file mode 100644 index 0000000..d0a769e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofhealing.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_prayerofhealing02.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofhealing02.jpg new file mode 100644 index 0000000..1ac37bd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofhealing02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_prayerofmendingtga.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofmendingtga.jpg new file mode 100644 index 0000000..8a459a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofmendingtga.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_prayerofshadowprotection.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofshadowprotection.jpg new file mode 100644 index 0000000..e534f94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofshadowprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_prayerofspirit.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofspirit.jpg new file mode 100644 index 0000000..4a9d49d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_prayerofspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_proclaimchampion.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_proclaimchampion.jpg new file mode 100644 index 0000000..08434a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_proclaimchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_pureofheart.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_pureofheart.jpg new file mode 100644 index 0000000..12787bf Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_pureofheart.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_purify.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_purify.jpg new file mode 100644 index 0000000..8a7b7af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_purify.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_purifyingpower.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_purifyingpower.jpg new file mode 100644 index 0000000..de3b30b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_purifyingpower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_redemption.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_redemption.jpg new file mode 100644 index 0000000..15b2558 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_redemption.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_removecurse.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_removecurse.jpg new file mode 100644 index 0000000..0b9576c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_renew.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_renew.jpg new file mode 100644 index 0000000..b68d86a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_renew.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_restoration.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_restoration.jpg new file mode 100644 index 0000000..9fe5fed Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_restoration.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_resurrection.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_resurrection.jpg new file mode 100644 index 0000000..90a4476 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_resurrection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_retribution.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_retribution.jpg new file mode 100644 index 0000000..d50161d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_retribution.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_retributionaura.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_retributionaura.jpg new file mode 100644 index 0000000..6940308 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_retributionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_revivechampion.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_revivechampion.jpg new file mode 100644 index 0000000..9d9d40b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_revivechampion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_righteousfury.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_righteousfury.jpg new file mode 100644 index 0000000..395e01d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_righteousfury.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_righteousnessaura.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_righteousnessaura.jpg new file mode 100644 index 0000000..09364af Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_righteousnessaura.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofblood.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofblood.jpg new file mode 100644 index 0000000..7b048b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofblood.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealoffury.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealoffury.jpg new file mode 100644 index 0000000..6a58b2a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealoffury.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofmight.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofmight.jpg new file mode 100644 index 0000000..c5b8920 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofmight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofprotection.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofprotection.jpg new file mode 100644 index 0000000..b04e674 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofrighteousness.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofrighteousness.jpg new file mode 100644 index 0000000..583c6e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofrighteousness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofsacrifice.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofsacrifice.jpg new file mode 100644 index 0000000..34bf894 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofsalvation.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofsalvation.jpg new file mode 100644 index 0000000..7d6ed02 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofvalor.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofvalor.jpg new file mode 100644 index 0000000..2b90843 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofvalor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofvengeance.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofvengeance.jpg new file mode 100644 index 0000000..9bb931e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofvengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofwisdom.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofwisdom.jpg new file mode 100644 index 0000000..9efeb45 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_sealofwrath.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_sealofwrath.jpg new file mode 100644 index 0000000..b31a3bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_sealofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_searinglight.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_searinglight.jpg new file mode 100644 index 0000000..3290ba4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_searinglight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_searinglightpriest.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_searinglightpriest.jpg new file mode 100644 index 0000000..27246c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_searinglightpriest.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_senseundead.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_senseundead.jpg new file mode 100644 index 0000000..f76bd5a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_senseundead.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_silence.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_silence.jpg new file mode 100644 index 0000000..3292196 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_silence.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_spellwarding.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_spellwarding.jpg new file mode 100644 index 0000000..ef65ca3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_spellwarding.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_spiritualguidence.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_spiritualguidence.jpg new file mode 100644 index 0000000..f14fb66 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_spiritualguidence.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_stoicism.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_stoicism.jpg new file mode 100644 index 0000000..c3b867e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_stoicism.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_summonchampion.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_summonchampion.jpg new file mode 100644 index 0000000..c962618 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_summonchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_summonlightwell.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_summonlightwell.jpg new file mode 100644 index 0000000..252eba2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_summonlightwell.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_surgeoflight.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_surgeoflight.jpg new file mode 100644 index 0000000..2e1fa4b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_surgeoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_symbolofhope.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_symbolofhope.jpg new file mode 100644 index 0000000..ee27d03 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_symbolofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_turnundead.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_turnundead.jpg new file mode 100644 index 0000000..996f549 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_turnundead.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_unyieldingfaith.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_unyieldingfaith.jpg new file mode 100644 index 0000000..ca81b98 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_unyieldingfaith.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_vindication.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_vindication.jpg new file mode 100644 index 0000000..5c23ac6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_vindication.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_weaponmastery.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_weaponmastery.jpg new file mode 100644 index 0000000..fc2acc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_holy_wordfortitude.jpg b/other/AoWoW-master/images/icons/medium/spell_holy_wordfortitude.jpg new file mode 100644 index 0000000..93f9a58 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_holy_wordfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_ice_lament.jpg b/other/AoWoW-master/images/icons/medium/spell_ice_lament.jpg new file mode 100644 index 0000000..74a761d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_ice_lament.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_ice_magicdamage.jpg b/other/AoWoW-master/images/icons/medium/spell_ice_magicdamage.jpg new file mode 100644 index 0000000..056abbb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_ice_magicdamage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_lightning_lightningbolt01.jpg b/other/AoWoW-master/images/icons/medium/spell_lightning_lightningbolt01.jpg new file mode 100644 index 0000000..834cc5c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_lightning_lightningbolt01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_magearmor.jpg b/other/AoWoW-master/images/icons/medium/spell_magearmor.jpg new file mode 100644 index 0000000..d244432 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_magic_featherfall.jpg b/other/AoWoW-master/images/icons/medium/spell_magic_featherfall.jpg new file mode 100644 index 0000000..1f56cc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_magic_featherfall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_magic_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/medium/spell_magic_greaterblessingofkings.jpg new file mode 100644 index 0000000..b106781 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_magic_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_magic_lesserinvisibilty.jpg b/other/AoWoW-master/images/icons/medium/spell_magic_lesserinvisibilty.jpg new file mode 100644 index 0000000..3be3006 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_magic_lesserinvisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_magic_magearmor.jpg b/other/AoWoW-master/images/icons/medium/spell_magic_magearmor.jpg new file mode 100644 index 0000000..aaed2ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_magic_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_magic_polymorphchicken.jpg b/other/AoWoW-master/images/icons/medium/spell_magic_polymorphchicken.jpg new file mode 100644 index 0000000..0a50309 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_magic_polymorphchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_magic_polymorphpig.jpg b/other/AoWoW-master/images/icons/medium/spell_magic_polymorphpig.jpg new file mode 100644 index 0000000..c8d9e15 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_magic_polymorphpig.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_conjuremanajewel.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_conjuremanajewel.jpg new file mode 100644 index 0000000..71a3670 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_conjuremanajewel.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_drink.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_drink.jpg new file mode 100644 index 0000000..b9243a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_drink.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_food.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_food.jpg new file mode 100644 index 0000000..b7b052b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_food.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvpcombatmorale.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvpcombatmorale.jpg new file mode 100644 index 0000000..00044e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvpcombatmorale.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvphonorholdfavor.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvphonorholdfavor.jpg new file mode 100644 index 0000000..6a6c051 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvphonorholdfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvpthrallmarfavor.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvpthrallmarfavor.jpg new file mode 100644 index 0000000..1cd626c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_hellifrepvpthrallmarfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_warsongbrutal.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_warsongbrutal.jpg new file mode 100644 index 0000000..3d2d637 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_warsongbrutal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_misc_warsongfocus.jpg b/other/AoWoW-master/images/icons/medium/spell_misc_warsongfocus.jpg new file mode 100644 index 0000000..daa19b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_misc_warsongfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_abolishmagic.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_abolishmagic.jpg new file mode 100644 index 0000000..fc115b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_abolishmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_acid_01.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_acid_01.jpg new file mode 100644 index 0000000..526b533 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_acid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_agitatingtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_agitatingtotem.jpg new file mode 100644 index 0000000..6d665d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_agitatingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_ancestralguardian.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_ancestralguardian.jpg new file mode 100644 index 0000000..a14dac8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_ancestralguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_astralrecal.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_astralrecal.jpg new file mode 100644 index 0000000..2d691e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_astralrecal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_astralrecalgroup.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_astralrecalgroup.jpg new file mode 100644 index 0000000..9a76d8e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_astralrecalgroup.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_bloodlust.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_bloodlust.jpg new file mode 100644 index 0000000..9f28b0d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_bloodlust.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_brilliance.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_brilliance.jpg new file mode 100644 index 0000000..8ebf30f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_brilliance.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_callstorm.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_callstorm.jpg new file mode 100644 index 0000000..f7029f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_callstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_chainlightning.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_chainlightning.jpg new file mode 100644 index 0000000..7bf1d65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_chainlightning.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_corrosivebreath.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_corrosivebreath.jpg new file mode 100644 index 0000000..f2b13ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_corrosivebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_crystalball.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_crystalball.jpg new file mode 100644 index 0000000..5e3fe8e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_crystalball.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_cyclone.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_cyclone.jpg new file mode 100644 index 0000000..0309a3c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_diseasecleansingtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_diseasecleansingtotem.jpg new file mode 100644 index 0000000..89cf543 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_diseasecleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_drowsy.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_drowsy.jpg new file mode 100644 index 0000000..666e8bb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_drowsy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_dryaddispelmagic.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_dryaddispelmagic.jpg new file mode 100644 index 0000000..54866d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_dryaddispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_earthbind.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_earthbind.jpg new file mode 100644 index 0000000..f6fe916 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_earthbind.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_earthbindtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_earthbindtotem.jpg new file mode 100644 index 0000000..5ef07ad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_earthbindtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_earthelemental_totem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_earthelemental_totem.jpg new file mode 100644 index 0000000..2d030b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_earthelemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_earthquake.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_earthquake.jpg new file mode 100644 index 0000000..8832afe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_earthquake.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_earthshock.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_earthshock.jpg new file mode 100644 index 0000000..f87d05d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_earthshock.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_elementalabsorption.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_elementalabsorption.jpg new file mode 100644 index 0000000..2d17f9b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_elementalabsorption.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_elementalprecision_1.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_elementalprecision_1.jpg new file mode 100644 index 0000000..e47df88 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_elementalprecision_1.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_elementalprecision_2.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_elementalprecision_2.jpg new file mode 100644 index 0000000..30d6660 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_elementalprecision_2.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_elementalshields.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_elementalshields.jpg new file mode 100644 index 0000000..9fa3f33 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_elementalshields.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_enchantarmor.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_enchantarmor.jpg new file mode 100644 index 0000000..e95caec Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_enchantarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_eyeofthestorm.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_eyeofthestorm.jpg new file mode 100644 index 0000000..fff3a23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_eyeofthestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_faeriefire.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_faeriefire.jpg new file mode 100644 index 0000000..a5d05c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_faeriefire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_farsight.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_farsight.jpg new file mode 100644 index 0000000..1da9e07 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_farsight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_focusedmind.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_focusedmind.jpg new file mode 100644 index 0000000..046e3c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_focusedmind.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_forceofnature.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_forceofnature.jpg new file mode 100644 index 0000000..be1f8f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_giftofthewaterspirit.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_giftofthewaterspirit.jpg new file mode 100644 index 0000000..d211339 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_giftofthewaterspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_giftofthewild.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_giftofthewild.jpg new file mode 100644 index 0000000..f599cad Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_giftofthewild.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_groundingtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_groundingtotem.jpg new file mode 100644 index 0000000..9dd19ce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_groundingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_guardianward.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_guardianward.jpg new file mode 100644 index 0000000..26480f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_guardianward.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_healingtouch.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_healingtouch.jpg new file mode 100644 index 0000000..705f360 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_healingtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_healingwavegreater.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_healingwavegreater.jpg new file mode 100644 index 0000000..8fb27d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_healingwavegreater.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_healingwavelesser.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_healingwavelesser.jpg new file mode 100644 index 0000000..1ebf9a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_healingwavelesser.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_healingway.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_healingway.jpg new file mode 100644 index 0000000..3547b93 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_healingway.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_insectswarm.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_insectswarm.jpg new file mode 100644 index 0000000..a5a6ff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_insectswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_invisibilitytotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_invisibilitytotem.jpg new file mode 100644 index 0000000..60eddb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_invisibilitytotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_invisibilty.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_invisibilty.jpg new file mode 100644 index 0000000..f7ba9fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_invisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_lightning.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_lightning.jpg new file mode 100644 index 0000000..15a507e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_lightning.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_lightningbolt.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_lightningbolt.jpg new file mode 100644 index 0000000..3d48c01 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_lightningbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_lightningoverload.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_lightningoverload.jpg new file mode 100644 index 0000000..0d9e0c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_lightningoverload.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_lightningshield.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_lightningshield.jpg new file mode 100644 index 0000000..c171dc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_lightningshield.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_magicimmunity.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_magicimmunity.jpg new file mode 100644 index 0000000..45cdd77 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_magicimmunity.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_manaregentotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_manaregentotem.jpg new file mode 100644 index 0000000..6f91a4d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_manaregentotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_massteleport.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_massteleport.jpg new file mode 100644 index 0000000..bffb17b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_massteleport.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_mentalquickness.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_mentalquickness.jpg new file mode 100644 index 0000000..c99f655 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_mentalquickness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_mirrorimage.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_mirrorimage.jpg new file mode 100644 index 0000000..f31b934 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_mirrorimage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_moonglow.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_moonglow.jpg new file mode 100644 index 0000000..9f89a2a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_moonglow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_moonkey.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_moonkey.jpg new file mode 100644 index 0000000..b0ac765 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_moonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_natureblessing.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_natureblessing.jpg new file mode 100644 index 0000000..e9e8903 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_natureblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_natureguardian.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_natureguardian.jpg new file mode 100644 index 0000000..fc5c2be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_natureguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_natureresistancetotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_natureresistancetotem.jpg new file mode 100644 index 0000000..8dddbb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_natureresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_naturesblessing.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_naturesblessing.jpg new file mode 100644 index 0000000..7409f4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_naturesblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_natureswrath.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_natureswrath.jpg new file mode 100644 index 0000000..d2b4cd2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_natureswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_naturetouchdecay.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_naturetouchdecay.jpg new file mode 100644 index 0000000..50b6c14 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_naturetouchdecay.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_naturetouchgrow.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_naturetouchgrow.jpg new file mode 100644 index 0000000..809f205 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_naturetouchgrow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_nullifydisease.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_nullifydisease.jpg new file mode 100644 index 0000000..37b7225 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_nullifypoison.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_nullifypoison.jpg new file mode 100644 index 0000000..fee2791 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_nullifypoison.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_nullifypoison_02.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_nullifypoison_02.jpg new file mode 100644 index 0000000..faaee65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_nullifypoison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_nullward.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_nullward.jpg new file mode 100644 index 0000000..a09d0c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_nullward.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_poisoncleansingtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_poisoncleansingtotem.jpg new file mode 100644 index 0000000..8445285 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_poisoncleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_polymorph.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_polymorph.jpg new file mode 100644 index 0000000..10f93f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_polymorph.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_polymorph_cow.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_polymorph_cow.jpg new file mode 100644 index 0000000..c42e7f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_polymorph_cow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_preservation.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_preservation.jpg new file mode 100644 index 0000000..f0de801 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_preservation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_protectionformnature.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_protectionformnature.jpg new file mode 100644 index 0000000..0eab264 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_protectionformnature.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_purge.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_purge.jpg new file mode 100644 index 0000000..001456b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_purge.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_ravenform.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_ravenform.jpg new file mode 100644 index 0000000..a4b6314 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_ravenform.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_regenerate.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_regenerate.jpg new file mode 100644 index 0000000..448f3dc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_regenerate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_regeneration.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_regeneration.jpg new file mode 100644 index 0000000..ec23f05 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_regeneration.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_regeneration_02.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_regeneration_02.jpg new file mode 100644 index 0000000..af97644 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_regeneration_02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_reincarnation.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_reincarnation.jpg new file mode 100644 index 0000000..7a5f896 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_reincarnation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_rejuvenation.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_rejuvenation.jpg new file mode 100644 index 0000000..2727b66 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_rejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_removecurse.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_removecurse.jpg new file mode 100644 index 0000000..8dcc67e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_removedisease.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_removedisease.jpg new file mode 100644 index 0000000..4067ed5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_removedisease.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_resistmagic.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_resistmagic.jpg new file mode 100644 index 0000000..c1f5c4c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_resistmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_resistnature.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_resistnature.jpg new file mode 100644 index 0000000..5b8d91f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_resistnature.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_rockbiter.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_rockbiter.jpg new file mode 100644 index 0000000..3132a3b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_rockbiter.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_sentinal.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_sentinal.jpg new file mode 100644 index 0000000..82ebf87 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_sentinal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_shamanrage.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_shamanrage.jpg new file mode 100644 index 0000000..c1533f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_shamanrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_skinofearth.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_skinofearth.jpg new file mode 100644 index 0000000..7098542 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_skinofearth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_sleep.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_sleep.jpg new file mode 100644 index 0000000..6192b68 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_sleep.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_slow.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_slow.jpg new file mode 100644 index 0000000..c256366 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_slow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_slowingtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_slowingtotem.jpg new file mode 100644 index 0000000..3204071 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_slowingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_slowpoison.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_slowpoison.jpg new file mode 100644 index 0000000..a14b4a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_slowpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_spiritarmor.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_spiritarmor.jpg new file mode 100644 index 0000000..d4f4784 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_spiritarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_spiritwolf.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_spiritwolf.jpg new file mode 100644 index 0000000..319fabc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_spiritwolf.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_starfall.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_starfall.jpg new file mode 100644 index 0000000..3d8b0fe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_starfall.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_stoneclawtotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_stoneclawtotem.jpg new file mode 100644 index 0000000..a265778 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_stoneclawtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_stoneskintotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_stoneskintotem.jpg new file mode 100644 index 0000000..0153c94 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_stoneskintotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_stormreach.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_stormreach.jpg new file mode 100644 index 0000000..526991a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_stormreach.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_stranglevines.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_stranglevines.jpg new file mode 100644 index 0000000..e872242 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_stranglevines.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_strength.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_strength.jpg new file mode 100644 index 0000000..ac302fa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_strength.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_strengthofearthtotem02.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_strengthofearthtotem02.jpg new file mode 100644 index 0000000..90d4e7b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_strengthofearthtotem02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_swiftness.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_swiftness.jpg new file mode 100644 index 0000000..81f7b80 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_swiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_thorns.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_thorns.jpg new file mode 100644 index 0000000..be43cf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_thorns.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_thunderclap.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_thunderclap.jpg new file mode 100644 index 0000000..e2515a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_timestop.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_timestop.jpg new file mode 100644 index 0000000..794e420 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_timestop.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_tranquility.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_tranquility.jpg new file mode 100644 index 0000000..b908d56 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_tranquility.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_tremortotem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_tremortotem.jpg new file mode 100644 index 0000000..6f2b71a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_tremortotem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_undyingstrength.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_undyingstrength.jpg new file mode 100644 index 0000000..b2f96b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_undyingstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_unleashedrage.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_unleashedrage.jpg new file mode 100644 index 0000000..9c310bd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_unleashedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_unrelentingstorm.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_unrelentingstorm.jpg new file mode 100644 index 0000000..1c74350 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_unrelentingstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_unyeildingstamina.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_unyeildingstamina.jpg new file mode 100644 index 0000000..2fafb1c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_unyeildingstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_web.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_web.jpg new file mode 100644 index 0000000..59ce524 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_web.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_windfury.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_windfury.jpg new file mode 100644 index 0000000..fb8b0e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_windfury.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_wispheal.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_wispheal.jpg new file mode 100644 index 0000000..767a9f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_wispheal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_wispsplode.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_wispsplode.jpg new file mode 100644 index 0000000..2adabda Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_wispsplode.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_nature_wrathofair_totem.jpg b/other/AoWoW-master/images/icons/medium/spell_nature_wrathofair_totem.jpg new file mode 100644 index 0000000..6384604 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_nature_wrathofair_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_abominationexplosion.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_abominationexplosion.jpg new file mode 100644 index 0000000..d1afb6d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_abominationexplosion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_animatedead.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_animatedead.jpg new file mode 100644 index 0000000..62235cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_animatedead.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_antimagicshell.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_antimagicshell.jpg new file mode 100644 index 0000000..c07c273 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_antimagicshell.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_antishadow.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_antishadow.jpg new file mode 100644 index 0000000..f4e3392 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_antishadow.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_auraofdarkness.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_auraofdarkness.jpg new file mode 100644 index 0000000..2d4f60d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_auraofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_blackplague.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_blackplague.jpg new file mode 100644 index 0000000..dead764 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_blackplague.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_bloodboil.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_bloodboil.jpg new file mode 100644 index 0000000..9d56ea5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_bloodboil.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_brainwash.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_brainwash.jpg new file mode 100644 index 0000000..147dfce Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_brainwash.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_burningspirit.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_burningspirit.jpg new file mode 100644 index 0000000..87976b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_burningspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_callofbone.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_callofbone.jpg new file mode 100644 index 0000000..ca92c9c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_callofbone.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_carrionswarm.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_carrionswarm.jpg new file mode 100644 index 0000000..e40872e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_carrionswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_charm.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_charm.jpg new file mode 100644 index 0000000..ae5f81f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_charm.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_chilltouch.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_chilltouch.jpg new file mode 100644 index 0000000..c1a22be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_chilltouch.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_coneofsilence.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_coneofsilence.jpg new file mode 100644 index 0000000..8ae5c62 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_coneofsilence.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_contagion.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_contagion.jpg new file mode 100644 index 0000000..8ebcab7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_contagion.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_corpseexplode.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_corpseexplode.jpg new file mode 100644 index 0000000..906a5ba Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_corpseexplode.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_creepingplague.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_creepingplague.jpg new file mode 100644 index 0000000..85b75f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_creepingplague.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_cripple.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_cripple.jpg new file mode 100644 index 0000000..9424be9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_cripple.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_curse.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_curse.jpg new file mode 100644 index 0000000..07bed1a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_curse.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_curseofachimonde.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_curseofachimonde.jpg new file mode 100644 index 0000000..59e5e60 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_curseofachimonde.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_curseofmannoroth.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_curseofmannoroth.jpg new file mode 100644 index 0000000..b7d1b61 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_curseofmannoroth.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_curseofsargeras.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_curseofsargeras.jpg new file mode 100644 index 0000000..08f6c9d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_curseofsargeras.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_curseoftounges.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_curseoftounges.jpg new file mode 100644 index 0000000..6ae6366 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_curseoftounges.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_darkritual.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_darkritual.jpg new file mode 100644 index 0000000..ce2cecb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_darkritual.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_darksummoning.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_darksummoning.jpg new file mode 100644 index 0000000..6f13da5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_darksummoning.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_deadofnight.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_deadofnight.jpg new file mode 100644 index 0000000..514187a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_deadofnight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_deathanddecay.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_deathanddecay.jpg new file mode 100644 index 0000000..e5eb3d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_deathanddecay.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_deathcoil.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_deathcoil.jpg new file mode 100644 index 0000000..4a50f9e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_deathcoil.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_deathpact.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_deathpact.jpg new file mode 100644 index 0000000..2c12c31 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_deathpact.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_deathscream.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_deathscream.jpg new file mode 100644 index 0000000..9e50ca9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_deathscream.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_demonbreath.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_demonbreath.jpg new file mode 100644 index 0000000..115866d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_demonbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_demonicfortitude.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_demonicfortitude.jpg new file mode 100644 index 0000000..97d60f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_demonicfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_demonictactics.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_demonictactics.jpg new file mode 100644 index 0000000..b965c75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_demonictactics.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_destructivesoul.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_destructivesoul.jpg new file mode 100644 index 0000000..823658d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_destructivesoul.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_detectinvisibility.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_detectinvisibility.jpg new file mode 100644 index 0000000..48643ff Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_detectinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_detectlesserinvisibility.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_detectlesserinvisibility.jpg new file mode 100644 index 0000000..6ce4278 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_detectlesserinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_enslavedemon.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_enslavedemon.jpg new file mode 100644 index 0000000..bbd58a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_enslavedemon.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_evileye.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_evileye.jpg new file mode 100644 index 0000000..591e2d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_evileye.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_felarmour.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_felarmour.jpg new file mode 100644 index 0000000..1c71704 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_felarmour.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_fingerofdeath.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_fingerofdeath.jpg new file mode 100644 index 0000000..10e7372 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_fingerofdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_focusedpower.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_focusedpower.jpg new file mode 100644 index 0000000..6ebf9b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_fumble.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_fumble.jpg new file mode 100644 index 0000000..2406d3b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_fumble.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_gathershadows.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_gathershadows.jpg new file mode 100644 index 0000000..1fa70aa Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_gathershadows.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_ghostkey.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_ghostkey.jpg new file mode 100644 index 0000000..b05e298 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_ghostkey.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_grimward.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_grimward.jpg new file mode 100644 index 0000000..33a8682 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_grimward.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_haunting.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_haunting.jpg new file mode 100644 index 0000000..d762d27 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_haunting.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_impphaseshift.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_impphaseshift.jpg new file mode 100644 index 0000000..66032df Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_impphaseshift.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_improvedvampiricembrace.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_improvedvampiricembrace.jpg new file mode 100644 index 0000000..0544714 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_improvedvampiricembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_lastingaffliction.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_lastingaffliction.jpg new file mode 100644 index 0000000..98ad483 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_lastingaffliction.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_lastingafflictions.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_lastingafflictions.jpg new file mode 100644 index 0000000..632b6cb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_lastingafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_lifedrain.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_lifedrain.jpg new file mode 100644 index 0000000..4f7f2f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_lifedrain.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_lifedrain02.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_lifedrain02.jpg new file mode 100644 index 0000000..7609814 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_lifedrain02.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_manaburn.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_manaburn.jpg new file mode 100644 index 0000000..964c3a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_manafeed.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_manafeed.jpg new file mode 100644 index 0000000..560593d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_manafeed.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_metamorphosis.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_metamorphosis.jpg new file mode 100644 index 0000000..0643804 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_metamorphosis.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_mindbomb.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_mindbomb.jpg new file mode 100644 index 0000000..17dbd26 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_mindbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_mindrot.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_mindrot.jpg new file mode 100644 index 0000000..056a11b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_mindrot.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_mindsteal.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_mindsteal.jpg new file mode 100644 index 0000000..26ce741 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_mindsteal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_misery.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_misery.jpg new file mode 100644 index 0000000..a6fd780 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_misery.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_nethercloak.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_nethercloak.jpg new file mode 100644 index 0000000..eb9c5c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_nethercloak.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_netherprotection.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_netherprotection.jpg new file mode 100644 index 0000000..7db587a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_netherprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_nightofthedead.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_nightofthedead.jpg new file mode 100644 index 0000000..2d34f09 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_nightofthedead.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_painfulafflictions.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_painfulafflictions.jpg new file mode 100644 index 0000000..91fd497 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_painfulafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_painspike.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_painspike.jpg new file mode 100644 index 0000000..05571c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_painspike.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_plaguecloud.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_plaguecloud.jpg new file mode 100644 index 0000000..a377b3d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_plaguecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_possession.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_possession.jpg new file mode 100644 index 0000000..b86e8e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_possession.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_psychicscream.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_psychicscream.jpg new file mode 100644 index 0000000..9cda4d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_psychicscream.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_ragingscream.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_ragingscream.jpg new file mode 100644 index 0000000..89c35cc Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_ragingscream.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_rainoffire.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_rainoffire.jpg new file mode 100644 index 0000000..6df4e8b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_rainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_raisedead.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_raisedead.jpg new file mode 100644 index 0000000..abe93ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_raisedead.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_requiem.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_requiem.jpg new file mode 100644 index 0000000..3426a17 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_requiem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_ritualofsacrifice.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_ritualofsacrifice.jpg new file mode 100644 index 0000000..90744d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_ritualofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_sacrificialshield.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_sacrificialshield.jpg new file mode 100644 index 0000000..8db53f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_sacrificialshield.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_scourgebuild.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_scourgebuild.jpg new file mode 100644 index 0000000..d7f1452 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_scourgebuild.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_sealofkings.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_sealofkings.jpg new file mode 100644 index 0000000..709c4bd Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_sealofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_seedofdestruction.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_seedofdestruction.jpg new file mode 100644 index 0000000..2458ffe Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_seedofdestruction.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadesofdarkness.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadesofdarkness.jpg new file mode 100644 index 0000000..92b8cdb Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadesofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadetruesight.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadetruesight.jpg new file mode 100644 index 0000000..c64dd73 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadetruesight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowandflame.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowandflame.jpg new file mode 100644 index 0000000..0e467f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowandflame.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowbolt.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowbolt.jpg new file mode 100644 index 0000000..d71cdf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowembrace.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowembrace.jpg new file mode 100644 index 0000000..ff08681 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowfiend.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowfiend.jpg new file mode 100644 index 0000000..da06370 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowfiend.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowform.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowform.jpg new file mode 100644 index 0000000..2ecc235 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowform.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowfury.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowfury.jpg new file mode 100644 index 0000000..0fcf5b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowfury.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowmend.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowmend.jpg new file mode 100644 index 0000000..885f84e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowmend.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowpact.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowpact.jpg new file mode 100644 index 0000000..66696a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowpact.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowpower.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowpower.jpg new file mode 100644 index 0000000..2c8fd4d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowpower.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowward.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowward.jpg new file mode 100644 index 0000000..b4ccb75 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowward.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowworddominate.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowworddominate.jpg new file mode 100644 index 0000000..e09a6c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowworddominate.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_shadowwordpain.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowwordpain.jpg new file mode 100644 index 0000000..58425be Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_shadowwordpain.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_siphonmana.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_siphonmana.jpg new file mode 100644 index 0000000..1965325 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_siphonmana.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_soothingkiss.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_soothingkiss.jpg new file mode 100644 index 0000000..943f9ac Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_soothingkiss.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_soulgem.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_soulgem.jpg new file mode 100644 index 0000000..166f2c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_soulgem.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech.jpg new file mode 100644 index 0000000..539f29e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_1.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_1.jpg new file mode 100644 index 0000000..c5ab11c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_1.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_2.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_2.jpg new file mode 100644 index 0000000..6508905 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_2.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_3.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_3.jpg new file mode 100644 index 0000000..8dd2d00 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_soulleech_3.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_spectralsight.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_spectralsight.jpg new file mode 100644 index 0000000..0e8fee6 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_spectralsight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_summonfelguard.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_summonfelguard.jpg new file mode 100644 index 0000000..9d0a9ab Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_summonfelguard.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_summonfelhunter.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_summonfelhunter.jpg new file mode 100644 index 0000000..3fadf92 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_summonfelhunter.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_summonimp.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_summonimp.jpg new file mode 100644 index 0000000..b548f2b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_summonimp.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_summoninfernal.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_summoninfernal.jpg new file mode 100644 index 0000000..a4c9aa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_summoninfernal.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_summonsuccubus.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_summonsuccubus.jpg new file mode 100644 index 0000000..f6ab24e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_summonsuccubus.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_summonvoidwalker.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_summonvoidwalker.jpg new file mode 100644 index 0000000..d3cb26d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_summonvoidwalker.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_teleport.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_teleport.jpg new file mode 100644 index 0000000..f9335db Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_teleport.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_twilight.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_twilight.jpg new file mode 100644 index 0000000..8cf8104 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_twilight.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_unholyfrenzy.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_unholyfrenzy.jpg new file mode 100644 index 0000000..4575ec9 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_unholyfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_unholystrength.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_unholystrength.jpg new file mode 100644 index 0000000..639e5e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_unholystrength.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_1.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_1.jpg new file mode 100644 index 0000000..525f566 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_1.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_2.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_2.jpg new file mode 100644 index 0000000..f8af22c Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_2.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_3.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_3.jpg new file mode 100644 index 0000000..acc7436 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableaffliction_3.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_unstableafllictions.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableafllictions.jpg new file mode 100644 index 0000000..e9e5be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_unstableafllictions.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_unsummonbuilding.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_unsummonbuilding.jpg new file mode 100644 index 0000000..6fe4f4e Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_unsummonbuilding.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_shadow_vampiricaura.jpg b/other/AoWoW-master/images/icons/medium/spell_shadow_vampiricaura.jpg new file mode 100644 index 0000000..7b4182b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_shadow_vampiricaura.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_totem_wardofdraining.jpg b/other/AoWoW-master/images/icons/medium/spell_totem_wardofdraining.jpg new file mode 100644 index 0000000..e3d8127 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_totem_wardofdraining.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_unused.jpg b/other/AoWoW-master/images/icons/medium/spell_unused.jpg new file mode 100644 index 0000000..6826d5d Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_unused.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/spell_unused2.jpg b/other/AoWoW-master/images/icons/medium/spell_unused2.jpg new file mode 100644 index 0000000..a2caf1a Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/spell_unused2.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/temp.jpg b/other/AoWoW-master/images/icons/medium/temp.jpg new file mode 100644 index 0000000..c27ff21 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/temp.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_alchemy.jpg b/other/AoWoW-master/images/icons/medium/trade_alchemy.jpg new file mode 100644 index 0000000..bf1ad65 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_alchemy.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_blacksmithing.jpg b/other/AoWoW-master/images/icons/medium/trade_blacksmithing.jpg new file mode 100644 index 0000000..a2c595b Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_blacksmithing.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_brewpoison.jpg b/other/AoWoW-master/images/icons/medium/trade_brewpoison.jpg new file mode 100644 index 0000000..98407e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_brewpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_engineering.jpg b/other/AoWoW-master/images/icons/medium/trade_engineering.jpg new file mode 100644 index 0000000..f9945b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_engineering.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_engraving.jpg b/other/AoWoW-master/images/icons/medium/trade_engraving.jpg new file mode 100644 index 0000000..8ab3a4f Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_engraving.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_fishing.jpg b/other/AoWoW-master/images/icons/medium/trade_fishing.jpg new file mode 100644 index 0000000..d029442 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_fishing.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_herbalism.jpg b/other/AoWoW-master/images/icons/medium/trade_herbalism.jpg new file mode 100644 index 0000000..56b0f79 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_herbalism.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_leatherworking.jpg b/other/AoWoW-master/images/icons/medium/trade_leatherworking.jpg new file mode 100644 index 0000000..9e834e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_leatherworking.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_mining.jpg b/other/AoWoW-master/images/icons/medium/trade_mining.jpg new file mode 100644 index 0000000..6866e42 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_mining.jpg differ diff --git a/other/AoWoW-master/images/icons/medium/trade_tailoring.jpg b/other/AoWoW-master/images/icons/medium/trade_tailoring.jpg new file mode 100644 index 0000000..7089f23 Binary files /dev/null and b/other/AoWoW-master/images/icons/medium/trade_tailoring.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_ambush.jpg b/other/AoWoW-master/images/icons/small/ability_ambush.jpg new file mode 100644 index 0000000..58d7e4a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_backstab.jpg b/other/AoWoW-master/images/icons/small/ability_backstab.jpg new file mode 100644 index 0000000..2134458 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_backstab.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_bullrush.jpg b/other/AoWoW-master/images/icons/small/ability_bullrush.jpg new file mode 100644 index 0000000..d1e5411 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_bullrush.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_cheapshot.jpg b/other/AoWoW-master/images/icons/small/ability_cheapshot.jpg new file mode 100644 index 0000000..9818522 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_cheapshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_cursed_01.jpg b/other/AoWoW-master/images/icons/small/ability_creature_cursed_01.jpg new file mode 100644 index 0000000..a47a4dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_cursed_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_cursed_02.jpg b/other/AoWoW-master/images/icons/small/ability_creature_cursed_02.jpg new file mode 100644 index 0000000..e7592a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_cursed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_cursed_03.jpg b/other/AoWoW-master/images/icons/small/ability_creature_cursed_03.jpg new file mode 100644 index 0000000..5c4730e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_cursed_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_cursed_04.jpg b/other/AoWoW-master/images/icons/small/ability_creature_cursed_04.jpg new file mode 100644 index 0000000..4df1f2a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_cursed_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_cursed_05.jpg b/other/AoWoW-master/images/icons/small/ability_creature_cursed_05.jpg new file mode 100644 index 0000000..cfca5be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_cursed_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_disease_01.jpg b/other/AoWoW-master/images/icons/small/ability_creature_disease_01.jpg new file mode 100644 index 0000000..0bbeefe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_disease_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_disease_02.jpg b/other/AoWoW-master/images/icons/small/ability_creature_disease_02.jpg new file mode 100644 index 0000000..9a3a001 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_disease_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_disease_03.jpg b/other/AoWoW-master/images/icons/small/ability_creature_disease_03.jpg new file mode 100644 index 0000000..af55e7f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_disease_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_disease_04.jpg b/other/AoWoW-master/images/icons/small/ability_creature_disease_04.jpg new file mode 100644 index 0000000..31b5b04 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_disease_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_disease_05.jpg b/other/AoWoW-master/images/icons/small/ability_creature_disease_05.jpg new file mode 100644 index 0000000..2605e97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_disease_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_poison_01.jpg b/other/AoWoW-master/images/icons/small/ability_creature_poison_01.jpg new file mode 100644 index 0000000..8d89360 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_poison_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_poison_02.jpg b/other/AoWoW-master/images/icons/small/ability_creature_poison_02.jpg new file mode 100644 index 0000000..c58bd1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_poison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_poison_03.jpg b/other/AoWoW-master/images/icons/small/ability_creature_poison_03.jpg new file mode 100644 index 0000000..60546b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_poison_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_poison_04.jpg b/other/AoWoW-master/images/icons/small/ability_creature_poison_04.jpg new file mode 100644 index 0000000..e46c8b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_poison_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_poison_05.jpg b/other/AoWoW-master/images/icons/small/ability_creature_poison_05.jpg new file mode 100644 index 0000000..1b8f578 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_poison_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_creature_poison_06.jpg b/other/AoWoW-master/images/icons/small/ability_creature_poison_06.jpg new file mode 100644 index 0000000..ec81ab1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_creature_poison_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_criticalstrike.jpg b/other/AoWoW-master/images/icons/small/ability_criticalstrike.jpg new file mode 100644 index 0000000..cfe86db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_criticalstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_defend.jpg b/other/AoWoW-master/images/icons/small/ability_defend.jpg new file mode 100644 index 0000000..9de7d82 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_defend.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_devour.jpg b/other/AoWoW-master/images/icons/small/ability_devour.jpg new file mode 100644 index 0000000..70974d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_devour.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_aquaticform.jpg b/other/AoWoW-master/images/icons/small/ability_druid_aquaticform.jpg new file mode 100644 index 0000000..5394424 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_aquaticform.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_balanceofpower.jpg b/other/AoWoW-master/images/icons/small/ability_druid_balanceofpower.jpg new file mode 100644 index 0000000..3d8893c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_balanceofpower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_bash.jpg b/other/AoWoW-master/images/icons/small/ability_druid_bash.jpg new file mode 100644 index 0000000..17eff3d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_bash.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_catform.jpg b/other/AoWoW-master/images/icons/small/ability_druid_catform.jpg new file mode 100644 index 0000000..6a49364 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_catform.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_catformattack.jpg b/other/AoWoW-master/images/icons/small/ability_druid_catformattack.jpg new file mode 100644 index 0000000..2ab3e89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_catformattack.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_challangingroar.jpg b/other/AoWoW-master/images/icons/small/ability_druid_challangingroar.jpg new file mode 100644 index 0000000..9b0c00d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_challangingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_cower.jpg b/other/AoWoW-master/images/icons/small/ability_druid_cower.jpg new file mode 100644 index 0000000..5ad9c01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_cower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_cyclone.jpg b/other/AoWoW-master/images/icons/small/ability_druid_cyclone.jpg new file mode 100644 index 0000000..77d6338 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_dash.jpg b/other/AoWoW-master/images/icons/small/ability_druid_dash.jpg new file mode 100644 index 0000000..f7e18ab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_dash.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_demoralizingroar.jpg b/other/AoWoW-master/images/icons/small/ability_druid_demoralizingroar.jpg new file mode 100644 index 0000000..6042dc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_demoralizingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_disembowel.jpg b/other/AoWoW-master/images/icons/small/ability_druid_disembowel.jpg new file mode 100644 index 0000000..2bc5193 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_dreamstate.jpg b/other/AoWoW-master/images/icons/small/ability_druid_dreamstate.jpg new file mode 100644 index 0000000..feb8e77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_dreamstate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_empoweredrejuvination.jpg b/other/AoWoW-master/images/icons/small/ability_druid_empoweredrejuvination.jpg new file mode 100644 index 0000000..9e22722 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_empoweredrejuvination.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_empoweredtouch.jpg b/other/AoWoW-master/images/icons/small/ability_druid_empoweredtouch.jpg new file mode 100644 index 0000000..47cd3c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_empoweredtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_enrage.jpg b/other/AoWoW-master/images/icons/small/ability_druid_enrage.jpg new file mode 100644 index 0000000..cb6be8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_enrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_ferociousbite.jpg b/other/AoWoW-master/images/icons/small/ability_druid_ferociousbite.jpg new file mode 100644 index 0000000..3e22e91 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_ferociousbite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_flightform.jpg b/other/AoWoW-master/images/icons/small/ability_druid_flightform.jpg new file mode 100644 index 0000000..06235fd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_flightform.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_forceofnature.jpg b/other/AoWoW-master/images/icons/small/ability_druid_forceofnature.jpg new file mode 100644 index 0000000..f294dad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_healinginstincts.jpg b/other/AoWoW-master/images/icons/small/ability_druid_healinginstincts.jpg new file mode 100644 index 0000000..8635083 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_healinginstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_lacerate.jpg b/other/AoWoW-master/images/icons/small/ability_druid_lacerate.jpg new file mode 100644 index 0000000..cb10f3e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_lacerate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_lunarguidance.jpg b/other/AoWoW-master/images/icons/small/ability_druid_lunarguidance.jpg new file mode 100644 index 0000000..ea15379 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_lunarguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_mangle.jpg b/other/AoWoW-master/images/icons/small/ability_druid_mangle.jpg new file mode 100644 index 0000000..29e6261 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_mangle.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_mangle.tga.jpg b/other/AoWoW-master/images/icons/small/ability_druid_mangle.tga.jpg new file mode 100644 index 0000000..29e6261 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_mangle.tga.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_mangle2.jpg b/other/AoWoW-master/images/icons/small/ability_druid_mangle2.jpg new file mode 100644 index 0000000..c101611 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_mangle2.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_maul.jpg b/other/AoWoW-master/images/icons/small/ability_druid_maul.jpg new file mode 100644 index 0000000..66ae884 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_maul.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_naturalperfection.jpg b/other/AoWoW-master/images/icons/small/ability_druid_naturalperfection.jpg new file mode 100644 index 0000000..cbac734 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_naturalperfection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_predatoryinstincts.jpg b/other/AoWoW-master/images/icons/small/ability_druid_predatoryinstincts.jpg new file mode 100644 index 0000000..4fa1349 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_predatoryinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_primaltenacity.jpg b/other/AoWoW-master/images/icons/small/ability_druid_primaltenacity.jpg new file mode 100644 index 0000000..cdcdc1e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_primaltenacity.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_rake.jpg b/other/AoWoW-master/images/icons/small/ability_druid_rake.jpg new file mode 100644 index 0000000..286c2e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_rake.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_ravage.jpg b/other/AoWoW-master/images/icons/small/ability_druid_ravage.jpg new file mode 100644 index 0000000..ac9b6cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_ravage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_supriseattack.jpg b/other/AoWoW-master/images/icons/small/ability_druid_supriseattack.jpg new file mode 100644 index 0000000..49bbdb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_supriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_swipe.jpg b/other/AoWoW-master/images/icons/small/ability_druid_swipe.jpg new file mode 100644 index 0000000..0914f79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_swipe.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_travelform.jpg b/other/AoWoW-master/images/icons/small/ability_druid_travelform.jpg new file mode 100644 index 0000000..bd7172a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_travelform.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_treeoflife.jpg b/other/AoWoW-master/images/icons/small/ability_druid_treeoflife.jpg new file mode 100644 index 0000000..0c737da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_treeoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_druid_twilightswrath.jpg b/other/AoWoW-master/images/icons/small/ability_druid_twilightswrath.jpg new file mode 100644 index 0000000..7168ac6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_druid_twilightswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_dualwield.jpg b/other/AoWoW-master/images/icons/small/ability_dualwield.jpg new file mode 100644 index 0000000..68d1750 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_dualwield.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_dualwieldspecialization.jpg b/other/AoWoW-master/images/icons/small/ability_dualwieldspecialization.jpg new file mode 100644 index 0000000..37308b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_dualwieldspecialization.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_ensnare.jpg b/other/AoWoW-master/images/icons/small/ability_ensnare.jpg new file mode 100644 index 0000000..41f3b51 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_ensnare.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_eyeoftheowl.jpg b/other/AoWoW-master/images/icons/small/ability_eyeoftheowl.jpg new file mode 100644 index 0000000..23d0592 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_eyeoftheowl.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_fiegndead.jpg b/other/AoWoW-master/images/icons/small/ability_fiegndead.jpg new file mode 100644 index 0000000..82f2c89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_fiegndead.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_ghoulfrenzy.jpg b/other/AoWoW-master/images/icons/small/ability_ghoulfrenzy.jpg new file mode 100644 index 0000000..ced1bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_ghoulfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_golemstormbolt.jpg b/other/AoWoW-master/images/icons/small/ability_golemstormbolt.jpg new file mode 100644 index 0000000..c242361 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_golemstormbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_golemthunderclap.jpg b/other/AoWoW-master/images/icons/small/ability_golemthunderclap.jpg new file mode 100644 index 0000000..4ee1ee8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_golemthunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_gouge.jpg b/other/AoWoW-master/images/icons/small/ability_gouge.jpg new file mode 100644 index 0000000..88ed17a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_gouge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hibernation.jpg b/other/AoWoW-master/images/icons/small/ability_hibernation.jpg new file mode 100644 index 0000000..d6923b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hibernation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_aimedshot.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_aimedshot.jpg new file mode 100644 index 0000000..1636125 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_aimedshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_animalhandler.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_animalhandler.jpg new file mode 100644 index 0000000..b6fc1bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_animalhandler.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_aspectofthemonkey.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_aspectofthemonkey.jpg new file mode 100644 index 0000000..5784f71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_aspectofthemonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_aspectoftheviper.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_aspectoftheviper.jpg new file mode 100644 index 0000000..b4993dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_aspectoftheviper.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_beastcall.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_beastcall.jpg new file mode 100644 index 0000000..1b40efa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_beastcall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_beastcall02.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_beastcall02.jpg new file mode 100644 index 0000000..2fa2c10 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_beastcall02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_beastsoothe.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_beastsoothe.jpg new file mode 100644 index 0000000..8297aa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_beastsoothe.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_beasttaming.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_beasttaming.jpg new file mode 100644 index 0000000..48580d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_beasttaming.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_beasttraining.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_beasttraining.jpg new file mode 100644 index 0000000..9a070b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_beasttraining.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_beastwithin.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_beastwithin.jpg new file mode 100644 index 0000000..7564162 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_beastwithin.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_catlikereflexes.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_catlikereflexes.jpg new file mode 100644 index 0000000..4ce263a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_catlikereflexes.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_combatexperience.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_combatexperience.jpg new file mode 100644 index 0000000..8f54b18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_combatexperience.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_criticalshot.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_criticalshot.jpg new file mode 100644 index 0000000..7517509 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_criticalshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_disarmingshot.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_disarmingshot.jpg new file mode 100644 index 0000000..f0cb90d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_disarmingshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_displacement.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_displacement.jpg new file mode 100644 index 0000000..110c521 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_displacement.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_eagleeye.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_eagleeye.jpg new file mode 100644 index 0000000..6354ccf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_eagleeye.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_ferociousinspiration.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_ferociousinspiration.jpg new file mode 100644 index 0000000..e0f5e41 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_ferociousinspiration.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_goforthethroat.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_goforthethroat.jpg new file mode 100644 index 0000000..adf37a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_goforthethroat.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_harass.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_harass.jpg new file mode 100644 index 0000000..54821b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_harass.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_killcommand.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_killcommand.jpg new file mode 100644 index 0000000..28f4eba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_killcommand.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_mastermarksman.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_mastermarksman.jpg new file mode 100644 index 0000000..a87876d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_mastermarksman.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_mastertactitian.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_mastertactitian.jpg new file mode 100644 index 0000000..6baac15 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_mastertactitian.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_mendpet.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_mendpet.jpg new file mode 100644 index 0000000..1796d3f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_mendpet.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_misdirection.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_misdirection.jpg new file mode 100644 index 0000000..1b68ff1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_misdirection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pathfinding.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pathfinding.jpg new file mode 100644 index 0000000..4cf78c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pathfinding.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_bat.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_bat.jpg new file mode 100644 index 0000000..01e54f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_bat.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_bear.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_bear.jpg new file mode 100644 index 0000000..d7de2aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_bear.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_boar.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_boar.jpg new file mode 100644 index 0000000..06718d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_boar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_cat.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_cat.jpg new file mode 100644 index 0000000..0d72a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_cat.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_crab.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_crab.jpg new file mode 100644 index 0000000..2f7cf9c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_crab.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_crocolisk.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_crocolisk.jpg new file mode 100644 index 0000000..9866894 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_crocolisk.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_dragonhawk.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_dragonhawk.jpg new file mode 100644 index 0000000..a728002 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_dragonhawk.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_gorilla.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_gorilla.jpg new file mode 100644 index 0000000..4b1b5a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_gorilla.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_hyena.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_hyena.jpg new file mode 100644 index 0000000..c59c405 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_hyena.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_netherray.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_netherray.jpg new file mode 100644 index 0000000..09f58de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_netherray.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_owl.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_owl.jpg new file mode 100644 index 0000000..d7e86fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_owl.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_raptor.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_raptor.jpg new file mode 100644 index 0000000..c77f13f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_ravager.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_ravager.jpg new file mode 100644 index 0000000..b85ab1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_ravager.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_scorpid.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_scorpid.jpg new file mode 100644 index 0000000..a5b6d4a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_scorpid.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_spider.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_spider.jpg new file mode 100644 index 0000000..c3979f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_spider.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_sporebat.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_sporebat.jpg new file mode 100644 index 0000000..ac7efbb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_sporebat.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_tallstrider.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_tallstrider.jpg new file mode 100644 index 0000000..89be0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_tallstrider.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_turtle.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_turtle.jpg new file mode 100644 index 0000000..1490adf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_turtle.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_vulture.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_vulture.jpg new file mode 100644 index 0000000..8418f93 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_vulture.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_warpstalker.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_warpstalker.jpg new file mode 100644 index 0000000..11e8717 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_warpstalker.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_windserpent.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_windserpent.jpg new file mode 100644 index 0000000..f930265 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_windserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_pet_wolf.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_pet_wolf.jpg new file mode 100644 index 0000000..b8827d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_pet_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_quickshot.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_quickshot.jpg new file mode 100644 index 0000000..4f66a01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_quickshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_rapidkilling.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_rapidkilling.jpg new file mode 100644 index 0000000..086bfbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_rapidkilling.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_readiness.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_readiness.jpg new file mode 100644 index 0000000..b7414da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_readiness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_resourcefulness.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_resourcefulness.jpg new file mode 100644 index 0000000..b466468 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_resourcefulness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_runningshot.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_runningshot.jpg new file mode 100644 index 0000000..7209789 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_runningshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_serpentswiftness.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_serpentswiftness.jpg new file mode 100644 index 0000000..8222fd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_serpentswiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_silenthunter.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_silenthunter.jpg new file mode 100644 index 0000000..6a68d8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_silenthunter.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_snaketrap.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_snaketrap.jpg new file mode 100644 index 0000000..b6370de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_snaketrap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_snipershot.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_snipershot.jpg new file mode 100644 index 0000000..8a0f39a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_snipershot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_steadyshot.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_steadyshot.jpg new file mode 100644 index 0000000..bd5d55c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_steadyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_survivalinstincts.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_survivalinstincts.jpg new file mode 100644 index 0000000..4dd873a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_survivalinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_swiftstrike.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_swiftstrike.jpg new file mode 100644 index 0000000..8151805 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_swiftstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_thrillofthehunt.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_thrillofthehunt.jpg new file mode 100644 index 0000000..c4708f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_thrillofthehunt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_hunter_zenarchery.jpg b/other/AoWoW-master/images/icons/small/ability_hunter_zenarchery.jpg new file mode 100644 index 0000000..085fa22 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_hunter_zenarchery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_impalingbolt.jpg b/other/AoWoW-master/images/icons/small/ability_impalingbolt.jpg new file mode 100644 index 0000000..dd81af9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_impalingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_kick.jpg b/other/AoWoW-master/images/icons/small/ability_kick.jpg new file mode 100644 index 0000000..6a6fda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_kick.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mage_invisibility.jpg b/other/AoWoW-master/images/icons/small/ability_mage_invisibility.jpg new file mode 100644 index 0000000..cd5345a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mage_invisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mage_moltenarmor.jpg b/other/AoWoW-master/images/icons/small/ability_mage_moltenarmor.jpg new file mode 100644 index 0000000..8eccd98 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mage_moltenarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_marksmanship.jpg b/other/AoWoW-master/images/icons/small/ability_marksmanship.jpg new file mode 100644 index 0000000..cd5cd34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_marksmanship.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_meleedamage.jpg b/other/AoWoW-master/images/icons/small/ability_meleedamage.jpg new file mode 100644 index 0000000..c5c70fb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_meleedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_blackdirewolf.jpg b/other/AoWoW-master/images/icons/small/ability_mount_blackdirewolf.jpg new file mode 100644 index 0000000..1808df5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_blackdirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_blackpanther.jpg b/other/AoWoW-master/images/icons/small/ability_mount_blackpanther.jpg new file mode 100644 index 0000000..4946537 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_blackpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_charger.jpg b/other/AoWoW-master/images/icons/small/ability_mount_charger.jpg new file mode 100644 index 0000000..fefb935 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_charger.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount.jpg new file mode 100644 index 0000000..1c00d5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_black.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_black.jpg new file mode 100644 index 0000000..01229ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_black.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_blue.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_blue.jpg new file mode 100644 index 0000000..887546f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_green.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_green.jpg new file mode 100644 index 0000000..8024e83 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_purple.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_purple.jpg new file mode 100644 index 0000000..6087264 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemount_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite.jpg new file mode 100644 index 0000000..985039e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_black.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_black.jpg new file mode 100644 index 0000000..e1021b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_black.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_blue.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_blue.jpg new file mode 100644 index 0000000..78188fb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_green.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_green.jpg new file mode 100644 index 0000000..bae8f31 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_purple.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_purple.jpg new file mode 100644 index 0000000..128e0f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_white.jpg b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_white.jpg new file mode 100644 index 0000000..005614d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_cockatricemountelite_white.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_dreadsteed.jpg b/other/AoWoW-master/images/icons/small/ability_mount_dreadsteed.jpg new file mode 100644 index 0000000..d88812c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_dreadsteed.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_gryphon_01.jpg b/other/AoWoW-master/images/icons/small/ability_mount_gryphon_01.jpg new file mode 100644 index 0000000..c6de99c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_gryphon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_gyrocoptor.jpg b/other/AoWoW-master/images/icons/small/ability_mount_gyrocoptor.jpg new file mode 100644 index 0000000..74741a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_gyrocoptor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_gyrocoptorelite.jpg b/other/AoWoW-master/images/icons/small/ability_mount_gyrocoptorelite.jpg new file mode 100644 index 0000000..a387655 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_gyrocoptorelite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_jungletiger.jpg b/other/AoWoW-master/images/icons/small/ability_mount_jungletiger.jpg new file mode 100644 index 0000000..bb3fb38 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_jungletiger.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_kodo_01.jpg b/other/AoWoW-master/images/icons/small/ability_mount_kodo_01.jpg new file mode 100644 index 0000000..2090ab3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_kodo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_kodo_02.jpg b/other/AoWoW-master/images/icons/small/ability_mount_kodo_02.jpg new file mode 100644 index 0000000..dd62d8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_kodo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_kodo_03.jpg b/other/AoWoW-master/images/icons/small/ability_mount_kodo_03.jpg new file mode 100644 index 0000000..8c43138 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_kodo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_mechastrider.jpg b/other/AoWoW-master/images/icons/small/ability_mount_mechastrider.jpg new file mode 100644 index 0000000..c78e3bd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_mechastrider.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_mountainram.jpg b/other/AoWoW-master/images/icons/small/ability_mount_mountainram.jpg new file mode 100644 index 0000000..73de2e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_mountainram.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_netherdrakeelite.jpg b/other/AoWoW-master/images/icons/small/ability_mount_netherdrakeelite.jpg new file mode 100644 index 0000000..19cfa9c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_netherdrakeelite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_netherdrakepurple.jpg b/other/AoWoW-master/images/icons/small/ability_mount_netherdrakepurple.jpg new file mode 100644 index 0000000..82b14a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_netherdrakepurple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_nightmarehorse.jpg b/other/AoWoW-master/images/icons/small/ability_mount_nightmarehorse.jpg new file mode 100644 index 0000000..13b94a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_nightmarehorse.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_pinktiger.jpg b/other/AoWoW-master/images/icons/small/ability_mount_pinktiger.jpg new file mode 100644 index 0000000..3ae5f99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_pinktiger.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_raptor.jpg b/other/AoWoW-master/images/icons/small/ability_mount_raptor.jpg new file mode 100644 index 0000000..7f17ed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk.jpg new file mode 100644 index 0000000..d84390b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk_grey.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk_grey.jpg new file mode 100644 index 0000000..5aa5bb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk_grey.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk_purple.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk_purple.jpg new file mode 100644 index 0000000..145b193 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekk_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite.jpg new file mode 100644 index 0000000..42fe168 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_blue.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_blue.jpg new file mode 100644 index 0000000..c67e4a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_green.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_green.jpg new file mode 100644 index 0000000..76b51ad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_purple.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_purple.jpg new file mode 100644 index 0000000..d1a3777 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridingelekkelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_ridinghorse.jpg b/other/AoWoW-master/images/icons/small/ability_mount_ridinghorse.jpg new file mode 100644 index 0000000..32d440a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_ridinghorse.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_rocketmount.jpg b/other/AoWoW-master/images/icons/small/ability_mount_rocketmount.jpg new file mode 100644 index 0000000..f2a9903 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_rocketmount.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_rocketmountblue.jpg b/other/AoWoW-master/images/icons/small/ability_mount_rocketmountblue.jpg new file mode 100644 index 0000000..b66a142 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_rocketmountblue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_undeadhorse.jpg b/other/AoWoW-master/images/icons/small/ability_mount_undeadhorse.jpg new file mode 100644 index 0000000..701f68f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_undeadhorse.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_warhippogryph.jpg b/other/AoWoW-master/images/icons/small/ability_mount_warhippogryph.jpg new file mode 100644 index 0000000..69dcf47 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_warhippogryph.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_whitedirewolf.jpg b/other/AoWoW-master/images/icons/small/ability_mount_whitedirewolf.jpg new file mode 100644 index 0000000..445179b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_whitedirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_whitetiger.jpg b/other/AoWoW-master/images/icons/small/ability_mount_whitetiger.jpg new file mode 100644 index 0000000..8144236 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_whitetiger.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_mount_wyvern_01.jpg b/other/AoWoW-master/images/icons/small/ability_mount_wyvern_01.jpg new file mode 100644 index 0000000..f231fcc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_mount_wyvern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_parry.jpg b/other/AoWoW-master/images/icons/small/ability_parry.jpg new file mode 100644 index 0000000..6d8325f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_parry.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_physical_taunt.jpg b/other/AoWoW-master/images/icons/small/ability_physical_taunt.jpg new file mode 100644 index 0000000..3ea0678 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_physical_taunt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_piercedamage.jpg b/other/AoWoW-master/images/icons/small/ability_piercedamage.jpg new file mode 100644 index 0000000..39fdf9d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_piercedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_poisonarrow.jpg b/other/AoWoW-master/images/icons/small/ability_poisonarrow.jpg new file mode 100644 index 0000000..ae41d24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_poisonarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_poisons.jpg b/other/AoWoW-master/images/icons/small/ability_poisons.jpg new file mode 100644 index 0000000..481249b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_poisons.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_poisonsting.jpg b/other/AoWoW-master/images/icons/small/ability_poisonsting.jpg new file mode 100644 index 0000000..cb78833 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_poisonsting.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_racial_avatar.jpg b/other/AoWoW-master/images/icons/small/ability_racial_avatar.jpg new file mode 100644 index 0000000..c4eb6d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_racial_avatar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_racial_bearform.jpg b/other/AoWoW-master/images/icons/small/ability_racial_bearform.jpg new file mode 100644 index 0000000..a797393 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_racial_bearform.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_racial_bloodrage.jpg b/other/AoWoW-master/images/icons/small/ability_racial_bloodrage.jpg new file mode 100644 index 0000000..35d83dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_racial_bloodrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_racial_cannibalize.jpg b/other/AoWoW-master/images/icons/small/ability_racial_cannibalize.jpg new file mode 100644 index 0000000..5467465 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_racial_cannibalize.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_racial_shadowmeld.jpg b/other/AoWoW-master/images/icons/small/ability_racial_shadowmeld.jpg new file mode 100644 index 0000000..76050c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_racial_shadowmeld.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_racial_ultravision.jpg b/other/AoWoW-master/images/icons/small/ability_racial_ultravision.jpg new file mode 100644 index 0000000..ca3f355 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_racial_ultravision.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_repair.jpg b/other/AoWoW-master/images/icons/small/ability_repair.jpg new file mode 100644 index 0000000..cd8c19e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_repair.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_ambush.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_ambush.jpg new file mode 100644 index 0000000..0c92f8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_bladetwisting.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_bladetwisting.jpg new file mode 100644 index 0000000..0184f3e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_bladetwisting.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_bloodyeye.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_bloodyeye.jpg new file mode 100644 index 0000000..deddeee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_bloodyeye.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_cheatdeath.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_cheatdeath.jpg new file mode 100644 index 0000000..954d464 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_cheatdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_deadenednerves.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_deadenednerves.jpg new file mode 100644 index 0000000..6c961d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_deadenednerves.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_disembowel.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_disembowel.jpg new file mode 100644 index 0000000..518c4ac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_disguise.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_disguise.jpg new file mode 100644 index 0000000..0aa9312 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_disguise.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_distract.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_distract.jpg new file mode 100644 index 0000000..bfb4cc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_distract.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_dualweild.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_dualweild.jpg new file mode 100644 index 0000000..45e1e49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_dualweild.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_envelopingshadows.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_envelopingshadows.jpg new file mode 100644 index 0000000..303d2af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_envelopingshadows.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_eviscerate.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_eviscerate.jpg new file mode 100644 index 0000000..e2be0b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_eviscerate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_feigndeath.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_feigndeath.jpg new file mode 100644 index 0000000..bb583ac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_feigndeath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_feint.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_feint.jpg new file mode 100644 index 0000000..6ae45b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_feint.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_findweakness.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_findweakness.jpg new file mode 100644 index 0000000..1c74421 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_findweakness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_fleetfooted.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_fleetfooted.jpg new file mode 100644 index 0000000..89c3552 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_fleetfooted.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_garrote.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_garrote.jpg new file mode 100644 index 0000000..76db598 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_garrote.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_kidneyshot.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_kidneyshot.jpg new file mode 100644 index 0000000..7bdc6a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_kidneyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_masterofsubtlety.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_masterofsubtlety.jpg new file mode 100644 index 0000000..8615d85 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_masterofsubtlety.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_nervesofsteel.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_nervesofsteel.jpg new file mode 100644 index 0000000..fe8c9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_nervesofsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_quickrecovery.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_quickrecovery.jpg new file mode 100644 index 0000000..96240d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_quickrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_rupture.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_rupture.jpg new file mode 100644 index 0000000..86f3a74 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_rupture.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_shadowstep.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_shadowstep.jpg new file mode 100644 index 0000000..a3e7868 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_shadowstep.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_shadowstrikes.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_shadowstrikes.jpg new file mode 100644 index 0000000..82cd701 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_shadowstrikes.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_sinistercalling.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_sinistercalling.jpg new file mode 100644 index 0000000..0a85196 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_sinistercalling.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_slicedice.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_slicedice.jpg new file mode 100644 index 0000000..05a8f91 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_slicedice.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_sprint.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_sprint.jpg new file mode 100644 index 0000000..40d8fb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_sprint.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_surpriseattack.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_surpriseattack.jpg new file mode 100644 index 0000000..bfd1bad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_surpriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_rogue_trip.jpg b/other/AoWoW-master/images/icons/small/ability_rogue_trip.jpg new file mode 100644 index 0000000..1852fe6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_rogue_trip.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_sap.jpg b/other/AoWoW-master/images/icons/small/ability_sap.jpg new file mode 100644 index 0000000..2191eb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_sap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_seal.jpg b/other/AoWoW-master/images/icons/small/ability_seal.jpg new file mode 100644 index 0000000..0eebf74 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_seal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_searingarrow.jpg b/other/AoWoW-master/images/icons/small/ability_searingarrow.jpg new file mode 100644 index 0000000..53d4368 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_searingarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_shaman_heroism.jpg b/other/AoWoW-master/images/icons/small/ability_shaman_heroism.jpg new file mode 100644 index 0000000..c728c07 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_shaman_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_shaman_stormstrike.jpg b/other/AoWoW-master/images/icons/small/ability_shaman_stormstrike.jpg new file mode 100644 index 0000000..6ff853c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_shaman_stormstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_shaman_watershield.jpg b/other/AoWoW-master/images/icons/small/ability_shaman_watershield.jpg new file mode 100644 index 0000000..d3c009e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_shaman_watershield.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_shockwave.jpg b/other/AoWoW-master/images/icons/small/ability_shockwave.jpg new file mode 100644 index 0000000..f937568 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_shockwave.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_shootwand.jpg b/other/AoWoW-master/images/icons/small/ability_shootwand.jpg new file mode 100644 index 0000000..84a2f99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_shootwand.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_smash.jpg b/other/AoWoW-master/images/icons/small/ability_smash.jpg new file mode 100644 index 0000000..252daf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_smash.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_spy.jpg b/other/AoWoW-master/images/icons/small/ability_spy.jpg new file mode 100644 index 0000000..5e4c0aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_spy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_stealth.jpg b/other/AoWoW-master/images/icons/small/ability_stealth.jpg new file mode 100644 index 0000000..db66bbf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_stealth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_steelmelee.jpg b/other/AoWoW-master/images/icons/small/ability_steelmelee.jpg new file mode 100644 index 0000000..ee3eef9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_steelmelee.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_suffocate.jpg b/other/AoWoW-master/images/icons/small/ability_suffocate.jpg new file mode 100644 index 0000000..e577be6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_suffocate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_theblackarrow.jpg b/other/AoWoW-master/images/icons/small/ability_theblackarrow.jpg new file mode 100644 index 0000000..dbfce8e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_theblackarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_throw.jpg b/other/AoWoW-master/images/icons/small/ability_throw.jpg new file mode 100644 index 0000000..4849412 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_throw.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_thunderbolt.jpg b/other/AoWoW-master/images/icons/small/ability_thunderbolt.jpg new file mode 100644 index 0000000..aecc4af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_thunderbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_thunderclap.jpg b/other/AoWoW-master/images/icons/small/ability_thunderclap.jpg new file mode 100644 index 0000000..932c9ed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_townwatch.jpg b/other/AoWoW-master/images/icons/small/ability_townwatch.jpg new file mode 100644 index 0000000..59dd6af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_townwatch.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_tracking.jpg b/other/AoWoW-master/images/icons/small/ability_tracking.jpg new file mode 100644 index 0000000..1c49952 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_tracking.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_trueshot.jpg b/other/AoWoW-master/images/icons/small/ability_trueshot.jpg new file mode 100644 index 0000000..e1e3e7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_trueshot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_upgrademoonglaive.jpg b/other/AoWoW-master/images/icons/small/ability_upgrademoonglaive.jpg new file mode 100644 index 0000000..e8b45f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_upgrademoonglaive.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_vanish.jpg b/other/AoWoW-master/images/icons/small/ability_vanish.jpg new file mode 100644 index 0000000..ad51c1a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_vanish.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warlock_avoidance.jpg b/other/AoWoW-master/images/icons/small/ability_warlock_avoidance.jpg new file mode 100644 index 0000000..7579e82 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warlock_avoidance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_battleshout.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_battleshout.jpg new file mode 100644 index 0000000..aea62b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_battleshout.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_bloodfrenzy.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_bloodfrenzy.jpg new file mode 100644 index 0000000..1e4209a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_bloodfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_challange.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_challange.jpg new file mode 100644 index 0000000..ecbf1e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_challange.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_charge.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_charge.jpg new file mode 100644 index 0000000..1f42e96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_charge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_cleave.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_cleave.jpg new file mode 100644 index 0000000..091c89f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_cleave.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_commandingshout.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_commandingshout.jpg new file mode 100644 index 0000000..546ce86 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_commandingshout.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_decisivestrike.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_decisivestrike.jpg new file mode 100644 index 0000000..216ced1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_decisivestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_defensivestance.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_defensivestance.jpg new file mode 100644 index 0000000..d3bf2d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_defensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_devastate.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_devastate.jpg new file mode 100644 index 0000000..1606578 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_devastate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_disarm.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_disarm.jpg new file mode 100644 index 0000000..3be83fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_disarm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_endlessrage.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_endlessrage.jpg new file mode 100644 index 0000000..84ffa63 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_endlessrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_focusedrage.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_focusedrage.jpg new file mode 100644 index 0000000..cd180f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_focusedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_improveddisciplines.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_improveddisciplines.jpg new file mode 100644 index 0000000..0496eae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_improveddisciplines.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_innerrage.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_innerrage.jpg new file mode 100644 index 0000000..3aa4460 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_innerrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_intervene.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_intervene.jpg new file mode 100644 index 0000000..c0e737a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_intervene.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_offensivestance.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_offensivestance.jpg new file mode 100644 index 0000000..a7010e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_offensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_punishingblow.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_punishingblow.jpg new file mode 100644 index 0000000..cf53244 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_punishingblow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_rallyingcry.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_rallyingcry.jpg new file mode 100644 index 0000000..5e29ac1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_rallyingcry.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_rampage.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_rampage.jpg new file mode 100644 index 0000000..5ae2aee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_rampage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_revenge.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_revenge.jpg new file mode 100644 index 0000000..59d1c72 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_revenge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_riposte.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_riposte.jpg new file mode 100644 index 0000000..cfbe158 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_riposte.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_savageblow.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_savageblow.jpg new file mode 100644 index 0000000..f9e84f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_savageblow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_secondwind.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_secondwind.jpg new file mode 100644 index 0000000..6357fcc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_secondwind.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_shieldbash.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_shieldbash.jpg new file mode 100644 index 0000000..6c3513a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_shieldbash.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_shieldguard.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_shieldguard.jpg new file mode 100644 index 0000000..f6dc9a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_shieldguard.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_shieldmastery.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_shieldmastery.jpg new file mode 100644 index 0000000..d4f1846 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_shieldmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_shieldreflection.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_shieldreflection.jpg new file mode 100644 index 0000000..d95f3de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_shieldreflection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_shieldwall.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_shieldwall.jpg new file mode 100644 index 0000000..7e5f909 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_shieldwall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_sunder.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_sunder.jpg new file mode 100644 index 0000000..59e09fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_sunder.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_victoryrush.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_victoryrush.jpg new file mode 100644 index 0000000..b4fb7a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_victoryrush.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_warcry.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_warcry.jpg new file mode 100644 index 0000000..02f39eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_warcry.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warrior_weaponmastery.jpg b/other/AoWoW-master/images/icons/small/ability_warrior_weaponmastery.jpg new file mode 100644 index 0000000..6e58f32 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warrior_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_warstomp.jpg b/other/AoWoW-master/images/icons/small/ability_warstomp.jpg new file mode 100644 index 0000000..5df77ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_warstomp.jpg differ diff --git a/other/AoWoW-master/images/icons/small/ability_whirlwind.jpg b/other/AoWoW-master/images/icons/small/ability_whirlwind.jpg new file mode 100644 index 0000000..2ef14d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/ability_whirlwind.jpg differ diff --git a/other/AoWoW-master/images/icons/small/axe_1h_draenei_b_01.jpg b/other/AoWoW-master/images/icons/small/axe_1h_draenei_b_01.jpg new file mode 100644 index 0000000..538bf27 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/axe_1h_draenei_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/creature_sporemushroom.jpg b/other/AoWoW-master/images/icons/small/creature_sporemushroom.jpg new file mode 100644 index 0000000..8bcbff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/creature_sporemushroom.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv-mount_raven_54.jpg b/other/AoWoW-master/images/icons/small/inv-mount_raven_54.jpg new file mode 100644 index 0000000..9a411de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv-mount_raven_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv-sword_53.jpg b/other/AoWoW-master/images/icons/small/inv-sword_53.jpg new file mode 100644 index 0000000..35a83a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv-sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_1h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/small/inv_1h_auchindoun_01.jpg new file mode 100644 index 0000000..ede13b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_1h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_1h_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_1h_haremmatron_d_01.jpg new file mode 100644 index 0000000..30f0415 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_1h_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_2h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/small/inv_2h_auchindoun_01.jpg new file mode 100644 index 0000000..09acca7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_2h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/small/inv_ammo_arrow_01.jpg new file mode 100644 index 0000000..3f2babf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/small/inv_ammo_arrow_02.jpg new file mode 100644 index 0000000..83e5e0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/small/inv_ammo_bullet_01.jpg new file mode 100644 index 0000000..c6ff957 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/small/inv_ammo_bullet_02.jpg new file mode 100644 index 0000000..28e957c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/small/inv_ammo_bullet_03.jpg new file mode 100644 index 0000000..1dc22ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ammo_firetar.jpg b/other/AoWoW-master/images/icons/small/inv_ammo_firetar.jpg new file mode 100644 index 0000000..33d6f34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ammo_firetar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ammo_snowball.jpg b/other/AoWoW-master/images/icons/small/inv_ammo_snowball.jpg new file mode 100644 index 0000000..dce0be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ammo_snowball.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/small/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..b86b1ad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_armor_shield_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_armor_shield_naxxramas_d_01.jpg new file mode 100644 index 0000000..ca05452 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_armor_shield_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_armor_shield_naxxramas_d_02.jpg b/other/AoWoW-master/images/icons/small/inv_armor_shield_naxxramas_d_02.jpg new file mode 100644 index 0000000..ec13dbd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_armor_shield_naxxramas_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/small/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..f0f2892 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_01.jpg b/other/AoWoW-master/images/icons/small/inv_axe_01.jpg new file mode 100644 index 0000000..8c3477d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_02.jpg b/other/AoWoW-master/images/icons/small/inv_axe_02.jpg new file mode 100644 index 0000000..d47b98f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_03.jpg b/other/AoWoW-master/images/icons/small/inv_axe_03.jpg new file mode 100644 index 0000000..1a9e6d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_04.jpg b/other/AoWoW-master/images/icons/small/inv_axe_04.jpg new file mode 100644 index 0000000..f9dfe61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_05.jpg b/other/AoWoW-master/images/icons/small/inv_axe_05.jpg new file mode 100644 index 0000000..4a94236 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_06.jpg b/other/AoWoW-master/images/icons/small/inv_axe_06.jpg new file mode 100644 index 0000000..8a91093 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_07.jpg b/other/AoWoW-master/images/icons/small/inv_axe_07.jpg new file mode 100644 index 0000000..d519d2c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_08.jpg b/other/AoWoW-master/images/icons/small/inv_axe_08.jpg new file mode 100644 index 0000000..c25781b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_09.jpg b/other/AoWoW-master/images/icons/small/inv_axe_09.jpg new file mode 100644 index 0000000..bc6b732 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_10.jpg b/other/AoWoW-master/images/icons/small/inv_axe_10.jpg new file mode 100644 index 0000000..30892af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_11.jpg b/other/AoWoW-master/images/icons/small/inv_axe_11.jpg new file mode 100644 index 0000000..3391686 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_12.jpg b/other/AoWoW-master/images/icons/small/inv_axe_12.jpg new file mode 100644 index 0000000..56644c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_13.jpg b/other/AoWoW-master/images/icons/small/inv_axe_13.jpg new file mode 100644 index 0000000..c070c13 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_14.jpg b/other/AoWoW-master/images/icons/small/inv_axe_14.jpg new file mode 100644 index 0000000..6cb6bcd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_15.jpg b/other/AoWoW-master/images/icons/small/inv_axe_15.jpg new file mode 100644 index 0000000..61dc9f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_16.jpg b/other/AoWoW-master/images/icons/small/inv_axe_16.jpg new file mode 100644 index 0000000..9983a6a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_17.jpg b/other/AoWoW-master/images/icons/small/inv_axe_17.jpg new file mode 100644 index 0000000..d084a9b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_18.jpg b/other/AoWoW-master/images/icons/small/inv_axe_18.jpg new file mode 100644 index 0000000..7c2ff1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_19.jpg b/other/AoWoW-master/images/icons/small/inv_axe_19.jpg new file mode 100644 index 0000000..8fd925d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..ba73d81 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..da54d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..b59b49b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_20.jpg b/other/AoWoW-master/images/icons/small/inv_axe_20.jpg new file mode 100644 index 0000000..31dd8e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_21.jpg b/other/AoWoW-master/images/icons/small/inv_axe_21.jpg new file mode 100644 index 0000000..efa0e9b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_22.jpg b/other/AoWoW-master/images/icons/small/inv_axe_22.jpg new file mode 100644 index 0000000..e9286d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_23.jpg b/other/AoWoW-master/images/icons/small/inv_axe_23.jpg new file mode 100644 index 0000000..c98cedd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_24.jpg b/other/AoWoW-master/images/icons/small/inv_axe_24.jpg new file mode 100644 index 0000000..3a92d6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_25.jpg b/other/AoWoW-master/images/icons/small/inv_axe_25.jpg new file mode 100644 index 0000000..a44dda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_26.jpg b/other/AoWoW-master/images/icons/small/inv_axe_26.jpg new file mode 100644 index 0000000..3c91e6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_29.jpg b/other/AoWoW-master/images/icons/small/inv_axe_29.jpg new file mode 100644 index 0000000..0625e2a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_2h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_axe_2h_stratholme_d_01.jpg new file mode 100644 index 0000000..31afc16 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_2h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_30.jpg b/other/AoWoW-master/images/icons/small/inv_axe_30.jpg new file mode 100644 index 0000000..4be2edb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_31.jpg b/other/AoWoW-master/images/icons/small/inv_axe_31.jpg new file mode 100644 index 0000000..ac23aa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_32.jpg b/other/AoWoW-master/images/icons/small/inv_axe_32.jpg new file mode 100644 index 0000000..ac23aa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_33.jpg b/other/AoWoW-master/images/icons/small/inv_axe_33.jpg new file mode 100644 index 0000000..03fe8d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_34.jpg b/other/AoWoW-master/images/icons/small/inv_axe_34.jpg new file mode 100644 index 0000000..7bf41d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_35.jpg b/other/AoWoW-master/images/icons/small/inv_axe_35.jpg new file mode 100644 index 0000000..461dedc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_36.jpg b/other/AoWoW-master/images/icons/small/inv_axe_36.jpg new file mode 100644 index 0000000..e096979 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_37.jpg b/other/AoWoW-master/images/icons/small/inv_axe_37.jpg new file mode 100644 index 0000000..7df8493 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_38.jpg b/other/AoWoW-master/images/icons/small/inv_axe_38.jpg new file mode 100644 index 0000000..d463af8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_39.jpg b/other/AoWoW-master/images/icons/small/inv_axe_39.jpg new file mode 100644 index 0000000..da096a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_40.jpg b/other/AoWoW-master/images/icons/small/inv_axe_40.jpg new file mode 100644 index 0000000..c85ddc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_44.jpg b/other/AoWoW-master/images/icons/small/inv_axe_44.jpg new file mode 100644 index 0000000..e08743d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_45.jpg b/other/AoWoW-master/images/icons/small/inv_axe_45.jpg new file mode 100644 index 0000000..20e8da2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_46.jpg b/other/AoWoW-master/images/icons/small/inv_axe_46.jpg new file mode 100644 index 0000000..fcf337f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_49.jpg b/other/AoWoW-master/images/icons/small/inv_axe_49.jpg new file mode 100644 index 0000000..eff972a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_50.jpg b/other/AoWoW-master/images/icons/small/inv_axe_50.jpg new file mode 100644 index 0000000..676259b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_51.jpg b/other/AoWoW-master/images/icons/small/inv_axe_51.jpg new file mode 100644 index 0000000..5943560 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_52.jpg b/other/AoWoW-master/images/icons/small/inv_axe_52.jpg new file mode 100644 index 0000000..76458cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_53.jpg b/other/AoWoW-master/images/icons/small/inv_axe_53.jpg new file mode 100644 index 0000000..4a43c33 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_54.jpg b/other/AoWoW-master/images/icons/small/inv_axe_54.jpg new file mode 100644 index 0000000..4cd80a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_55.jpg b/other/AoWoW-master/images/icons/small/inv_axe_55.jpg new file mode 100644 index 0000000..2352ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_56.jpg b/other/AoWoW-master/images/icons/small/inv_axe_56.jpg new file mode 100644 index 0000000..f612d02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_57.jpg b/other/AoWoW-master/images/icons/small/inv_axe_57.jpg new file mode 100644 index 0000000..1b32d45 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_59.jpg b/other/AoWoW-master/images/icons/small/inv_axe_59.jpg new file mode 100644 index 0000000..6e72808 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_60.jpg b/other/AoWoW-master/images/icons/small/inv_axe_60.jpg new file mode 100644 index 0000000..b5fc006 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_61.jpg b/other/AoWoW-master/images/icons/small/inv_axe_61.jpg new file mode 100644 index 0000000..8268658 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_62.jpg b/other/AoWoW-master/images/icons/small/inv_axe_62.jpg new file mode 100644 index 0000000..0b9ad79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_63.jpg b/other/AoWoW-master/images/icons/small/inv_axe_63.jpg new file mode 100644 index 0000000..5e4adfd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_64.jpg b/other/AoWoW-master/images/icons/small/inv_axe_64.jpg new file mode 100644 index 0000000..5245c5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_65.jpg b/other/AoWoW-master/images/icons/small/inv_axe_65.jpg new file mode 100644 index 0000000..af9f38f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_66.jpg b/other/AoWoW-master/images/icons/small/inv_axe_66.jpg new file mode 100644 index 0000000..b57a01a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_67.jpg b/other/AoWoW-master/images/icons/small/inv_axe_67.jpg new file mode 100644 index 0000000..7705b16 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_68.jpg b/other/AoWoW-master/images/icons/small/inv_axe_68.jpg new file mode 100644 index 0000000..3683e63 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_69.jpg b/other/AoWoW-master/images/icons/small/inv_axe_69.jpg new file mode 100644 index 0000000..5f30ab1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_70.jpg b/other/AoWoW-master/images/icons/small/inv_axe_70.jpg new file mode 100644 index 0000000..757f26b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_70.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_71.jpg b/other/AoWoW-master/images/icons/small/inv_axe_71.jpg new file mode 100644 index 0000000..d913e50 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_72.jpg b/other/AoWoW-master/images/icons/small/inv_axe_72.jpg new file mode 100644 index 0000000..8a88b31 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_73.jpg b/other/AoWoW-master/images/icons/small/inv_axe_73.jpg new file mode 100644 index 0000000..d1f6394 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_84.jpg b/other/AoWoW-master/images/icons/small/inv_axe_84.jpg new file mode 100644 index 0000000..caafde7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_84.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_axe_85.jpg b/other/AoWoW-master/images/icons/small/inv_axe_85.jpg new file mode 100644 index 0000000..f2a044f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_axe_85.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_banner_01.jpg b/other/AoWoW-master/images/icons/small/inv_banner_01.jpg new file mode 100644 index 0000000..dc48f61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_banner_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_banner_02.jpg b/other/AoWoW-master/images/icons/small/inv_banner_02.jpg new file mode 100644 index 0000000..7af1587 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_banner_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_banner_03.jpg b/other/AoWoW-master/images/icons/small/inv_banner_03.jpg new file mode 100644 index 0000000..658d055 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_banner_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bannerpvp_01.jpg b/other/AoWoW-master/images/icons/small/inv_bannerpvp_01.jpg new file mode 100644 index 0000000..9dca12a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bannerpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bannerpvp_02.jpg b/other/AoWoW-master/images/icons/small/inv_bannerpvp_02.jpg new file mode 100644 index 0000000..a493686 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bannerpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bannerpvp_03.jpg b/other/AoWoW-master/images/icons/small/inv_bannerpvp_03.jpg new file mode 100644 index 0000000..8772838 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bannerpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_battery_01.jpg b/other/AoWoW-master/images/icons/small/inv_battery_01.jpg new file mode 100644 index 0000000..93b563f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_battery_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_battery_02.jpg b/other/AoWoW-master/images/icons/small/inv_battery_02.jpg new file mode 100644 index 0000000..7e7e5a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_battery_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_01.jpg b/other/AoWoW-master/images/icons/small/inv_belt_01.jpg new file mode 100644 index 0000000..2790880 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_02.jpg b/other/AoWoW-master/images/icons/small/inv_belt_02.jpg new file mode 100644 index 0000000..e8d53c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_03.jpg b/other/AoWoW-master/images/icons/small/inv_belt_03.jpg new file mode 100644 index 0000000..98b4c37 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_04.jpg b/other/AoWoW-master/images/icons/small/inv_belt_04.jpg new file mode 100644 index 0000000..14a67dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_05.jpg b/other/AoWoW-master/images/icons/small/inv_belt_05.jpg new file mode 100644 index 0000000..281b1d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_06.jpg b/other/AoWoW-master/images/icons/small/inv_belt_06.jpg new file mode 100644 index 0000000..02f7bd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_07.jpg b/other/AoWoW-master/images/icons/small/inv_belt_07.jpg new file mode 100644 index 0000000..ffd4034 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_08.jpg b/other/AoWoW-master/images/icons/small/inv_belt_08.jpg new file mode 100644 index 0000000..3d05bb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_09.jpg b/other/AoWoW-master/images/icons/small/inv_belt_09.jpg new file mode 100644 index 0000000..7a8287f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_10.jpg b/other/AoWoW-master/images/icons/small/inv_belt_10.jpg new file mode 100644 index 0000000..99333d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_11.jpg b/other/AoWoW-master/images/icons/small/inv_belt_11.jpg new file mode 100644 index 0000000..7231b94 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_12.jpg b/other/AoWoW-master/images/icons/small/inv_belt_12.jpg new file mode 100644 index 0000000..6048270 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_13.jpg b/other/AoWoW-master/images/icons/small/inv_belt_13.jpg new file mode 100644 index 0000000..82eca91 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_14.jpg b/other/AoWoW-master/images/icons/small/inv_belt_14.jpg new file mode 100644 index 0000000..08502e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_15.jpg b/other/AoWoW-master/images/icons/small/inv_belt_15.jpg new file mode 100644 index 0000000..9f6ef8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_16.jpg b/other/AoWoW-master/images/icons/small/inv_belt_16.jpg new file mode 100644 index 0000000..85d9f5c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_17.jpg b/other/AoWoW-master/images/icons/small/inv_belt_17.jpg new file mode 100644 index 0000000..42bf17b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_18.jpg b/other/AoWoW-master/images/icons/small/inv_belt_18.jpg new file mode 100644 index 0000000..cbc409f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_19.jpg b/other/AoWoW-master/images/icons/small/inv_belt_19.jpg new file mode 100644 index 0000000..812e9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_20.jpg b/other/AoWoW-master/images/icons/small/inv_belt_20.jpg new file mode 100644 index 0000000..0911456 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_21.jpg b/other/AoWoW-master/images/icons/small/inv_belt_21.jpg new file mode 100644 index 0000000..21ff617 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_22.jpg b/other/AoWoW-master/images/icons/small/inv_belt_22.jpg new file mode 100644 index 0000000..81ac6ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_23.jpg b/other/AoWoW-master/images/icons/small/inv_belt_23.jpg new file mode 100644 index 0000000..1f9cf66 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_24.jpg b/other/AoWoW-master/images/icons/small/inv_belt_24.jpg new file mode 100644 index 0000000..1046307 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_25.jpg b/other/AoWoW-master/images/icons/small/inv_belt_25.jpg new file mode 100644 index 0000000..041444c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_26.jpg b/other/AoWoW-master/images/icons/small/inv_belt_26.jpg new file mode 100644 index 0000000..da97dfb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_27.jpg b/other/AoWoW-master/images/icons/small/inv_belt_27.jpg new file mode 100644 index 0000000..296ad4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_28.jpg b/other/AoWoW-master/images/icons/small/inv_belt_28.jpg new file mode 100644 index 0000000..7d18548 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_29.jpg b/other/AoWoW-master/images/icons/small/inv_belt_29.jpg new file mode 100644 index 0000000..a077d20 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_30.jpg b/other/AoWoW-master/images/icons/small/inv_belt_30.jpg new file mode 100644 index 0000000..498d619 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_31.jpg b/other/AoWoW-master/images/icons/small/inv_belt_31.jpg new file mode 100644 index 0000000..ea1d185 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_32.jpg b/other/AoWoW-master/images/icons/small/inv_belt_32.jpg new file mode 100644 index 0000000..df9f6c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_33.jpg b/other/AoWoW-master/images/icons/small/inv_belt_33.jpg new file mode 100644 index 0000000..f1fde72 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_34.jpg b/other/AoWoW-master/images/icons/small/inv_belt_34.jpg new file mode 100644 index 0000000..2b1d236 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_belt_35.jpg b/other/AoWoW-master/images/icons/small/inv_belt_35.jpg new file mode 100644 index 0000000..2220c20 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_belt_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_blue.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_blue.jpg new file mode 100644 index 0000000..8bcb25f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_bronze.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_bronze.jpg new file mode 100644 index 0000000..2f7e01f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_gold.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_gold.jpg new file mode 100644 index 0000000..7b1ecbd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_green.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_green.jpg new file mode 100644 index 0000000..1359434 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_orange.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_orange.jpg new file mode 100644 index 0000000..ccb7216 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_orange.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_purple.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_purple.jpg new file mode 100644 index 0000000..0edda0e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_red.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_red.jpg new file mode 100644 index 0000000..ec8fab4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_silver.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_silver.jpg new file mode 100644 index 0000000..d235a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bijou_yellow.jpg b/other/AoWoW-master/images/icons/small/inv_bijou_yellow.jpg new file mode 100644 index 0000000..29aa4ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bijou_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_01.jpg new file mode 100644 index 0000000..a1a9644 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_02.jpg b/other/AoWoW-master/images/icons/small/inv_boots_02.jpg new file mode 100644 index 0000000..701a7f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_03.jpg b/other/AoWoW-master/images/icons/small/inv_boots_03.jpg new file mode 100644 index 0000000..8acd5cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_04.jpg b/other/AoWoW-master/images/icons/small/inv_boots_04.jpg new file mode 100644 index 0000000..22c0daa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_05.jpg b/other/AoWoW-master/images/icons/small/inv_boots_05.jpg new file mode 100644 index 0000000..e7078de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_06.jpg b/other/AoWoW-master/images/icons/small/inv_boots_06.jpg new file mode 100644 index 0000000..9da437a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_07.jpg b/other/AoWoW-master/images/icons/small/inv_boots_07.jpg new file mode 100644 index 0000000..b367442 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_08.jpg b/other/AoWoW-master/images/icons/small/inv_boots_08.jpg new file mode 100644 index 0000000..f7f5c4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_09.jpg b/other/AoWoW-master/images/icons/small/inv_boots_09.jpg new file mode 100644 index 0000000..fbd66a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_01.jpg new file mode 100644 index 0000000..07d2516 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_02.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_02.jpg new file mode 100644 index 0000000..54533e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_03.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_03.jpg new file mode 100644 index 0000000..b0519b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_04.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_04.jpg new file mode 100644 index 0000000..4212baa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_05.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_05.jpg new file mode 100644 index 0000000..a21b346 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_06.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_06.jpg new file mode 100644 index 0000000..2f6614c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_07.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_07.jpg new file mode 100644 index 0000000..a04bdd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_08.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_08.jpg new file mode 100644 index 0000000..53b6a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_09.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_09.jpg new file mode 100644 index 0000000..6af8c1e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_10.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_10.jpg new file mode 100644 index 0000000..76f4cc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_11.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_11.jpg new file mode 100644 index 0000000..ea02ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_12.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_12.jpg new file mode 100644 index 0000000..590d910 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_chain_13.jpg b/other/AoWoW-master/images/icons/small/inv_boots_chain_13.jpg new file mode 100644 index 0000000..67197f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_christmas01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_christmas01.jpg new file mode 100644 index 0000000..216cd81 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_01.jpg new file mode 100644 index 0000000..31258d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_02.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_02.jpg new file mode 100644 index 0000000..c541a73 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_03.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_03.jpg new file mode 100644 index 0000000..9bc6214 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_04.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_04.jpg new file mode 100644 index 0000000..1c83f55 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_05.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_05.jpg new file mode 100644 index 0000000..1dab7b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_06.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_06.jpg new file mode 100644 index 0000000..f51bc4c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_07.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_07.jpg new file mode 100644 index 0000000..58b4c7f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_08.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_08.jpg new file mode 100644 index 0000000..7812af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_09.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_09.jpg new file mode 100644 index 0000000..af4cbc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_10.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_10.jpg new file mode 100644 index 0000000..e0fb383 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_11.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_11.jpg new file mode 100644 index 0000000..3aec484 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_12.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_12.jpg new file mode 100644 index 0000000..9b83fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_13.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_13.jpg new file mode 100644 index 0000000..022f5e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_14.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_14.jpg new file mode 100644 index 0000000..ee80ff1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_15.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_15.jpg new file mode 100644 index 0000000..dfa4c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_16.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_16.jpg new file mode 100644 index 0000000..9ba6070 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_17.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_17.jpg new file mode 100644 index 0000000..1f1bf48 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_18.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_18.jpg new file mode 100644 index 0000000..4356355 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_cloth_20.jpg b/other/AoWoW-master/images/icons/small/inv_boots_cloth_20.jpg new file mode 100644 index 0000000..d8472c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_fabric_01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_fabric_01.jpg new file mode 100644 index 0000000..c63c3d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_fabric_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_leather01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_leather01.jpg new file mode 100644 index 0000000..1326a81 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_leather01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_mail_01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_mail_01.jpg new file mode 100644 index 0000000..4495641 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_01.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_01.jpg new file mode 100644 index 0000000..4a24931 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_02.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_02.jpg new file mode 100644 index 0000000..767cd25 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_03.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_03.jpg new file mode 100644 index 0000000..b54c021 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_04.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_04.jpg new file mode 100644 index 0000000..72d87e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_05.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_05.jpg new file mode 100644 index 0000000..b33e215 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_06.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_06.jpg new file mode 100644 index 0000000..26c4ea5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_07.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_07.jpg new file mode 100644 index 0000000..27c9a70 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_08.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_08.jpg new file mode 100644 index 0000000..b1c43e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_09.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_09.jpg new file mode 100644 index 0000000..e8f524d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_plate_10.jpg b/other/AoWoW-master/images/icons/small/inv_boots_plate_10.jpg new file mode 100644 index 0000000..b8f0ba9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_boots_wolf.jpg b/other/AoWoW-master/images/icons/small/inv_boots_wolf.jpg new file mode 100644 index 0000000..af1ed88 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_boots_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bow_1h_auchindoun_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_bow_1h_auchindoun_d_01.jpg new file mode 100644 index 0000000..5d13fc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bow_1h_auchindoun_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_box_01.jpg b/other/AoWoW-master/images/icons/small/inv_box_01.jpg new file mode 100644 index 0000000..7c60d86 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_box_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_box_02.jpg b/other/AoWoW-master/images/icons/small/inv_box_02.jpg new file mode 100644 index 0000000..b4376e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_box_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_box_03.jpg b/other/AoWoW-master/images/icons/small/inv_box_03.jpg new file mode 100644 index 0000000..991618a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_box_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_box_04.jpg b/other/AoWoW-master/images/icons/small/inv_box_04.jpg new file mode 100644 index 0000000..f32be96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_box_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_box_birdcage_01.jpg b/other/AoWoW-master/images/icons/small/inv_box_birdcage_01.jpg new file mode 100644 index 0000000..700773d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_box_birdcage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_box_petcarrier_01.jpg b/other/AoWoW-master/images/icons/small/inv_box_petcarrier_01.jpg new file mode 100644 index 0000000..e3c6124 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_box_petcarrier_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_01.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_01.jpg new file mode 100644 index 0000000..9b35160 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_02.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_02.jpg new file mode 100644 index 0000000..49a1c17 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_03.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_03.jpg new file mode 100644 index 0000000..a592072 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_04.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_04.jpg new file mode 100644 index 0000000..5d4e18f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_05.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_05.jpg new file mode 100644 index 0000000..3c6d790 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_06.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_06.jpg new file mode 100644 index 0000000..73dd891 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_07.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_07.jpg new file mode 100644 index 0000000..fbdb141 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_08.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_08.jpg new file mode 100644 index 0000000..925246b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_09.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_09.jpg new file mode 100644 index 0000000..9fab0ed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_10.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_10.jpg new file mode 100644 index 0000000..f4532a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_11.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_11.jpg new file mode 100644 index 0000000..4dde806 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_12.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_12.jpg new file mode 100644 index 0000000..b1dbc0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_13.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_13.jpg new file mode 100644 index 0000000..761ffd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_14.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_14.jpg new file mode 100644 index 0000000..164057f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_15.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_15.jpg new file mode 100644 index 0000000..6407ac4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_16.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_16.jpg new file mode 100644 index 0000000..f14baab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_17.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_17.jpg new file mode 100644 index 0000000..d928071 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_18.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_18.jpg new file mode 100644 index 0000000..5e72329 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_bracer_19.jpg b/other/AoWoW-master/images/icons/small/inv_bracer_19.jpg new file mode 100644 index 0000000..9c255b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_bracer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_brd_banner.jpg b/other/AoWoW-master/images/icons/small/inv_brd_banner.jpg new file mode 100644 index 0000000..138c54d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_brd_banner.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_cask_01.jpg b/other/AoWoW-master/images/icons/small/inv_cask_01.jpg new file mode 100644 index 0000000..6a873c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_cask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_cask_02.jpg b/other/AoWoW-master/images/icons/small/inv_cask_02.jpg new file mode 100644 index 0000000..4394b03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_cask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_cask_03.jpg b/other/AoWoW-master/images/icons/small/inv_cask_03.jpg new file mode 100644 index 0000000..dcafca0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_cask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_cask_04.jpg b/other/AoWoW-master/images/icons/small/inv_cask_04.jpg new file mode 100644 index 0000000..276304b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_cask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain.jpg new file mode 100644 index 0000000..10ffa59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_03.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_03.jpg new file mode 100644 index 0000000..67e7acb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_04.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_04.jpg new file mode 100644 index 0000000..5ca7fa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_05.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_05.jpg new file mode 100644 index 0000000..f5b705e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_06.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_06.jpg new file mode 100644 index 0000000..4c994ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_07.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_07.jpg new file mode 100644 index 0000000..64b76bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_08.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_08.jpg new file mode 100644 index 0000000..ba08069 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_09.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_09.jpg new file mode 100644 index 0000000..c2ed881 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_10.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_10.jpg new file mode 100644 index 0000000..9887b39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_11.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_11.jpg new file mode 100644 index 0000000..a438a6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_12.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_12.jpg new file mode 100644 index 0000000..3cd3c51 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_13.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_13.jpg new file mode 100644 index 0000000..a263d0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_14.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_14.jpg new file mode 100644 index 0000000..e473c02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_15.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_15.jpg new file mode 100644 index 0000000..ffdf64b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_16.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_16.jpg new file mode 100644 index 0000000..1a3ab02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_chain_17.jpg b/other/AoWoW-master/images/icons/small/inv_chest_chain_17.jpg new file mode 100644 index 0000000..d9e50f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_chain_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_christmas01.jpg b/other/AoWoW-master/images/icons/small/inv_chest_christmas01.jpg new file mode 100644 index 0000000..c053873 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_christmas02.jpg b/other/AoWoW-master/images/icons/small/inv_chest_christmas02.jpg new file mode 100644 index 0000000..b2cfc76 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_christmas02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_01.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_01.jpg new file mode 100644 index 0000000..a5e165e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_02.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_02.jpg new file mode 100644 index 0000000..6461421 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_03.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_03.jpg new file mode 100644 index 0000000..0429013 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_04.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_04.jpg new file mode 100644 index 0000000..9533778 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_05.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_05.jpg new file mode 100644 index 0000000..fb89747 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_06.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_06.jpg new file mode 100644 index 0000000..94fd3ad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_07.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_07.jpg new file mode 100644 index 0000000..568210c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_08.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_08.jpg new file mode 100644 index 0000000..9a5365a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_09.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_09.jpg new file mode 100644 index 0000000..1e92ea8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_10.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_10.jpg new file mode 100644 index 0000000..d02e313 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_11.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_11.jpg new file mode 100644 index 0000000..e9dc006 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_12.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_12.jpg new file mode 100644 index 0000000..121baf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_13.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_13.jpg new file mode 100644 index 0000000..3d1ded4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_14.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_14.jpg new file mode 100644 index 0000000..2ec8719 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_15.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_15.jpg new file mode 100644 index 0000000..987bff0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_16.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_16.jpg new file mode 100644 index 0000000..d1500a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_17.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_17.jpg new file mode 100644 index 0000000..89e749d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_18.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_18.jpg new file mode 100644 index 0000000..476bf13 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_19.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_19.jpg new file mode 100644 index 0000000..3c59a21 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_20.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_20.jpg new file mode 100644 index 0000000..529488a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_21.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_21.jpg new file mode 100644 index 0000000..a6d3315 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_22.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_22.jpg new file mode 100644 index 0000000..d42fef8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_23.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_23.jpg new file mode 100644 index 0000000..b7baa32 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_24.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_24.jpg new file mode 100644 index 0000000..75dca61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_25.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_25.jpg new file mode 100644 index 0000000..fa031ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_26.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_26.jpg new file mode 100644 index 0000000..a093930 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_27.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_27.jpg new file mode 100644 index 0000000..fa91fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_28.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_28.jpg new file mode 100644 index 0000000..6c09689 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_29.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_29.jpg new file mode 100644 index 0000000..4426207 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_30.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_30.jpg new file mode 100644 index 0000000..8aea7eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_31.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_31.jpg new file mode 100644 index 0000000..8926c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_32.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_32.jpg new file mode 100644 index 0000000..a07727e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_33.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_33.jpg new file mode 100644 index 0000000..a632625 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_34.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_34.jpg new file mode 100644 index 0000000..2616191 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_35.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_35.jpg new file mode 100644 index 0000000..fc0cdfb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_36.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_36.jpg new file mode 100644 index 0000000..aa3b851 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_37.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_37.jpg new file mode 100644 index 0000000..ea88eb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_38.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_38.jpg new file mode 100644 index 0000000..1a6530c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_39.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_39.jpg new file mode 100644 index 0000000..3a42d58 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_40.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_40.jpg new file mode 100644 index 0000000..fda227e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_41.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_41.jpg new file mode 100644 index 0000000..fa64976 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_42.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_42.jpg new file mode 100644 index 0000000..22387f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_43.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_43.jpg new file mode 100644 index 0000000..bec0dd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_44.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_44.jpg new file mode 100644 index 0000000..dbdf235 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_45.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_45.jpg new file mode 100644 index 0000000..a1334ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_46.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_46.jpg new file mode 100644 index 0000000..25bd1a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_47.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_47.jpg new file mode 100644 index 0000000..84015eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_48.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_48.jpg new file mode 100644 index 0000000..dd8dc4b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_49.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_49.jpg new file mode 100644 index 0000000..942e76b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_50.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_50.jpg new file mode 100644 index 0000000..088c129 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_51.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_51.jpg new file mode 100644 index 0000000..59b4a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_52.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_52.jpg new file mode 100644 index 0000000..7a70305 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_53.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_53.jpg new file mode 100644 index 0000000..3b5e76c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_54.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_54.jpg new file mode 100644 index 0000000..a8ad0f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_55.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_55.jpg new file mode 100644 index 0000000..d0c1f9e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_56.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_56.jpg new file mode 100644 index 0000000..02ea67c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_57.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_57.jpg new file mode 100644 index 0000000..541fa63 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_58.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_58.jpg new file mode 100644 index 0000000..60da49d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_59.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_59.jpg new file mode 100644 index 0000000..7e1a8ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_60.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_60.jpg new file mode 100644 index 0000000..43e1b3f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_61.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_61.jpg new file mode 100644 index 0000000..5cd938a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_62.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_62.jpg new file mode 100644 index 0000000..5386d89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_63.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_63.jpg new file mode 100644 index 0000000..7b7fe92 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_64.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_64.jpg new file mode 100644 index 0000000..dab92a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_65.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_65.jpg new file mode 100644 index 0000000..e0bee5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_66.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_66.jpg new file mode 100644 index 0000000..1366252 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_67.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_67.jpg new file mode 100644 index 0000000..cc655a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_68.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_68.jpg new file mode 100644 index 0000000..4fb8659 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_69.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_69.jpg new file mode 100644 index 0000000..1ccfc52 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_70.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_70.jpg new file mode 100644 index 0000000..77d0e61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_70.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_cloth_72.jpg b/other/AoWoW-master/images/icons/small/inv_chest_cloth_72.jpg new file mode 100644 index 0000000..ba24396 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_cloth_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_fur.jpg b/other/AoWoW-master/images/icons/small/inv_chest_fur.jpg new file mode 100644 index 0000000..5c4e97f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_fur.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_01.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_01.jpg new file mode 100644 index 0000000..159f7e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_02.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_02.jpg new file mode 100644 index 0000000..49eeaf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_03.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_03.jpg new file mode 100644 index 0000000..557c23a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_04.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_04.jpg new file mode 100644 index 0000000..4a807cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_05.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_05.jpg new file mode 100644 index 0000000..0cdf4ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_06.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_06.jpg new file mode 100644 index 0000000..107045a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_07.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_07.jpg new file mode 100644 index 0000000..f57a59c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_08.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_08.jpg new file mode 100644 index 0000000..824d36e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_09.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_09.jpg new file mode 100644 index 0000000..6e40a93 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_10.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_10.jpg new file mode 100644 index 0000000..98f71af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_11.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_11.jpg new file mode 100644 index 0000000..ba954b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_12.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_12.jpg new file mode 100644 index 0000000..0bb611c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_13.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_13.jpg new file mode 100644 index 0000000..d58155b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_14.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_14.jpg new file mode 100644 index 0000000..0a6cc16 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_15.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_15.jpg new file mode 100644 index 0000000..d13f07b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_leather_16.jpg b/other/AoWoW-master/images/icons/small/inv_chest_leather_16.jpg new file mode 100644 index 0000000..81e242f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_mail_02.jpg b/other/AoWoW-master/images/icons/small/inv_chest_mail_02.jpg new file mode 100644 index 0000000..8f09c9d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_mail_03.jpg b/other/AoWoW-master/images/icons/small/inv_chest_mail_03.jpg new file mode 100644 index 0000000..ea35f71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_mail_04.jpg b/other/AoWoW-master/images/icons/small/inv_chest_mail_04.jpg new file mode 100644 index 0000000..3a1a30e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_mail_05.jpg b/other/AoWoW-master/images/icons/small/inv_chest_mail_05.jpg new file mode 100644 index 0000000..fe5e3cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate01.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate01.jpg new file mode 100644 index 0000000..5400d62 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate02.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate02.jpg new file mode 100644 index 0000000..754aa9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate03.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate03.jpg new file mode 100644 index 0000000..460b9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate04.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate04.jpg new file mode 100644 index 0000000..25218e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate05.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate05.jpg new file mode 100644 index 0000000..7f790e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate06.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate06.jpg new file mode 100644 index 0000000..eb44917 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate07.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate07.jpg new file mode 100644 index 0000000..cd9bdf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate08.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate08.jpg new file mode 100644 index 0000000..d55c094 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate09.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate09.jpg new file mode 100644 index 0000000..1d39974 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate10.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate10.jpg new file mode 100644 index 0000000..6902edc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate11.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate11.jpg new file mode 100644 index 0000000..3fcae9c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate12.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate12.jpg new file mode 100644 index 0000000..ae1930c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate13.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate13.jpg new file mode 100644 index 0000000..8b81990 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate14.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate14.jpg new file mode 100644 index 0000000..bb63a07 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate15.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate15.jpg new file mode 100644 index 0000000..4cdb0d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate16.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate16.jpg new file mode 100644 index 0000000..352bd19 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate18.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate18.jpg new file mode 100644 index 0000000..56c68e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate19.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate19.jpg new file mode 100644 index 0000000..6eec69b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate20.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate20.jpg new file mode 100644 index 0000000..3d00e6e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate21.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate21.jpg new file mode 100644 index 0000000..6c689d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate_22.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate_22.jpg new file mode 100644 index 0000000..8976385 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate_23.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate_23.jpg new file mode 100644 index 0000000..2ee780f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_plate_24.jpg b/other/AoWoW-master/images/icons/small/inv_chest_plate_24.jpg new file mode 100644 index 0000000..8e0e854 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_samurai.jpg b/other/AoWoW-master/images/icons/small/inv_chest_samurai.jpg new file mode 100644 index 0000000..0718d06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_samurai.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_chest_wolf.jpg b/other/AoWoW-master/images/icons/small/inv_chest_wolf.jpg new file mode 100644 index 0000000..f87838d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_chest_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crate_01.jpg b/other/AoWoW-master/images/icons/small/inv_crate_01.jpg new file mode 100644 index 0000000..4dee2fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crate_02.jpg b/other/AoWoW-master/images/icons/small/inv_crate_02.jpg new file mode 100644 index 0000000..e7eb1a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crate_03.jpg b/other/AoWoW-master/images/icons/small/inv_crate_03.jpg new file mode 100644 index 0000000..f9204a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crate_04.jpg b/other/AoWoW-master/images/icons/small/inv_crate_04.jpg new file mode 100644 index 0000000..6b5db78 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crate_05.jpg b/other/AoWoW-master/images/icons/small/inv_crate_05.jpg new file mode 100644 index 0000000..07498e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crate_06.jpg b/other/AoWoW-master/images/icons/small/inv_crate_06.jpg new file mode 100644 index 0000000..20a93e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crown_01.jpg b/other/AoWoW-master/images/icons/small/inv_crown_01.jpg new file mode 100644 index 0000000..a6c46f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crown_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crown_02.jpg b/other/AoWoW-master/images/icons/small/inv_crown_02.jpg new file mode 100644 index 0000000..4799813 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crown_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crown_13.jpg b/other/AoWoW-master/images/icons/small/inv_crown_13.jpg new file mode 100644 index 0000000..a0ac219 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crown_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crown_14.jpg b/other/AoWoW-master/images/icons/small/inv_crown_14.jpg new file mode 100644 index 0000000..9c83c97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crown_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_crown_15.jpg b/other/AoWoW-master/images/icons/small/inv_crown_15.jpg new file mode 100644 index 0000000..93e420b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_crown_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal01.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal01.jpg new file mode 100644 index 0000000..f12490e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal02.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal02.jpg new file mode 100644 index 0000000..e4905de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal03.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal03.jpg new file mode 100644 index 0000000..5427dae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal04.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal04.jpg new file mode 100644 index 0000000..1ca98f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal05.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal05.jpg new file mode 100644 index 0000000..91683da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal06.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal06.jpg new file mode 100644 index 0000000..312ceef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal07.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal07.jpg new file mode 100644 index 0000000..98e8c33 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal08.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal08.jpg new file mode 100644 index 0000000..d0b7408 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal09.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal09.jpg new file mode 100644 index 0000000..31b5d0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal10.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal10.jpg new file mode 100644 index 0000000..5d06b2a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal11.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal11.jpg new file mode 100644 index 0000000..e8e695b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_datacrystal12.jpg b/other/AoWoW-master/images/icons/small/inv_datacrystal12.jpg new file mode 100644 index 0000000..41e1961 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_datacrystal12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_diablostone.jpg b/other/AoWoW-master/images/icons/small/inv_diablostone.jpg new file mode 100644 index 0000000..6e7016e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_diablostone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_01.jpg b/other/AoWoW-master/images/icons/small/inv_drink_01.jpg new file mode 100644 index 0000000..61d374d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_02.jpg b/other/AoWoW-master/images/icons/small/inv_drink_02.jpg new file mode 100644 index 0000000..262f84e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_03.jpg b/other/AoWoW-master/images/icons/small/inv_drink_03.jpg new file mode 100644 index 0000000..72bc040 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_04.jpg b/other/AoWoW-master/images/icons/small/inv_drink_04.jpg new file mode 100644 index 0000000..1db9836 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_05.jpg b/other/AoWoW-master/images/icons/small/inv_drink_05.jpg new file mode 100644 index 0000000..209b37e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_06.jpg b/other/AoWoW-master/images/icons/small/inv_drink_06.jpg new file mode 100644 index 0000000..cd27714 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_07.jpg b/other/AoWoW-master/images/icons/small/inv_drink_07.jpg new file mode 100644 index 0000000..0341670 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_08.jpg b/other/AoWoW-master/images/icons/small/inv_drink_08.jpg new file mode 100644 index 0000000..333af87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_09.jpg b/other/AoWoW-master/images/icons/small/inv_drink_09.jpg new file mode 100644 index 0000000..4d1ee14 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_10.jpg b/other/AoWoW-master/images/icons/small/inv_drink_10.jpg new file mode 100644 index 0000000..18e3a13 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_11.jpg b/other/AoWoW-master/images/icons/small/inv_drink_11.jpg new file mode 100644 index 0000000..43d9e4a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_12.jpg b/other/AoWoW-master/images/icons/small/inv_drink_12.jpg new file mode 100644 index 0000000..97dedf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_13.jpg b/other/AoWoW-master/images/icons/small/inv_drink_13.jpg new file mode 100644 index 0000000..2173c0a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_14.jpg b/other/AoWoW-master/images/icons/small/inv_drink_14.jpg new file mode 100644 index 0000000..dec8edf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_15.jpg b/other/AoWoW-master/images/icons/small/inv_drink_15.jpg new file mode 100644 index 0000000..746d277 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_16.jpg b/other/AoWoW-master/images/icons/small/inv_drink_16.jpg new file mode 100644 index 0000000..bff5d01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_17.jpg b/other/AoWoW-master/images/icons/small/inv_drink_17.jpg new file mode 100644 index 0000000..5e6ba07 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_18.jpg b/other/AoWoW-master/images/icons/small/inv_drink_18.jpg new file mode 100644 index 0000000..ac22233 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_19.jpg b/other/AoWoW-master/images/icons/small/inv_drink_19.jpg new file mode 100644 index 0000000..56fda87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_20.jpg b/other/AoWoW-master/images/icons/small/inv_drink_20.jpg new file mode 100644 index 0000000..0fea13d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_21.jpg b/other/AoWoW-master/images/icons/small/inv_drink_21.jpg new file mode 100644 index 0000000..812828b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_22.jpg b/other/AoWoW-master/images/icons/small/inv_drink_22.jpg new file mode 100644 index 0000000..3c09e0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_23.jpg b/other/AoWoW-master/images/icons/small/inv_drink_23.jpg new file mode 100644 index 0000000..90be319 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_milk_01.jpg b/other/AoWoW-master/images/icons/small/inv_drink_milk_01.jpg new file mode 100644 index 0000000..1a1daad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_milk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_milk_02.jpg b/other/AoWoW-master/images/icons/small/inv_drink_milk_02.jpg new file mode 100644 index 0000000..6a7cace Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_milk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_milk_03.jpg b/other/AoWoW-master/images/icons/small/inv_drink_milk_03.jpg new file mode 100644 index 0000000..02589a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_milk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_milk_04.jpg b/other/AoWoW-master/images/icons/small/inv_drink_milk_04.jpg new file mode 100644 index 0000000..a0aa4f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_milk_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_milk_05.jpg b/other/AoWoW-master/images/icons/small/inv_drink_milk_05.jpg new file mode 100644 index 0000000..6166056 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_milk_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_01.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_01.jpg new file mode 100644 index 0000000..2c79876 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_02.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_02.jpg new file mode 100644 index 0000000..b328141 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_03.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_03.jpg new file mode 100644 index 0000000..1a03e75 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_04.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_04.jpg new file mode 100644 index 0000000..58f82be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_05.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_05.jpg new file mode 100644 index 0000000..7d2fd83 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_06.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_06.jpg new file mode 100644 index 0000000..055e76b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_07.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_07.jpg new file mode 100644 index 0000000..400d14f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_08.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_08.jpg new file mode 100644 index 0000000..e73a701 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_09.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_09.jpg new file mode 100644 index 0000000..0397c8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_10.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_10.jpg new file mode 100644 index 0000000..caaf994 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_11.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_11.jpg new file mode 100644 index 0000000..b3eb5c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_drink_waterskin_12.jpg b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_12.jpg new file mode 100644 index 0000000..57dd4d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_drink_waterskin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_egg_01.jpg b/other/AoWoW-master/images/icons/small/inv_egg_01.jpg new file mode 100644 index 0000000..57075dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_egg_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_egg_02.jpg b/other/AoWoW-master/images/icons/small/inv_egg_02.jpg new file mode 100644 index 0000000..ef3f4ff Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_egg_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_egg_03.jpg b/other/AoWoW-master/images/icons/small/inv_egg_03.jpg new file mode 100644 index 0000000..5b471b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_egg_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_egg_04.jpg b/other/AoWoW-master/images/icons/small/inv_egg_04.jpg new file mode 100644 index 0000000..16f9acc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_egg_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_egg_05.jpg b/other/AoWoW-master/images/icons/small/inv_egg_05.jpg new file mode 100644 index 0000000..d99c337 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_egg_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_air01.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_air01.jpg new file mode 100644 index 0000000..ca3cec7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_air01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_earth01.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_earth01.jpg new file mode 100644 index 0000000..255e210 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_earth01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_fire01.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_fire01.jpg new file mode 100644 index 0000000..7dbd317 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_fire01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_life01.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_life01.jpg new file mode 100644 index 0000000..178a549 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_life01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_mana.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_mana.jpg new file mode 100644 index 0000000..be552ee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_nether.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_nether.jpg new file mode 100644 index 0000000..69ca501 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_shadow01.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_shadow01.jpg new file mode 100644 index 0000000..747e46f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_shadow01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_mote_water01.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_mote_water01.jpg new file mode 100644 index 0000000..3fa1982 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_mote_water01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_air.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_air.jpg new file mode 100644 index 0000000..0e28ed7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_air.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_earth.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_earth.jpg new file mode 100644 index 0000000..05d36ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_earth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_fire.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_fire.jpg new file mode 100644 index 0000000..789ab6a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_life.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_life.jpg new file mode 100644 index 0000000..540dfaf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_life.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_mana.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_mana.jpg new file mode 100644 index 0000000..ebab029 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_nether.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_nether.jpg new file mode 100644 index 0000000..fe1647c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_shadow.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_shadow.jpg new file mode 100644 index 0000000..e367301 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_elemental_primal_water.jpg b/other/AoWoW-master/images/icons/small/inv_elemental_primal_water.jpg new file mode 100644 index 0000000..48ae376 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_elemental_primal_water.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_disenchant.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_disenchant.jpg new file mode 100644 index 0000000..ff31d57 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_disenchant.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_dustarcane.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_dustarcane.jpg new file mode 100644 index 0000000..bf23ea1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_dustarcane.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_dustdream.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_dustdream.jpg new file mode 100644 index 0000000..a4456a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_dustdream.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_dustillusion.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_dustillusion.jpg new file mode 100644 index 0000000..e22fe8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_dustillusion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_dustsoul.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_dustsoul.jpg new file mode 100644 index 0000000..afda245 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_dustsoul.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_duststrange.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_duststrange.jpg new file mode 100644 index 0000000..25c5303 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_duststrange.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_dustvision.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_dustvision.jpg new file mode 100644 index 0000000..1d2aa5b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_dustvision.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencearcanelarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencearcanelarge.jpg new file mode 100644 index 0000000..6eaf518 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencearcanelarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencearcanesmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencearcanesmall.jpg new file mode 100644 index 0000000..a71b674 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencearcanesmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essenceastrallarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essenceastrallarge.jpg new file mode 100644 index 0000000..672d999 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essenceastrallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essenceastralsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essenceastralsmall.jpg new file mode 100644 index 0000000..8abe7a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essenceastralsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essenceeternallarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essenceeternallarge.jpg new file mode 100644 index 0000000..c64d725 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essenceeternallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essenceeternalsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essenceeternalsmall.jpg new file mode 100644 index 0000000..d677781 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essenceeternalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencemagiclarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencemagiclarge.jpg new file mode 100644 index 0000000..5a7d655 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencemagiclarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencemagicsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencemagicsmall.jpg new file mode 100644 index 0000000..bc3e29f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencemagicsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencemysticallarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencemysticallarge.jpg new file mode 100644 index 0000000..167b70e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencemysticallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencemysticalsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencemysticalsmall.jpg new file mode 100644 index 0000000..831f820 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencemysticalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencenetherlarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencenetherlarge.jpg new file mode 100644 index 0000000..0df55ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencenetherlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_essencenethersmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_essencenethersmall.jpg new file mode 100644 index 0000000..8b44cb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_essencenethersmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_prismaticsphere.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_prismaticsphere.jpg new file mode 100644 index 0000000..599ac89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_prismaticsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardbrilliantlarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardbrilliantlarge.jpg new file mode 100644 index 0000000..56bfbae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardbrilliantlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardbrilliantsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardbrilliantsmall.jpg new file mode 100644 index 0000000..f873b47 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardbrilliantsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardgleamingsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardgleamingsmall.jpg new file mode 100644 index 0000000..9d7acf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardgleamingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardglimmeringlarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardglimmeringlarge.jpg new file mode 100644 index 0000000..ba07475 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardglimmeringlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardglimmeringsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardglimmeringsmall.jpg new file mode 100644 index 0000000..33ae3a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardglimmeringsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardglowinglarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardglowinglarge.jpg new file mode 100644 index 0000000..d5f5733 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardglowinglarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardglowingsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardglowingsmall.jpg new file mode 100644 index 0000000..1c0ef70 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardglowingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardnexuslarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardnexuslarge.jpg new file mode 100644 index 0000000..d82bf5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardnexuslarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardprismaticlarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardprismaticlarge.jpg new file mode 100644 index 0000000..ab04f19 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardprismaticlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardprismaticsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardprismaticsmall.jpg new file mode 100644 index 0000000..d2cd648 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardprismaticsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardradientlarge.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardradientlarge.jpg new file mode 100644 index 0000000..eeb992b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardradientlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_shardradientsmall.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_shardradientsmall.jpg new file mode 100644 index 0000000..9c8b55b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_shardradientsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_voidcrystal.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_voidcrystal.jpg new file mode 100644 index 0000000..336e2cd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_voidcrystal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_enchant_voidsphere.jpg b/other/AoWoW-master/images/icons/small/inv_enchant_voidsphere.jpg new file mode 100644 index 0000000..abc3c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_enchant_voidsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_felcloth_ebon.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_felcloth_ebon.jpg new file mode 100644 index 0000000..838929b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_felcloth_ebon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_felrag.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_felrag.jpg new file mode 100644 index 0000000..a348551 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_felrag.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_linen_01.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_linen_01.jpg new file mode 100644 index 0000000..7f395a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_linen_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_linen_02.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_linen_02.jpg new file mode 100644 index 0000000..7aa0a6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_linen_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_linen_03.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_linen_03.jpg new file mode 100644 index 0000000..3a2b0f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_linen_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_01.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_01.jpg new file mode 100644 index 0000000..e4a3d4b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_02.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_02.jpg new file mode 100644 index 0000000..22afedd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_03.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_03.jpg new file mode 100644 index 0000000..449da94 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_mageweave_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_01.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_01.jpg new file mode 100644 index 0000000..629a555 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_02.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_02.jpg new file mode 100644 index 0000000..c68b4e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_primal.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_primal.jpg new file mode 100644 index 0000000..5ac2c6e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_moonrag_primal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_netherweave.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_netherweave.jpg new file mode 100644 index 0000000..e63f2ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_netherweave_bolt.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_netherweave_bolt.jpg new file mode 100644 index 0000000..62dadac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_netherweave_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_netherweave_bolt_imbued.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_netherweave_bolt_imbued.jpg new file mode 100644 index 0000000..62bb4a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_netherweave_bolt_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_purple_01.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_purple_01.jpg new file mode 100644 index 0000000..5e41840 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_purple_02.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_purple_02.jpg new file mode 100644 index 0000000..264bfed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_purple_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_purplefire_01.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_purplefire_01.jpg new file mode 100644 index 0000000..a0efd2f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_purplefire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_purplefire_02.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_purplefire_02.jpg new file mode 100644 index 0000000..a60ae22 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_purplefire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_silk_01.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_silk_01.jpg new file mode 100644 index 0000000..1d3f245 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_silk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_silk_02.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_silk_02.jpg new file mode 100644 index 0000000..f7c9c49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_silk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_silk_03.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_silk_03.jpg new file mode 100644 index 0000000..c646baa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_silk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_soulcloth.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_soulcloth.jpg new file mode 100644 index 0000000..53eb975 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_soulcloth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_soulcloth_bolt.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_soulcloth_bolt.jpg new file mode 100644 index 0000000..0b514d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_soulcloth_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_spellfire.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_spellfire.jpg new file mode 100644 index 0000000..5d9c64c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_wool_01.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_wool_01.jpg new file mode 100644 index 0000000..347848c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_wool_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_wool_02.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_wool_02.jpg new file mode 100644 index 0000000..454eb17 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_wool_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fabric_wool_03.jpg b/other/AoWoW-master/images/icons/small/inv_fabric_wool_03.jpg new file mode 100644 index 0000000..caca03e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fabric_wool_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_01.jpg b/other/AoWoW-master/images/icons/small/inv_feather_01.jpg new file mode 100644 index 0000000..ecec267 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_02.jpg b/other/AoWoW-master/images/icons/small/inv_feather_02.jpg new file mode 100644 index 0000000..cfadf7e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_03.jpg b/other/AoWoW-master/images/icons/small/inv_feather_03.jpg new file mode 100644 index 0000000..5ecbb90 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_04.jpg b/other/AoWoW-master/images/icons/small/inv_feather_04.jpg new file mode 100644 index 0000000..0cb65fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_05.jpg b/other/AoWoW-master/images/icons/small/inv_feather_05.jpg new file mode 100644 index 0000000..4a2c1ad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_06.jpg b/other/AoWoW-master/images/icons/small/inv_feather_06.jpg new file mode 100644 index 0000000..112701e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_07.jpg b/other/AoWoW-master/images/icons/small/inv_feather_07.jpg new file mode 100644 index 0000000..89f4e84 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_08.jpg b/other/AoWoW-master/images/icons/small/inv_feather_08.jpg new file mode 100644 index 0000000..0e62867 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_09.jpg b/other/AoWoW-master/images/icons/small/inv_feather_09.jpg new file mode 100644 index 0000000..958ab17 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_10.jpg b/other/AoWoW-master/images/icons/small/inv_feather_10.jpg new file mode 100644 index 0000000..a08e950 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_11.jpg b/other/AoWoW-master/images/icons/small/inv_feather_11.jpg new file mode 100644 index 0000000..8d9350c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_12.jpg b/other/AoWoW-master/images/icons/small/inv_feather_12.jpg new file mode 100644 index 0000000..c9ff628 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_13.jpg b/other/AoWoW-master/images/icons/small/inv_feather_13.jpg new file mode 100644 index 0000000..353bbeb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_14.jpg b/other/AoWoW-master/images/icons/small/inv_feather_14.jpg new file mode 100644 index 0000000..e2405c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_15.jpg b/other/AoWoW-master/images/icons/small/inv_feather_15.jpg new file mode 100644 index 0000000..1782f8f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_feather_16.jpg b/other/AoWoW-master/images/icons/small/inv_feather_16.jpg new file mode 100644 index 0000000..77df57c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_feather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fishingchair.jpg b/other/AoWoW-master/images/icons/small/inv_fishingchair.jpg new file mode 100644 index 0000000..9ac3911 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fishingchair.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fishingpole_01.jpg b/other/AoWoW-master/images/icons/small/inv_fishingpole_01.jpg new file mode 100644 index 0000000..bb37cf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fishingpole_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_fishingpole_02.jpg b/other/AoWoW-master/images/icons/small/inv_fishingpole_02.jpg new file mode 100644 index 0000000..7f2a2ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_fishingpole_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_food_christmasfruitcake_01.jpg b/other/AoWoW-master/images/icons/small/inv_food_christmasfruitcake_01.jpg new file mode 100644 index 0000000..63dd69c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_food_christmasfruitcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_01.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_01.jpg new file mode 100644 index 0000000..21fa84a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_02.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_02.jpg new file mode 100644 index 0000000..86ed3c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_03.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_03.jpg new file mode 100644 index 0000000..6b82ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_04.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_04.jpg new file mode 100644 index 0000000..13ce303 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_05.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_05.jpg new file mode 100644 index 0000000..3a33969 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_06.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_06.jpg new file mode 100644 index 0000000..3352738 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_07.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_07.jpg new file mode 100644 index 0000000..0b29e6a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_08.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_08.jpg new file mode 100644 index 0000000..d34fdbb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_09.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_09.jpg new file mode 100644 index 0000000..4fa0c46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_10.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_10.jpg new file mode 100644 index 0000000..3fad082 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_11.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_11.jpg new file mode 100644 index 0000000..34db47b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_12.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_12.jpg new file mode 100644 index 0000000..45616ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_13.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_13.jpg new file mode 100644 index 0000000..62ac8f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_14.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_14.jpg new file mode 100644 index 0000000..72cde8f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_15.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_15.jpg new file mode 100644 index 0000000..d9cbe7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_16.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_16.jpg new file mode 100644 index 0000000..21ef7ac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_17.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_17.jpg new file mode 100644 index 0000000..f78c52e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_18.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_18.jpg new file mode 100644 index 0000000..fe55e0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_19.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_19.jpg new file mode 100644 index 0000000..53f818a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_20.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_20.jpg new file mode 100644 index 0000000..ecd3e34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_21.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_21.jpg new file mode 100644 index 0000000..dc7d17f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_22.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_22.jpg new file mode 100644 index 0000000..fe4e358 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_23.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_23.jpg new file mode 100644 index 0000000..cd88b4f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_24.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_24.jpg new file mode 100644 index 0000000..2b4ba1b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_25.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_25.jpg new file mode 100644 index 0000000..c4aa351 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_26.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_26.jpg new file mode 100644 index 0000000..65952bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_27.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_27.jpg new file mode 100644 index 0000000..b99eedc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_28.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_28.jpg new file mode 100644 index 0000000..860f856 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_29.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_29.jpg new file mode 100644 index 0000000..936fcc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_30.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_30.jpg new file mode 100644 index 0000000..a269706 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_31.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_31.jpg new file mode 100644 index 0000000..a83dff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_32.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_32.jpg new file mode 100644 index 0000000..d8f33e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_40.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_40.jpg new file mode 100644 index 0000000..06167d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_41.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_41.jpg new file mode 100644 index 0000000..26591c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_44.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_44.jpg new file mode 100644 index 0000000..a0e44cc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_47.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_47.jpg new file mode 100644 index 0000000..7689a97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_48.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_48.jpg new file mode 100644 index 0000000..dc88751 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_49.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_49.jpg new file mode 100644 index 0000000..3541c45 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_50.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_50.jpg new file mode 100644 index 0000000..fb67ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_51.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_51.jpg new file mode 100644 index 0000000..229ad40 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_52.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_52.jpg new file mode 100644 index 0000000..beb64d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_53.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_53.jpg new file mode 100644 index 0000000..7be5451 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_54.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_54.jpg new file mode 100644 index 0000000..2cf3049 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_55.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_55.jpg new file mode 100644 index 0000000..cccdb02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_56.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_56.jpg new file mode 100644 index 0000000..a9428f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_57.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_57.jpg new file mode 100644 index 0000000..b1f5160 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_58.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_58.jpg new file mode 100644 index 0000000..c323c57 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_59.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_59.jpg new file mode 100644 index 0000000..40b91bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_60.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_60.jpg new file mode 100644 index 0000000..386d8fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_61.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_61.jpg new file mode 100644 index 0000000..ae68f21 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_62.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_62.jpg new file mode 100644 index 0000000..fd8bc7d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_63.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_63.jpg new file mode 100644 index 0000000..84cd2a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_64.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_64.jpg new file mode 100644 index 0000000..a163650 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_65.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_65.jpg new file mode 100644 index 0000000..2eb7d3b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_66.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_66.jpg new file mode 100644 index 0000000..4bff58f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_67.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_67.jpg new file mode 100644 index 0000000..a04c01d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_68.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_68.jpg new file mode 100644 index 0000000..9b19d36 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gauntlets_69.jpg b/other/AoWoW-master/images/icons/small/inv_gauntlets_69.jpg new file mode 100644 index 0000000..194ceeb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gauntlets_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_01.jpg new file mode 100644 index 0000000..f7f2088 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_02.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_02.jpg new file mode 100644 index 0000000..8d7c4ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_03.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_03.jpg new file mode 100644 index 0000000..9b7904e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_04.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_04.jpg new file mode 100644 index 0000000..e5d5c2a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_05.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_05.jpg new file mode 100644 index 0000000..82e63f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_06.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_06.jpg new file mode 100644 index 0000000..584bc19 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_07.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_07.jpg new file mode 100644 index 0000000..beba683 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_08.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_08.jpg new file mode 100644 index 0000000..f60fb59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_09.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_09.jpg new file mode 100644 index 0000000..862f771 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_adamantiteframe.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_adamantiteframe.jpg new file mode 100644 index 0000000..8aabf2f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_adamantiteframe.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_adamantiteshells.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_adamantiteshells.jpg new file mode 100644 index 0000000..b71dde2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_adamantiteshells.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_bronzeframework_01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_bronzeframework_01.jpg new file mode 100644 index 0000000..3cd0938 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_bronzeframework_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_elementalblastingpowder.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_elementalblastingpowder.jpg new file mode 100644 index 0000000..497971e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_elementalblastingpowder.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_felironbolts.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_felironbolts.jpg new file mode 100644 index 0000000..ae9b2b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_felironbolts.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_felironbomb.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_felironbomb.jpg new file mode 100644 index 0000000..3113aed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_felironbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_felironcasing.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_felironcasing.jpg new file mode 100644 index 0000000..ad0e63e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_felironcasing.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_felironshell.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_felironshell.jpg new file mode 100644 index 0000000..3922148 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_felironshell.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_felstabilizer.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_felstabilizer.jpg new file mode 100644 index 0000000..f06f52e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_felstabilizer.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_gnomishflameturret.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_gnomishflameturret.jpg new file mode 100644 index 0000000..baff683 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_gnomishflameturret.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_goblinboombox_01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_goblinboombox_01.jpg new file mode 100644 index 0000000..4e5849c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_goblinboombox_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_goblingtonkcontroller.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_goblingtonkcontroller.jpg new file mode 100644 index 0000000..e67bdcd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_goblingtonkcontroller.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_hardenedadamantitetube.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_hardenedadamantitetube.jpg new file mode 100644 index 0000000..c7bbe00 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_hardenedadamantitetube.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_healthpotionpack.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_healthpotionpack.jpg new file mode 100644 index 0000000..7bebb4a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_healthpotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_khoriumpowercore.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_khoriumpowercore.jpg new file mode 100644 index 0000000..7c1e3d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_khoriumpowercore.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_manapotionpack.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_manapotionpack.jpg new file mode 100644 index 0000000..cb0e9d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_manapotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_manasyphon.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_manasyphon.jpg new file mode 100644 index 0000000..deba4b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_manasyphon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_mithrilcasing_01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_mithrilcasing_01.jpg new file mode 100644 index 0000000..d3221ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_mithrilcasing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_mithrilcasing_02.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_mithrilcasing_02.jpg new file mode 100644 index 0000000..a38ae2e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_mithrilcasing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_newgoggles.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_newgoggles.jpg new file mode 100644 index 0000000..17c1f03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_newgoggles.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_01.jpg new file mode 100644 index 0000000..86e26f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_02.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_02.jpg new file mode 100644 index 0000000..8b08cb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_03.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_03.jpg new file mode 100644 index 0000000..7aa664c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_04.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_04.jpg new file mode 100644 index 0000000..f044d90 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_pipe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_poltryiser_01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_poltryiser_01.jpg new file mode 100644 index 0000000..76c2e38 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_poltryiser_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_rocketboot_01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketboot_01.jpg new file mode 100644 index 0000000..0753975 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketboot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_rocketboot_destroyed_02.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketboot_destroyed_02.jpg new file mode 100644 index 0000000..9a6f4bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketboot_destroyed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_rocketbootextreme.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketbootextreme.jpg new file mode 100644 index 0000000..d655da7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketbootextreme.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_rocketlauncher.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketlauncher.jpg new file mode 100644 index 0000000..0badcc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_rocketlauncher.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_scope01.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_scope01.jpg new file mode 100644 index 0000000..d740da8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_scope01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_scope02.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_scope02.jpg new file mode 100644 index 0000000..aaf94a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_scope02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_supersappercharge.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_supersappercharge.jpg new file mode 100644 index 0000000..56b26e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_supersappercharge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_thebiggerone.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_thebiggerone.jpg new file mode 100644 index 0000000..33e23c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_thebiggerone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_gizmo_zapthrottlegascollector.jpg b/other/AoWoW-master/images/icons/small/inv_gizmo_zapthrottlegascollector.jpg new file mode 100644 index 0000000..cdffbc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_gizmo_zapthrottlegascollector.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_01.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_01.jpg new file mode 100644 index 0000000..6c7ae3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_02.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_02.jpg new file mode 100644 index 0000000..b758aa4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_03.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_03.jpg new file mode 100644 index 0000000..f67abb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_04.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_04.jpg new file mode 100644 index 0000000..60f301b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_05.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_05.jpg new file mode 100644 index 0000000..521f4ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_06.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_06.jpg new file mode 100644 index 0000000..c52c0c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_07.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_07.jpg new file mode 100644 index 0000000..c0dd835 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_08.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_08.jpg new file mode 100644 index 0000000..be5072b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_09.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_09.jpg new file mode 100644 index 0000000..5f9270a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_10.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_10.jpg new file mode 100644 index 0000000..2074c35 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_11.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_11.jpg new file mode 100644 index 0000000..3418bf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_12.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_12.jpg new file mode 100644 index 0000000..00f0fbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_13.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_13.jpg new file mode 100644 index 0000000..e0cd881 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_14.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_14.jpg new file mode 100644 index 0000000..77713a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_15.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_15.jpg new file mode 100644 index 0000000..e3fc581 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_16.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_16.jpg new file mode 100644 index 0000000..717ddfa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_17.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_17.jpg new file mode 100644 index 0000000..5d7facf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_18.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_18.jpg new file mode 100644 index 0000000..9fd2ddd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_19.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_19.jpg new file mode 100644 index 0000000..34a2811 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_20.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_20.jpg new file mode 100644 index 0000000..8711bc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_21.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_21.jpg new file mode 100644 index 0000000..a1fd555 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_22.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_22.jpg new file mode 100644 index 0000000..a5c7a97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_23.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_23.jpg new file mode 100644 index 0000000..7639311 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_24.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_24.jpg new file mode 100644 index 0000000..23654ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_25.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_25.jpg new file mode 100644 index 0000000..2f2f48b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_26.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_26.jpg new file mode 100644 index 0000000..0f1c785 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_27.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_27.jpg new file mode 100644 index 0000000..5d976b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_28.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_28.jpg new file mode 100644 index 0000000..e3f7fd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_hammer_unique_sulfuras.jpg b/other/AoWoW-master/images/icons/small/inv_hammer_unique_sulfuras.jpg new file mode 100644 index 0000000..34920b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_hammer_unique_sulfuras.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helm_mask_zulgurub_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_helm_mask_zulgurub_d_01.jpg new file mode 100644 index 0000000..ff46be2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helm_mask_zulgurub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet128.jpg b/other/AoWoW-master/images/icons/small/inv_helmet128.jpg new file mode 100644 index 0000000..9e8ff77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet128.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_01.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_01.jpg new file mode 100644 index 0000000..41152ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_02.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_02.jpg new file mode 100644 index 0000000..fa3e8c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_03.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_03.jpg new file mode 100644 index 0000000..b15dd80 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_04.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_04.jpg new file mode 100644 index 0000000..08d652a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_05.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_05.jpg new file mode 100644 index 0000000..31976b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_06.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_06.jpg new file mode 100644 index 0000000..5fc048d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_07.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_07.jpg new file mode 100644 index 0000000..2192f77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_08.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_08.jpg new file mode 100644 index 0000000..ebb0fb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_09.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_09.jpg new file mode 100644 index 0000000..7268cfc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_10.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_10.jpg new file mode 100644 index 0000000..f8db9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_100.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_100.jpg new file mode 100644 index 0000000..dd66802 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_100.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_101.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_101.jpg new file mode 100644 index 0000000..324993e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_101.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_102.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_102.jpg new file mode 100644 index 0000000..c7a0951 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_102.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_103.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_103.jpg new file mode 100644 index 0000000..2085996 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_103.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_11.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_11.jpg new file mode 100644 index 0000000..8420d7d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_111.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_111.jpg new file mode 100644 index 0000000..8dcb2c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_111.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_112.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_112.jpg new file mode 100644 index 0000000..730022b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_112.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_113.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_113.jpg new file mode 100644 index 0000000..f5c0f92 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_113.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_114.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_114.jpg new file mode 100644 index 0000000..c829fc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_114.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_116.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_116.jpg new file mode 100644 index 0000000..6cc46e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_116.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_117.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_117.jpg new file mode 100644 index 0000000..2f8691c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_117.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_118.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_118.jpg new file mode 100644 index 0000000..68a2695 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_118.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_119.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_119.jpg new file mode 100644 index 0000000..989b71c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_119.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_12.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_12.jpg new file mode 100644 index 0000000..4095364 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_120.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_120.jpg new file mode 100644 index 0000000..a6213f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_120.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_126.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_126.jpg new file mode 100644 index 0000000..de98757 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_126.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_127.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_127.jpg new file mode 100644 index 0000000..53a3ba2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_127.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_129.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_129.jpg new file mode 100644 index 0000000..c7fe533 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_129.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_13.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_13.jpg new file mode 100644 index 0000000..bba4622 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_14.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_14.jpg new file mode 100644 index 0000000..d54d3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_15.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_15.jpg new file mode 100644 index 0000000..c5a2771 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_16.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_16.jpg new file mode 100644 index 0000000..84b254e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_17.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_17.jpg new file mode 100644 index 0000000..919a490 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_18.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_18.jpg new file mode 100644 index 0000000..d063b0e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_19.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_19.jpg new file mode 100644 index 0000000..a08e6a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_20.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_20.jpg new file mode 100644 index 0000000..3f86df4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_21.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_21.jpg new file mode 100644 index 0000000..e550211 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_22.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_22.jpg new file mode 100644 index 0000000..c255614 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_23.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_23.jpg new file mode 100644 index 0000000..7130775 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_24.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_24.jpg new file mode 100644 index 0000000..a8d1b84 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_25.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_25.jpg new file mode 100644 index 0000000..95611ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_26.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_26.jpg new file mode 100644 index 0000000..c8b4682 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_27.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_27.jpg new file mode 100644 index 0000000..f50a78d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_28.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_28.jpg new file mode 100644 index 0000000..3ab0e2c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_29.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_29.jpg new file mode 100644 index 0000000..5c5dbaa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_30.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_30.jpg new file mode 100644 index 0000000..53e4834 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_31.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_31.jpg new file mode 100644 index 0000000..6b3e688 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_32.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_32.jpg new file mode 100644 index 0000000..c093c27 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_33.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_33.jpg new file mode 100644 index 0000000..65a1151 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_34.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_34.jpg new file mode 100644 index 0000000..5faf5c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_35.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_35.jpg new file mode 100644 index 0000000..4314c00 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_36.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_36.jpg new file mode 100644 index 0000000..b985832 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_37.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_37.jpg new file mode 100644 index 0000000..a16b1d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_38.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_38.jpg new file mode 100644 index 0000000..ff867a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_39.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_39.jpg new file mode 100644 index 0000000..2b1046f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_40.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_40.jpg new file mode 100644 index 0000000..2a63911 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_41.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_41.jpg new file mode 100644 index 0000000..f875dc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_42.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_42.jpg new file mode 100644 index 0000000..8184a15 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_43.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_43.jpg new file mode 100644 index 0000000..8219511 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_44.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_44.jpg new file mode 100644 index 0000000..b2bbbca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_45.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_45.jpg new file mode 100644 index 0000000..1c43fc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_46.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_46.jpg new file mode 100644 index 0000000..a6f4066 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_47.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_47.jpg new file mode 100644 index 0000000..4fe506c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_48.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_48.jpg new file mode 100644 index 0000000..ad9f118 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_49.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_49.jpg new file mode 100644 index 0000000..ea46e82 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_50.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_50.jpg new file mode 100644 index 0000000..814976a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_51.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_51.jpg new file mode 100644 index 0000000..0eaa1c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_52.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_52.jpg new file mode 100644 index 0000000..cf919c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_53.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_53.jpg new file mode 100644 index 0000000..4f241a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_54.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_54.jpg new file mode 100644 index 0000000..6267131 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_55.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_55.jpg new file mode 100644 index 0000000..272569c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_56.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_56.jpg new file mode 100644 index 0000000..94cce7c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_57.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_57.jpg new file mode 100644 index 0000000..fd26a15 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_58.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_58.jpg new file mode 100644 index 0000000..19a5568 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_59.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_59.jpg new file mode 100644 index 0000000..e5bbb71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_60.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_60.jpg new file mode 100644 index 0000000..aed582e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_61.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_61.jpg new file mode 100644 index 0000000..8d917e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_62.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_62.jpg new file mode 100644 index 0000000..98a4773 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_63.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_63.jpg new file mode 100644 index 0000000..bd225fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_64.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_64.jpg new file mode 100644 index 0000000..6b5cd69 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_65.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_65.jpg new file mode 100644 index 0000000..0e386d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_66.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_66.jpg new file mode 100644 index 0000000..085775a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_67.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_67.jpg new file mode 100644 index 0000000..ad8c334 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_68.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_68.jpg new file mode 100644 index 0000000..9078d48 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_69.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_69.jpg new file mode 100644 index 0000000..63df1ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_70.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_70.jpg new file mode 100644 index 0000000..3022168 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_70.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_71.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_71.jpg new file mode 100644 index 0000000..63f1484 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_72.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_72.jpg new file mode 100644 index 0000000..c582e61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_73.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_73.jpg new file mode 100644 index 0000000..14be745 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_74.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_74.jpg new file mode 100644 index 0000000..377ea05 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_77.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_77.jpg new file mode 100644 index 0000000..4902cd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_77.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_78.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_78.jpg new file mode 100644 index 0000000..139a977 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_78.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_81.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_81.jpg new file mode 100644 index 0000000..365367b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_81.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_84.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_84.jpg new file mode 100644 index 0000000..f5ce54f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_84.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_85.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_85.jpg new file mode 100644 index 0000000..6180795 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_85.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_86.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_86.jpg new file mode 100644 index 0000000..1dcbf7e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_86.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_87.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_87.jpg new file mode 100644 index 0000000..e36fbd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_87.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_88.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_88.jpg new file mode 100644 index 0000000..8dbaad0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_88.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_89.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_89.jpg new file mode 100644 index 0000000..c0377ab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_89.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_90.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_90.jpg new file mode 100644 index 0000000..8b7133a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_90.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_91.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_91.jpg new file mode 100644 index 0000000..1dd4661 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_91.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_92.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_92.jpg new file mode 100644 index 0000000..ec7dede Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_92.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_93.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_93.jpg new file mode 100644 index 0000000..997dce2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_93.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_94.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_94.jpg new file mode 100644 index 0000000..c2cde28 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_94.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_95.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_95.jpg new file mode 100644 index 0000000..e00e81c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_95.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_96.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_96.jpg new file mode 100644 index 0000000..98d32ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_96.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_97.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_97.jpg new file mode 100644 index 0000000..19d6982 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_97.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_98.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_98.jpg new file mode 100644 index 0000000..14dc05b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_98.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_helmet_99.jpg b/other/AoWoW-master/images/icons/small/inv_helmet_99.jpg new file mode 100644 index 0000000..66b1119 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_helmet_99.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_beerfestpretzel01.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestpretzel01.jpg new file mode 100644 index 0000000..478e88b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestpretzel01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage01.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage01.jpg new file mode 100644 index 0000000..fe2ffd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage02.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage02.jpg new file mode 100644 index 0000000..9246f69 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage03.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage03.jpg new file mode 100644 index 0000000..ad6cf7a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage04.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage04.jpg new file mode 100644 index 0000000..ea1b52f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_beerfestsausage04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_brewfestbuff_01.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_brewfestbuff_01.jpg new file mode 100644 index 0000000..51b2fa9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_brewfestbuff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_01.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_01.jpg new file mode 100644 index 0000000..daef087 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_02.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_02.jpg new file mode 100644 index 0000000..44dd344 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_03.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_03.jpg new file mode 100644 index 0000000..aa49968 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_present_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_01.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_01.jpg new file mode 100644 index 0000000..2453eee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_02.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_02.jpg new file mode 100644 index 0000000..3479989 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_03.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_03.jpg new file mode 100644 index 0000000..4a8fab8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_christmas_wrapping_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_summerfest_petals.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_summerfest_petals.jpg new file mode 100644 index 0000000..54379c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_summerfest_petals.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebandage.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebandage.jpg new file mode 100644 index 0000000..562518e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebandage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebowl.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebowl.jpg new file mode 100644 index 0000000..fd07e26 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebowl.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebrownie.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebrownie.jpg new file mode 100644 index 0000000..8e8b38d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicebrownie.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion01.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion01.jpg new file mode 100644 index 0000000..4dbb811 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion02.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion02.jpg new file mode 100644 index 0000000..e380142 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion03.jpg b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion03.jpg new file mode 100644 index 0000000..9ab36d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_holiday_tow_spicepotion03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_01.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_01.jpg new file mode 100644 index 0000000..f7add8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_02.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_02.jpg new file mode 100644 index 0000000..93fa3ff Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_03.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_03.jpg new file mode 100644 index 0000000..902d037 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_04.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_04.jpg new file mode 100644 index 0000000..5f21433 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_05.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_05.jpg new file mode 100644 index 0000000..08e3f9d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_06.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_06.jpg new file mode 100644 index 0000000..7329a56 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_07.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_07.jpg new file mode 100644 index 0000000..c99e7c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_08.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_08.jpg new file mode 100644 index 0000000..82ae106 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_09.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_09.jpg new file mode 100644 index 0000000..d5a034a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_10.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_10.jpg new file mode 100644 index 0000000..c64320a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_11.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_11.jpg new file mode 100644 index 0000000..e863ec3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_adamantite.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_adamantite.jpg new file mode 100644 index 0000000..ea0f030 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_bronze.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_bronze.jpg new file mode 100644 index 0000000..552005a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_eternium.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_eternium.jpg new file mode 100644 index 0000000..3b2157f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_feliron.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_feliron.jpg new file mode 100644 index 0000000..325701f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_felsteel.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_felsteel.jpg new file mode 100644 index 0000000..5ac44dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_iron.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_iron.jpg new file mode 100644 index 0000000..efbefe2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_mithril.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_mithril.jpg new file mode 100644 index 0000000..33db8fb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_steel.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_steel.jpg new file mode 100644 index 0000000..1c788c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_steel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ingot_thorium.jpg b/other/AoWoW-master/images/icons/small/inv_ingot_thorium.jpg new file mode 100644 index 0000000..fedc663 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ingot_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_blackpearlpanther.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_blackpearlpanther.jpg new file mode 100644 index 0000000..b13527d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_blackpearlpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_bronzesetting.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_bronzesetting.jpg new file mode 100644 index 0000000..e8b05ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_bronzesetting.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_crimsonspinel_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_crimsonspinel_01.jpg new file mode 100644 index 0000000..37e4f8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_crimsonspinel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_crimsonspinel_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_crimsonspinel_02.jpg new file mode 100644 index 0000000..f674d76 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_crimsonspinel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_01.jpg new file mode 100644 index 0000000..6f9e928 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_02.jpg new file mode 100644 index 0000000..164f23c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_03.jpg new file mode 100644 index 0000000..906ef3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_dawnstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_delicatecopperwire.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_delicatecopperwire.jpg new file mode 100644 index 0000000..661b3a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_delicatecopperwire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_empyreansapphire_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_empyreansapphire_01.jpg new file mode 100644 index 0000000..447cb0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_empyreansapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_empyreansapphire_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_empyreansapphire_02.jpg new file mode 100644 index 0000000..524e9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_empyreansapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_goldenhare.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_goldenhare.jpg new file mode 100644 index 0000000..9817adc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_goldenhare.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_jadeowl.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_jadeowl.jpg new file mode 100644 index 0000000..4eb1a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_jadeowl.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_lionseye_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_lionseye_01.jpg new file mode 100644 index 0000000..0e58ba6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_lionseye_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_lionseye_02.jpg new file mode 100644 index 0000000..8350ec7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_lionseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_01.jpg new file mode 100644 index 0000000..23d519b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_02.jpg new file mode 100644 index 0000000..9ffd09c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_03.jpg new file mode 100644 index 0000000..903a1ee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_livingruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_mithrilfiligree.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_mithrilfiligree.jpg new file mode 100644 index 0000000..54f5be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_mithrilfiligree.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_01.jpg new file mode 100644 index 0000000..29780d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_02.jpg new file mode 100644 index 0000000..94c1ebf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_03.jpg new file mode 100644 index 0000000..d394e8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nightseye_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_01.jpg new file mode 100644 index 0000000..969a80a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_02.jpg new file mode 100644 index 0000000..57a4469 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_03.jpg new file mode 100644 index 0000000..2c35e48 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_nobletopaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_pyrestone_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_pyrestone_01.jpg new file mode 100644 index 0000000..a9f617b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_pyrestone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_pyrestone_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_pyrestone_02.jpg new file mode 100644 index 0000000..5880576 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_pyrestone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_rubyserpent.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_rubyserpent.jpg new file mode 100644 index 0000000..440e364 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_rubyserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_seasprayemerald_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_seasprayemerald_01.jpg new file mode 100644 index 0000000..d0b0f7d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_seasprayemerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_seasprayemerald_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_seasprayemerald_02.jpg new file mode 100644 index 0000000..0c6d25c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_seasprayemerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_shadowsongamethyst_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_shadowsongamethyst_01.jpg new file mode 100644 index 0000000..8606ffb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_shadowsongamethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_shadowsongamethyst_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_shadowsongamethyst_02.jpg new file mode 100644 index 0000000..6607400 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_shadowsongamethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_01.jpg new file mode 100644 index 0000000..04660df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_02.jpg new file mode 100644 index 0000000..b7e0e89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_03.jpg new file mode 100644 index 0000000..4fb3910 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_starofelune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_01.jpg new file mode 100644 index 0000000..df59c48 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_02.jpg new file mode 100644 index 0000000..0cb8f8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_03.jpg new file mode 100644 index 0000000..b96107e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_talasite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_thoriumsetting.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_thoriumsetting.jpg new file mode 100644 index 0000000..9a50732 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_thoriumsetting.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_truesilverboar.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_truesilverboar.jpg new file mode 100644 index 0000000..ceeb1a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_truesilverboar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelcrafting_truesilvercrab.jpg b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_truesilvercrab.jpg new file mode 100644 index 0000000..1e56c73 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelcrafting_truesilvercrab.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_01.jpg new file mode 100644 index 0000000..6f4a368 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_02.jpg new file mode 100644 index 0000000..ce67e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_03.jpg new file mode 100644 index 0000000..752dddc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_04.jpg new file mode 100644 index 0000000..0707d77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_05.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_05.jpg new file mode 100644 index 0000000..3518a01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_06.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_06.jpg new file mode 100644 index 0000000..1367172 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_07.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_07.jpg new file mode 100644 index 0000000..3403478 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_amulet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_01.jpg new file mode 100644 index 0000000..86349ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_02.jpg new file mode 100644 index 0000000..2ea9467 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_03.jpg new file mode 100644 index 0000000..5da652a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_04.jpg new file mode 100644 index 0000000..bd56b0c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_05.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_05.jpg new file mode 100644 index 0000000..57941d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_frostwolftrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_01.jpg new file mode 100644 index 0000000..43a0fc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_02.jpg new file mode 100644 index 0000000..711136f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_03.jpg new file mode 100644 index 0000000..3f98a61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_04.jpg new file mode 100644 index 0000000..276cad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_05.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_05.jpg new file mode 100644 index 0000000..878bcbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_06.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_06.jpg new file mode 100644 index 0000000..7296842 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_07.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_07.jpg new file mode 100644 index 0000000..25d422d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_08.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_08.jpg new file mode 100644 index 0000000..8eb7a51 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_09.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_09.jpg new file mode 100644 index 0000000..68e1450 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_10.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_10.jpg new file mode 100644 index 0000000..480f55c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_11.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_11.jpg new file mode 100644 index 0000000..e71851f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_12.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_12.jpg new file mode 100644 index 0000000..05f7423 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_13.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_13.jpg new file mode 100644 index 0000000..00a8e0a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_14.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_14.jpg new file mode 100644 index 0000000..0585d08 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_15.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_15.jpg new file mode 100644 index 0000000..43e7a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_16.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_16.jpg new file mode 100644 index 0000000..b4629d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_17.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_17.jpg new file mode 100644 index 0000000..3e239a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_18.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_18.jpg new file mode 100644 index 0000000..bca0e4a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_19.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_19.jpg new file mode 100644 index 0000000..09939ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_20.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_20.jpg new file mode 100644 index 0000000..26b61d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_21.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_21.jpg new file mode 100644 index 0000000..0bb9cb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_22.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_22.jpg new file mode 100644 index 0000000..816bec3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_23.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_23.jpg new file mode 100644 index 0000000..459369c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_24.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_24.jpg new file mode 100644 index 0000000..44dd0d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_25.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_25.jpg new file mode 100644 index 0000000..1167512 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_26.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_26.jpg new file mode 100644 index 0000000..1eb1642 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_27.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_27.jpg new file mode 100644 index 0000000..dae76df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_27naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_27naxxramas.jpg new file mode 100644 index 0000000..25d6476 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_27naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_28.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_28.jpg new file mode 100644 index 0000000..fac0f8e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_28naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_28naxxramas.jpg new file mode 100644 index 0000000..7fd6825 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_28naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_29.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_29.jpg new file mode 100644 index 0000000..ada0ccd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_29naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_29naxxramas.jpg new file mode 100644 index 0000000..d28bef5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_29naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_30.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_30.jpg new file mode 100644 index 0000000..f4614c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_30naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_30naxxramas.jpg new file mode 100644 index 0000000..fe4e84e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_30naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_31.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_31.jpg new file mode 100644 index 0000000..5c8ba09 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_32.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_32.jpg new file mode 100644 index 0000000..dbd1acf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_33.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_33.jpg new file mode 100644 index 0000000..0575b88 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_34.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_34.jpg new file mode 100644 index 0000000..71a1ae8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_35.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_35.jpg new file mode 100644 index 0000000..42665bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_36.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_36.jpg new file mode 100644 index 0000000..d6228e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_37.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_37.jpg new file mode 100644 index 0000000..b4cfa0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_38.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_38.jpg new file mode 100644 index 0000000..bb73a20 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_39.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_39.jpg new file mode 100644 index 0000000..d153d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_40.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_40.jpg new file mode 100644 index 0000000..d31c6a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_41.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_41.jpg new file mode 100644 index 0000000..72fcdde Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_42.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_42.jpg new file mode 100644 index 0000000..dee03b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_43.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_43.jpg new file mode 100644 index 0000000..315aef9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_44.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_44.jpg new file mode 100644 index 0000000..5efce3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_45.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_45.jpg new file mode 100644 index 0000000..6c007ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_46.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_46.jpg new file mode 100644 index 0000000..acc6b3c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_47.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_47.jpg new file mode 100644 index 0000000..6a3be55 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_01.jpg new file mode 100644 index 0000000..34e36f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_02.jpg new file mode 100644 index 0000000..49ccc1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_03.jpg new file mode 100644 index 0000000..bba6fc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_04.jpg new file mode 100644 index 0000000..cd0fb03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_necklace_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_01.jpg new file mode 100644 index 0000000..fa6c629 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_02.jpg new file mode 100644 index 0000000..bf7a4e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_03.jpg new file mode 100644 index 0000000..e7ce7f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_04.jpg new file mode 100644 index 0000000..3a2bd93 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_05.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_05.jpg new file mode 100644 index 0000000..8141a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_06.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_06.jpg new file mode 100644 index 0000000..90eefdf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_07.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_07.jpg new file mode 100644 index 0000000..22c0fce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_08.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_08.jpg new file mode 100644 index 0000000..c07045e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_09.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_09.jpg new file mode 100644 index 0000000..493b9f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_10.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_10.jpg new file mode 100644 index 0000000..f188db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_11.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_11.jpg new file mode 100644 index 0000000..e1f7c66 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_12.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_12.jpg new file mode 100644 index 0000000..0856929 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_13.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_13.jpg new file mode 100644 index 0000000..bf15760 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_14.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_14.jpg new file mode 100644 index 0000000..e12cd5b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_15.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_15.jpg new file mode 100644 index 0000000..846e045 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_16.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_16.jpg new file mode 100644 index 0000000..fe0d274 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_17.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_17.jpg new file mode 100644 index 0000000..a6e4503 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_18.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_18.jpg new file mode 100644 index 0000000..b2023b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_19.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_19.jpg new file mode 100644 index 0000000..780fb3e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_20.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_20.jpg new file mode 100644 index 0000000..72d3abb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_21.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_21.jpg new file mode 100644 index 0000000..0cdfa31 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_22.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_22.jpg new file mode 100644 index 0000000..919c01b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_23.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_23.jpg new file mode 100644 index 0000000..c8eadf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_24.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_24.jpg new file mode 100644 index 0000000..cf1fd2e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_25.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_25.jpg new file mode 100644 index 0000000..015414f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_26.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_26.jpg new file mode 100644 index 0000000..e69de29 diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_27.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_27.jpg new file mode 100644 index 0000000..a7e1ea6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_28.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_28.jpg new file mode 100644 index 0000000..e0cfbc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_29.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_29.jpg new file mode 100644 index 0000000..c078fd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_30.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_30.jpg new file mode 100644 index 0000000..45e3023 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_31.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_31.jpg new file mode 100644 index 0000000..d236036 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_32.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_32.jpg new file mode 100644 index 0000000..aad2d91 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_33.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_33.jpg new file mode 100644 index 0000000..1a285a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_34.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_34.jpg new file mode 100644 index 0000000..002e300 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_35.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_35.jpg new file mode 100644 index 0000000..2e3709a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_36.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_36.jpg new file mode 100644 index 0000000..7d991a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_37.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_37.jpg new file mode 100644 index 0000000..7d8fc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_38.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_38.jpg new file mode 100644 index 0000000..342eb56 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_39.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_39.jpg new file mode 100644 index 0000000..6193392 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_40.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_40.jpg new file mode 100644 index 0000000..53ad764 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_41.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_41.jpg new file mode 100644 index 0000000..ef05eea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_42.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_42.jpg new file mode 100644 index 0000000..09ac8bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_43.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_43.jpg new file mode 100644 index 0000000..3afbc4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_44.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_44.jpg new file mode 100644 index 0000000..e24a842 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_45.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_45.jpg new file mode 100644 index 0000000..ccf243d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_46.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_46.jpg new file mode 100644 index 0000000..b059fa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_47.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_47.jpg new file mode 100644 index 0000000..f9856f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_48naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_48naxxramas.jpg new file mode 100644 index 0000000..43c1902 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_48naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_49naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_49naxxramas.jpg new file mode 100644 index 0000000..e1440b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_49naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_50naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_50naxxramas.jpg new file mode 100644 index 0000000..f590f8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_50naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_51naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_51naxxramas.jpg new file mode 100644 index 0000000..fccf208 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_51naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_52naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_52naxxramas.jpg new file mode 100644 index 0000000..f8c9ff9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_52naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_53naxxramas.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_53naxxramas.jpg new file mode 100644 index 0000000..51855da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_53naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_54.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_54.jpg new file mode 100644 index 0000000..c43fbe5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_55.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_55.jpg new file mode 100644 index 0000000..bae5c05 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_56.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_56.jpg new file mode 100644 index 0000000..71e2268 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_57.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_57.jpg new file mode 100644 index 0000000..875a52a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_58.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_58.jpg new file mode 100644 index 0000000..0239b1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_59.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_59.jpg new file mode 100644 index 0000000..6521657 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_60.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_60.jpg new file mode 100644 index 0000000..3f644de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_61.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_61.jpg new file mode 100644 index 0000000..ced0125 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_62.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_62.jpg new file mode 100644 index 0000000..6fef648 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_63.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_63.jpg new file mode 100644 index 0000000..56a31b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_64.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_64.jpg new file mode 100644 index 0000000..d6ba983 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_65.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_65.jpg new file mode 100644 index 0000000..eea0a39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_66.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_66.jpg new file mode 100644 index 0000000..a66f59b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_67.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_67.jpg new file mode 100644 index 0000000..59ccb00 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_68.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_68.jpg new file mode 100644 index 0000000..689fa8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_69.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_69.jpg new file mode 100644 index 0000000..a8ff9f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_70.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_70.jpg new file mode 100644 index 0000000..cf4be80 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_70.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_71.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_71.jpg new file mode 100644 index 0000000..a1aebb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_72.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_72.jpg new file mode 100644 index 0000000..78c3c79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_73.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_73.jpg new file mode 100644 index 0000000..fc2e7da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_74.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_74.jpg new file mode 100644 index 0000000..f80019d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_75.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_75.jpg new file mode 100644 index 0000000..7142bd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_75.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_76.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_76.jpg new file mode 100644 index 0000000..49449a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_76.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_77.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_77.jpg new file mode 100644 index 0000000..f1060af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_77.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_78.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_78.jpg new file mode 100644 index 0000000..dd50f06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_78.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_79.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_79.jpg new file mode 100644 index 0000000..3a80125 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_79.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_80.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_80.jpg new file mode 100644 index 0000000..a5aa34a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_80.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_01.jpg new file mode 100644 index 0000000..3d6344e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_02.jpg new file mode 100644 index 0000000..64dba32 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_03.jpg new file mode 100644 index 0000000..b897cc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_04.jpg new file mode 100644 index 0000000..fa912b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_05.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_05.jpg new file mode 100644 index 0000000..c35979a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_06.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_06.jpg new file mode 100644 index 0000000..29a28d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_ring_ahnqiraj_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_01.jpg new file mode 100644 index 0000000..7c4a2da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_02.jpg new file mode 100644 index 0000000..28c00ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_03.jpg new file mode 100644 index 0000000..3858353 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_04.jpg new file mode 100644 index 0000000..7328b05 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_05.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_05.jpg new file mode 100644 index 0000000..8a91aa2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_stormpiketrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_01.jpg new file mode 100644 index 0000000..8fa5940 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_02.jpg new file mode 100644 index 0000000..75597fd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_03.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_03.jpg new file mode 100644 index 0000000..19fc86e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_04.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_04.jpg new file mode 100644 index 0000000..e367c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_05.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_05.jpg new file mode 100644 index 0000000..a465c5b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_06.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_06.jpg new file mode 100644 index 0000000..5a928e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_07.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_07.jpg new file mode 100644 index 0000000..4678103 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_08.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_08.jpg new file mode 100644 index 0000000..63f3d95 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_09.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_09.jpg new file mode 100644 index 0000000..53e00bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_10.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_10.jpg new file mode 100644 index 0000000..0d17cbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_11.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_11.jpg new file mode 100644 index 0000000..4aac97c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_12.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_12.jpg new file mode 100644 index 0000000..a066f56 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_13.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_13.jpg new file mode 100644 index 0000000..b3d6a63 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_14.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_14.jpg new file mode 100644 index 0000000..958f2c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_15.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_15.jpg new file mode 100644 index 0000000..1cc3fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_16.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_16.jpg new file mode 100644 index 0000000..188e55e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_17.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_17.jpg new file mode 100644 index 0000000..1026996 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_18.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_18.jpg new file mode 100644 index 0000000..bd14028 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_talisman_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_trinketpvp_01.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_trinketpvp_01.jpg new file mode 100644 index 0000000..d3fa941 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_trinketpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_jewelry_trinketpvp_02.jpg b/other/AoWoW-master/images/icons/small/inv_jewelry_trinketpvp_02.jpg new file mode 100644 index 0000000..3d79cdd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_jewelry_trinketpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..d759501 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..269fbe9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_03.jpg b/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_03.jpg new file mode 100644 index 0000000..0372d0a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_knife_1h_stratholme_d_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_01.jpg b/other/AoWoW-master/images/icons/small/inv_letter_01.jpg new file mode 100644 index 0000000..c69ac2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_02.jpg b/other/AoWoW-master/images/icons/small/inv_letter_02.jpg new file mode 100644 index 0000000..d674390 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_03.jpg b/other/AoWoW-master/images/icons/small/inv_letter_03.jpg new file mode 100644 index 0000000..15702f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_04.jpg b/other/AoWoW-master/images/icons/small/inv_letter_04.jpg new file mode 100644 index 0000000..fa3a7ac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_05.jpg b/other/AoWoW-master/images/icons/small/inv_letter_05.jpg new file mode 100644 index 0000000..85d3725 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_06.jpg b/other/AoWoW-master/images/icons/small/inv_letter_06.jpg new file mode 100644 index 0000000..df746c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_07.jpg b/other/AoWoW-master/images/icons/small/inv_letter_07.jpg new file mode 100644 index 0000000..0a8ccd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_08.jpg b/other/AoWoW-master/images/icons/small/inv_letter_08.jpg new file mode 100644 index 0000000..be8204a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_09.jpg b/other/AoWoW-master/images/icons/small/inv_letter_09.jpg new file mode 100644 index 0000000..b232b8e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_10.jpg b/other/AoWoW-master/images/icons/small/inv_letter_10.jpg new file mode 100644 index 0000000..5a2e535 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_11.jpg b/other/AoWoW-master/images/icons/small/inv_letter_11.jpg new file mode 100644 index 0000000..eaf3ecd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_12.jpg b/other/AoWoW-master/images/icons/small/inv_letter_12.jpg new file mode 100644 index 0000000..c52ed06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_13.jpg b/other/AoWoW-master/images/icons/small/inv_letter_13.jpg new file mode 100644 index 0000000..6d6ae34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_14.jpg b/other/AoWoW-master/images/icons/small/inv_letter_14.jpg new file mode 100644 index 0000000..3396cec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_15.jpg b/other/AoWoW-master/images/icons/small/inv_letter_15.jpg new file mode 100644 index 0000000..f615788 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_16.jpg b/other/AoWoW-master/images/icons/small/inv_letter_16.jpg new file mode 100644 index 0000000..90ceac3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_letter_17.jpg b/other/AoWoW-master/images/icons/small/inv_letter_17.jpg new file mode 100644 index 0000000..85756d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_letter_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace22.jpg b/other/AoWoW-master/images/icons/small/inv_mace22.jpg new file mode 100644 index 0000000..06d448d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace23.jpg b/other/AoWoW-master/images/icons/small/inv_mace23.jpg new file mode 100644 index 0000000..a75b1f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_01.jpg b/other/AoWoW-master/images/icons/small/inv_mace_01.jpg new file mode 100644 index 0000000..c789b4d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_02.jpg b/other/AoWoW-master/images/icons/small/inv_mace_02.jpg new file mode 100644 index 0000000..7ad9f86 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_03.jpg b/other/AoWoW-master/images/icons/small/inv_mace_03.jpg new file mode 100644 index 0000000..39357c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_04.jpg b/other/AoWoW-master/images/icons/small/inv_mace_04.jpg new file mode 100644 index 0000000..e6f239f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_05.jpg b/other/AoWoW-master/images/icons/small/inv_mace_05.jpg new file mode 100644 index 0000000..3dc73c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_06.jpg b/other/AoWoW-master/images/icons/small/inv_mace_06.jpg new file mode 100644 index 0000000..3de4861 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_07.jpg b/other/AoWoW-master/images/icons/small/inv_mace_07.jpg new file mode 100644 index 0000000..e7bfbce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_08.jpg b/other/AoWoW-master/images/icons/small/inv_mace_08.jpg new file mode 100644 index 0000000..4de3990 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_09.jpg b/other/AoWoW-master/images/icons/small/inv_mace_09.jpg new file mode 100644 index 0000000..0956644 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_10.jpg b/other/AoWoW-master/images/icons/small/inv_mace_10.jpg new file mode 100644 index 0000000..41db536 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_11.jpg b/other/AoWoW-master/images/icons/small/inv_mace_11.jpg new file mode 100644 index 0000000..edfbad2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_12.jpg b/other/AoWoW-master/images/icons/small/inv_mace_12.jpg new file mode 100644 index 0000000..ed0168d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_13.jpg b/other/AoWoW-master/images/icons/small/inv_mace_13.jpg new file mode 100644 index 0000000..a58c87e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_14.jpg b/other/AoWoW-master/images/icons/small/inv_mace_14.jpg new file mode 100644 index 0000000..650038a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_15.jpg b/other/AoWoW-master/images/icons/small/inv_mace_15.jpg new file mode 100644 index 0000000..d0311c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_16.jpg b/other/AoWoW-master/images/icons/small/inv_mace_16.jpg new file mode 100644 index 0000000..387a770 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_17.jpg b/other/AoWoW-master/images/icons/small/inv_mace_17.jpg new file mode 100644 index 0000000..7672ddd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_18.jpg b/other/AoWoW-master/images/icons/small/inv_mace_18.jpg new file mode 100644 index 0000000..5f05ad6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_19.jpg b/other/AoWoW-master/images/icons/small/inv_mace_19.jpg new file mode 100644 index 0000000..8955491 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_mace_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..fc8b9c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/small/inv_mace_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..d55d252 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_20.jpg b/other/AoWoW-master/images/icons/small/inv_mace_20.jpg new file mode 100644 index 0000000..182d0b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_21.jpg b/other/AoWoW-master/images/icons/small/inv_mace_21.jpg new file mode 100644 index 0000000..48978b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_22.jpg b/other/AoWoW-master/images/icons/small/inv_mace_22.jpg new file mode 100644 index 0000000..06d448d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_23.jpg b/other/AoWoW-master/images/icons/small/inv_mace_23.jpg new file mode 100644 index 0000000..a75b1f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_24.jpg b/other/AoWoW-master/images/icons/small/inv_mace_24.jpg new file mode 100644 index 0000000..f34b63b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_25.jpg b/other/AoWoW-master/images/icons/small/inv_mace_25.jpg new file mode 100644 index 0000000..a9cfc6d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_26.jpg b/other/AoWoW-master/images/icons/small/inv_mace_26.jpg new file mode 100644 index 0000000..a6efd1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_27.jpg b/other/AoWoW-master/images/icons/small/inv_mace_27.jpg new file mode 100644 index 0000000..5c97487 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_28.jpg b/other/AoWoW-master/images/icons/small/inv_mace_28.jpg new file mode 100644 index 0000000..5fd78e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_29.jpg b/other/AoWoW-master/images/icons/small/inv_mace_29.jpg new file mode 100644 index 0000000..f428d45 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..09e52c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..3d17aa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..4d42278 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_30.jpg b/other/AoWoW-master/images/icons/small/inv_mace_30.jpg new file mode 100644 index 0000000..012317c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_31.jpg b/other/AoWoW-master/images/icons/small/inv_mace_31.jpg new file mode 100644 index 0000000..7ecd308 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_32.jpg b/other/AoWoW-master/images/icons/small/inv_mace_32.jpg new file mode 100644 index 0000000..695db0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_33.jpg b/other/AoWoW-master/images/icons/small/inv_mace_33.jpg new file mode 100644 index 0000000..8e18d37 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_34.jpg b/other/AoWoW-master/images/icons/small/inv_mace_34.jpg new file mode 100644 index 0000000..4c0fb40 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_35.jpg b/other/AoWoW-master/images/icons/small/inv_mace_35.jpg new file mode 100644 index 0000000..323c150 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_36.jpg b/other/AoWoW-master/images/icons/small/inv_mace_36.jpg new file mode 100644 index 0000000..9e09c2d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_37.jpg b/other/AoWoW-master/images/icons/small/inv_mace_37.jpg new file mode 100644 index 0000000..b2ca9d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_38.jpg b/other/AoWoW-master/images/icons/small/inv_mace_38.jpg new file mode 100644 index 0000000..4239038 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_39.jpg b/other/AoWoW-master/images/icons/small/inv_mace_39.jpg new file mode 100644 index 0000000..679dc77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_40.jpg b/other/AoWoW-master/images/icons/small/inv_mace_40.jpg new file mode 100644 index 0000000..04984cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_41.jpg b/other/AoWoW-master/images/icons/small/inv_mace_41.jpg new file mode 100644 index 0000000..f391ae7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_42.jpg b/other/AoWoW-master/images/icons/small/inv_mace_42.jpg new file mode 100644 index 0000000..e281b89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_43.jpg b/other/AoWoW-master/images/icons/small/inv_mace_43.jpg new file mode 100644 index 0000000..e858d4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_44.jpg b/other/AoWoW-master/images/icons/small/inv_mace_44.jpg new file mode 100644 index 0000000..0bde72f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_45.jpg b/other/AoWoW-master/images/icons/small/inv_mace_45.jpg new file mode 100644 index 0000000..e77a5f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_46.jpg b/other/AoWoW-master/images/icons/small/inv_mace_46.jpg new file mode 100644 index 0000000..9d7d2b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_47.jpg b/other/AoWoW-master/images/icons/small/inv_mace_47.jpg new file mode 100644 index 0000000..7b024a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_48.jpg b/other/AoWoW-master/images/icons/small/inv_mace_48.jpg new file mode 100644 index 0000000..b4fa9dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_49.jpg b/other/AoWoW-master/images/icons/small/inv_mace_49.jpg new file mode 100644 index 0000000..5f55668 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_50.jpg b/other/AoWoW-master/images/icons/small/inv_mace_50.jpg new file mode 100644 index 0000000..ab2f795 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_51.jpg b/other/AoWoW-master/images/icons/small/inv_mace_51.jpg new file mode 100644 index 0000000..fba3af7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_52.jpg b/other/AoWoW-master/images/icons/small/inv_mace_52.jpg new file mode 100644 index 0000000..9608678 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_53.jpg b/other/AoWoW-master/images/icons/small/inv_mace_53.jpg new file mode 100644 index 0000000..4e9a04b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_54.jpg b/other/AoWoW-master/images/icons/small/inv_mace_54.jpg new file mode 100644 index 0000000..01f044d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_55.jpg b/other/AoWoW-master/images/icons/small/inv_mace_55.jpg new file mode 100644 index 0000000..de3fef5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_56.jpg b/other/AoWoW-master/images/icons/small/inv_mace_56.jpg new file mode 100644 index 0000000..49af2b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_57.jpg b/other/AoWoW-master/images/icons/small/inv_mace_57.jpg new file mode 100644 index 0000000..b23c78f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_66.jpg b/other/AoWoW-master/images/icons/small/inv_mace_66.jpg new file mode 100644 index 0000000..591d3af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_71.jpg b/other/AoWoW-master/images/icons/small/inv_mace_71.jpg new file mode 100644 index 0000000..93dec64 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_72.jpg b/other/AoWoW-master/images/icons/small/inv_mace_72.jpg new file mode 100644 index 0000000..b857c24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_73.jpg b/other/AoWoW-master/images/icons/small/inv_mace_73.jpg new file mode 100644 index 0000000..308735d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_74.jpg b/other/AoWoW-master/images/icons/small/inv_mace_74.jpg new file mode 100644 index 0000000..a09e499 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mace_82.jpg b/other/AoWoW-master/images/icons/small/inv_mace_82.jpg new file mode 100644 index 0000000..df2f322 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mace_82.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mask_01.jpg b/other/AoWoW-master/images/icons/small/inv_mask_01.jpg new file mode 100644 index 0000000..324c724 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mask_02.jpg b/other/AoWoW-master/images/icons/small/inv_mask_02.jpg new file mode 100644 index 0000000..eff4819 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mask_03.jpg b/other/AoWoW-master/images/icons/small/inv_mask_03.jpg new file mode 100644 index 0000000..4ef38b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mask_04.jpg b/other/AoWoW-master/images/icons/small/inv_mask_04.jpg new file mode 100644 index 0000000..d5d46b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mask_05.jpg b/other/AoWoW-master/images/icons/small/inv_mask_05.jpg new file mode 100644 index 0000000..5b0b094 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mask_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mask_06.jpg b/other/AoWoW-master/images/icons/small/inv_mask_06.jpg new file mode 100644 index 0000000..78d9f5b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mask_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_01.jpg new file mode 100644 index 0000000..988ce8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_02.jpg new file mode 100644 index 0000000..5eb7a8f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_03.jpg new file mode 100644 index 0000000..4207772 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_04.jpg new file mode 100644 index 0000000..fa93e17 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_05.jpg new file mode 100644 index 0000000..8d5086e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_06.jpg new file mode 100644 index 0000000..8dbe315 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ahnqirajtrinket_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_01.jpg new file mode 100644 index 0000000..cfc1ce2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_02.jpg new file mode 100644 index 0000000..82c5e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_03.jpg new file mode 100644 index 0000000..0aabf79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_04.jpg new file mode 100644 index 0000000..6127a86 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_05.jpg new file mode 100644 index 0000000..97f20cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_arrow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_01.jpg new file mode 100644 index 0000000..c1f8a25 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_02.jpg new file mode 100644 index 0000000..ebfb3f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_03.jpg new file mode 100644 index 0000000..617ff37 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_04.jpg new file mode 100644 index 0000000..ccd74f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_05.jpg new file mode 100644 index 0000000..7559a7e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_06.jpg new file mode 100644 index 0000000..b896c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_bullet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_01.jpg new file mode 100644 index 0000000..f096bb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_02.jpg new file mode 100644 index 0000000..e69de29 diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_03.jpg new file mode 100644 index 0000000..fadba3f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_04.jpg new file mode 100644 index 0000000..c8ffffc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_05.jpg new file mode 100644 index 0000000..72d1236 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_06.jpg new file mode 100644 index 0000000..ec00ea1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_07.jpg new file mode 100644 index 0000000..314c0d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ammo_gunpowder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_apexis_crystal.jpg b/other/AoWoW-master/images/icons/small/inv_misc_apexis_crystal.jpg new file mode 100644 index 0000000..f63ee8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_apexis_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_apexis_shard.jpg b/other/AoWoW-master/images/icons/small/inv_misc_apexis_shard.jpg new file mode 100644 index 0000000..eba88ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_apexis_shard.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_01.jpg new file mode 100644 index 0000000..9f67bb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_02.jpg new file mode 100644 index 0000000..74d2f6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_03.jpg new file mode 100644 index 0000000..6da6154 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_04.jpg new file mode 100644 index 0000000..2fc2b43 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_05.jpg new file mode 100644 index 0000000..9e5c110 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_06.jpg new file mode 100644 index 0000000..60cb815 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_07.jpg new file mode 100644 index 0000000..1dfa6f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_08.jpg new file mode 100644 index 0000000..beb2569 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_09.jpg new file mode 100644 index 0000000..6514a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_10.jpg new file mode 100644 index 0000000..64a5e96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_11.jpg new file mode 100644 index 0000000..4ae0a7c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_12.jpg new file mode 100644 index 0000000..2492660 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_14.jpg new file mode 100644 index 0000000..91460d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_15.jpg new file mode 100644 index 0000000..e69aa57 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_16.jpg new file mode 100644 index 0000000..cdaa6ad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_17.jpg new file mode 100644 index 0000000..9e91f08 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_18.jpg new file mode 100644 index 0000000..66fdbe5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_19.jpg new file mode 100644 index 0000000..c589996 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_20.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_20.jpg new file mode 100644 index 0000000..526a794 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_21.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_21.jpg new file mode 100644 index 0000000..adf0211 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_22.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_22.jpg new file mode 100644 index 0000000..41d7d95 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_23.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_23.jpg new file mode 100644 index 0000000..2f8408e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_24.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_24.jpg new file mode 100644 index 0000000..4cab773 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_25.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_25.jpg new file mode 100644 index 0000000..fd1afca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_26.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_26.jpg new file mode 100644 index 0000000..6f8a091 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_armorkit_27.jpg b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_27.jpg new file mode 100644 index 0000000..ba0a456 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_armorkit_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_01.jpg new file mode 100644 index 0000000..83d7b83 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_02.jpg new file mode 100644 index 0000000..9c0c5f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_03.jpg new file mode 100644 index 0000000..b655f86 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_04.jpg new file mode 100644 index 0000000..56179ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_05.jpg new file mode 100644 index 0000000..02f2ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_06.jpg new file mode 100644 index 0000000..00c6192 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_07.jpg new file mode 100644 index 0000000..72dcb1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_07_black.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_black.jpg new file mode 100644 index 0000000..2e35dba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_black.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_07_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_blue.jpg new file mode 100644 index 0000000..187a0ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_07_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_green.jpg new file mode 100644 index 0000000..9743b6f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_07_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_red.jpg new file mode 100644 index 0000000..56ab7f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_07_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_08.jpg new file mode 100644 index 0000000..6fc84c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_09.jpg new file mode 100644 index 0000000..e80f079 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_09_black.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_black.jpg new file mode 100644 index 0000000..e172366 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_black.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_09_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_blue.jpg new file mode 100644 index 0000000..16ff819 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_09_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_green.jpg new file mode 100644 index 0000000..3d50fa9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_09_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_red.jpg new file mode 100644 index 0000000..2ee308c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_09_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_10.jpg new file mode 100644 index 0000000..d8dacce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_10_black.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_black.jpg new file mode 100644 index 0000000..6f41cbe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_black.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_10_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_blue.jpg new file mode 100644 index 0000000..37b0e14 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_10_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_green.jpg new file mode 100644 index 0000000..342e794 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_10_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_red.jpg new file mode 100644 index 0000000..19cd4df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_10_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_11.jpg new file mode 100644 index 0000000..ff83575 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_12.jpg new file mode 100644 index 0000000..da12c8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_13.jpg new file mode 100644 index 0000000..ce6471e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_14.jpg new file mode 100644 index 0000000..0a242a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_15.jpg new file mode 100644 index 0000000..9a508c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_16.jpg new file mode 100644 index 0000000..9dc3e93 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_17.jpg new file mode 100644 index 0000000..a843978 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_18.jpg new file mode 100644 index 0000000..2ed1632 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_19.jpg new file mode 100644 index 0000000..19eb6e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_20.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_20.jpg new file mode 100644 index 0000000..b66177d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_21.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_21.jpg new file mode 100644 index 0000000..aef3772 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_22.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_22.jpg new file mode 100644 index 0000000..2e691ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_23_netherweave.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_23_netherweave.jpg new file mode 100644 index 0000000..a64c605 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_23_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_24_netherweave_imbued.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_24_netherweave_imbued.jpg new file mode 100644 index 0000000..50bef13 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_24_netherweave_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_25_mooncloth.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_25_mooncloth.jpg new file mode 100644 index 0000000..08065dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_25_mooncloth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_26_spellfire.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_26_spellfire.jpg new file mode 100644 index 0000000..c72345d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_26_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_27.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_27.jpg new file mode 100644 index 0000000..9385044 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_28_halloween.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_28_halloween.jpg new file mode 100644 index 0000000..04fc844 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_28_halloween.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_bigbagofenchantments.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_bigbagofenchantments.jpg new file mode 100644 index 0000000..a81a329 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_bigbagofenchantments.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_cenarionherbbag.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_cenarionherbbag.jpg new file mode 100644 index 0000000..95f1220 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_cenarionherbbag.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_corefelclothbag.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_corefelclothbag.jpg new file mode 100644 index 0000000..870cd18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_corefelclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_enchantedmageweave.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_enchantedmageweave.jpg new file mode 100644 index 0000000..ea40c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_enchantedmageweave.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_enchantedrunecloth.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_enchantedrunecloth.jpg new file mode 100644 index 0000000..ea91681 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_enchantedrunecloth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_felclothbag.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_felclothbag.jpg new file mode 100644 index 0000000..4302fde Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_felclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_herbpouch.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_herbpouch.jpg new file mode 100644 index 0000000..c42a2cd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_herbpouch.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_satchelofcenarius.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_satchelofcenarius.jpg new file mode 100644 index 0000000..758dcf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_satchelofcenarius.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bag_soulbag.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bag_soulbag.jpg new file mode 100644 index 0000000..a827f8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bag_soulbag.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_01.jpg new file mode 100644 index 0000000..57dd1e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_02.jpg new file mode 100644 index 0000000..96a5fea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_03.jpg new file mode 100644 index 0000000..0dc0e3d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_04.jpg new file mode 100644 index 0000000..410a1d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_05.jpg new file mode 100644 index 0000000..7480d9c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_06.jpg new file mode 100644 index 0000000..27c76fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_07.jpg new file mode 100644 index 0000000..94cf552 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_08.jpg new file mode 100644 index 0000000..8bfe451 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_09.jpg new file mode 100644 index 0000000..0301f1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_10.jpg new file mode 100644 index 0000000..274113e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_11.jpg new file mode 100644 index 0000000..6dfd4a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_12.jpg new file mode 100644 index 0000000..21942f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_13.jpg new file mode 100644 index 0000000..8c1558a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_14.jpg new file mode 100644 index 0000000..085b365 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_15.jpg new file mode 100644 index 0000000..69704e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_16.jpg new file mode 100644 index 0000000..f637c12 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_17.jpg new file mode 100644 index 0000000..f1d5df5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_18.jpg new file mode 100644 index 0000000..3ce4fd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_19.jpg new file mode 100644 index 0000000..07b204c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_20.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_20.jpg new file mode 100644 index 0000000..afc460c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_netherweave.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_netherweave.jpg new file mode 100644 index 0000000..62ba8ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandage_netherweave_heavy.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandage_netherweave_heavy.jpg new file mode 100644 index 0000000..846d1dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandage_netherweave_heavy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandana_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandana_01.jpg new file mode 100644 index 0000000..8522f3e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandana_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bandana_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bandana_03.jpg new file mode 100644 index 0000000..dac1354 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bandana_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_basket_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_basket_01.jpg new file mode 100644 index 0000000..3868d73 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_basket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_beer_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_beer_01.jpg new file mode 100644 index 0000000..3ae732d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_beer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_beer_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_beer_02.jpg new file mode 100644 index 0000000..8195d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_beer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bell_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bell_01.jpg new file mode 100644 index 0000000..a93ddd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_birdbeck_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_birdbeck_01.jpg new file mode 100644 index 0000000..d8346be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_birdbeck_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_birdbeck_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_birdbeck_02.jpg new file mode 100644 index 0000000..20818a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_birdbeck_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_01.jpg new file mode 100644 index 0000000..9a278dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_02.jpg new file mode 100644 index 0000000..15ffe21 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_03.jpg new file mode 100644 index 0000000..b22c2f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_04.jpg new file mode 100644 index 0000000..d70c367 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_05.jpg new file mode 100644 index 0000000..59f0005 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_06.jpg new file mode 100644 index 0000000..5fd872c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_07.jpg new file mode 100644 index 0000000..d9aa717 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_08.jpg new file mode 100644 index 0000000..df2cd72 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bomb_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bomb_09.jpg new file mode 100644 index 0000000..b7f7483 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bomb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_01.jpg new file mode 100644 index 0000000..33dc486 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_02.jpg new file mode 100644 index 0000000..141d96b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_03.jpg new file mode 100644 index 0000000..d0214b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_04.jpg new file mode 100644 index 0000000..a1b3e4b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_05.jpg new file mode 100644 index 0000000..18b48d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_06.jpg new file mode 100644 index 0000000..a5d32ab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_07.jpg new file mode 100644 index 0000000..82287cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_08.jpg new file mode 100644 index 0000000..6d7b757 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_09.jpg new file mode 100644 index 0000000..4ebc958 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_10.jpg new file mode 100644 index 0000000..fc23750 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_dwarfskull_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_dwarfskull_01.jpg new file mode 100644 index 0000000..f523288 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_dwarfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_elfskull_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_elfskull_01.jpg new file mode 100644 index 0000000..af574ac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_elfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_humanskull_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_humanskull_01.jpg new file mode 100644 index 0000000..889476a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_humanskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_orcskull_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_orcskull_01.jpg new file mode 100644 index 0000000..b7acf7a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_orcskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bone_taurenskull_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bone_taurenskull_01.jpg new file mode 100644 index 0000000..d7c9160 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bone_taurenskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_01.jpg new file mode 100644 index 0000000..5bd17fa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_02.jpg new file mode 100644 index 0000000..81ed39f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_03.jpg new file mode 100644 index 0000000..7ff1d9c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_04.jpg new file mode 100644 index 0000000..3455d8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_05.jpg new file mode 100644 index 0000000..2a93b66 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_06.jpg new file mode 100644 index 0000000..0d04457 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_07.jpg new file mode 100644 index 0000000..bd4ac8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_08.jpg new file mode 100644 index 0000000..8c974b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_09.jpg new file mode 100644 index 0000000..cf97f61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_10.jpg new file mode 100644 index 0000000..5421591 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_11.jpg new file mode 100644 index 0000000..498452f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_12.jpg new file mode 100644 index 0000000..f1b7785 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_13.jpg new file mode 100644 index 0000000..2fb14c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_14.jpg new file mode 100644 index 0000000..10632eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_book_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_book_15.jpg new file mode 100644 index 0000000..ff7431a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_book_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_bowl_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_bowl_01.jpg new file mode 100644 index 0000000..e5ea1a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_bowl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_branch_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_branch_01.jpg new file mode 100644 index 0000000..c9b0d81 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_branch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_candle_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_candle_01.jpg new file mode 100644 index 0000000..3d249ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_candle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_candle_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_candle_02.jpg new file mode 100644 index 0000000..817f40e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_candle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_candle_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_candle_03.jpg new file mode 100644 index 0000000..74f9502 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_candle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_01.jpg new file mode 100644 index 0000000..e4248fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_02.jpg new file mode 100644 index 0000000..18b8fe5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_03.jpg new file mode 100644 index 0000000..a532057 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_04.jpg new file mode 100644 index 0000000..6fc75ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_05.jpg new file mode 100644 index 0000000..eba5ffa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_06.jpg new file mode 100644 index 0000000..25ec3cc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_07.jpg new file mode 100644 index 0000000..96229b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_08.jpg new file mode 100644 index 0000000..c4212a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_09.jpg new file mode 100644 index 0000000..65f7f76 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_10.jpg new file mode 100644 index 0000000..1454bb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_11.jpg new file mode 100644 index 0000000..b25a43a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_12.jpg new file mode 100644 index 0000000..80f3c02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_13.jpg new file mode 100644 index 0000000..2396f7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_14.jpg new file mode 100644 index 0000000..aa241b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_15.jpg new file mode 100644 index 0000000..70391c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_16.jpg new file mode 100644 index 0000000..67aca48 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_17.jpg new file mode 100644 index 0000000..f8c9275 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_18.jpg new file mode 100644 index 0000000..2184b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_19.jpg new file mode 100644 index 0000000..aaf197d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_20.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_20.jpg new file mode 100644 index 0000000..27724a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_21.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_21.jpg new file mode 100644 index 0000000..f519307 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_22.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_22.jpg new file mode 100644 index 0000000..0757791 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_01.jpg new file mode 100644 index 0000000..f7f6e55 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_02.jpg new file mode 100644 index 0000000..e760577 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_03.jpg new file mode 100644 index 0000000..e5f5771 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cape_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cauldron_arcane.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_arcane.jpg new file mode 100644 index 0000000..cf7e54c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_arcane.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cauldron_fire.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_fire.jpg new file mode 100644 index 0000000..c837458 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cauldron_frost.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_frost.jpg new file mode 100644 index 0000000..5901c4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cauldron_nature.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_nature.jpg new file mode 100644 index 0000000..5834175 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_nature.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_cauldron_shadow.jpg b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_shadow.jpg new file mode 100644 index 0000000..adc52a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_cauldron_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_celebrationcake_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_celebrationcake_01.jpg new file mode 100644 index 0000000..ff7fce5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_celebrationcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_01.jpg new file mode 100644 index 0000000..cd50f9d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_02.jpg new file mode 100644 index 0000000..f8c41de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_03.jpg new file mode 100644 index 0000000..d3e078c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_04.jpg new file mode 100644 index 0000000..e4e02f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_05.jpg new file mode 100644 index 0000000..bc66171 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_06.jpg new file mode 100644 index 0000000..fa67d75 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_07.jpg new file mode 100644 index 0000000..5ad9121 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_08.jpg new file mode 100644 index 0000000..1df3c49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_09.jpg new file mode 100644 index 0000000..9cef080 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_10.jpg new file mode 100644 index 0000000..5af6fae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_11.jpg new file mode 100644 index 0000000..aaac858 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_12.jpg new file mode 100644 index 0000000..b3ee658 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_13.jpg new file mode 100644 index 0000000..5a74005 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_14.jpg new file mode 100644 index 0000000..d4122c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_coin_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_coin_15.jpg new file mode 100644 index 0000000..7cb67e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_coin_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_comb_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_comb_01.jpg new file mode 100644 index 0000000..aca116e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_comb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_comb_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_comb_02.jpg new file mode 100644 index 0000000..647bda1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_comb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_crop_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_crop_01.jpg new file mode 100644 index 0000000..b1ccdb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_crop_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_crop_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_crop_02.jpg new file mode 100644 index 0000000..49305d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_crop_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothbelt.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothbelt.jpg new file mode 100644 index 0000000..7fdcb3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothboots.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothboots.jpg new file mode 100644 index 0000000..fb9494b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothboots.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothbracer.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothbracer.jpg new file mode 100644 index 0000000..133df24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothchest.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothchest.jpg new file mode 100644 index 0000000..feb8bed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothchest.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothglove.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothglove.jpg new file mode 100644 index 0000000..1069c43 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothglove.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothhelm.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothhelm.jpg new file mode 100644 index 0000000..03ac9b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothpants.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothpants.jpg new file mode 100644 index 0000000..511a923 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothpants.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothshoulder.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothshoulder.jpg new file mode 100644 index 0000000..a2770bd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_clothshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherbelt.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherbelt.jpg new file mode 100644 index 0000000..a503ac7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherboots.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherboots.jpg new file mode 100644 index 0000000..44d7671 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherboots.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherbracer.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherbracer.jpg new file mode 100644 index 0000000..4f22a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherchest.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherchest.jpg new file mode 100644 index 0000000..23a44b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherchest.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherglove.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherglove.jpg new file mode 100644 index 0000000..5d9a19c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherglove.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherhelm.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherhelm.jpg new file mode 100644 index 0000000..d9df06a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherpants.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherpants.jpg new file mode 100644 index 0000000..fa9e01c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leatherpants.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leathershoulder.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leathershoulder.jpg new file mode 100644 index 0000000..43e030b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_leathershoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailbelt.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailbelt.jpg new file mode 100644 index 0000000..737e8b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailboots.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailboots.jpg new file mode 100644 index 0000000..b0dfd74 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailboots.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailbracer.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailbracer.jpg new file mode 100644 index 0000000..13b522e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailchest.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailchest.jpg new file mode 100644 index 0000000..ce31d64 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailchest.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailglove.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailglove.jpg new file mode 100644 index 0000000..38fccf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailglove.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailhelm.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailhelm.jpg new file mode 100644 index 0000000..e4caeb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailpants.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailpants.jpg new file mode 100644 index 0000000..8d2ee31 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailpants.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailshoulder.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailshoulder.jpg new file mode 100644 index 0000000..db580ab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_mailshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platebelt.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platebelt.jpg new file mode 100644 index 0000000..abc2f39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platebelt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plateboots.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plateboots.jpg new file mode 100644 index 0000000..e609186 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plateboots.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platebracer.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platebracer.jpg new file mode 100644 index 0000000..acf4c54 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platebracer.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platechest.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platechest.jpg new file mode 100644 index 0000000..c293024 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platechest.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plategloves.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plategloves.jpg new file mode 100644 index 0000000..ba5ce73 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plategloves.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platehelm.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platehelm.jpg new file mode 100644 index 0000000..9eed68d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platehelm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platepants.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platepants.jpg new file mode 100644 index 0000000..0274cf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_platepants.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plateshoulder.jpg b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plateshoulder.jpg new file mode 100644 index 0000000..ba46765 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_desecrated_plateshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_01.jpg new file mode 100644 index 0000000..98ef2b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_02.jpg new file mode 100644 index 0000000..c3a3589 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_03.jpg new file mode 100644 index 0000000..8db7f4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_04.jpg new file mode 100644 index 0000000..cecb1d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dragonkite_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_drum_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_drum_01.jpg new file mode 100644 index 0000000..871034f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_drum_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_drum_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_drum_02.jpg new file mode 100644 index 0000000..1511922 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_drum_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_drum_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_drum_03.jpg new file mode 100644 index 0000000..26f9588 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_drum_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_drum_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_drum_04.jpg new file mode 100644 index 0000000..53db8c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_drum_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_drum_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_drum_05.jpg new file mode 100644 index 0000000..3fcdcbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_drum_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_drum_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_drum_06.jpg new file mode 100644 index 0000000..a99fda5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_drum_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_drum_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_drum_07.jpg new file mode 100644 index 0000000..bf5a111 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_drum_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dust_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dust_01.jpg new file mode 100644 index 0000000..cc3eb94 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dust_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dust_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dust_02.jpg new file mode 100644 index 0000000..98d50d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dust_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dust_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dust_03.jpg new file mode 100644 index 0000000..410e9d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dust_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dust_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dust_04.jpg new file mode 100644 index 0000000..d129079 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dust_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dust_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dust_05.jpg new file mode 100644 index 0000000..64dba1a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dust_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_dust_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_dust_06.jpg new file mode 100644 index 0000000..f478f1e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_dust_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ear_human_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ear_human_01.jpg new file mode 100644 index 0000000..b2abecf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ear_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ear_human_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ear_human_02.jpg new file mode 100644 index 0000000..d2e0985 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ear_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ear_nightelf_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ear_nightelf_01.jpg new file mode 100644 index 0000000..45a852d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ear_nightelf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ear_nightelf_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ear_nightelf_02.jpg new file mode 100644 index 0000000..7c874bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ear_nightelf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_elvencoins.jpg b/other/AoWoW-master/images/icons/small/inv_misc_elvencoins.jpg new file mode 100644 index 0000000..0f8dcfd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_elvencoins.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_01.jpg new file mode 100644 index 0000000..79ff9d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_02.jpg new file mode 100644 index 0000000..06eaaf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_03.jpg new file mode 100644 index 0000000..5a7b193 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_04.jpg new file mode 100644 index 0000000..af3f7e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_05.jpg new file mode 100644 index 0000000..3809401 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_06.jpg new file mode 100644 index 0000000..e191802 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_07.jpg new file mode 100644 index 0000000..92757a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_08.jpg new file mode 100644 index 0000000..0f24e98 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_09.jpg new file mode 100644 index 0000000..ab4bcaa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_10.jpg new file mode 100644 index 0000000..5e44040 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_11.jpg new file mode 100644 index 0000000..57dbda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_12.jpg new file mode 100644 index 0000000..59a92fd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_13.jpg new file mode 100644 index 0000000..aa41416 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_14.jpg new file mode 100644 index 0000000..e34c165 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_15.jpg new file mode 100644 index 0000000..b48acf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_16.jpg new file mode 100644 index 0000000..16b6d71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_17.jpg new file mode 100644 index 0000000..fe868e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_18.jpg new file mode 100644 index 0000000..20ccd99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_19.jpg new file mode 100644 index 0000000..2ed1ff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_20.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_20.jpg new file mode 100644 index 0000000..355bc16 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_21.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_21.jpg new file mode 100644 index 0000000..1d7c1fd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_23.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_23.jpg new file mode 100644 index 0000000..6862aac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_24.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_24.jpg new file mode 100644 index 0000000..6b53a41 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_essencedistiller.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_essencedistiller.jpg new file mode 100644 index 0000000..22781be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_essencedistiller.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_rocketchicken.jpg b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_rocketchicken.jpg new file mode 100644 index 0000000..a7da44a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_enggizmos_rocketchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_eye_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_eye_01.jpg new file mode 100644 index 0000000..7e9e26e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_eye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_film_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_film_01.jpg new file mode 100644 index 0000000..4239e01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_film_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_firedancer_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_firedancer_01.jpg new file mode 100644 index 0000000..1fc57e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_firedancer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_01.jpg new file mode 100644 index 0000000..8fe02d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_02.jpg new file mode 100644 index 0000000..46d7af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_03.jpg new file mode 100644 index 0000000..352dfde Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_04.jpg new file mode 100644 index 0000000..282a5f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_05.jpg new file mode 100644 index 0000000..d9febc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_06.jpg new file mode 100644 index 0000000..6c8c6f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_07.jpg new file mode 100644 index 0000000..18ac762 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_08.jpg new file mode 100644 index 0000000..de1c4a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_09.jpg new file mode 100644 index 0000000..cac2bdf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_10.jpg new file mode 100644 index 0000000..8294c76 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_11.jpg new file mode 100644 index 0000000..0e7c412 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_12.jpg new file mode 100644 index 0000000..0a53393 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_13.jpg new file mode 100644 index 0000000..e7f2932 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_14.jpg new file mode 100644 index 0000000..193a9bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_15.jpg new file mode 100644 index 0000000..6bf7331 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_16.jpg new file mode 100644 index 0000000..86cab8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_17.jpg new file mode 100644 index 0000000..cbe8479 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_18.jpg new file mode 100644 index 0000000..5d9dee6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_19.jpg new file mode 100644 index 0000000..4039b69 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_20.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_20.jpg new file mode 100644 index 0000000..217bd4f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_21.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_21.jpg new file mode 100644 index 0000000..c57c18d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_22.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_22.jpg new file mode 100644 index 0000000..f824e03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_23.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_23.jpg new file mode 100644 index 0000000..d38ed7c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_24.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_24.jpg new file mode 100644 index 0000000..6b03f4f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_25.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_25.jpg new file mode 100644 index 0000000..0f16941 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_26.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_26.jpg new file mode 100644 index 0000000..ce5446e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_27.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_27.jpg new file mode 100644 index 0000000..3c036c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_28.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_28.jpg new file mode 100644 index 0000000..e3dd9bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_29.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_29.jpg new file mode 100644 index 0000000..64bb736 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_30.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_30.jpg new file mode 100644 index 0000000..cce6d1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_31.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_31.jpg new file mode 100644 index 0000000..3b931d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_32.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_32.jpg new file mode 100644 index 0000000..f343f9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_33.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_33.jpg new file mode 100644 index 0000000..163d0f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_34.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_34.jpg new file mode 100644 index 0000000..421d962 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_35.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_35.jpg new file mode 100644 index 0000000..ec4c381 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_36.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_36.jpg new file mode 100644 index 0000000..7dec8d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_37.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_37.jpg new file mode 100644 index 0000000..1f0dd3d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_38.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_38.jpg new file mode 100644 index 0000000..3bcccaf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_39.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_39.jpg new file mode 100644 index 0000000..d3444e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_40.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_40.jpg new file mode 100644 index 0000000..d3902c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_41.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_41.jpg new file mode 100644 index 0000000..a7d9975 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_42.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_42.jpg new file mode 100644 index 0000000..7181bb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_43.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_43.jpg new file mode 100644 index 0000000..885e911 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_44.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_44.jpg new file mode 100644 index 0000000..1c39bde Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_45.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_45.jpg new file mode 100644 index 0000000..a5f14e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_01.jpg new file mode 100644 index 0000000..9d06376 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_02.jpg new file mode 100644 index 0000000..b6eb153 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_03.jpg new file mode 100644 index 0000000..5f6d01c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fish_turtle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_flower_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_flower_01.jpg new file mode 100644 index 0000000..97173b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_flower_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_flower_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_flower_02.jpg new file mode 100644 index 0000000..4adce3e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_flower_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_flower_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_flower_03.jpg new file mode 100644 index 0000000..d19f58e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_flower_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_flower_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_flower_04.jpg new file mode 100644 index 0000000..f4ed3a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_flower_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_flute_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_flute_01.jpg new file mode 100644 index 0000000..54efca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_flute_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_01.jpg new file mode 100644 index 0000000..79b3328 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_02.jpg new file mode 100644 index 0000000..a0c5c6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_03.jpg new file mode 100644 index 0000000..cf60f0e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_04.jpg new file mode 100644 index 0000000..c53916d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_05.jpg new file mode 100644 index 0000000..154711c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_06.jpg new file mode 100644 index 0000000..8d63c19 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_07.jpg new file mode 100644 index 0000000..4706364 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_08.jpg new file mode 100644 index 0000000..7b8c6b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_09.jpg new file mode 100644 index 0000000..7b6dbd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_10.jpg new file mode 100644 index 0000000..1ce0ad5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_100.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_100.jpg new file mode 100644 index 0000000..a0e5abb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_100.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_11.jpg new file mode 100644 index 0000000..ee5f8d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_12.jpg new file mode 100644 index 0000000..7bf3665 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_13.jpg new file mode 100644 index 0000000..6cf1a5d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_14.jpg new file mode 100644 index 0000000..9f16c0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_15.jpg new file mode 100644 index 0000000..4f89c9e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_16.jpg new file mode 100644 index 0000000..48a4786 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_17.jpg new file mode 100644 index 0000000..b3a5a60 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_18.jpg new file mode 100644 index 0000000..f44ffda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_19.jpg new file mode 100644 index 0000000..452b1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_20.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_20.jpg new file mode 100644 index 0000000..239f497 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_21.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_21.jpg new file mode 100644 index 0000000..7ebc0d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_22.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_22.jpg new file mode 100644 index 0000000..a90dc7e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_23.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_23.jpg new file mode 100644 index 0000000..805ccbb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_24.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_24.jpg new file mode 100644 index 0000000..aa397fa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_25.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_25.jpg new file mode 100644 index 0000000..fa0cd46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_26.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_26.jpg new file mode 100644 index 0000000..96bb097 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_27.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_27.jpg new file mode 100644 index 0000000..2b3f39d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_28.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_28.jpg new file mode 100644 index 0000000..ed68140 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_29.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_29.jpg new file mode 100644 index 0000000..2ce2a77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_30.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_30.jpg new file mode 100644 index 0000000..d1ae98e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_31.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_31.jpg new file mode 100644 index 0000000..eee3db3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_32.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_32.jpg new file mode 100644 index 0000000..f353e16 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_33.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_33.jpg new file mode 100644 index 0000000..a9c7074 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_34.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_34.jpg new file mode 100644 index 0000000..09d3f82 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_35.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_35.jpg new file mode 100644 index 0000000..d774b7c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_36.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_36.jpg new file mode 100644 index 0000000..c9e9154 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_37.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_37.jpg new file mode 100644 index 0000000..136fb06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_38.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_38.jpg new file mode 100644 index 0000000..1e4832d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_39.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_39.jpg new file mode 100644 index 0000000..876c0d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_40.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_40.jpg new file mode 100644 index 0000000..b551a4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_41.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_41.jpg new file mode 100644 index 0000000..b1d4e4f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_42.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_42.jpg new file mode 100644 index 0000000..1ffe9d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_43.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_43.jpg new file mode 100644 index 0000000..86be493 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_44.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_44.jpg new file mode 100644 index 0000000..c4099d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_45.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_45.jpg new file mode 100644 index 0000000..d6cad79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_46.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_46.jpg new file mode 100644 index 0000000..43f93d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_47.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_47.jpg new file mode 100644 index 0000000..30be43a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_48.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_48.jpg new file mode 100644 index 0000000..d33f1e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_49.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_49.jpg new file mode 100644 index 0000000..e25cce1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_50.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_50.jpg new file mode 100644 index 0000000..e84d41e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_51.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_51.jpg new file mode 100644 index 0000000..4594d64 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_52.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_52.jpg new file mode 100644 index 0000000..7112490 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_53.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_53.jpg new file mode 100644 index 0000000..2d41fb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_54.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_54.jpg new file mode 100644 index 0000000..28e28d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_55.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_55.jpg new file mode 100644 index 0000000..81ec6cc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_56.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_56.jpg new file mode 100644 index 0000000..d7f8cbe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_57.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_57.jpg new file mode 100644 index 0000000..464bb53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_58.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_58.jpg new file mode 100644 index 0000000..aa9f7f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_59.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_59.jpg new file mode 100644 index 0000000..a60b1da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_60.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_60.jpg new file mode 100644 index 0000000..b26d5e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_61.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_61.jpg new file mode 100644 index 0000000..c27ef62 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_62.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_62.jpg new file mode 100644 index 0000000..a73f10d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_63.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_63.jpg new file mode 100644 index 0000000..5de3e98 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_64.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_64.jpg new file mode 100644 index 0000000..9440de8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_65.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_65.jpg new file mode 100644 index 0000000..20c30f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_66.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_66.jpg new file mode 100644 index 0000000..e74a6a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_67.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_67.jpg new file mode 100644 index 0000000..fb29fee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_68.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_68.jpg new file mode 100644 index 0000000..59b7ae7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_69.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_69.jpg new file mode 100644 index 0000000..27cb7e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_70.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_70.jpg new file mode 100644 index 0000000..8ffd1cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_70.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_71.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_71.jpg new file mode 100644 index 0000000..55c0e12 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_72.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_72.jpg new file mode 100644 index 0000000..a7be016 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_73cinnamonroll.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_73cinnamonroll.jpg new file mode 100644 index 0000000..43cd820 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_73cinnamonroll.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_74.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_74.jpg new file mode 100644 index 0000000..771354b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_75.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_75.jpg new file mode 100644 index 0000000..52e5511 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_75.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_76.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_76.jpg new file mode 100644 index 0000000..fd2756c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_76.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_77.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_77.jpg new file mode 100644 index 0000000..5542ca8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_77.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_78.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_78.jpg new file mode 100644 index 0000000..205a1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_78.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_79.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_79.jpg new file mode 100644 index 0000000..84cdc06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_79.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_80.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_80.jpg new file mode 100644 index 0000000..0aaa573 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_80.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_81.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_81.jpg new file mode 100644 index 0000000..06d53df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_81.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_82.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_82.jpg new file mode 100644 index 0000000..860ada8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_82.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_83_talbuksteak.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_83_talbuksteak.jpg new file mode 100644 index 0000000..d057550 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_83_talbuksteak.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_84_roastclefthoof.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_84_roastclefthoof.jpg new file mode 100644 index 0000000..a359752 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_84_roastclefthoof.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_85_stegadonbite.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_85_stegadonbite.jpg new file mode 100644 index 0000000..de5cb31 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_85_stegadonbite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_86_basilisk.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_86_basilisk.jpg new file mode 100644 index 0000000..bf6c697 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_86_basilisk.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_87_sporelingsnack.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_87_sporelingsnack.jpg new file mode 100644 index 0000000..32efa77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_87_sporelingsnack.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_88_ravagernuggets.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_88_ravagernuggets.jpg new file mode 100644 index 0000000..3de60dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_88_ravagernuggets.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_89.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_89.jpg new file mode 100644 index 0000000..dfc5f60 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_89.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_90.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_90.jpg new file mode 100644 index 0000000..141c789 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_90.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_91.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_91.jpg new file mode 100644 index 0000000..c07fc6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_91.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_92_lobster.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_92_lobster.jpg new file mode 100644 index 0000000..6c59088 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_92_lobster.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_93_skethylberries.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_93_skethylberries.jpg new file mode 100644 index 0000000..dd8b448 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_93_skethylberries.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_94_garadarsharp.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_94_garadarsharp.jpg new file mode 100644 index 0000000..dcaa47b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_94_garadarsharp.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_95_grainbread.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_95_grainbread.jpg new file mode 100644 index 0000000..81cead5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_95_grainbread.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_96_zangarcaps.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_96_zangarcaps.jpg new file mode 100644 index 0000000..b350709 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_96_zangarcaps.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_97_sunspringcarp.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_97_sunspringcarp.jpg new file mode 100644 index 0000000..ac8aff4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_97_sunspringcarp.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_98_talbuk.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_98_talbuk.jpg new file mode 100644 index 0000000..5e589db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_98_talbuk.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_99.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_99.jpg new file mode 100644 index 0000000..f916f0c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_99.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_dimsum.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_dimsum.jpg new file mode 100644 index 0000000..c86f9f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_dimsum.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_wheat_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_wheat_01.jpg new file mode 100644 index 0000000..5934b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_wheat_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_food_wheat_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_food_wheat_02.jpg new file mode 100644 index 0000000..606cc18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_food_wheat_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_foot_centaur.jpg b/other/AoWoW-master/images/icons/small/inv_misc_foot_centaur.jpg new file mode 100644 index 0000000..b0fe529 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_foot_centaur.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_foot_kodo.jpg b/other/AoWoW-master/images/icons/small/inv_misc_foot_kodo.jpg new file mode 100644 index 0000000..6d09a5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_foot_kodo.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_fork&knife.jpg b/other/AoWoW-master/images/icons/small/inv_misc_fork&knife.jpg new file mode 100644 index 0000000..f5cc318 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_fork&knife.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_01.jpg new file mode 100644 index 0000000..edf01dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_02.jpg new file mode 100644 index 0000000..3ff6a42 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_03.jpg new file mode 100644 index 0000000..8d292fa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_04.jpg new file mode 100644 index 0000000..ae74690 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_05.jpg new file mode 100644 index 0000000..e850075 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_06.jpg new file mode 100644 index 0000000..71f0b58 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_07.jpg new file mode 100644 index 0000000..3bfa067 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gear_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gear_08.jpg new file mode 100644 index 0000000..e2d7f4f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_01.jpg new file mode 100644 index 0000000..bf48789 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_02.jpg new file mode 100644 index 0000000..5d23b63 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_03.jpg new file mode 100644 index 0000000..6ef2c95 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_01.jpg new file mode 100644 index 0000000..c23e1dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_02.jpg new file mode 100644 index 0000000..b7bf235 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_03.jpg new file mode 100644 index 0000000..b7851da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethyst_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_amethystrough_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethystrough_01.jpg new file mode 100644 index 0000000..fe70988 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_amethystrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_01.jpg new file mode 100644 index 0000000..9656265 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_02.jpg new file mode 100644 index 0000000..72a7f9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_03.jpg new file mode 100644 index 0000000..b2b1411 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_azuredraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_01.jpg new file mode 100644 index 0000000..aabea6d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_02.jpg new file mode 100644 index 0000000..afd9f17 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_03.jpg new file mode 100644 index 0000000..1ece3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodgem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_01.jpg new file mode 100644 index 0000000..782dc32 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_02.jpg new file mode 100644 index 0000000..b42497b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_03.jpg new file mode 100644 index 0000000..0db1740 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_bloodstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_01.jpg new file mode 100644 index 0000000..02da578 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_02.jpg new file mode 100644 index 0000000..c1a07ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_03.jpg new file mode 100644 index 0000000..3c14763 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_crystalcut_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystalcut_01.jpg new file mode 100644 index 0000000..03ade70 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_crystalcut_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_01.jpg new file mode 100644 index 0000000..0907e86 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_02.jpg new file mode 100644 index 0000000..635df3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_03.jpg new file mode 100644 index 0000000..24b936c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_deepperidot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_01.jpg new file mode 100644 index 0000000..9c9c188 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_02.jpg new file mode 100644 index 0000000..c0d0af9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_03.jpg new file mode 100644 index 0000000..ed5c1b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_04.jpg new file mode 100644 index 0000000..773ce1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_05.jpg new file mode 100644 index 0000000..292fe90 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_06.jpg new file mode 100644 index 0000000..8206052 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_07.jpg new file mode 100644 index 0000000..ae424d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_diamond_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_01.jpg new file mode 100644 index 0000000..fe70988 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_02.jpg new file mode 100644 index 0000000..c4e2959 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_03.jpg new file mode 100644 index 0000000..4e8f2b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_ebondraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_01.jpg new file mode 100644 index 0000000..9fea769 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_02.jpg new file mode 100644 index 0000000..10401e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_03.jpg new file mode 100644 index 0000000..6c37da9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_emerald_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_emeraldrough_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_emeraldrough_01.jpg new file mode 100644 index 0000000..70b6c5e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_emeraldrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_emeraldrough_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_emeraldrough_02.jpg new file mode 100644 index 0000000..a465bdb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_emeraldrough_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_01.jpg new file mode 100644 index 0000000..0b6af71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_02.jpg new file mode 100644 index 0000000..339241b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_03.jpg new file mode 100644 index 0000000..709d2a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_flamespessarite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_01.jpg new file mode 100644 index 0000000..7a8336a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_02.jpg new file mode 100644 index 0000000..7122209 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_03.jpg new file mode 100644 index 0000000..81bb689 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_goldendraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_lionseye_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_lionseye_01.jpg new file mode 100644 index 0000000..f823db6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_01.jpg new file mode 100644 index 0000000..95b18cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_02.jpg new file mode 100644 index 0000000..5b7eb6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_03.jpg new file mode 100644 index 0000000..c5b295a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_opal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_opalrough_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_opalrough_01.jpg new file mode 100644 index 0000000..f919420 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_opalrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_01.jpg new file mode 100644 index 0000000..e880113 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_02.jpg new file mode 100644 index 0000000..0717dda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_03.jpg new file mode 100644 index 0000000..a890f79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_04.jpg new file mode 100644 index 0000000..244d74f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_05.jpg new file mode 100644 index 0000000..838b477 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_06.jpg new file mode 100644 index 0000000..3fcf1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_07.jpg new file mode 100644 index 0000000..1c8237b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_08.jpg new file mode 100644 index 0000000..e8c8f1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_pearl_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_01.jpg new file mode 100644 index 0000000..2543e0f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_02.jpg new file mode 100644 index 0000000..de1b6f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_03.jpg new file mode 100644 index 0000000..ce78087 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_ruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_01.jpg new file mode 100644 index 0000000..6cb4ea4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_02.jpg new file mode 100644 index 0000000..015c0e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_03.jpg new file mode 100644 index 0000000..12ad096 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_sapphire_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_stone_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_stone_01.jpg new file mode 100644 index 0000000..aaf1f80 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_01.jpg new file mode 100644 index 0000000..0ed81d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_02.jpg new file mode 100644 index 0000000..c2a55d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_03.jpg new file mode 100644 index 0000000..5b09114 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_topaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_variety_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_variety_01.jpg new file mode 100644 index 0000000..f4d04d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_variety_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gem_variety_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gem_variety_02.jpg new file mode 100644 index 0000000..6b6d1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gem_variety_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gift_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gift_01.jpg new file mode 100644 index 0000000..796e023 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gift_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gift_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gift_02.jpg new file mode 100644 index 0000000..535a673 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gift_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gift_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gift_03.jpg new file mode 100644 index 0000000..348a3dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gift_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gift_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gift_04.jpg new file mode 100644 index 0000000..df77635 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gift_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_gift_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_gift_05.jpg new file mode 100644 index 0000000..0cf6e59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_gift_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_01.jpg new file mode 100644 index 0000000..9bd3670 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_02.jpg new file mode 100644 index 0000000..64c625d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_03.jpg new file mode 100644 index 0000000..5a815b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_giftwrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_grouplooking.jpg b/other/AoWoW-master/images/icons/small/inv_misc_grouplooking.jpg new file mode 100644 index 0000000..ac2b625 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_grouplooking.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_groupneedmore.jpg b/other/AoWoW-master/images/icons/small/inv_misc_groupneedmore.jpg new file mode 100644 index 0000000..58c964f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_groupneedmore.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_02.jpg new file mode 100644 index 0000000..6e23df7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_centaur_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_centaur_01.jpg new file mode 100644 index 0000000..31062e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_centaur_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_01.jpg new file mode 100644 index 0000000..a088d30 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_black.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_black.jpg new file mode 100644 index 0000000..172930f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_black.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_blue.jpg new file mode 100644 index 0000000..e9b2454 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_bronze.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_bronze.jpg new file mode 100644 index 0000000..c1a0d82 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_green.jpg new file mode 100644 index 0000000..0b7f4e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_red.jpg new file mode 100644 index 0000000..73638fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dragon_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dwarf_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dwarf_01.jpg new file mode 100644 index 0000000..a063572 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dwarf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_dwarf_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_dwarf_02.jpg new file mode 100644 index 0000000..0c52180 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_dwarf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_elf_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_elf_01.jpg new file mode 100644 index 0000000..db81037 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_elf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_elf_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_elf_02.jpg new file mode 100644 index 0000000..1502167 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_elf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_gnoll_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_gnoll_01.jpg new file mode 100644 index 0000000..5709b6a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_gnoll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_gnome_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_gnome_01.jpg new file mode 100644 index 0000000..0852db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_gnome_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_gnome_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_gnome_02.jpg new file mode 100644 index 0000000..f6b381c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_gnome_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_human_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_human_01.jpg new file mode 100644 index 0000000..8a2ff81 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_human_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_human_02.jpg new file mode 100644 index 0000000..4049fbf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_kobold_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_kobold_01.jpg new file mode 100644 index 0000000..135b734 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_kobold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_murloc_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_murloc_01.jpg new file mode 100644 index 0000000..e6d33c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_murloc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_orc_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_orc_01.jpg new file mode 100644 index 0000000..c1adafb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_orc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_orc_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_orc_02.jpg new file mode 100644 index 0000000..310a567 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_orc_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_quillboar_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_quillboar_01.jpg new file mode 100644 index 0000000..655400b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_quillboar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_scourge_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_scourge_01.jpg new file mode 100644 index 0000000..4ef9a36 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_scourge_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_tauren_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_tauren_01.jpg new file mode 100644 index 0000000..551e67c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_tauren_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_tauren_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_tauren_02.jpg new file mode 100644 index 0000000..dc2669f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_tauren_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_tiger_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_tiger_01.jpg new file mode 100644 index 0000000..94ba564 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_tiger_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_troll_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_troll_01.jpg new file mode 100644 index 0000000..2d7c051 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_troll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_troll_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_troll_02.jpg new file mode 100644 index 0000000..dab3d8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_troll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_undead_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_undead_01.jpg new file mode 100644 index 0000000..8420717 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_undead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_head_undead_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_head_undead_02.jpg new file mode 100644 index 0000000..073256e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_head_undead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_01.jpg new file mode 100644 index 0000000..e08ad49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_02.jpg new file mode 100644 index 0000000..56468d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_03.jpg new file mode 100644 index 0000000..8bea9ee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_04.jpg new file mode 100644 index 0000000..1abf7f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_05.jpg new file mode 100644 index 0000000..0d848dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_06.jpg new file mode 100644 index 0000000..28f4ccc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_07.jpg new file mode 100644 index 0000000..0a6e9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_08.jpg new file mode 100644 index 0000000..5fa6b2f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_09.jpg new file mode 100644 index 0000000..0cfb2f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_10.jpg new file mode 100644 index 0000000..d02fa27 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_11.jpg new file mode 100644 index 0000000..7657a6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_11a.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_11a.jpg new file mode 100644 index 0000000..1c8588e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_11a.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_12.jpg new file mode 100644 index 0000000..9d3f054 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_13.jpg new file mode 100644 index 0000000..4a7267c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_14.jpg new file mode 100644 index 0000000..482d893 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_15.jpg new file mode 100644 index 0000000..828f56e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_16.jpg new file mode 100644 index 0000000..9d3fc94 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_17.jpg new file mode 100644 index 0000000..a7dacbd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_18.jpg new file mode 100644 index 0000000..f559863 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_19.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_19.jpg new file mode 100644 index 0000000..868e9de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_ancientlichen.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_ancientlichen.jpg new file mode 100644 index 0000000..15d1ed1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_ancientlichen.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_blacklotus.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_blacklotus.jpg new file mode 100644 index 0000000..9598075 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_blacklotus.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_dreamfoil.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_dreamfoil.jpg new file mode 100644 index 0000000..36a2a99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_dreamfoil.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_dreamingglory.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_dreamingglory.jpg new file mode 100644 index 0000000..5a36672 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_dreamingglory.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_felblossom.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_felblossom.jpg new file mode 100644 index 0000000..882d3c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_felblossom.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_fellotus.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_fellotus.jpg new file mode 100644 index 0000000..be555a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_fellotus.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_felweed.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_felweed.jpg new file mode 100644 index 0000000..d4ca9b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_felweed.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_flamecap.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_flamecap.jpg new file mode 100644 index 0000000..98240e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_flamecap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_icecap.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_icecap.jpg new file mode 100644 index 0000000..00023de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_icecap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_manathistle.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_manathistle.jpg new file mode 100644 index 0000000..fbde74d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_manathistle.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_mountainsilversage.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_mountainsilversage.jpg new file mode 100644 index 0000000..79003e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_mountainsilversage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_netherbloom.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_netherbloom.jpg new file mode 100644 index 0000000..c564dfc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_netherbloom.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_nightmareseed.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_nightmareseed.jpg new file mode 100644 index 0000000..d946abe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_nightmareseed.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_nightmarevine.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_nightmarevine.jpg new file mode 100644 index 0000000..1e760c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_nightmarevine.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_plaguebloom.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_plaguebloom.jpg new file mode 100644 index 0000000..d010fdd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_plaguebloom.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_ragveil.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_ragveil.jpg new file mode 100644 index 0000000..c1bf466 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_ragveil.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_sansamroot.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_sansamroot.jpg new file mode 100644 index 0000000..e1e81a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_sansamroot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_herb_terrocone.jpg b/other/AoWoW-master/images/icons/small/inv_misc_herb_terrocone.jpg new file mode 100644 index 0000000..637dea2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_herb_terrocone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_hook_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_hook_01.jpg new file mode 100644 index 0000000..968dc5b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_hook_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_horn_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_horn_01.jpg new file mode 100644 index 0000000..193a97d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_horn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_horn_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_horn_02.jpg new file mode 100644 index 0000000..cd4b70f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_horn_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_horn_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_horn_03.jpg new file mode 100644 index 0000000..e9e5cdd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_horn_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_idol_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_idol_01.jpg new file mode 100644 index 0000000..270ab42 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_idol_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_idol_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_idol_02.jpg new file mode 100644 index 0000000..f3bd7e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_idol_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_idol_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_idol_03.jpg new file mode 100644 index 0000000..1c20028 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_idol_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_idol_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_idol_04.jpg new file mode 100644 index 0000000..b49db2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_idol_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_idol_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_idol_05.jpg new file mode 100644 index 0000000..b42e7cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_idol_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_01.jpg new file mode 100644 index 0000000..5ba6d06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_02.jpg new file mode 100644 index 0000000..cd278c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_03.jpg new file mode 100644 index 0000000..326d50d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_04.jpg new file mode 100644 index 0000000..57e283c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_05.jpg new file mode 100644 index 0000000..b611440 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_06.jpg new file mode 100644 index 0000000..db02a5d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_07.jpg new file mode 100644 index 0000000..d4720c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_08.jpg new file mode 100644 index 0000000..3cabed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_09.jpg new file mode 100644 index 0000000..9a1db2f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_10.jpg new file mode 100644 index 0000000..f81df17 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_11.jpg new file mode 100644 index 0000000..875e71b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_12.jpg new file mode 100644 index 0000000..e11ab84 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_13.jpg new file mode 100644 index 0000000..ed6e58e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_key_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_key_14.jpg new file mode 100644 index 0000000..dddba18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_key_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_lantern_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_lantern_01.jpg new file mode 100644 index 0000000..59774f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_lantern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_01.jpg new file mode 100644 index 0000000..8981fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_02.jpg new file mode 100644 index 0000000..74711db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_03.jpg new file mode 100644 index 0000000..5c4ff1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_04.jpg new file mode 100644 index 0000000..30b5ad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_05.jpg new file mode 100644 index 0000000..713dc32 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_06.jpg new file mode 100644 index 0000000..ca68303 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_07.jpg new file mode 100644 index 0000000..7c9dca6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_08.jpg new file mode 100644 index 0000000..46a67a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_09.jpg new file mode 100644 index 0000000..0dbe239 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_10.jpg new file mode 100644 index 0000000..670e180 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_11.jpg new file mode 100644 index 0000000..2da457e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_12.jpg new file mode 100644 index 0000000..8631703 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_13.jpg new file mode 100644 index 0000000..d70454a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_14.jpg new file mode 100644 index 0000000..8c93b50 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_leatherscrap_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_luckymoneyenvelope.jpg b/other/AoWoW-master/images/icons/small/inv_misc_luckymoneyenvelope.jpg new file mode 100644 index 0000000..e296af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_luckymoneyenvelope.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_map_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_map_01.jpg new file mode 100644 index 0000000..df7f7db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_map_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_blue.jpg new file mode 100644 index 0000000..69321a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_green.jpg new file mode 100644 index 0000000..787b362 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_purple.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_purple.jpg new file mode 100644 index 0000000..0ad3968 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_red.jpg new file mode 100644 index 0000000..fa62861 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_white.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_white.jpg new file mode 100644 index 0000000..e6c278e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_white.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_yellow.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_yellow.jpg new file mode 100644 index 0000000..76e206d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelarge_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_blue.jpg new file mode 100644 index 0000000..4981972 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_green.jpg new file mode 100644 index 0000000..3654e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_purple.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_purple.jpg new file mode 100644 index 0000000..1d8ead5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_red.jpg new file mode 100644 index 0000000..e633454 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_white.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_white.jpg new file mode 100644 index 0000000..bc7e6d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_yellow.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_yellow.jpg new file mode 100644 index 0000000..8cfb8ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilelargecluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_blue.jpg new file mode 100644 index 0000000..5742836 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_green.jpg new file mode 100644 index 0000000..0f345f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_purple.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_purple.jpg new file mode 100644 index 0000000..b125d5f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_red.jpg new file mode 100644 index 0000000..82c1544 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_white.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_white.jpg new file mode 100644 index 0000000..c4f3eda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_white.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_yellow.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_yellow.jpg new file mode 100644 index 0000000..640e990 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmall_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_blue.jpg new file mode 100644 index 0000000..53a6a0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_green.jpg new file mode 100644 index 0000000..f55016a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_purple.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_purple.jpg new file mode 100644 index 0000000..1b74723 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_red.jpg new file mode 100644 index 0000000..971e3ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_white.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_white.jpg new file mode 100644 index 0000000..b7a7558 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_yellow.jpg b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_yellow.jpg new file mode 100644 index 0000000..5dca4f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_missilesmallcluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_01.jpg new file mode 100644 index 0000000..d94ea4c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_02.jpg new file mode 100644 index 0000000..e7cf3be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_03.jpg new file mode 100644 index 0000000..c870644 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_04.jpg new file mode 100644 index 0000000..2f9539f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterclaw_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterfang_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterfang_01.jpg new file mode 100644 index 0000000..317b142 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterfang_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_01.jpg new file mode 100644 index 0000000..5b27ca9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_02.jpg new file mode 100644 index 0000000..e950800 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_03.jpg new file mode 100644 index 0000000..97fd7ac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_04.jpg new file mode 100644 index 0000000..13ddc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterhead_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_01.jpg new file mode 100644 index 0000000..2651619 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_02.jpg new file mode 100644 index 0000000..e854f8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_03.jpg new file mode 100644 index 0000000..a2d9466 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_04.jpg new file mode 100644 index 0000000..83bd667 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_05.jpg new file mode 100644 index 0000000..27b255a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_06.jpg new file mode 100644 index 0000000..ea5f3d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_07.jpg new file mode 100644 index 0000000..c65e0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_08.jpg new file mode 100644 index 0000000..204313c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_09.jpg new file mode 100644 index 0000000..51209c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_10.jpg new file mode 100644 index 0000000..2f1edbb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_11.jpg new file mode 100644 index 0000000..378561a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_12.jpg new file mode 100644 index 0000000..d3170d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_13.jpg new file mode 100644 index 0000000..972fb5c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_14.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_14.jpg new file mode 100644 index 0000000..fa60d80 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_15.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_15.jpg new file mode 100644 index 0000000..bbe6bd2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_16.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_16.jpg new file mode 100644 index 0000000..11d0812 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_17.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_17.jpg new file mode 100644 index 0000000..d64a030 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_18.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_18.jpg new file mode 100644 index 0000000..ec74aeb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterscales_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monsterspidercarapace_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monsterspidercarapace_01.jpg new file mode 100644 index 0000000..0a3d50a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monsterspidercarapace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monstertail_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monstertail_01.jpg new file mode 100644 index 0000000..513c056 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monstertail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monstertail_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monstertail_02.jpg new file mode 100644 index 0000000..872c1e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monstertail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_monstertail_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_monstertail_03.jpg new file mode 100644 index 0000000..3eda9ad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_monstertail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_net_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_net_01.jpg new file mode 100644 index 0000000..60e9117 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_net_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_noose_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_noose_01.jpg new file mode 100644 index 0000000..152de57 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_noose_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_note_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_note_01.jpg new file mode 100644 index 0000000..43c943a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_note_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_note_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_note_02.jpg new file mode 100644 index 0000000..ddd47bd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_note_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_note_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_note_03.jpg new file mode 100644 index 0000000..5cb9aa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_note_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_note_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_note_04.jpg new file mode 100644 index 0000000..011e8c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_note_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_note_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_note_05.jpg new file mode 100644 index 0000000..eb4cc2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_note_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_note_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_note_06.jpg new file mode 100644 index 0000000..3a74537 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_note_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_orb_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_orb_01.jpg new file mode 100644 index 0000000..7fe118e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_orb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_orb_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_orb_02.jpg new file mode 100644 index 0000000..ea16468 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_orb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_orb_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_orb_03.jpg new file mode 100644 index 0000000..4b0bc23 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_orb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_orb_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_orb_04.jpg new file mode 100644 index 0000000..0bf3831 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_orb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_orb_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_orb_05.jpg new file mode 100644 index 0000000..c3a6d3d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_orb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_organ_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_organ_01.jpg new file mode 100644 index 0000000..0938292 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_organ_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_organ_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_organ_02.jpg new file mode 100644 index 0000000..c29f025 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_organ_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_organ_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_organ_03.jpg new file mode 100644 index 0000000..742b404 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_organ_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_organ_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_organ_04.jpg new file mode 100644 index 0000000..39bd967 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_organ_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_organ_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_organ_05.jpg new file mode 100644 index 0000000..9b6c881 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_organ_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_organ_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_organ_06.jpg new file mode 100644 index 0000000..9b24e69 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_organ_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ornatebox.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ornatebox.jpg new file mode 100644 index 0000000..0fcac0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ornatebox.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_01.jpg new file mode 100644 index 0000000..7173680 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_02.jpg new file mode 100644 index 0000000..2ecb5f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_03.jpg new file mode 100644 index 0000000..0052a46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_04.jpg new file mode 100644 index 0000000..6b59005 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_05.jpg new file mode 100644 index 0000000..e8decd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_06.jpg new file mode 100644 index 0000000..7ebb0fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_01.jpg new file mode 100644 index 0000000..33ef432 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_02.jpg new file mode 100644 index 0000000..65f692e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_03.jpg new file mode 100644 index 0000000..fc68d49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_01.jpg new file mode 100644 index 0000000..2771c22 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_02.jpg new file mode 100644 index 0000000..2aeba14 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_03.jpg new file mode 100644 index 0000000..970b83c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_04.jpg new file mode 100644 index 0000000..e542768 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_05.jpg new file mode 100644 index 0000000..5fc1630 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_bear_ruin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_01.jpg new file mode 100644 index 0000000..285fdb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_02.jpg new file mode 100644 index 0000000..632873d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_01.jpg new file mode 100644 index 0000000..e30ad30 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_02.jpg new file mode 100644 index 0000000..0c30d82 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_03.jpg new file mode 100644 index 0000000..385ef50 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_boar_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_01.jpg new file mode 100644 index 0000000..6176e3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_02.jpg new file mode 100644 index 0000000..cc3bde9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_01.jpg new file mode 100644 index 0000000..04ffd37 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_02.jpg new file mode 100644 index 0000000..31f05d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_03.jpg new file mode 100644 index 0000000..afbe34d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_04.jpg new file mode 100644 index 0000000..31138f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pelt_wolf_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_petbiscuit_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_petbiscuit_01.jpg new file mode 100644 index 0000000..1d2e965 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_petbiscuit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pheonixpet_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pheonixpet_01.jpg new file mode 100644 index 0000000..8262266 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pheonixpet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pipe_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pipe_01.jpg new file mode 100644 index 0000000..adb39e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_platnumdisks.jpg b/other/AoWoW-master/images/icons/small/inv_misc_platnumdisks.jpg new file mode 100644 index 0000000..a33d188 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_platnumdisks.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_01.jpg new file mode 100644 index 0000000..ded4bff Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_02.jpg new file mode 100644 index 0000000..34d8fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_03.jpg new file mode 100644 index 0000000..d5ee52c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_pocketwatch_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_adamantite.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_adamantite.jpg new file mode 100644 index 0000000..14f72c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_black.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_black.jpg new file mode 100644 index 0000000..f0dca85 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_black.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_blue.jpg new file mode 100644 index 0000000..72d1236 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_copper.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_copper.jpg new file mode 100644 index 0000000..ff3840c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_copper.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_feliron.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_feliron.jpg new file mode 100644 index 0000000..d0de7fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_green.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_green.jpg new file mode 100644 index 0000000..70bff0e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_green.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_iron.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_iron.jpg new file mode 100644 index 0000000..e4e8084 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_mithril.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_mithril.jpg new file mode 100644 index 0000000..33224eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_purple.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_purple.jpg new file mode 100644 index 0000000..77f0d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_thorium.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_thorium.jpg new file mode 100644 index 0000000..743793f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_powder_tin.jpg b/other/AoWoW-master/images/icons/small/inv_misc_powder_tin.jpg new file mode 100644 index 0000000..ccdf4a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_powder_tin.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_punchcards_blue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_blue.jpg new file mode 100644 index 0000000..20de8ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_punchcards_prismatic.jpg b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_prismatic.jpg new file mode 100644 index 0000000..386cf18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_prismatic.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_punchcards_red.jpg b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_red.jpg new file mode 100644 index 0000000..f3dee3e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_red.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_punchcards_white.jpg b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_white.jpg new file mode 100644 index 0000000..9d9a2ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_white.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_punchcards_yellow.jpg b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_yellow.jpg new file mode 100644 index 0000000..edf4892 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_punchcards_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_01.jpg new file mode 100644 index 0000000..73c511e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_02.jpg new file mode 100644 index 0000000..7de2ba6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_03.jpg new file mode 100644 index 0000000..33c9a00 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_04.jpg new file mode 100644 index 0000000..bd576e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_05.jpg new file mode 100644 index 0000000..bdc9115 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_qirajicrystal_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_questionmark.jpg b/other/AoWoW-master/images/icons/small/inv_misc_questionmark.jpg new file mode 100644 index 0000000..43477cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_questionmark.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_01.jpg new file mode 100644 index 0000000..8d937e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_02.jpg new file mode 100644 index 0000000..dad9f52 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_03.jpg new file mode 100644 index 0000000..b2be373 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_04.jpg new file mode 100644 index 0000000..d6afcc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_05.jpg new file mode 100644 index 0000000..cb6c926 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_06.jpg new file mode 100644 index 0000000..c450273 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_07.jpg new file mode 100644 index 0000000..7ca620a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_08.jpg new file mode 100644 index 0000000..b8ad9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_09.jpg new file mode 100644 index 0000000..4ef3749 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_quiver_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_quiver_10.jpg new file mode 100644 index 0000000..5e7c5e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_quiver_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ribbon_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ribbon_01.jpg new file mode 100644 index 0000000..bb3c922 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ribbon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_root_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_root_01.jpg new file mode 100644 index 0000000..ef544d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_root_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_root_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_root_02.jpg new file mode 100644 index 0000000..abf85cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_root_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_01.jpg new file mode 100644 index 0000000..2911792 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_02.jpg new file mode 100644 index 0000000..1ac7b7a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_03.jpg new file mode 100644 index 0000000..b3fe824 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_04.jpg new file mode 100644 index 0000000..a91cde5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_05.jpg new file mode 100644 index 0000000..52c6a58 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_06.jpg new file mode 100644 index 0000000..c9462bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_07.jpg new file mode 100644 index 0000000..606e37a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_08.jpg new file mode 100644 index 0000000..a86d1e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_09.jpg new file mode 100644 index 0000000..858d6c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_10.jpg new file mode 100644 index 0000000..8bc8810 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_11.jpg new file mode 100644 index 0000000..ed3c874 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_12.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_12.jpg new file mode 100644 index 0000000..5a32a29 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_rune_13.jpg b/other/AoWoW-master/images/icons/small/inv_misc_rune_13.jpg new file mode 100644 index 0000000..17292de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_rune_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_screwdriver_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_screwdriver_01.jpg new file mode 100644 index 0000000..c3aa956 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_screwdriver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_screwdriver_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_screwdriver_02.jpg new file mode 100644 index 0000000..316ec16 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_screwdriver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_shadowegg.jpg b/other/AoWoW-master/images/icons/small/inv_misc_shadowegg.jpg new file mode 100644 index 0000000..13d94d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_shadowegg.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_shell_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_shell_01.jpg new file mode 100644 index 0000000..a180c83 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_shell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_shell_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_shell_02.jpg new file mode 100644 index 0000000..e20fa28 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_shell_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_shell_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_shell_03.jpg new file mode 100644 index 0000000..0f45208 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_shell_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_shell_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_shell_04.jpg new file mode 100644 index 0000000..7e325bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_shell_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_shovel_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_shovel_01.jpg new file mode 100644 index 0000000..177042a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_shovel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_shovel_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_shovel_02.jpg new file mode 100644 index 0000000..bcf11bd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_shovel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_slime_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_slime_01.jpg new file mode 100644 index 0000000..378d148 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_slime_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_spineleaf_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_spineleaf_01.jpg new file mode 100644 index 0000000..03a108f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_spineleaf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_spyglass_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_spyglass_01.jpg new file mode 100644 index 0000000..ec7536c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_spyglass_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_spyglass_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_spyglass_02.jpg new file mode 100644 index 0000000..840e2cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_spyglass_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_spyglass_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_spyglass_03.jpg new file mode 100644 index 0000000..74f5d33 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_spyglass_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_01.jpg new file mode 100644 index 0000000..6dca254 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_02.jpg new file mode 100644 index 0000000..4f1ff03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_03.jpg new file mode 100644 index 0000000..42ca488 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_04.jpg new file mode 100644 index 0000000..a32ccb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_05.jpg new file mode 100644 index 0000000..54c362c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_06.jpg new file mode 100644 index 0000000..1a216aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_07.jpg new file mode 100644 index 0000000..05cbe6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_08.jpg new file mode 100644 index 0000000..c14bf13 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_09.jpg new file mode 100644 index 0000000..f417ecd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_statue_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_statue_10.jpg new file mode 100644 index 0000000..546ea28 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_statue_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_01.jpg new file mode 100644 index 0000000..3edf987 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_02.jpg new file mode 100644 index 0000000..c446354 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_03.jpg new file mode 100644 index 0000000..b322a41 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_04.jpg new file mode 100644 index 0000000..385ac8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_05.jpg new file mode 100644 index 0000000..fbfe135 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_06.jpg new file mode 100644 index 0000000..75a34ff Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_07.jpg new file mode 100644 index 0000000..6a288fb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_08.jpg new file mode 100644 index 0000000..238dacc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_09.jpg new file mode 100644 index 0000000..c416593 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_10.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_10.jpg new file mode 100644 index 0000000..4b217b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_11.jpg b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_11.jpg new file mode 100644 index 0000000..54492af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_stonetablet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierblue.jpg b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierblue.jpg new file mode 100644 index 0000000..83dea0a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierblue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_summerfest_braziergreen.jpg b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_braziergreen.jpg new file mode 100644 index 0000000..ac0c0bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_braziergreen.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierorange.jpg b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierorange.jpg new file mode 100644 index 0000000..e0fa952 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierorange.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierred.jpg b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierred.jpg new file mode 100644 index 0000000..cfa039c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_summerfest_brazierred.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_surgeonglove_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_surgeonglove_01.jpg new file mode 100644 index 0000000..698f9cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_surgeonglove_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_symbolofkings_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_symbolofkings_01.jpg new file mode 100644 index 0000000..f8f3ec6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_symbolofkings_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_01.jpg new file mode 100644 index 0000000..5f0b3d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_02.jpg new file mode 100644 index 0000000..cd6f165 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_03.jpg new file mode 100644 index 0000000..32f9410 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_04.jpg new file mode 100644 index 0000000..61b7252 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_tabardpvp_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_tabardsummer01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_tabardsummer01.jpg new file mode 100644 index 0000000..52af5b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_tabardsummer01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_tabardsummer02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_tabardsummer02.jpg new file mode 100644 index 0000000..c4e3393 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_tabardsummer02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_thegoldencheep.jpg b/other/AoWoW-master/images/icons/small/inv_misc_thegoldencheep.jpg new file mode 100644 index 0000000..65cc751 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_thegoldencheep.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_thread_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_thread_01.jpg new file mode 100644 index 0000000..f76a4c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_thread_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_throwingball_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_throwingball_01.jpg new file mode 100644 index 0000000..480aadf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_throwingball_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_darkmoon_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_darkmoon_01.jpg new file mode 100644 index 0000000..1ea2d2d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_darkmoon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_beasts_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_beasts_01.jpg new file mode 100644 index 0000000..8f0d2a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_beasts_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_blessings.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_blessings.jpg new file mode 100644 index 0000000..812069c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_blessings.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_bluedragon_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_bluedragon_01.jpg new file mode 100644 index 0000000..fd28a9b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_bluedragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_crusade.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_crusade.jpg new file mode 100644 index 0000000..b38d361 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_elemental_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_elemental_01.jpg new file mode 100644 index 0000000..940a2cd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_elemental_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_furies.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_furies.jpg new file mode 100644 index 0000000..0664869 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_furies.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_heroism_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_heroism_01.jpg new file mode 100644 index 0000000..0a826c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_heroism_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_lunacy.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_lunacy.jpg new file mode 100644 index 0000000..5d7483c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_lunacy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_madness.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_madness.jpg new file mode 100644 index 0000000..e442973 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_madness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_maelstrom_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_maelstrom_01.jpg new file mode 100644 index 0000000..6af6a28 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_maelstrom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_portal_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_portal_01.jpg new file mode 100644 index 0000000..530c363 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_portal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_stack_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_stack_01.jpg new file mode 100644 index 0000000..978f76c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_stack_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_storms.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_storms.jpg new file mode 100644 index 0000000..c13f672 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_storms.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_twistingnether_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_twistingnether_01.jpg new file mode 100644 index 0000000..e766e52 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_twistingnether_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_vengeance.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_vengeance.jpg new file mode 100644 index 0000000..3122e70 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_vengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_warlord_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_warlord_01.jpg new file mode 100644 index 0000000..26b773a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_warlord_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_wrath.jpg b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_wrath.jpg new file mode 100644 index 0000000..fc85c18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_ticket_tarot_wrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn.jpg b/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn.jpg new file mode 100644 index 0000000..8be7a7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn2.jpg b/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn2.jpg new file mode 100644 index 0000000..64c2ef7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn2.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn3.jpg b/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn3.jpg new file mode 100644 index 0000000..b2f6485 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_token_argentdawn3.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_token_honorhold.jpg b/other/AoWoW-master/images/icons/small/inv_misc_token_honorhold.jpg new file mode 100644 index 0000000..47f9c53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_token_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_token_scarletcrusade.jpg b/other/AoWoW-master/images/icons/small/inv_misc_token_scarletcrusade.jpg new file mode 100644 index 0000000..9df4daf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_token_scarletcrusade.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_token_thrallmar.jpg b/other/AoWoW-master/images/icons/small/inv_misc_token_thrallmar.jpg new file mode 100644 index 0000000..e28b7eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_token_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_01.jpg new file mode 100644 index 0000000..8791dc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_02.jpg new file mode 100644 index 0000000..1039e64 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_03.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_03.jpg new file mode 100644 index 0000000..09cbbd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_04.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_04.jpg new file mode 100644 index 0000000..d0b15b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_05.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_05.jpg new file mode 100644 index 0000000..b9002b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_06.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_06.jpg new file mode 100644 index 0000000..8590365 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_07.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_07.jpg new file mode 100644 index 0000000..11dedc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_08.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_08.jpg new file mode 100644 index 0000000..0215483 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_toy_09.jpg b/other/AoWoW-master/images/icons/small/inv_misc_toy_09.jpg new file mode 100644 index 0000000..5c20dde Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_toy_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_urn_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_urn_01.jpg new file mode 100644 index 0000000..acc6368 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_urn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_chain.jpg b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_chain.jpg new file mode 100644 index 0000000..076f9bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_cloth.jpg b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_cloth.jpg new file mode 100644 index 0000000..7791475 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_cloth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_leather.jpg b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_leather.jpg new file mode 100644 index 0000000..e286b04 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_leather.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_plate.jpg b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_plate.jpg new file mode 100644 index 0000000..e529ccd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_wartornscrap_plate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_weathermachine_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_weathermachine_01.jpg new file mode 100644 index 0000000..d78114f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_weathermachine_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_wrench_01.jpg b/other/AoWoW-master/images/icons/small/inv_misc_wrench_01.jpg new file mode 100644 index 0000000..97e4b71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_wrench_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_misc_wrench_02.jpg b/other/AoWoW-master/images/icons/small/inv_misc_wrench_02.jpg new file mode 100644 index 0000000..3c835a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_misc_wrench_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_01.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_01.jpg new file mode 100644 index 0000000..443065c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_02.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_02.jpg new file mode 100644 index 0000000..a5f84b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_03.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_03.jpg new file mode 100644 index 0000000..00041fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_04.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_04.jpg new file mode 100644 index 0000000..ca9209c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_05.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_05.jpg new file mode 100644 index 0000000..111fbe2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_06.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_06.jpg new file mode 100644 index 0000000..eed4170 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_07.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_07.jpg new file mode 100644 index 0000000..6342847 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_08.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_08.jpg new file mode 100644 index 0000000..0a71ff2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_09.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_09.jpg new file mode 100644 index 0000000..1dd837a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_10.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_10.jpg new file mode 100644 index 0000000..6546035 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_11.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_11.jpg new file mode 100644 index 0000000..d7d0564 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_12.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_12.jpg new file mode 100644 index 0000000..de24dfa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_mushroom_13.jpg b/other/AoWoW-master/images/icons/small/inv_mushroom_13.jpg new file mode 100644 index 0000000..670d79d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_mushroom_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_musket_01.jpg b/other/AoWoW-master/images/icons/small/inv_musket_01.jpg new file mode 100644 index 0000000..8badd67 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_musket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_musket_02.jpg b/other/AoWoW-master/images/icons/small/inv_musket_02.jpg new file mode 100644 index 0000000..ed7095e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_musket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_musket_03.jpg b/other/AoWoW-master/images/icons/small/inv_musket_03.jpg new file mode 100644 index 0000000..97b6377 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_musket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_musket_04.jpg b/other/AoWoW-master/images/icons/small/inv_musket_04.jpg new file mode 100644 index 0000000..a1b1f46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_musket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_netherwhelp.jpg b/other/AoWoW-master/images/icons/small/inv_netherwhelp.jpg new file mode 100644 index 0000000..1dcf964 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_netherwhelp.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_blood_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_blood_01.jpg new file mode 100644 index 0000000..e3a67c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_blood_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_blood_02.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_blood_02.jpg new file mode 100644 index 0000000..16bfd9e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_blood_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_draenei_a_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_draenei_a_01.jpg new file mode 100644 index 0000000..38f9fae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_draenei_a_02.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_draenei_a_02.jpg new file mode 100644 index 0000000..324a27a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_hyjal_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_hyjal_d_01.jpg new file mode 100644 index 0000000..7114db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_hyjal_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_02.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_02.jpg new file mode 100644 index 0000000..dae590f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_03.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_03.jpg new file mode 100644 index 0000000..e71a80b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_04.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_04.jpg new file mode 100644 index 0000000..fa1af41 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_d_01.jpg new file mode 100644 index 0000000..d6116cd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_01.jpg new file mode 100644 index 0000000..3dcc1d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_02.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_02.jpg new file mode 100644 index 0000000..d4d357f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03blue.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03blue.jpg new file mode 100644 index 0000000..bff409a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03blue.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03orange.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03orange.jpg new file mode 100644 index 0000000..5b2459d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03orange.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03white.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03white.jpg new file mode 100644 index 0000000..b4b65b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_outlandraid_03white.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_stratholme_a_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_stratholme_a_01.jpg new file mode 100644 index 0000000..7c47705 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_stratholme_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_stratholme_a_02.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_stratholme_a_02.jpg new file mode 100644 index 0000000..a51ff4b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_stratholme_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_sunwell_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_sunwell_d_01.jpg new file mode 100644 index 0000000..bb5a561 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_sunwell_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_sunwell_d_02.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_sunwell_d_02.jpg new file mode 100644 index 0000000..fea34a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_sunwell_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_zulaman_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_zulaman_d_01.jpg new file mode 100644 index 0000000..ed818fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_zulaman_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_offhand_zulaman_d_02.jpg b/other/AoWoW-master/images/icons/small/inv_offhand_zulaman_d_02.jpg new file mode 100644 index 0000000..a978435 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_offhand_zulaman_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_adamantium.jpg b/other/AoWoW-master/images/icons/small/inv_ore_adamantium.jpg new file mode 100644 index 0000000..1dd8863 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_adamantium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_adamantium_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_adamantium_01.jpg new file mode 100644 index 0000000..09badf8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_adamantium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_arcanite_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_arcanite_01.jpg new file mode 100644 index 0000000..9a9dff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_arcanite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_arcanite_02.jpg b/other/AoWoW-master/images/icons/small/inv_ore_arcanite_02.jpg new file mode 100644 index 0000000..cde5231 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_arcanite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_copper_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_copper_01.jpg new file mode 100644 index 0000000..558aa12 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_copper_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_eternium.jpg b/other/AoWoW-master/images/icons/small/inv_ore_eternium.jpg new file mode 100644 index 0000000..2cab0c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_ethernium_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_ethernium_01.jpg new file mode 100644 index 0000000..614c079 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_ethernium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_feliron.jpg b/other/AoWoW-master/images/icons/small/inv_ore_feliron.jpg new file mode 100644 index 0000000..80cd755 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_feliron_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_feliron_01.jpg new file mode 100644 index 0000000..7226120 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_feliron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_gold_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_gold_01.jpg new file mode 100644 index 0000000..2b5f02e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_gold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_iron_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_iron_01.jpg new file mode 100644 index 0000000..d64e103 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_iron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_khorium.jpg b/other/AoWoW-master/images/icons/small/inv_ore_khorium.jpg new file mode 100644 index 0000000..65edaf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_khorium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_khorium_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_khorium_01.jpg new file mode 100644 index 0000000..0eaad26 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_khorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_mithril_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_mithril_01.jpg new file mode 100644 index 0000000..7660490 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_mithril_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_mithril_02.jpg b/other/AoWoW-master/images/icons/small/inv_ore_mithril_02.jpg new file mode 100644 index 0000000..6c5360c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_mithril_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_thorium_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_thorium_01.jpg new file mode 100644 index 0000000..eb4a576 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_thorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_thorium_02.jpg b/other/AoWoW-master/images/icons/small/inv_ore_thorium_02.jpg new file mode 100644 index 0000000..1ddcc1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_thorium_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_tin_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_tin_01.jpg new file mode 100644 index 0000000..1e38f2f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_tin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_ore_truesilver_01.jpg b/other/AoWoW-master/images/icons/small/inv_ore_truesilver_01.jpg new file mode 100644 index 0000000..60a9e3d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_ore_truesilver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_01.jpg b/other/AoWoW-master/images/icons/small/inv_pants_01.jpg new file mode 100644 index 0000000..71e362c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_02.jpg b/other/AoWoW-master/images/icons/small/inv_pants_02.jpg new file mode 100644 index 0000000..366dedb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_03.jpg b/other/AoWoW-master/images/icons/small/inv_pants_03.jpg new file mode 100644 index 0000000..8692a25 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_04.jpg b/other/AoWoW-master/images/icons/small/inv_pants_04.jpg new file mode 100644 index 0000000..8d63758 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_05.jpg b/other/AoWoW-master/images/icons/small/inv_pants_05.jpg new file mode 100644 index 0000000..f5229dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_06.jpg b/other/AoWoW-master/images/icons/small/inv_pants_06.jpg new file mode 100644 index 0000000..b79faac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_07.jpg b/other/AoWoW-master/images/icons/small/inv_pants_07.jpg new file mode 100644 index 0000000..2260836 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_08.jpg b/other/AoWoW-master/images/icons/small/inv_pants_08.jpg new file mode 100644 index 0000000..04328b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_09.jpg b/other/AoWoW-master/images/icons/small/inv_pants_09.jpg new file mode 100644 index 0000000..9896bed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_10.jpg b/other/AoWoW-master/images/icons/small/inv_pants_10.jpg new file mode 100644 index 0000000..bf97c6e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_11.jpg b/other/AoWoW-master/images/icons/small/inv_pants_11.jpg new file mode 100644 index 0000000..f9edd51 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_12.jpg b/other/AoWoW-master/images/icons/small/inv_pants_12.jpg new file mode 100644 index 0000000..bd73ba2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_13.jpg b/other/AoWoW-master/images/icons/small/inv_pants_13.jpg new file mode 100644 index 0000000..b6220d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_14.jpg b/other/AoWoW-master/images/icons/small/inv_pants_14.jpg new file mode 100644 index 0000000..a215aca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_01.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_01.jpg new file mode 100644 index 0000000..b01c89d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_02.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_02.jpg new file mode 100644 index 0000000..d0b69eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_03.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_03.jpg new file mode 100644 index 0000000..22e0aee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_04.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_04.jpg new file mode 100644 index 0000000..e64bc01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_05.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_05.jpg new file mode 100644 index 0000000..5bb1f61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_06.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_06.jpg new file mode 100644 index 0000000..2f45338 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_07.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_07.jpg new file mode 100644 index 0000000..8c17952 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_08.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_08.jpg new file mode 100644 index 0000000..8a3ee0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_09.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_09.jpg new file mode 100644 index 0000000..8185596 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_10.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_10.jpg new file mode 100644 index 0000000..72ca3e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_11.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_11.jpg new file mode 100644 index 0000000..7205629 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_12.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_12.jpg new file mode 100644 index 0000000..3e0968c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_13.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_13.jpg new file mode 100644 index 0000000..4f50207 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_14.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_14.jpg new file mode 100644 index 0000000..16fb39a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_15.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_15.jpg new file mode 100644 index 0000000..ac6ec46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_16.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_16.jpg new file mode 100644 index 0000000..c465793 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_17.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_17.jpg new file mode 100644 index 0000000..8a82595 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_18.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_18.jpg new file mode 100644 index 0000000..502901d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_19.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_19.jpg new file mode 100644 index 0000000..5275467 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_20.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_20.jpg new file mode 100644 index 0000000..653eae8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_21.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_21.jpg new file mode 100644 index 0000000..2c5dc69 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_22.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_22.jpg new file mode 100644 index 0000000..4159349 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_23.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_23.jpg new file mode 100644 index 0000000..f835af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_24.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_24.jpg new file mode 100644 index 0000000..eda6960 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_25.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_25.jpg new file mode 100644 index 0000000..cb599ff Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_26.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_26.jpg new file mode 100644 index 0000000..050e779 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_27.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_27.jpg new file mode 100644 index 0000000..375bdda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_28.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_28.jpg new file mode 100644 index 0000000..c45d770 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_cloth_29.jpg b/other/AoWoW-master/images/icons/small/inv_pants_cloth_29.jpg new file mode 100644 index 0000000..27f6180 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_01.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_01.jpg new file mode 100644 index 0000000..05a8ea4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_02.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_02.jpg new file mode 100644 index 0000000..5cd761d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_03.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_03.jpg new file mode 100644 index 0000000..19b7b98 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_04.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_04.jpg new file mode 100644 index 0000000..b11d09c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_05.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_05.jpg new file mode 100644 index 0000000..7c0ece9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_06.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_06.jpg new file mode 100644 index 0000000..a8b980d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_07.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_07.jpg new file mode 100644 index 0000000..acf1f2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_08.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_08.jpg new file mode 100644 index 0000000..e060587 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_09.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_09.jpg new file mode 100644 index 0000000..b781b4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_10.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_10.jpg new file mode 100644 index 0000000..6236c77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_11.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_11.jpg new file mode 100644 index 0000000..724a980 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_12.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_12.jpg new file mode 100644 index 0000000..715060e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_13.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_13.jpg new file mode 100644 index 0000000..4418366 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_14.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_14.jpg new file mode 100644 index 0000000..b4827b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_15.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_15.jpg new file mode 100644 index 0000000..dca4808 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_16.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_16.jpg new file mode 100644 index 0000000..8c1d6ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_17.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_17.jpg new file mode 100644 index 0000000..70719b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_18.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_18.jpg new file mode 100644 index 0000000..becb219 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_19.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_19.jpg new file mode 100644 index 0000000..eb9b240 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_20.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_20.jpg new file mode 100644 index 0000000..2da5fcb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_21.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_21.jpg new file mode 100644 index 0000000..6b596bd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_22.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_22.jpg new file mode 100644 index 0000000..c7005b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_23.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_23.jpg new file mode 100644 index 0000000..ab2ce52 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_24.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_24.jpg new file mode 100644 index 0000000..04e6daf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_25.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_25.jpg new file mode 100644 index 0000000..0f61bd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_26.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_26.jpg new file mode 100644 index 0000000..d0b3129 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_leather_27.jpg b/other/AoWoW-master/images/icons/small/inv_pants_leather_27.jpg new file mode 100644 index 0000000..f183a11 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_leather_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_01.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_01.jpg new file mode 100644 index 0000000..16484bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_02.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_02.jpg new file mode 100644 index 0000000..d85cbbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_03.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_03.jpg new file mode 100644 index 0000000..e53ea68 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_04.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_04.jpg new file mode 100644 index 0000000..bcef591 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_05.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_05.jpg new file mode 100644 index 0000000..cd63560 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_06.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_06.jpg new file mode 100644 index 0000000..68c59fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_07.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_07.jpg new file mode 100644 index 0000000..338e01b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_08.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_08.jpg new file mode 100644 index 0000000..fff56b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_09.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_09.jpg new file mode 100644 index 0000000..b3428dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_10.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_10.jpg new file mode 100644 index 0000000..1701443 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_11.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_11.jpg new file mode 100644 index 0000000..2e44358 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_12.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_12.jpg new file mode 100644 index 0000000..3f3fee9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_13.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_13.jpg new file mode 100644 index 0000000..f267df9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_14.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_14.jpg new file mode 100644 index 0000000..6222126 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_15.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_15.jpg new file mode 100644 index 0000000..4bba845 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_16.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_16.jpg new file mode 100644 index 0000000..70cdba7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_17.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_17.jpg new file mode 100644 index 0000000..558890f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_18.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_18.jpg new file mode 100644 index 0000000..fbac900 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_19.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_19.jpg new file mode 100644 index 0000000..c4425dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_20.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_20.jpg new file mode 100644 index 0000000..f038fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_21.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_21.jpg new file mode 100644 index 0000000..71cb8f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_24.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_24.jpg new file mode 100644 index 0000000..01c3172 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_25.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_25.jpg new file mode 100644 index 0000000..ef143b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_mail_26.jpg b/other/AoWoW-master/images/icons/small/inv_pants_mail_26.jpg new file mode 100644 index 0000000..c315b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_mail_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_01.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_01.jpg new file mode 100644 index 0000000..8768623 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_02.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_02.jpg new file mode 100644 index 0000000..8ec3613 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_03.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_03.jpg new file mode 100644 index 0000000..016ae3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_04.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_04.jpg new file mode 100644 index 0000000..e072ffa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_05.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_05.jpg new file mode 100644 index 0000000..e0021ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_06.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_06.jpg new file mode 100644 index 0000000..6a7c025 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_07.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_07.jpg new file mode 100644 index 0000000..47dbf24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_08.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_08.jpg new file mode 100644 index 0000000..8a3de59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_09.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_09.jpg new file mode 100644 index 0000000..21c852a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_10.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_10.jpg new file mode 100644 index 0000000..8e741b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_11.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_11.jpg new file mode 100644 index 0000000..26cd54e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_12.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_12.jpg new file mode 100644 index 0000000..fd924b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_13.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_13.jpg new file mode 100644 index 0000000..9d1f7d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_14.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_14.jpg new file mode 100644 index 0000000..e59d2db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_15.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_15.jpg new file mode 100644 index 0000000..6a7ad50 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_16.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_16.jpg new file mode 100644 index 0000000..7a544dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_17.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_17.jpg new file mode 100644 index 0000000..6086fd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_18.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_18.jpg new file mode 100644 index 0000000..8efa3d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_19.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_19.jpg new file mode 100644 index 0000000..416874e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_20.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_20.jpg new file mode 100644 index 0000000..f0747f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_21.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_21.jpg new file mode 100644 index 0000000..15e74b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_22.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_22.jpg new file mode 100644 index 0000000..ecc54bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_23.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_23.jpg new file mode 100644 index 0000000..695150f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_24.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_24.jpg new file mode 100644 index 0000000..f53fe12 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_25.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_25.jpg new file mode 100644 index 0000000..32eea49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_26.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_26.jpg new file mode 100644 index 0000000..dd9ccc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_27.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_27.jpg new file mode 100644 index 0000000..026365c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_28.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_28.jpg new file mode 100644 index 0000000..0f44bc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_plate_29.jpg b/other/AoWoW-master/images/icons/small/inv_pants_plate_29.jpg new file mode 100644 index 0000000..82737f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_plate_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pants_wolf.jpg b/other/AoWoW-master/images/icons/small/inv_pants_wolf.jpg new file mode 100644 index 0000000..5668567 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pants_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pick_01.jpg b/other/AoWoW-master/images/icons/small/inv_pick_01.jpg new file mode 100644 index 0000000..bcbac7c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pick_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pick_02.jpg b/other/AoWoW-master/images/icons/small/inv_pick_02.jpg new file mode 100644 index 0000000..82483e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pick_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pick_03.jpg b/other/AoWoW-master/images/icons/small/inv_pick_03.jpg new file mode 100644 index 0000000..0f81c1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pick_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_pick_05.jpg b/other/AoWoW-master/images/icons/small/inv_pick_05.jpg new file mode 100644 index 0000000..39a0f3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_pick_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_poison_mindnumbing.jpg b/other/AoWoW-master/images/icons/small/inv_poison_mindnumbing.jpg new file mode 100644 index 0000000..4a05c06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_poison_mindnumbing.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_01.jpg b/other/AoWoW-master/images/icons/small/inv_potion_01.jpg new file mode 100644 index 0000000..0a438b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_02.jpg b/other/AoWoW-master/images/icons/small/inv_potion_02.jpg new file mode 100644 index 0000000..f89bc4e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_03.jpg b/other/AoWoW-master/images/icons/small/inv_potion_03.jpg new file mode 100644 index 0000000..3efab80 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_04.jpg b/other/AoWoW-master/images/icons/small/inv_potion_04.jpg new file mode 100644 index 0000000..1e939c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_05.jpg b/other/AoWoW-master/images/icons/small/inv_potion_05.jpg new file mode 100644 index 0000000..e4ddf50 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_06.jpg b/other/AoWoW-master/images/icons/small/inv_potion_06.jpg new file mode 100644 index 0000000..882aa99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_07.jpg b/other/AoWoW-master/images/icons/small/inv_potion_07.jpg new file mode 100644 index 0000000..11bd111 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_08.jpg b/other/AoWoW-master/images/icons/small/inv_potion_08.jpg new file mode 100644 index 0000000..0a5778c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_09.jpg b/other/AoWoW-master/images/icons/small/inv_potion_09.jpg new file mode 100644 index 0000000..da3d973 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_10.jpg b/other/AoWoW-master/images/icons/small/inv_potion_10.jpg new file mode 100644 index 0000000..179d17d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_100.jpg b/other/AoWoW-master/images/icons/small/inv_potion_100.jpg new file mode 100644 index 0000000..ad2a25d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_100.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_101.jpg b/other/AoWoW-master/images/icons/small/inv_potion_101.jpg new file mode 100644 index 0000000..eacdcbe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_101.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_102.jpg b/other/AoWoW-master/images/icons/small/inv_potion_102.jpg new file mode 100644 index 0000000..265853b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_102.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_103.jpg b/other/AoWoW-master/images/icons/small/inv_potion_103.jpg new file mode 100644 index 0000000..0ef0c1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_103.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_104.jpg b/other/AoWoW-master/images/icons/small/inv_potion_104.jpg new file mode 100644 index 0000000..3a8d6e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_104.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_105.jpg b/other/AoWoW-master/images/icons/small/inv_potion_105.jpg new file mode 100644 index 0000000..08af171 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_105.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_106.jpg b/other/AoWoW-master/images/icons/small/inv_potion_106.jpg new file mode 100644 index 0000000..ab5db44 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_106.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_107.jpg b/other/AoWoW-master/images/icons/small/inv_potion_107.jpg new file mode 100644 index 0000000..0d8895e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_107.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_108.jpg b/other/AoWoW-master/images/icons/small/inv_potion_108.jpg new file mode 100644 index 0000000..0587f67 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_108.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_109.jpg b/other/AoWoW-master/images/icons/small/inv_potion_109.jpg new file mode 100644 index 0000000..fe197d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_109.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_11.jpg b/other/AoWoW-master/images/icons/small/inv_potion_11.jpg new file mode 100644 index 0000000..70eecd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_110.jpg b/other/AoWoW-master/images/icons/small/inv_potion_110.jpg new file mode 100644 index 0000000..d666548 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_110.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_111.jpg b/other/AoWoW-master/images/icons/small/inv_potion_111.jpg new file mode 100644 index 0000000..3cbbc61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_111.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_112.jpg b/other/AoWoW-master/images/icons/small/inv_potion_112.jpg new file mode 100644 index 0000000..399bf89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_112.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_113.jpg b/other/AoWoW-master/images/icons/small/inv_potion_113.jpg new file mode 100644 index 0000000..6e7ab02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_113.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_114.jpg b/other/AoWoW-master/images/icons/small/inv_potion_114.jpg new file mode 100644 index 0000000..4f93052 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_114.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_115.jpg b/other/AoWoW-master/images/icons/small/inv_potion_115.jpg new file mode 100644 index 0000000..9aaf3e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_115.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_116.jpg b/other/AoWoW-master/images/icons/small/inv_potion_116.jpg new file mode 100644 index 0000000..c0a975e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_116.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_117.jpg b/other/AoWoW-master/images/icons/small/inv_potion_117.jpg new file mode 100644 index 0000000..439a995 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_117.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_118.jpg b/other/AoWoW-master/images/icons/small/inv_potion_118.jpg new file mode 100644 index 0000000..d3f8eec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_118.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_119.jpg b/other/AoWoW-master/images/icons/small/inv_potion_119.jpg new file mode 100644 index 0000000..dc94b0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_119.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_12.jpg b/other/AoWoW-master/images/icons/small/inv_potion_12.jpg new file mode 100644 index 0000000..0bc2ce9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_120.jpg b/other/AoWoW-master/images/icons/small/inv_potion_120.jpg new file mode 100644 index 0000000..c732f4f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_120.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_121.jpg b/other/AoWoW-master/images/icons/small/inv_potion_121.jpg new file mode 100644 index 0000000..0654f38 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_121.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_122.jpg b/other/AoWoW-master/images/icons/small/inv_potion_122.jpg new file mode 100644 index 0000000..4b50b34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_122.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_123.jpg b/other/AoWoW-master/images/icons/small/inv_potion_123.jpg new file mode 100644 index 0000000..7383352 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_123.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_124.jpg b/other/AoWoW-master/images/icons/small/inv_potion_124.jpg new file mode 100644 index 0000000..9d03a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_124.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_125.jpg b/other/AoWoW-master/images/icons/small/inv_potion_125.jpg new file mode 100644 index 0000000..64fef0c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_125.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_126.jpg b/other/AoWoW-master/images/icons/small/inv_potion_126.jpg new file mode 100644 index 0000000..8d2a3e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_126.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_127.jpg b/other/AoWoW-master/images/icons/small/inv_potion_127.jpg new file mode 100644 index 0000000..54e71ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_127.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_128.jpg b/other/AoWoW-master/images/icons/small/inv_potion_128.jpg new file mode 100644 index 0000000..8058b90 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_128.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_129.jpg b/other/AoWoW-master/images/icons/small/inv_potion_129.jpg new file mode 100644 index 0000000..e7be820 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_129.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_13.jpg b/other/AoWoW-master/images/icons/small/inv_potion_13.jpg new file mode 100644 index 0000000..250f52f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_130.jpg b/other/AoWoW-master/images/icons/small/inv_potion_130.jpg new file mode 100644 index 0000000..3a4d656 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_130.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_131.jpg b/other/AoWoW-master/images/icons/small/inv_potion_131.jpg new file mode 100644 index 0000000..2c498c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_131.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_132.jpg b/other/AoWoW-master/images/icons/small/inv_potion_132.jpg new file mode 100644 index 0000000..56b3808 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_132.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_133.jpg b/other/AoWoW-master/images/icons/small/inv_potion_133.jpg new file mode 100644 index 0000000..b757753 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_133.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_134.jpg b/other/AoWoW-master/images/icons/small/inv_potion_134.jpg new file mode 100644 index 0000000..76bb060 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_134.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_135.jpg b/other/AoWoW-master/images/icons/small/inv_potion_135.jpg new file mode 100644 index 0000000..ac41c89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_135.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_136.jpg b/other/AoWoW-master/images/icons/small/inv_potion_136.jpg new file mode 100644 index 0000000..110b27f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_136.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_137.jpg b/other/AoWoW-master/images/icons/small/inv_potion_137.jpg new file mode 100644 index 0000000..8ed7b42 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_137.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_138.jpg b/other/AoWoW-master/images/icons/small/inv_potion_138.jpg new file mode 100644 index 0000000..648da3b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_138.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_139.jpg b/other/AoWoW-master/images/icons/small/inv_potion_139.jpg new file mode 100644 index 0000000..84c01cf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_139.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_14.jpg b/other/AoWoW-master/images/icons/small/inv_potion_14.jpg new file mode 100644 index 0000000..8ae9303 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_140.jpg b/other/AoWoW-master/images/icons/small/inv_potion_140.jpg new file mode 100644 index 0000000..2cd9eb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_140.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_141.jpg b/other/AoWoW-master/images/icons/small/inv_potion_141.jpg new file mode 100644 index 0000000..66f812a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_141.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_142.jpg b/other/AoWoW-master/images/icons/small/inv_potion_142.jpg new file mode 100644 index 0000000..cb214d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_142.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_143.jpg b/other/AoWoW-master/images/icons/small/inv_potion_143.jpg new file mode 100644 index 0000000..2bc897a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_143.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_144.jpg b/other/AoWoW-master/images/icons/small/inv_potion_144.jpg new file mode 100644 index 0000000..b1965d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_144.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_145.jpg b/other/AoWoW-master/images/icons/small/inv_potion_145.jpg new file mode 100644 index 0000000..c051e20 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_145.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_146.jpg b/other/AoWoW-master/images/icons/small/inv_potion_146.jpg new file mode 100644 index 0000000..9d1ee06 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_146.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_147.jpg b/other/AoWoW-master/images/icons/small/inv_potion_147.jpg new file mode 100644 index 0000000..4c68abe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_147.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_148.jpg b/other/AoWoW-master/images/icons/small/inv_potion_148.jpg new file mode 100644 index 0000000..a753b12 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_148.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_149.jpg b/other/AoWoW-master/images/icons/small/inv_potion_149.jpg new file mode 100644 index 0000000..e9bbfee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_149.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_15.jpg b/other/AoWoW-master/images/icons/small/inv_potion_15.jpg new file mode 100644 index 0000000..277a7d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_150.jpg b/other/AoWoW-master/images/icons/small/inv_potion_150.jpg new file mode 100644 index 0000000..5af9e2c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_150.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_151.jpg b/other/AoWoW-master/images/icons/small/inv_potion_151.jpg new file mode 100644 index 0000000..da67304 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_151.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_152.jpg b/other/AoWoW-master/images/icons/small/inv_potion_152.jpg new file mode 100644 index 0000000..5c6e277 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_152.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_153.jpg b/other/AoWoW-master/images/icons/small/inv_potion_153.jpg new file mode 100644 index 0000000..4935b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_153.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_154.jpg b/other/AoWoW-master/images/icons/small/inv_potion_154.jpg new file mode 100644 index 0000000..bb8b8b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_154.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_155.jpg b/other/AoWoW-master/images/icons/small/inv_potion_155.jpg new file mode 100644 index 0000000..dd08a65 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_155.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_156.jpg b/other/AoWoW-master/images/icons/small/inv_potion_156.jpg new file mode 100644 index 0000000..ce4c880 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_156.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_157.jpg b/other/AoWoW-master/images/icons/small/inv_potion_157.jpg new file mode 100644 index 0000000..a0775ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_157.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_158.jpg b/other/AoWoW-master/images/icons/small/inv_potion_158.jpg new file mode 100644 index 0000000..0ae6fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_158.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_159.jpg b/other/AoWoW-master/images/icons/small/inv_potion_159.jpg new file mode 100644 index 0000000..927889a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_159.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_16.jpg b/other/AoWoW-master/images/icons/small/inv_potion_16.jpg new file mode 100644 index 0000000..ebffcca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_160.jpg b/other/AoWoW-master/images/icons/small/inv_potion_160.jpg new file mode 100644 index 0000000..50b2e0a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_160.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_161.jpg b/other/AoWoW-master/images/icons/small/inv_potion_161.jpg new file mode 100644 index 0000000..cf1afc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_161.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_162.jpg b/other/AoWoW-master/images/icons/small/inv_potion_162.jpg new file mode 100644 index 0000000..a916da2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_162.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_163.jpg b/other/AoWoW-master/images/icons/small/inv_potion_163.jpg new file mode 100644 index 0000000..85589db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_163.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_164.jpg b/other/AoWoW-master/images/icons/small/inv_potion_164.jpg new file mode 100644 index 0000000..453f042 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_164.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_165.jpg b/other/AoWoW-master/images/icons/small/inv_potion_165.jpg new file mode 100644 index 0000000..e215b5c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_165.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_166.jpg b/other/AoWoW-master/images/icons/small/inv_potion_166.jpg new file mode 100644 index 0000000..c99b374 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_166.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_167.jpg b/other/AoWoW-master/images/icons/small/inv_potion_167.jpg new file mode 100644 index 0000000..ac5bd45 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_167.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_168.jpg b/other/AoWoW-master/images/icons/small/inv_potion_168.jpg new file mode 100644 index 0000000..db76691 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_168.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_17.jpg b/other/AoWoW-master/images/icons/small/inv_potion_17.jpg new file mode 100644 index 0000000..d436994 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_18.jpg b/other/AoWoW-master/images/icons/small/inv_potion_18.jpg new file mode 100644 index 0000000..7787872 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_19.jpg b/other/AoWoW-master/images/icons/small/inv_potion_19.jpg new file mode 100644 index 0000000..8f4cede Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_20.jpg b/other/AoWoW-master/images/icons/small/inv_potion_20.jpg new file mode 100644 index 0000000..c12d1bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_21.jpg b/other/AoWoW-master/images/icons/small/inv_potion_21.jpg new file mode 100644 index 0000000..6dd485c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_22.jpg b/other/AoWoW-master/images/icons/small/inv_potion_22.jpg new file mode 100644 index 0000000..909f607 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_23.jpg b/other/AoWoW-master/images/icons/small/inv_potion_23.jpg new file mode 100644 index 0000000..06793ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_24.jpg b/other/AoWoW-master/images/icons/small/inv_potion_24.jpg new file mode 100644 index 0000000..2c4abf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_25.jpg b/other/AoWoW-master/images/icons/small/inv_potion_25.jpg new file mode 100644 index 0000000..418296a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_26.jpg b/other/AoWoW-master/images/icons/small/inv_potion_26.jpg new file mode 100644 index 0000000..59ee981 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_27.jpg b/other/AoWoW-master/images/icons/small/inv_potion_27.jpg new file mode 100644 index 0000000..9031a48 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_28.jpg b/other/AoWoW-master/images/icons/small/inv_potion_28.jpg new file mode 100644 index 0000000..92880ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_29.jpg b/other/AoWoW-master/images/icons/small/inv_potion_29.jpg new file mode 100644 index 0000000..5ec7bf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_30.jpg b/other/AoWoW-master/images/icons/small/inv_potion_30.jpg new file mode 100644 index 0000000..2a7e0b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_31.jpg b/other/AoWoW-master/images/icons/small/inv_potion_31.jpg new file mode 100644 index 0000000..a80a8c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_32.jpg b/other/AoWoW-master/images/icons/small/inv_potion_32.jpg new file mode 100644 index 0000000..db1b84e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_33.jpg b/other/AoWoW-master/images/icons/small/inv_potion_33.jpg new file mode 100644 index 0000000..efe0809 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_34.jpg b/other/AoWoW-master/images/icons/small/inv_potion_34.jpg new file mode 100644 index 0000000..08543da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_35.jpg b/other/AoWoW-master/images/icons/small/inv_potion_35.jpg new file mode 100644 index 0000000..6c00451 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_36.jpg b/other/AoWoW-master/images/icons/small/inv_potion_36.jpg new file mode 100644 index 0000000..129bbfb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_37.jpg b/other/AoWoW-master/images/icons/small/inv_potion_37.jpg new file mode 100644 index 0000000..2138eae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_38.jpg b/other/AoWoW-master/images/icons/small/inv_potion_38.jpg new file mode 100644 index 0000000..3bda1de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_39.jpg b/other/AoWoW-master/images/icons/small/inv_potion_39.jpg new file mode 100644 index 0000000..fca171b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_40.jpg b/other/AoWoW-master/images/icons/small/inv_potion_40.jpg new file mode 100644 index 0000000..f678b99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_41.jpg b/other/AoWoW-master/images/icons/small/inv_potion_41.jpg new file mode 100644 index 0000000..af7a821 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_42.jpg b/other/AoWoW-master/images/icons/small/inv_potion_42.jpg new file mode 100644 index 0000000..edbd2a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_43.jpg b/other/AoWoW-master/images/icons/small/inv_potion_43.jpg new file mode 100644 index 0000000..7b371d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_44.jpg b/other/AoWoW-master/images/icons/small/inv_potion_44.jpg new file mode 100644 index 0000000..8718b18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_45.jpg b/other/AoWoW-master/images/icons/small/inv_potion_45.jpg new file mode 100644 index 0000000..11d84c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_46.jpg b/other/AoWoW-master/images/icons/small/inv_potion_46.jpg new file mode 100644 index 0000000..a564188 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_47.jpg b/other/AoWoW-master/images/icons/small/inv_potion_47.jpg new file mode 100644 index 0000000..01d3c66 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_48.jpg b/other/AoWoW-master/images/icons/small/inv_potion_48.jpg new file mode 100644 index 0000000..e2ad6b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_49.jpg b/other/AoWoW-master/images/icons/small/inv_potion_49.jpg new file mode 100644 index 0000000..9dd8b69 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_50.jpg b/other/AoWoW-master/images/icons/small/inv_potion_50.jpg new file mode 100644 index 0000000..74e0bd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_51.jpg b/other/AoWoW-master/images/icons/small/inv_potion_51.jpg new file mode 100644 index 0000000..8bf1ef6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_52.jpg b/other/AoWoW-master/images/icons/small/inv_potion_52.jpg new file mode 100644 index 0000000..fb39ca2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_53.jpg b/other/AoWoW-master/images/icons/small/inv_potion_53.jpg new file mode 100644 index 0000000..ca71eb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_54.jpg b/other/AoWoW-master/images/icons/small/inv_potion_54.jpg new file mode 100644 index 0000000..570616d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_55.jpg b/other/AoWoW-master/images/icons/small/inv_potion_55.jpg new file mode 100644 index 0000000..35b221b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_56.jpg b/other/AoWoW-master/images/icons/small/inv_potion_56.jpg new file mode 100644 index 0000000..c1b07c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_57.jpg b/other/AoWoW-master/images/icons/small/inv_potion_57.jpg new file mode 100644 index 0000000..7cb606a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_58.jpg b/other/AoWoW-master/images/icons/small/inv_potion_58.jpg new file mode 100644 index 0000000..30b1d09 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_59.jpg b/other/AoWoW-master/images/icons/small/inv_potion_59.jpg new file mode 100644 index 0000000..39994a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_60.jpg b/other/AoWoW-master/images/icons/small/inv_potion_60.jpg new file mode 100644 index 0000000..f3ad914 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_61.jpg b/other/AoWoW-master/images/icons/small/inv_potion_61.jpg new file mode 100644 index 0000000..5cb9d33 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_62.jpg b/other/AoWoW-master/images/icons/small/inv_potion_62.jpg new file mode 100644 index 0000000..1e3a858 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_63.jpg b/other/AoWoW-master/images/icons/small/inv_potion_63.jpg new file mode 100644 index 0000000..ad81946 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_64.jpg b/other/AoWoW-master/images/icons/small/inv_potion_64.jpg new file mode 100644 index 0000000..e58996d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_65.jpg b/other/AoWoW-master/images/icons/small/inv_potion_65.jpg new file mode 100644 index 0000000..ce27656 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_66.jpg b/other/AoWoW-master/images/icons/small/inv_potion_66.jpg new file mode 100644 index 0000000..863f44f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_67.jpg b/other/AoWoW-master/images/icons/small/inv_potion_67.jpg new file mode 100644 index 0000000..4418c03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_68.jpg b/other/AoWoW-master/images/icons/small/inv_potion_68.jpg new file mode 100644 index 0000000..4a7d6b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_69.jpg b/other/AoWoW-master/images/icons/small/inv_potion_69.jpg new file mode 100644 index 0000000..7144238 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_70.jpg b/other/AoWoW-master/images/icons/small/inv_potion_70.jpg new file mode 100644 index 0000000..bc0768e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_70.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_71.jpg b/other/AoWoW-master/images/icons/small/inv_potion_71.jpg new file mode 100644 index 0000000..49c859d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_72.jpg b/other/AoWoW-master/images/icons/small/inv_potion_72.jpg new file mode 100644 index 0000000..f520570 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_73.jpg b/other/AoWoW-master/images/icons/small/inv_potion_73.jpg new file mode 100644 index 0000000..44d26b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_74.jpg b/other/AoWoW-master/images/icons/small/inv_potion_74.jpg new file mode 100644 index 0000000..23a4ace Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_75.jpg b/other/AoWoW-master/images/icons/small/inv_potion_75.jpg new file mode 100644 index 0000000..d2dd3bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_75.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_76.jpg b/other/AoWoW-master/images/icons/small/inv_potion_76.jpg new file mode 100644 index 0000000..926c903 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_76.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_77.jpg b/other/AoWoW-master/images/icons/small/inv_potion_77.jpg new file mode 100644 index 0000000..6087062 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_77.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_78.jpg b/other/AoWoW-master/images/icons/small/inv_potion_78.jpg new file mode 100644 index 0000000..f0e80f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_78.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_79.jpg b/other/AoWoW-master/images/icons/small/inv_potion_79.jpg new file mode 100644 index 0000000..de6169d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_79.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_80.jpg b/other/AoWoW-master/images/icons/small/inv_potion_80.jpg new file mode 100644 index 0000000..101bc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_80.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_81.jpg b/other/AoWoW-master/images/icons/small/inv_potion_81.jpg new file mode 100644 index 0000000..6ddff08 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_81.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_82.jpg b/other/AoWoW-master/images/icons/small/inv_potion_82.jpg new file mode 100644 index 0000000..6124847 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_82.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_83.jpg b/other/AoWoW-master/images/icons/small/inv_potion_83.jpg new file mode 100644 index 0000000..50e0149 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_83.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_84.jpg b/other/AoWoW-master/images/icons/small/inv_potion_84.jpg new file mode 100644 index 0000000..2cd2185 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_84.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_85.jpg b/other/AoWoW-master/images/icons/small/inv_potion_85.jpg new file mode 100644 index 0000000..7b22ab5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_85.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_86.jpg b/other/AoWoW-master/images/icons/small/inv_potion_86.jpg new file mode 100644 index 0000000..e4929f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_86.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_87.jpg b/other/AoWoW-master/images/icons/small/inv_potion_87.jpg new file mode 100644 index 0000000..9d3b58b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_87.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_88.jpg b/other/AoWoW-master/images/icons/small/inv_potion_88.jpg new file mode 100644 index 0000000..15725a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_88.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_89.jpg b/other/AoWoW-master/images/icons/small/inv_potion_89.jpg new file mode 100644 index 0000000..cb32bac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_89.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_90.jpg b/other/AoWoW-master/images/icons/small/inv_potion_90.jpg new file mode 100644 index 0000000..bef82f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_90.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_91.jpg b/other/AoWoW-master/images/icons/small/inv_potion_91.jpg new file mode 100644 index 0000000..9a7cd7c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_91.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_92.jpg b/other/AoWoW-master/images/icons/small/inv_potion_92.jpg new file mode 100644 index 0000000..19e2bd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_92.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_93.jpg b/other/AoWoW-master/images/icons/small/inv_potion_93.jpg new file mode 100644 index 0000000..dc8efa3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_93.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_94.jpg b/other/AoWoW-master/images/icons/small/inv_potion_94.jpg new file mode 100644 index 0000000..c9618dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_94.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_95.jpg b/other/AoWoW-master/images/icons/small/inv_potion_95.jpg new file mode 100644 index 0000000..45c50b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_95.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_96.jpg b/other/AoWoW-master/images/icons/small/inv_potion_96.jpg new file mode 100644 index 0000000..2517d71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_96.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_97.jpg b/other/AoWoW-master/images/icons/small/inv_potion_97.jpg new file mode 100644 index 0000000..f4fbac1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_97.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_98.jpg b/other/AoWoW-master/images/icons/small/inv_potion_98.jpg new file mode 100644 index 0000000..1f09f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_98.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_potion_99.jpg b/other/AoWoW-master/images/icons/small/inv_potion_99.jpg new file mode 100644 index 0000000..7b0ccb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_potion_99.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_bindingscommand.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_bindingscommand.jpg new file mode 100644 index 0000000..5e167a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_bindingscommand.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_bindingsdominance.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_bindingsdominance.jpg new file mode 100644 index 0000000..5cf4e7d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_bindingsdominance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_carapaceoldgod.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_carapaceoldgod.jpg new file mode 100644 index 0000000..55b797e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_carapaceoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_drapemartial.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_drapemartial.jpg new file mode 100644 index 0000000..0bf104e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_drapemartial.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_draperegal.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_draperegal.jpg new file mode 100644 index 0000000..e2921c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_draperegal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_hiltornate.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_hiltornate.jpg new file mode 100644 index 0000000..1737f80 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_hiltornate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_hiltspiked.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_hiltspiked.jpg new file mode 100644 index 0000000..6ba966f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_hiltspiked.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_huskoldgod.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_huskoldgod.jpg new file mode 100644 index 0000000..95a5638 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_huskoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_jewelblessed.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelblessed.jpg new file mode 100644 index 0000000..ade5209 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelblessed.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_jewelencased.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelencased.jpg new file mode 100644 index 0000000..f329584 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelencased.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_jewelengraved.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelengraved.jpg new file mode 100644 index 0000000..daa0fc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelengraved.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_jewelglyphed.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelglyphed.jpg new file mode 100644 index 0000000..e99ee5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_jewelglyphed.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_ourohide.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_ourohide.jpg new file mode 100644 index 0000000..84c313b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_ourohide.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_ringceremonial.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_ringceremonial.jpg new file mode 100644 index 0000000..259ab85 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_ringceremonial.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_ringmagisterial.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_ringmagisterial.jpg new file mode 100644 index 0000000..4f99f91 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_ringmagisterial.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qiraj_skinsandworm.jpg b/other/AoWoW-master/images/icons/small/inv_qiraj_skinsandworm.jpg new file mode 100644 index 0000000..268b5b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qiraj_skinsandworm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_alabaster.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_alabaster.jpg new file mode 100644 index 0000000..33bfb9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_alabaster.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_amber.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_amber.jpg new file mode 100644 index 0000000..f489957 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_amber.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_azure.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_azure.jpg new file mode 100644 index 0000000..9ae3c70 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_azure.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_death.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_death.jpg new file mode 100644 index 0000000..c38f96c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_death.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_jasper.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_jasper.jpg new file mode 100644 index 0000000..f531904 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_jasper.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_lambent.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_lambent.jpg new file mode 100644 index 0000000..861c249 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_lambent.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_life.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_life.jpg new file mode 100644 index 0000000..191e072 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_life.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_night.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_night.jpg new file mode 100644 index 0000000..2bde29d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_night.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_obsidian.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_obsidian.jpg new file mode 100644 index 0000000..d77d06f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_obsidian.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_onyx.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_onyx.jpg new file mode 100644 index 0000000..6a5f25f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_onyx.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_rebirth.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_rebirth.jpg new file mode 100644 index 0000000..9320300 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_rebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_sage.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_sage.jpg new file mode 100644 index 0000000..4fb7941 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_sage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_strife.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_strife.jpg new file mode 100644 index 0000000..5de3995 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_strife.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_sun.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_sun.jpg new file mode 100644 index 0000000..81036a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_sun.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_vermillion.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_vermillion.jpg new file mode 100644 index 0000000..4d97d85 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_vermillion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_qirajidol_war.jpg b/other/AoWoW-master/images/icons/small/inv_qirajidol_war.jpg new file mode 100644 index 0000000..e07efaf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_qirajidol_war.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_idolofferocity.jpg b/other/AoWoW-master/images/icons/small/inv_relics_idolofferocity.jpg new file mode 100644 index 0000000..3f89a1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_idolofferocity.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_idolofhealth.jpg b/other/AoWoW-master/images/icons/small/inv_relics_idolofhealth.jpg new file mode 100644 index 0000000..56a06b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_idolofhealth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_idolofrejuvenation.jpg b/other/AoWoW-master/images/icons/small/inv_relics_idolofrejuvenation.jpg new file mode 100644 index 0000000..88b664a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_idolofrejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_libramofgrace.jpg b/other/AoWoW-master/images/icons/small/inv_relics_libramofgrace.jpg new file mode 100644 index 0000000..d233e02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_libramofgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_libramofhope.jpg b/other/AoWoW-master/images/icons/small/inv_relics_libramofhope.jpg new file mode 100644 index 0000000..0f268c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_libramofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_libramoftruth.jpg b/other/AoWoW-master/images/icons/small/inv_relics_libramoftruth.jpg new file mode 100644 index 0000000..fedbf77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_libramoftruth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_totemoflife.jpg b/other/AoWoW-master/images/icons/small/inv_relics_totemoflife.jpg new file mode 100644 index 0000000..c4df34d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_totemoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_totemofrage.jpg b/other/AoWoW-master/images/icons/small/inv_relics_totemofrage.jpg new file mode 100644 index 0000000..14276de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_totemofrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_relics_totemofrebirth.jpg b/other/AoWoW-master/images/icons/small/inv_relics_totemofrebirth.jpg new file mode 100644 index 0000000..85a9613 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_relics_totemofrebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rod_adamantite.jpg b/other/AoWoW-master/images/icons/small/inv_rod_adamantite.jpg new file mode 100644 index 0000000..03892eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rod_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rod_enchantedadamantite.jpg b/other/AoWoW-master/images/icons/small/inv_rod_enchantedadamantite.jpg new file mode 100644 index 0000000..d0239f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rod_enchantedadamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rod_enchantedeternium.jpg b/other/AoWoW-master/images/icons/small/inv_rod_enchantedeternium.jpg new file mode 100644 index 0000000..b6421f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rod_enchantedeternium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rod_enchantedfelsteel.jpg b/other/AoWoW-master/images/icons/small/inv_rod_enchantedfelsteel.jpg new file mode 100644 index 0000000..d056e11 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rod_enchantedfelsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rod_eternium.jpg b/other/AoWoW-master/images/icons/small/inv_rod_eternium.jpg new file mode 100644 index 0000000..21e7faa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rod_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rod_felsteel.jpg b/other/AoWoW-master/images/icons/small/inv_rod_felsteel.jpg new file mode 100644 index 0000000..f8cff87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rod_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rosebouquet01.jpg b/other/AoWoW-master/images/icons/small/inv_rosebouquet01.jpg new file mode 100644 index 0000000..5426b4a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rosebouquet01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_rosepotted01.jpg b/other/AoWoW-master/images/icons/small/inv_rosepotted01.jpg new file mode 100644 index 0000000..9f7950f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_rosepotted01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_bone.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_bone.jpg new file mode 100644 index 0000000..8ec1b09 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_bone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_bronze.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_bronze.jpg new file mode 100644 index 0000000..62c53a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_clay.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_clay.jpg new file mode 100644 index 0000000..66962ff Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_clay.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_crystal.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_crystal.jpg new file mode 100644 index 0000000..98585ab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_gold.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_gold.jpg new file mode 100644 index 0000000..fe86399 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_ivory.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_ivory.jpg new file mode 100644 index 0000000..8ec1b09 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_ivory.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_silver.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_silver.jpg new file mode 100644 index 0000000..db7b540 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scarab_stone.jpg b/other/AoWoW-master/images/icons/small/inv_scarab_stone.jpg new file mode 100644 index 0000000..65db79b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scarab_stone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_01.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_01.jpg new file mode 100644 index 0000000..7c5556c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_02.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_02.jpg new file mode 100644 index 0000000..c6c9dea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_03.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_03.jpg new file mode 100644 index 0000000..284aa8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_04.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_04.jpg new file mode 100644 index 0000000..d948924 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_05.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_05.jpg new file mode 100644 index 0000000..3a12d89 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_06.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_06.jpg new file mode 100644 index 0000000..cb03ccb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_07.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_07.jpg new file mode 100644 index 0000000..706d680 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_08.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_08.jpg new file mode 100644 index 0000000..d46cc1e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_09.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_09.jpg new file mode 100644 index 0000000..9bbd143 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_scroll_10.jpg b/other/AoWoW-master/images/icons/small/inv_scroll_10.jpg new file mode 100644 index 0000000..b203933 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_scroll_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_01.jpg b/other/AoWoW-master/images/icons/small/inv_shield_01.jpg new file mode 100644 index 0000000..4ff3a9d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_02.jpg b/other/AoWoW-master/images/icons/small/inv_shield_02.jpg new file mode 100644 index 0000000..1e6104f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_03.jpg b/other/AoWoW-master/images/icons/small/inv_shield_03.jpg new file mode 100644 index 0000000..62d5b24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_04.jpg b/other/AoWoW-master/images/icons/small/inv_shield_04.jpg new file mode 100644 index 0000000..9329387 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_05.jpg b/other/AoWoW-master/images/icons/small/inv_shield_05.jpg new file mode 100644 index 0000000..3cccf24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_06.jpg b/other/AoWoW-master/images/icons/small/inv_shield_06.jpg new file mode 100644 index 0000000..325be44 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_07.jpg b/other/AoWoW-master/images/icons/small/inv_shield_07.jpg new file mode 100644 index 0000000..afd184f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_08.jpg b/other/AoWoW-master/images/icons/small/inv_shield_08.jpg new file mode 100644 index 0000000..2b6305e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_09.jpg b/other/AoWoW-master/images/icons/small/inv_shield_09.jpg new file mode 100644 index 0000000..538f500 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_10.jpg b/other/AoWoW-master/images/icons/small/inv_shield_10.jpg new file mode 100644 index 0000000..8649a3a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_11.jpg b/other/AoWoW-master/images/icons/small/inv_shield_11.jpg new file mode 100644 index 0000000..3e3ef43 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_12.jpg b/other/AoWoW-master/images/icons/small/inv_shield_12.jpg new file mode 100644 index 0000000..42b8035 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_13.jpg b/other/AoWoW-master/images/icons/small/inv_shield_13.jpg new file mode 100644 index 0000000..52f45f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_14.jpg b/other/AoWoW-master/images/icons/small/inv_shield_14.jpg new file mode 100644 index 0000000..8cf9a0c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_15.jpg b/other/AoWoW-master/images/icons/small/inv_shield_15.jpg new file mode 100644 index 0000000..1460336 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_16.jpg b/other/AoWoW-master/images/icons/small/inv_shield_16.jpg new file mode 100644 index 0000000..85e844b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_17.jpg b/other/AoWoW-master/images/icons/small/inv_shield_17.jpg new file mode 100644 index 0000000..48bf666 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_18.jpg b/other/AoWoW-master/images/icons/small/inv_shield_18.jpg new file mode 100644 index 0000000..5b8a2c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_19.jpg b/other/AoWoW-master/images/icons/small/inv_shield_19.jpg new file mode 100644 index 0000000..039a63c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_20.jpg b/other/AoWoW-master/images/icons/small/inv_shield_20.jpg new file mode 100644 index 0000000..bf9fde5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_21.jpg b/other/AoWoW-master/images/icons/small/inv_shield_21.jpg new file mode 100644 index 0000000..7101b91 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_22.jpg b/other/AoWoW-master/images/icons/small/inv_shield_22.jpg new file mode 100644 index 0000000..7d37818 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_23.jpg b/other/AoWoW-master/images/icons/small/inv_shield_23.jpg new file mode 100644 index 0000000..07475e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_24.jpg b/other/AoWoW-master/images/icons/small/inv_shield_24.jpg new file mode 100644 index 0000000..28e9911 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_26.jpg b/other/AoWoW-master/images/icons/small/inv_shield_26.jpg new file mode 100644 index 0000000..59e7959 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_27.jpg b/other/AoWoW-master/images/icons/small/inv_shield_27.jpg new file mode 100644 index 0000000..c794a7e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_28.jpg b/other/AoWoW-master/images/icons/small/inv_shield_28.jpg new file mode 100644 index 0000000..7e6bd14 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_29.jpg b/other/AoWoW-master/images/icons/small/inv_shield_29.jpg new file mode 100644 index 0000000..d213b4b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_30.jpg b/other/AoWoW-master/images/icons/small/inv_shield_30.jpg new file mode 100644 index 0000000..4a5c53e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_31.jpg b/other/AoWoW-master/images/icons/small/inv_shield_31.jpg new file mode 100644 index 0000000..9991c6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_32.jpg b/other/AoWoW-master/images/icons/small/inv_shield_32.jpg new file mode 100644 index 0000000..614ddfc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_33.jpg b/other/AoWoW-master/images/icons/small/inv_shield_33.jpg new file mode 100644 index 0000000..2c5f286 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_34.jpg b/other/AoWoW-master/images/icons/small/inv_shield_34.jpg new file mode 100644 index 0000000..4150f92 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_35.jpg b/other/AoWoW-master/images/icons/small/inv_shield_35.jpg new file mode 100644 index 0000000..4b1b8ab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_36.jpg b/other/AoWoW-master/images/icons/small/inv_shield_36.jpg new file mode 100644 index 0000000..8101777 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_37.jpg b/other/AoWoW-master/images/icons/small/inv_shield_37.jpg new file mode 100644 index 0000000..af37a2a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_38.jpg b/other/AoWoW-master/images/icons/small/inv_shield_38.jpg new file mode 100644 index 0000000..b723011 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_39.jpg b/other/AoWoW-master/images/icons/small/inv_shield_39.jpg new file mode 100644 index 0000000..2481f58 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_40.jpg b/other/AoWoW-master/images/icons/small/inv_shield_40.jpg new file mode 100644 index 0000000..8921a2e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_41.jpg b/other/AoWoW-master/images/icons/small/inv_shield_41.jpg new file mode 100644 index 0000000..e8d8675 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_42.jpg b/other/AoWoW-master/images/icons/small/inv_shield_42.jpg new file mode 100644 index 0000000..3d7d4cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_43.jpg b/other/AoWoW-master/images/icons/small/inv_shield_43.jpg new file mode 100644 index 0000000..9c274f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_48.jpg b/other/AoWoW-master/images/icons/small/inv_shield_48.jpg new file mode 100644 index 0000000..7511bac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_52.jpg b/other/AoWoW-master/images/icons/small/inv_shield_52.jpg new file mode 100644 index 0000000..8084519 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_53.jpg b/other/AoWoW-master/images/icons/small/inv_shield_53.jpg new file mode 100644 index 0000000..53e51be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shield_54.jpg b/other/AoWoW-master/images/icons/small/inv_shield_54.jpg new file mode 100644 index 0000000..d194745 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shield_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_01.jpg new file mode 100644 index 0000000..f950669 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_02.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_02.jpg new file mode 100644 index 0000000..9ff185d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_03.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_03.jpg new file mode 100644 index 0000000..fc2addb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_04.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_04.jpg new file mode 100644 index 0000000..92b10a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_05.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_05.jpg new file mode 100644 index 0000000..cfa3f7c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_06.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_06.jpg new file mode 100644 index 0000000..5b53c0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_07.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_07.jpg new file mode 100644 index 0000000..56d61ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_08.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_08.jpg new file mode 100644 index 0000000..43ed6a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_09.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_09.jpg new file mode 100644 index 0000000..d059657 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_10.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_10.jpg new file mode 100644 index 0000000..daea6f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_11.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_11.jpg new file mode 100644 index 0000000..3ae48bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_12.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_12.jpg new file mode 100644 index 0000000..35ba7d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_13.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_13.jpg new file mode 100644 index 0000000..6a2297f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_14.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_14.jpg new file mode 100644 index 0000000..bc16a23 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_15.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_15.jpg new file mode 100644 index 0000000..342912d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_16.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_16.jpg new file mode 100644 index 0000000..e7f73d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_17.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_17.jpg new file mode 100644 index 0000000..1b7082c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_black_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_black_01.jpg new file mode 100644 index 0000000..6a787d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_black_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_blue_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_blue_01.jpg new file mode 100644 index 0000000..fbf59d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_blue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_green_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_green_01.jpg new file mode 100644 index 0000000..60a56cc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_green_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_grey_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_grey_01.jpg new file mode 100644 index 0000000..127cd60 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_grey_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_guildtabard_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_guildtabard_01.jpg new file mode 100644 index 0000000..7dccd2a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_guildtabard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_orange_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_orange_01.jpg new file mode 100644 index 0000000..fe56ce9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_orange_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_purple_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_purple_01.jpg new file mode 100644 index 0000000..4c8f2c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_red_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_red_01.jpg new file mode 100644 index 0000000..79d8bbd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_red_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_white_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_white_01.jpg new file mode 100644 index 0000000..4fe25fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_white_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shirt_yellow_01.jpg b/other/AoWoW-master/images/icons/small/inv_shirt_yellow_01.jpg new file mode 100644 index 0000000..aeb3e1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shirt_yellow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_01.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_01.jpg new file mode 100644 index 0000000..3a11760 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_02.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_02.jpg new file mode 100644 index 0000000..ed06a18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_03.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_03.jpg new file mode 100644 index 0000000..2b03f04 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_04.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_04.jpg new file mode 100644 index 0000000..60dde55 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_05.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_05.jpg new file mode 100644 index 0000000..7d2a89c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_06.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_06.jpg new file mode 100644 index 0000000..823dda6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_07.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_07.jpg new file mode 100644 index 0000000..4662769 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_08.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_08.jpg new file mode 100644 index 0000000..1eb6a8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_09.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_09.jpg new file mode 100644 index 0000000..74659cc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_10.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_10.jpg new file mode 100644 index 0000000..8d56831 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_11.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_11.jpg new file mode 100644 index 0000000..0c6be59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_12.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_12.jpg new file mode 100644 index 0000000..33c8860 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_13.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_13.jpg new file mode 100644 index 0000000..34303d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_14.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_14.jpg new file mode 100644 index 0000000..a157471 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_15.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_15.jpg new file mode 100644 index 0000000..1eb8c5c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_16.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_16.jpg new file mode 100644 index 0000000..cb2b3ab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_17.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_17.jpg new file mode 100644 index 0000000..bb667ac Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_18.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_18.jpg new file mode 100644 index 0000000..0c15851 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_19.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_19.jpg new file mode 100644 index 0000000..338b99d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_20.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_20.jpg new file mode 100644 index 0000000..7766568 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_21.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_21.jpg new file mode 100644 index 0000000..6d80ef1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_22.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_22.jpg new file mode 100644 index 0000000..7a904e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_23.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_23.jpg new file mode 100644 index 0000000..f9d495c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_24.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_24.jpg new file mode 100644 index 0000000..d717085 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_25.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_25.jpg new file mode 100644 index 0000000..d6b0d26 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_26.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_26.jpg new file mode 100644 index 0000000..51772fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_27.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_27.jpg new file mode 100644 index 0000000..35788d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_28.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_28.jpg new file mode 100644 index 0000000..fa66a94 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_29.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_29.jpg new file mode 100644 index 0000000..bcb55d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_30.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_30.jpg new file mode 100644 index 0000000..2b1b1be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_31.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_31.jpg new file mode 100644 index 0000000..a454216 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_32.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_32.jpg new file mode 100644 index 0000000..14c9f65 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_33.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_33.jpg new file mode 100644 index 0000000..89c18c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_34.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_34.jpg new file mode 100644 index 0000000..d7a5bc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_35.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_35.jpg new file mode 100644 index 0000000..3c13b59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_36.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_36.jpg new file mode 100644 index 0000000..d41473e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_37.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_37.jpg new file mode 100644 index 0000000..dcc6aee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_40.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_40.jpg new file mode 100644 index 0000000..296c38b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_41.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_41.jpg new file mode 100644 index 0000000..90a16bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_44.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_44.jpg new file mode 100644 index 0000000..b921402 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_47.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_47.jpg new file mode 100644 index 0000000..ce6e906 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_48.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_48.jpg new file mode 100644 index 0000000..b5559b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_49.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_49.jpg new file mode 100644 index 0000000..1635f6e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_50.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_50.jpg new file mode 100644 index 0000000..2eafcc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_51.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_51.jpg new file mode 100644 index 0000000..6750614 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_52.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_52.jpg new file mode 100644 index 0000000..039d289 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_53.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_53.jpg new file mode 100644 index 0000000..154337f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_54.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_54.jpg new file mode 100644 index 0000000..2418568 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_55.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_55.jpg new file mode 100644 index 0000000..c5f52bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_56.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_56.jpg new file mode 100644 index 0000000..2f7bf52 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_57.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_57.jpg new file mode 100644 index 0000000..ee6ed5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_58.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_58.jpg new file mode 100644 index 0000000..bfd69de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_59.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_59.jpg new file mode 100644 index 0000000..1ad75a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_60.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_60.jpg new file mode 100644 index 0000000..0692603 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_61.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_61.jpg new file mode 100644 index 0000000..8e21274 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_62.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_62.jpg new file mode 100644 index 0000000..d25d431 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_63.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_63.jpg new file mode 100644 index 0000000..e994c6e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_64.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_64.jpg new file mode 100644 index 0000000..50fabca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_65.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_65.jpg new file mode 100644 index 0000000..94bd610 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_66.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_66.jpg new file mode 100644 index 0000000..517ffc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_67.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_67.jpg new file mode 100644 index 0000000..7e53eab Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_68.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_68.jpg new file mode 100644 index 0000000..500469b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_81.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_81.jpg new file mode 100644 index 0000000..1873756 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_81.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_82.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_82.jpg new file mode 100644 index 0000000..7633749 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_82.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_83.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_83.jpg new file mode 100644 index 0000000..559926b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_83.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_84.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_84.jpg new file mode 100644 index 0000000..40c62b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_84.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_85.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_85.jpg new file mode 100644 index 0000000..5e8a51c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_85.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_86.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_86.jpg new file mode 100644 index 0000000..e306148 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_86.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_88.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_88.jpg new file mode 100644 index 0000000..8233909 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_88.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_90.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_90.jpg new file mode 100644 index 0000000..4e31d54 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_90.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_91.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_91.jpg new file mode 100644 index 0000000..328920a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_91.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_shoulder_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_shoulder_haremmatron_d_01.jpg new file mode 100644 index 0000000..3aeae24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_shoulder_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_01.jpg b/other/AoWoW-master/images/icons/small/inv_spear_01.jpg new file mode 100644 index 0000000..4379856 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_02.jpg b/other/AoWoW-master/images/icons/small/inv_spear_02.jpg new file mode 100644 index 0000000..4b178d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_03.jpg b/other/AoWoW-master/images/icons/small/inv_spear_03.jpg new file mode 100644 index 0000000..7e6b834 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_04.jpg b/other/AoWoW-master/images/icons/small/inv_spear_04.jpg new file mode 100644 index 0000000..0e15afe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_05.jpg b/other/AoWoW-master/images/icons/small/inv_spear_05.jpg new file mode 100644 index 0000000..d638e36 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_06.jpg b/other/AoWoW-master/images/icons/small/inv_spear_06.jpg new file mode 100644 index 0000000..ea2d3a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_07.jpg b/other/AoWoW-master/images/icons/small/inv_spear_07.jpg new file mode 100644 index 0000000..587c3d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_08.jpg b/other/AoWoW-master/images/icons/small/inv_spear_08.jpg new file mode 100644 index 0000000..b0beb9e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_09.jpg b/other/AoWoW-master/images/icons/small/inv_spear_09.jpg new file mode 100644 index 0000000..6fc7197 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_10.jpg b/other/AoWoW-master/images/icons/small/inv_spear_10.jpg new file mode 100644 index 0000000..a42b919 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_spear_11.jpg b/other/AoWoW-master/images/icons/small/inv_spear_11.jpg new file mode 100644 index 0000000..f101f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_spear_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_01.jpg b/other/AoWoW-master/images/icons/small/inv_staff_01.jpg new file mode 100644 index 0000000..9fd2625 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_02.jpg b/other/AoWoW-master/images/icons/small/inv_staff_02.jpg new file mode 100644 index 0000000..4bcde4b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_03.jpg b/other/AoWoW-master/images/icons/small/inv_staff_03.jpg new file mode 100644 index 0000000..e356009 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_04.jpg b/other/AoWoW-master/images/icons/small/inv_staff_04.jpg new file mode 100644 index 0000000..3a7953a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_05.jpg b/other/AoWoW-master/images/icons/small/inv_staff_05.jpg new file mode 100644 index 0000000..4148d26 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_06.jpg b/other/AoWoW-master/images/icons/small/inv_staff_06.jpg new file mode 100644 index 0000000..407c455 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_07.jpg b/other/AoWoW-master/images/icons/small/inv_staff_07.jpg new file mode 100644 index 0000000..52c8fad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_08.jpg b/other/AoWoW-master/images/icons/small/inv_staff_08.jpg new file mode 100644 index 0000000..10e9007 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_09.jpg b/other/AoWoW-master/images/icons/small/inv_staff_09.jpg new file mode 100644 index 0000000..9477239 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_10.jpg b/other/AoWoW-master/images/icons/small/inv_staff_10.jpg new file mode 100644 index 0000000..a9d8ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_11.jpg b/other/AoWoW-master/images/icons/small/inv_staff_11.jpg new file mode 100644 index 0000000..2ac936e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_12.jpg b/other/AoWoW-master/images/icons/small/inv_staff_12.jpg new file mode 100644 index 0000000..40e1e03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_13.jpg b/other/AoWoW-master/images/icons/small/inv_staff_13.jpg new file mode 100644 index 0000000..70955a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_14.jpg b/other/AoWoW-master/images/icons/small/inv_staff_14.jpg new file mode 100644 index 0000000..97ee64b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_15.jpg b/other/AoWoW-master/images/icons/small/inv_staff_15.jpg new file mode 100644 index 0000000..41d680f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_16.jpg b/other/AoWoW-master/images/icons/small/inv_staff_16.jpg new file mode 100644 index 0000000..8f97c88 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_17.jpg b/other/AoWoW-master/images/icons/small/inv_staff_17.jpg new file mode 100644 index 0000000..bd86b6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_18.jpg b/other/AoWoW-master/images/icons/small/inv_staff_18.jpg new file mode 100644 index 0000000..de12b59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_19.jpg b/other/AoWoW-master/images/icons/small/inv_staff_19.jpg new file mode 100644 index 0000000..4ed3cb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_20.jpg b/other/AoWoW-master/images/icons/small/inv_staff_20.jpg new file mode 100644 index 0000000..27c4fa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_21.jpg b/other/AoWoW-master/images/icons/small/inv_staff_21.jpg new file mode 100644 index 0000000..e1157dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_22.jpg b/other/AoWoW-master/images/icons/small/inv_staff_22.jpg new file mode 100644 index 0000000..1a364f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_23.jpg b/other/AoWoW-master/images/icons/small/inv_staff_23.jpg new file mode 100644 index 0000000..c4ecd08 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_24.jpg b/other/AoWoW-master/images/icons/small/inv_staff_24.jpg new file mode 100644 index 0000000..e0e9155 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_25.jpg b/other/AoWoW-master/images/icons/small/inv_staff_25.jpg new file mode 100644 index 0000000..fe1278d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_26.jpg b/other/AoWoW-master/images/icons/small/inv_staff_26.jpg new file mode 100644 index 0000000..2c408d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_27.jpg b/other/AoWoW-master/images/icons/small/inv_staff_27.jpg new file mode 100644 index 0000000..ea9b409 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_28.jpg b/other/AoWoW-master/images/icons/small/inv_staff_28.jpg new file mode 100644 index 0000000..b39f755 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_29.jpg b/other/AoWoW-master/images/icons/small/inv_staff_29.jpg new file mode 100644 index 0000000..d12dba0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_30.jpg b/other/AoWoW-master/images/icons/small/inv_staff_30.jpg new file mode 100644 index 0000000..1793542 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_31.jpg b/other/AoWoW-master/images/icons/small/inv_staff_31.jpg new file mode 100644 index 0000000..4a84981 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_32.jpg b/other/AoWoW-master/images/icons/small/inv_staff_32.jpg new file mode 100644 index 0000000..4c387af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_33.jpg b/other/AoWoW-master/images/icons/small/inv_staff_33.jpg new file mode 100644 index 0000000..8e49eef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_34.jpg b/other/AoWoW-master/images/icons/small/inv_staff_34.jpg new file mode 100644 index 0000000..d91bf9f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_35.jpg b/other/AoWoW-master/images/icons/small/inv_staff_35.jpg new file mode 100644 index 0000000..99c4a38 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_36.jpg b/other/AoWoW-master/images/icons/small/inv_staff_36.jpg new file mode 100644 index 0000000..d7f5948 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_37.jpg b/other/AoWoW-master/images/icons/small/inv_staff_37.jpg new file mode 100644 index 0000000..8a41da4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_38.jpg b/other/AoWoW-master/images/icons/small/inv_staff_38.jpg new file mode 100644 index 0000000..14e831e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_39.jpg b/other/AoWoW-master/images/icons/small/inv_staff_39.jpg new file mode 100644 index 0000000..1782a11 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_40.jpg b/other/AoWoW-master/images/icons/small/inv_staff_40.jpg new file mode 100644 index 0000000..a56caea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_41.jpg b/other/AoWoW-master/images/icons/small/inv_staff_41.jpg new file mode 100644 index 0000000..af84c2d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_42.jpg b/other/AoWoW-master/images/icons/small/inv_staff_42.jpg new file mode 100644 index 0000000..2a748c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_43.jpg b/other/AoWoW-master/images/icons/small/inv_staff_43.jpg new file mode 100644 index 0000000..5b66fc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_45.jpg b/other/AoWoW-master/images/icons/small/inv_staff_45.jpg new file mode 100644 index 0000000..cbaad69 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_46.jpg b/other/AoWoW-master/images/icons/small/inv_staff_46.jpg new file mode 100644 index 0000000..393f17a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_47.jpg b/other/AoWoW-master/images/icons/small/inv_staff_47.jpg new file mode 100644 index 0000000..c82776e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_48.jpg b/other/AoWoW-master/images/icons/small/inv_staff_48.jpg new file mode 100644 index 0000000..7e08c9e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_49.jpg b/other/AoWoW-master/images/icons/small/inv_staff_49.jpg new file mode 100644 index 0000000..b422bfb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_50.jpg b/other/AoWoW-master/images/icons/small/inv_staff_50.jpg new file mode 100644 index 0000000..945a1cd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_51.jpg b/other/AoWoW-master/images/icons/small/inv_staff_51.jpg new file mode 100644 index 0000000..9c2bc9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_52.jpg b/other/AoWoW-master/images/icons/small/inv_staff_52.jpg new file mode 100644 index 0000000..38bc67e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_53.jpg b/other/AoWoW-master/images/icons/small/inv_staff_53.jpg new file mode 100644 index 0000000..d174de9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_54.jpg b/other/AoWoW-master/images/icons/small/inv_staff_54.jpg new file mode 100644 index 0000000..d33c628 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_55.jpg b/other/AoWoW-master/images/icons/small/inv_staff_55.jpg new file mode 100644 index 0000000..578e32b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_56.jpg b/other/AoWoW-master/images/icons/small/inv_staff_56.jpg new file mode 100644 index 0000000..fec3809 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_57.jpg b/other/AoWoW-master/images/icons/small/inv_staff_57.jpg new file mode 100644 index 0000000..4eea209 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_58.jpg b/other/AoWoW-master/images/icons/small/inv_staff_58.jpg new file mode 100644 index 0000000..c5a8646 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_59.jpg b/other/AoWoW-master/images/icons/small/inv_staff_59.jpg new file mode 100644 index 0000000..a1ff4b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_60.jpg b/other/AoWoW-master/images/icons/small/inv_staff_60.jpg new file mode 100644 index 0000000..4f2ec0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_61.jpg b/other/AoWoW-master/images/icons/small/inv_staff_61.jpg new file mode 100644 index 0000000..20df528 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_63.jpg b/other/AoWoW-master/images/icons/small/inv_staff_63.jpg new file mode 100644 index 0000000..93963ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_64.jpg b/other/AoWoW-master/images/icons/small/inv_staff_64.jpg new file mode 100644 index 0000000..b45fff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_65.jpg b/other/AoWoW-master/images/icons/small/inv_staff_65.jpg new file mode 100644 index 0000000..a9dfaa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_73.jpg b/other/AoWoW-master/images/icons/small/inv_staff_73.jpg new file mode 100644 index 0000000..71470b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_74.jpg b/other/AoWoW-master/images/icons/small/inv_staff_74.jpg new file mode 100644 index 0000000..9da39fa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_78.jpg b/other/AoWoW-master/images/icons/small/inv_staff_78.jpg new file mode 100644 index 0000000..1be8bbe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_78.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_79.jpg b/other/AoWoW-master/images/icons/small/inv_staff_79.jpg new file mode 100644 index 0000000..62be978 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_79.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_01.jpg b/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_01.jpg new file mode 100644 index 0000000..5390260 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_02.jpg b/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_02.jpg new file mode 100644 index 0000000..d9346cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_03.jpg b/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_03.jpg new file mode 100644 index 0000000..00d5a0f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_draenei_a_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_goldfeathered_01.jpg b/other/AoWoW-master/images/icons/small/inv_staff_goldfeathered_01.jpg new file mode 100644 index 0000000..cf966c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_goldfeathered_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_staff_medivh.jpg b/other/AoWoW-master/images/icons/small/inv_staff_medivh.jpg new file mode 100644 index 0000000..75a20ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_staff_medivh.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_01.jpg b/other/AoWoW-master/images/icons/small/inv_stone_01.jpg new file mode 100644 index 0000000..375ea9a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_02.jpg b/other/AoWoW-master/images/icons/small/inv_stone_02.jpg new file mode 100644 index 0000000..e00147d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_03.jpg b/other/AoWoW-master/images/icons/small/inv_stone_03.jpg new file mode 100644 index 0000000..945e353 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_04.jpg b/other/AoWoW-master/images/icons/small/inv_stone_04.jpg new file mode 100644 index 0000000..1623a92 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_05.jpg b/other/AoWoW-master/images/icons/small/inv_stone_05.jpg new file mode 100644 index 0000000..2dc9c78 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_06.jpg b/other/AoWoW-master/images/icons/small/inv_stone_06.jpg new file mode 100644 index 0000000..a958caa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_07.jpg b/other/AoWoW-master/images/icons/small/inv_stone_07.jpg new file mode 100644 index 0000000..d93f178 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_08.jpg b/other/AoWoW-master/images/icons/small/inv_stone_08.jpg new file mode 100644 index 0000000..bdf5e04 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_09.jpg b/other/AoWoW-master/images/icons/small/inv_stone_09.jpg new file mode 100644 index 0000000..6152eb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_10.jpg b/other/AoWoW-master/images/icons/small/inv_stone_10.jpg new file mode 100644 index 0000000..540c221 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_11.jpg b/other/AoWoW-master/images/icons/small/inv_stone_11.jpg new file mode 100644 index 0000000..7b1d1c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_12.jpg b/other/AoWoW-master/images/icons/small/inv_stone_12.jpg new file mode 100644 index 0000000..389adf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_13.jpg b/other/AoWoW-master/images/icons/small/inv_stone_13.jpg new file mode 100644 index 0000000..6f9b280 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_14.jpg b/other/AoWoW-master/images/icons/small/inv_stone_14.jpg new file mode 100644 index 0000000..f10d2e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_15.jpg b/other/AoWoW-master/images/icons/small/inv_stone_15.jpg new file mode 100644 index 0000000..5e90e7f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_16.jpg b/other/AoWoW-master/images/icons/small/inv_stone_16.jpg new file mode 100644 index 0000000..4712797 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_01.jpg b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_01.jpg new file mode 100644 index 0000000..32873ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_02.jpg b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_02.jpg new file mode 100644 index 0000000..604fd46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_03.jpg b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_03.jpg new file mode 100644 index 0000000..5b46de5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_04.jpg b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_04.jpg new file mode 100644 index 0000000..4e7dee2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_05.jpg b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_05.jpg new file mode 100644 index 0000000..4f6c5df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_grindingstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_01.jpg b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_01.jpg new file mode 100644 index 0000000..3f845af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_02.jpg b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_02.jpg new file mode 100644 index 0000000..7074e66 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_03.jpg b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_03.jpg new file mode 100644 index 0000000..9ebdb7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_04.jpg b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_04.jpg new file mode 100644 index 0000000..7a95c19 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_05.jpg b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_05.jpg new file mode 100644 index 0000000..296beff Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_06.jpg b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_06.jpg new file mode 100644 index 0000000..6b0f89c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_07.jpg b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_07.jpg new file mode 100644 index 0000000..b489d7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_sharpeningstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_weightstone_01.jpg b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_01.jpg new file mode 100644 index 0000000..3942e2f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_weightstone_02.jpg b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_02.jpg new file mode 100644 index 0000000..93d9cb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_weightstone_03.jpg b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_03.jpg new file mode 100644 index 0000000..0b5d9a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_weightstone_04.jpg b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_04.jpg new file mode 100644 index 0000000..ac447ed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_weightstone_05.jpg b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_05.jpg new file mode 100644 index 0000000..d20d600 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_weightstone_06.jpg b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_06.jpg new file mode 100644 index 0000000..9a7d43b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_stone_weightstone_07.jpg b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_07.jpg new file mode 100644 index 0000000..081e2f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_stone_weightstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_firedrink.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_firedrink.jpg new file mode 100644 index 0000000..b0113bd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_firedrink.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_fireflower.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_fireflower.jpg new file mode 100644 index 0000000..1aeeb2b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_fireflower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_firepotion.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_firepotion.jpg new file mode 100644 index 0000000..116371e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_firepotion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_firespirit.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_firespirit.jpg new file mode 100644 index 0000000..bf8a451 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_firespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_groundflower.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_groundflower.jpg new file mode 100644 index 0000000..4ed0c09 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_groundflower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_smorc.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_smorc.jpg new file mode 100644 index 0000000..affd780 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_smorc.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_high.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_high.jpg new file mode 100644 index 0000000..2259a1e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_high.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_low.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_low.jpg new file mode 100644 index 0000000..3920715 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_low.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_medium.jpg b/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_medium.jpg new file mode 100644 index 0000000..2296f10 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_summerfest_symbol_medium.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_01.jpg b/other/AoWoW-master/images/icons/small/inv_sword_01.jpg new file mode 100644 index 0000000..a57eff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_02.jpg b/other/AoWoW-master/images/icons/small/inv_sword_02.jpg new file mode 100644 index 0000000..cc8890a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_03.jpg b/other/AoWoW-master/images/icons/small/inv_sword_03.jpg new file mode 100644 index 0000000..c025125 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_04.jpg b/other/AoWoW-master/images/icons/small/inv_sword_04.jpg new file mode 100644 index 0000000..d53cefc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_05.jpg b/other/AoWoW-master/images/icons/small/inv_sword_05.jpg new file mode 100644 index 0000000..ffaa7ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_06.jpg b/other/AoWoW-master/images/icons/small/inv_sword_06.jpg new file mode 100644 index 0000000..c9c12aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_07.jpg b/other/AoWoW-master/images/icons/small/inv_sword_07.jpg new file mode 100644 index 0000000..7bcef5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_08.jpg b/other/AoWoW-master/images/icons/small/inv_sword_08.jpg new file mode 100644 index 0000000..d8c943e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_09.jpg b/other/AoWoW-master/images/icons/small/inv_sword_09.jpg new file mode 100644 index 0000000..093d62c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_10.jpg b/other/AoWoW-master/images/icons/small/inv_sword_10.jpg new file mode 100644 index 0000000..152b51e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_107.jpg b/other/AoWoW-master/images/icons/small/inv_sword_107.jpg new file mode 100644 index 0000000..fc3585b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_107.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_108.jpg b/other/AoWoW-master/images/icons/small/inv_sword_108.jpg new file mode 100644 index 0000000..4037da4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_108.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_109.jpg b/other/AoWoW-master/images/icons/small/inv_sword_109.jpg new file mode 100644 index 0000000..ef13a55 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_109.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_11.jpg b/other/AoWoW-master/images/icons/small/inv_sword_11.jpg new file mode 100644 index 0000000..09acca7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_114.jpg b/other/AoWoW-master/images/icons/small/inv_sword_114.jpg new file mode 100644 index 0000000..eb4f3fd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_114.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_115.jpg b/other/AoWoW-master/images/icons/small/inv_sword_115.jpg new file mode 100644 index 0000000..a47dc23 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_115.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_116.jpg b/other/AoWoW-master/images/icons/small/inv_sword_116.jpg new file mode 100644 index 0000000..03832aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_116.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_118.jpg b/other/AoWoW-master/images/icons/small/inv_sword_118.jpg new file mode 100644 index 0000000..3ddc23e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_118.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_12.jpg b/other/AoWoW-master/images/icons/small/inv_sword_12.jpg new file mode 100644 index 0000000..37abc54 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_13.jpg b/other/AoWoW-master/images/icons/small/inv_sword_13.jpg new file mode 100644 index 0000000..a3185a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_14.jpg b/other/AoWoW-master/images/icons/small/inv_sword_14.jpg new file mode 100644 index 0000000..7f9f177 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_15.jpg b/other/AoWoW-master/images/icons/small/inv_sword_15.jpg new file mode 100644 index 0000000..fa06c15 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_16.jpg b/other/AoWoW-master/images/icons/small/inv_sword_16.jpg new file mode 100644 index 0000000..6905195 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_17.jpg b/other/AoWoW-master/images/icons/small/inv_sword_17.jpg new file mode 100644 index 0000000..994151e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_18.jpg b/other/AoWoW-master/images/icons/small/inv_sword_18.jpg new file mode 100644 index 0000000..ab867dd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_19.jpg b/other/AoWoW-master/images/icons/small/inv_sword_19.jpg new file mode 100644 index 0000000..41dcc85 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..d6180e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..5e87d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..c19ebcf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_20.jpg b/other/AoWoW-master/images/icons/small/inv_sword_20.jpg new file mode 100644 index 0000000..bd16b36 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_21.jpg b/other/AoWoW-master/images/icons/small/inv_sword_21.jpg new file mode 100644 index 0000000..07cc462 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_22.jpg b/other/AoWoW-master/images/icons/small/inv_sword_22.jpg new file mode 100644 index 0000000..bc8f940 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_23.jpg b/other/AoWoW-master/images/icons/small/inv_sword_23.jpg new file mode 100644 index 0000000..48419c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_24.jpg b/other/AoWoW-master/images/icons/small/inv_sword_24.jpg new file mode 100644 index 0000000..8062019 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_25.jpg b/other/AoWoW-master/images/icons/small/inv_sword_25.jpg new file mode 100644 index 0000000..1460c5d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_26.jpg b/other/AoWoW-master/images/icons/small/inv_sword_26.jpg new file mode 100644 index 0000000..3a0f7f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_27.jpg b/other/AoWoW-master/images/icons/small/inv_sword_27.jpg new file mode 100644 index 0000000..30dd1b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_28.jpg b/other/AoWoW-master/images/icons/small/inv_sword_28.jpg new file mode 100644 index 0000000..ad09db4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_29.jpg b/other/AoWoW-master/images/icons/small/inv_sword_29.jpg new file mode 100644 index 0000000..cb77ca1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_ashbringercorrupt.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_ashbringercorrupt.jpg new file mode 100644 index 0000000..d536f50 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_ashbringercorrupt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..f8af05b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..51fb519 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..d71e761 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_b_01.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_b_01.jpg new file mode 100644 index 0000000..4da8c99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_b_02.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_b_02.jpg new file mode 100644 index 0000000..072faf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_b_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_01.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_01.jpg new file mode 100644 index 0000000..6183c21 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_02.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_02.jpg new file mode 100644 index 0000000..5bb728a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_03.jpg b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_03.jpg new file mode 100644 index 0000000..fc9414e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_2h_blood_c_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_30.jpg b/other/AoWoW-master/images/icons/small/inv_sword_30.jpg new file mode 100644 index 0000000..6b25ee9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_31.jpg b/other/AoWoW-master/images/icons/small/inv_sword_31.jpg new file mode 100644 index 0000000..8cfe947 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_32.jpg b/other/AoWoW-master/images/icons/small/inv_sword_32.jpg new file mode 100644 index 0000000..ffdf926 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_33.jpg b/other/AoWoW-master/images/icons/small/inv_sword_33.jpg new file mode 100644 index 0000000..6401285 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_34.jpg b/other/AoWoW-master/images/icons/small/inv_sword_34.jpg new file mode 100644 index 0000000..cae2339 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_35.jpg b/other/AoWoW-master/images/icons/small/inv_sword_35.jpg new file mode 100644 index 0000000..8130362 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_36.jpg b/other/AoWoW-master/images/icons/small/inv_sword_36.jpg new file mode 100644 index 0000000..c95c33d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_36.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_37.jpg b/other/AoWoW-master/images/icons/small/inv_sword_37.jpg new file mode 100644 index 0000000..769e11f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_38.jpg b/other/AoWoW-master/images/icons/small/inv_sword_38.jpg new file mode 100644 index 0000000..8c27b01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_39.jpg b/other/AoWoW-master/images/icons/small/inv_sword_39.jpg new file mode 100644 index 0000000..c9c353f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_40.jpg b/other/AoWoW-master/images/icons/small/inv_sword_40.jpg new file mode 100644 index 0000000..2a31bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_41.jpg b/other/AoWoW-master/images/icons/small/inv_sword_41.jpg new file mode 100644 index 0000000..72c1731 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_42.jpg b/other/AoWoW-master/images/icons/small/inv_sword_42.jpg new file mode 100644 index 0000000..3b8e1f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_43.jpg b/other/AoWoW-master/images/icons/small/inv_sword_43.jpg new file mode 100644 index 0000000..38f6ba4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_44.jpg b/other/AoWoW-master/images/icons/small/inv_sword_44.jpg new file mode 100644 index 0000000..b4019fd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_45.jpg b/other/AoWoW-master/images/icons/small/inv_sword_45.jpg new file mode 100644 index 0000000..44cda7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_46.jpg b/other/AoWoW-master/images/icons/small/inv_sword_46.jpg new file mode 100644 index 0000000..101c5f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_47.jpg b/other/AoWoW-master/images/icons/small/inv_sword_47.jpg new file mode 100644 index 0000000..fefd776 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_48.jpg b/other/AoWoW-master/images/icons/small/inv_sword_48.jpg new file mode 100644 index 0000000..f805f87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_49.jpg b/other/AoWoW-master/images/icons/small/inv_sword_49.jpg new file mode 100644 index 0000000..79157ea Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_50.jpg b/other/AoWoW-master/images/icons/small/inv_sword_50.jpg new file mode 100644 index 0000000..932d5f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_51.jpg b/other/AoWoW-master/images/icons/small/inv_sword_51.jpg new file mode 100644 index 0000000..aca5609 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_52.jpg b/other/AoWoW-master/images/icons/small/inv_sword_52.jpg new file mode 100644 index 0000000..804e8e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_53.jpg b/other/AoWoW-master/images/icons/small/inv_sword_53.jpg new file mode 100644 index 0000000..6958c21 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_54.jpg b/other/AoWoW-master/images/icons/small/inv_sword_54.jpg new file mode 100644 index 0000000..e546b21 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_55.jpg b/other/AoWoW-master/images/icons/small/inv_sword_55.jpg new file mode 100644 index 0000000..fabf784 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_56.jpg b/other/AoWoW-master/images/icons/small/inv_sword_56.jpg new file mode 100644 index 0000000..804e8e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_57.jpg b/other/AoWoW-master/images/icons/small/inv_sword_57.jpg new file mode 100644 index 0000000..9940038 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_58.jpg b/other/AoWoW-master/images/icons/small/inv_sword_58.jpg new file mode 100644 index 0000000..ffd6c22 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_59.jpg b/other/AoWoW-master/images/icons/small/inv_sword_59.jpg new file mode 100644 index 0000000..7973958 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_60.jpg b/other/AoWoW-master/images/icons/small/inv_sword_60.jpg new file mode 100644 index 0000000..af8ed14 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_61.jpg b/other/AoWoW-master/images/icons/small/inv_sword_61.jpg new file mode 100644 index 0000000..f7176e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_62.jpg b/other/AoWoW-master/images/icons/small/inv_sword_62.jpg new file mode 100644 index 0000000..89d853b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_63.jpg b/other/AoWoW-master/images/icons/small/inv_sword_63.jpg new file mode 100644 index 0000000..58cafec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_64.jpg b/other/AoWoW-master/images/icons/small/inv_sword_64.jpg new file mode 100644 index 0000000..5256980 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_65.jpg b/other/AoWoW-master/images/icons/small/inv_sword_65.jpg new file mode 100644 index 0000000..9c882c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_66.jpg b/other/AoWoW-master/images/icons/small/inv_sword_66.jpg new file mode 100644 index 0000000..cfb4145 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_67.jpg b/other/AoWoW-master/images/icons/small/inv_sword_67.jpg new file mode 100644 index 0000000..8ffe328 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_67.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_68.jpg b/other/AoWoW-master/images/icons/small/inv_sword_68.jpg new file mode 100644 index 0000000..c8a03a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_68.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_69.jpg b/other/AoWoW-master/images/icons/small/inv_sword_69.jpg new file mode 100644 index 0000000..0b2cb73 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_69.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_70.jpg b/other/AoWoW-master/images/icons/small/inv_sword_70.jpg new file mode 100644 index 0000000..bdc8f49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_70.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_71.jpg b/other/AoWoW-master/images/icons/small/inv_sword_71.jpg new file mode 100644 index 0000000..492ed07 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_72.jpg b/other/AoWoW-master/images/icons/small/inv_sword_72.jpg new file mode 100644 index 0000000..c30a26c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_72.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_73.jpg b/other/AoWoW-master/images/icons/small/inv_sword_73.jpg new file mode 100644 index 0000000..8f63914 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_74.jpg b/other/AoWoW-master/images/icons/small/inv_sword_74.jpg new file mode 100644 index 0000000..fe803ed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_75.jpg b/other/AoWoW-master/images/icons/small/inv_sword_75.jpg new file mode 100644 index 0000000..d03d64b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_75.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_76.jpg b/other/AoWoW-master/images/icons/small/inv_sword_76.jpg new file mode 100644 index 0000000..2e266b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_76.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_77.jpg b/other/AoWoW-master/images/icons/small/inv_sword_77.jpg new file mode 100644 index 0000000..f21586b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_77.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_78.jpg b/other/AoWoW-master/images/icons/small/inv_sword_78.jpg new file mode 100644 index 0000000..6a0ae71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_78.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_79.jpg b/other/AoWoW-master/images/icons/small/inv_sword_79.jpg new file mode 100644 index 0000000..69955e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_79.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_80.jpg b/other/AoWoW-master/images/icons/small/inv_sword_80.jpg new file mode 100644 index 0000000..0f55f8e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_80.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_81.jpg b/other/AoWoW-master/images/icons/small/inv_sword_81.jpg new file mode 100644 index 0000000..512196d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_81.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_82.jpg b/other/AoWoW-master/images/icons/small/inv_sword_82.jpg new file mode 100644 index 0000000..368fe77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_82.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_83.jpg b/other/AoWoW-master/images/icons/small/inv_sword_83.jpg new file mode 100644 index 0000000..79a8418 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_83.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_84.jpg b/other/AoWoW-master/images/icons/small/inv_sword_84.jpg new file mode 100644 index 0000000..fc3cb53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_84.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_85.jpg b/other/AoWoW-master/images/icons/small/inv_sword_85.jpg new file mode 100644 index 0000000..3fe2402 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_85.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_86.jpg b/other/AoWoW-master/images/icons/small/inv_sword_86.jpg new file mode 100644 index 0000000..f29c997 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_86.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_87.jpg b/other/AoWoW-master/images/icons/small/inv_sword_87.jpg new file mode 100644 index 0000000..beb5fc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_87.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_88.jpg b/other/AoWoW-master/images/icons/small/inv_sword_88.jpg new file mode 100644 index 0000000..dbc9b07 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_88.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_89.jpg b/other/AoWoW-master/images/icons/small/inv_sword_89.jpg new file mode 100644 index 0000000..1f1bb7e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_89.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_90.jpg b/other/AoWoW-master/images/icons/small/inv_sword_90.jpg new file mode 100644 index 0000000..c7adde7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_90.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_91.jpg b/other/AoWoW-master/images/icons/small/inv_sword_91.jpg new file mode 100644 index 0000000..1b351aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_91.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_92.jpg b/other/AoWoW-master/images/icons/small/inv_sword_92.jpg new file mode 100644 index 0000000..1d64935 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_92.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_93.jpg b/other/AoWoW-master/images/icons/small/inv_sword_93.jpg new file mode 100644 index 0000000..2962e25 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_93.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_94.jpg b/other/AoWoW-master/images/icons/small/inv_sword_94.jpg new file mode 100644 index 0000000..2826fa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_94.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_bloodelf_03.jpg b/other/AoWoW-master/images/icons/small/inv_sword_bloodelf_03.jpg new file mode 100644 index 0000000..2fe61c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_bloodelf_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_01.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_01.jpg new file mode 100644 index 0000000..b1c8c1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_02.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_02.jpg new file mode 100644 index 0000000..9119a46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_03.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_03.jpg new file mode 100644 index 0000000..38ebd9f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_04.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_04.jpg new file mode 100644 index 0000000..c7c63f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_05.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_05.jpg new file mode 100644 index 0000000..8a72ed5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_06.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_06.jpg new file mode 100644 index 0000000..4fd7f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_07.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_07.jpg new file mode 100644 index 0000000..a99455e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_sword_draenei_08.jpg b/other/AoWoW-master/images/icons/small/inv_sword_draenei_08.jpg new file mode 100644 index 0000000..54b0132 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_sword_draenei_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingaxe_01.jpg b/other/AoWoW-master/images/icons/small/inv_throwingaxe_01.jpg new file mode 100644 index 0000000..8478eb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingaxe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingaxe_02.jpg b/other/AoWoW-master/images/icons/small/inv_throwingaxe_02.jpg new file mode 100644 index 0000000..68a8922 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingaxe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingaxe_03.jpg b/other/AoWoW-master/images/icons/small/inv_throwingaxe_03.jpg new file mode 100644 index 0000000..9fdb4b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingaxe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingaxe_04.jpg b/other/AoWoW-master/images/icons/small/inv_throwingaxe_04.jpg new file mode 100644 index 0000000..1441f86 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingaxe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingaxe_05.jpg b/other/AoWoW-master/images/icons/small/inv_throwingaxe_05.jpg new file mode 100644 index 0000000..ed28a35 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingaxe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingaxe_06.jpg b/other/AoWoW-master/images/icons/small/inv_throwingaxe_06.jpg new file mode 100644 index 0000000..fdc036e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingaxe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingknife_01.jpg b/other/AoWoW-master/images/icons/small/inv_throwingknife_01.jpg new file mode 100644 index 0000000..9b6e3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingknife_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingknife_02.jpg b/other/AoWoW-master/images/icons/small/inv_throwingknife_02.jpg new file mode 100644 index 0000000..1d1b973 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingknife_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingknife_03.jpg b/other/AoWoW-master/images/icons/small/inv_throwingknife_03.jpg new file mode 100644 index 0000000..09e3c61 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingknife_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingknife_04.jpg b/other/AoWoW-master/images/icons/small/inv_throwingknife_04.jpg new file mode 100644 index 0000000..1f8e609 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingknife_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingknife_05.jpg b/other/AoWoW-master/images/icons/small/inv_throwingknife_05.jpg new file mode 100644 index 0000000..f9e079a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingknife_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingknife_06.jpg b/other/AoWoW-master/images/icons/small/inv_throwingknife_06.jpg new file mode 100644 index 0000000..8e9cab8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingknife_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_throwingknife_07.jpg b/other/AoWoW-master/images/icons/small/inv_throwingknife_07.jpg new file mode 100644 index 0000000..4437d2d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_throwingknife_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_torch_lit.jpg b/other/AoWoW-master/images/icons/small/inv_torch_lit.jpg new file mode 100644 index 0000000..97d8351 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_torch_lit.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_torch_thrown.jpg b/other/AoWoW-master/images/icons/small/inv_torch_thrown.jpg new file mode 100644 index 0000000..c170685 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_torch_thrown.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_torch_unlit.jpg b/other/AoWoW-master/images/icons/small/inv_torch_unlit.jpg new file mode 100644 index 0000000..02f05bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_torch_unlit.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_tradeskillitem_01.jpg b/other/AoWoW-master/images/icons/small/inv_tradeskillitem_01.jpg new file mode 100644 index 0000000..2ce3bc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_tradeskillitem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_tradeskillitem_02.jpg b/other/AoWoW-master/images/icons/small/inv_tradeskillitem_02.jpg new file mode 100644 index 0000000..578bea1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_tradeskillitem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_tradeskillitem_03.jpg b/other/AoWoW-master/images/icons/small/inv_tradeskillitem_03.jpg new file mode 100644 index 0000000..15fef51 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_tradeskillitem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_honorhold.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_honorhold.jpg new file mode 100644 index 0000000..0f9b139 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas01.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas01.jpg new file mode 100644 index 0000000..eb3380c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas02.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas02.jpg new file mode 100644 index 0000000..5cb8f22 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas03.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas03.jpg new file mode 100644 index 0000000..00ba79f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas04.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas04.jpg new file mode 100644 index 0000000..439ef49 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas05.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas05.jpg new file mode 100644 index 0000000..47a6afe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas06.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas06.jpg new file mode 100644 index 0000000..f569dc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_naxxramas06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_trinket_thrallmar.jpg b/other/AoWoW-master/images/icons/small/inv_trinket_thrallmar.jpg new file mode 100644 index 0000000..1d1d86d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_trinket_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinecolognebottle.jpg b/other/AoWoW-master/images/icons/small/inv_valentinecolognebottle.jpg new file mode 100644 index 0000000..04f2ffb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinecolognebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentineperfumebottle.jpg b/other/AoWoW-master/images/icons/small/inv_valentineperfumebottle.jpg new file mode 100644 index 0000000..5c99ad0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentineperfumebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinepinkrocket.jpg b/other/AoWoW-master/images/icons/small/inv_valentinepinkrocket.jpg new file mode 100644 index 0000000..7336e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinepinkrocket.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinesboxofchocolates01.jpg b/other/AoWoW-master/images/icons/small/inv_valentinesboxofchocolates01.jpg new file mode 100644 index 0000000..34edff9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinesboxofchocolates01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinesboxofchocolates02.jpg b/other/AoWoW-master/images/icons/small/inv_valentinesboxofchocolates02.jpg new file mode 100644 index 0000000..1f8c1fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinesboxofchocolates02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinescandy.jpg b/other/AoWoW-master/images/icons/small/inv_valentinescandy.jpg new file mode 100644 index 0000000..457a779 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinescandy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinescandysack.jpg b/other/AoWoW-master/images/icons/small/inv_valentinescandysack.jpg new file mode 100644 index 0000000..457c56b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinescandysack.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinescard01.jpg b/other/AoWoW-master/images/icons/small/inv_valentinescard01.jpg new file mode 100644 index 0000000..a9753c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinescard01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinescard02.jpg b/other/AoWoW-master/images/icons/small/inv_valentinescard02.jpg new file mode 100644 index 0000000..61ad523 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinescard02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinescardtornleft.jpg b/other/AoWoW-master/images/icons/small/inv_valentinescardtornleft.jpg new file mode 100644 index 0000000..66ae148 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinescardtornleft.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentinescardtornright.jpg b/other/AoWoW-master/images/icons/small/inv_valentinescardtornright.jpg new file mode 100644 index 0000000..0fe57e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentinescardtornright.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentineschocolate01.jpg b/other/AoWoW-master/images/icons/small/inv_valentineschocolate01.jpg new file mode 100644 index 0000000..d22a410 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentineschocolate01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentineschocolate02.jpg b/other/AoWoW-master/images/icons/small/inv_valentineschocolate02.jpg new file mode 100644 index 0000000..3e7eec6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentineschocolate02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentineschocolate03.jpg b/other/AoWoW-master/images/icons/small/inv_valentineschocolate03.jpg new file mode 100644 index 0000000..a923e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentineschocolate03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_valentineschocolate04.jpg b/other/AoWoW-master/images/icons/small/inv_valentineschocolate04.jpg new file mode 100644 index 0000000..5c0a7de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_valentineschocolate04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_waepon_bow_zulgrub_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_waepon_bow_zulgrub_d_01.jpg new file mode 100644 index 0000000..4144177 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_waepon_bow_zulgrub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_waepon_bow_zulgrub_d_02.jpg b/other/AoWoW-master/images/icons/small/inv_waepon_bow_zulgrub_d_02.jpg new file mode 100644 index 0000000..f5458c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_waepon_bow_zulgrub_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_01.jpg b/other/AoWoW-master/images/icons/small/inv_wand_01.jpg new file mode 100644 index 0000000..c75a2ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_02.jpg b/other/AoWoW-master/images/icons/small/inv_wand_02.jpg new file mode 100644 index 0000000..5715f05 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_03.jpg b/other/AoWoW-master/images/icons/small/inv_wand_03.jpg new file mode 100644 index 0000000..9bc3116 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_04.jpg b/other/AoWoW-master/images/icons/small/inv_wand_04.jpg new file mode 100644 index 0000000..678277a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_05.jpg b/other/AoWoW-master/images/icons/small/inv_wand_05.jpg new file mode 100644 index 0000000..140c162 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_06.jpg b/other/AoWoW-master/images/icons/small/inv_wand_06.jpg new file mode 100644 index 0000000..dbf5526 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_07.jpg b/other/AoWoW-master/images/icons/small/inv_wand_07.jpg new file mode 100644 index 0000000..311d654 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_08.jpg b/other/AoWoW-master/images/icons/small/inv_wand_08.jpg new file mode 100644 index 0000000..c04ed8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_09.jpg b/other/AoWoW-master/images/icons/small/inv_wand_09.jpg new file mode 100644 index 0000000..648d339 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_10.jpg b/other/AoWoW-master/images/icons/small/inv_wand_10.jpg new file mode 100644 index 0000000..ff6578d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_11.jpg b/other/AoWoW-master/images/icons/small/inv_wand_11.jpg new file mode 100644 index 0000000..1af4b5c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_12.jpg b/other/AoWoW-master/images/icons/small/inv_wand_12.jpg new file mode 100644 index 0000000..bc0d6e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_14.jpg b/other/AoWoW-master/images/icons/small/inv_wand_14.jpg new file mode 100644 index 0000000..7ceeb24 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_15.jpg b/other/AoWoW-master/images/icons/small/inv_wand_15.jpg new file mode 100644 index 0000000..acdf8df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_16.jpg b/other/AoWoW-master/images/icons/small/inv_wand_16.jpg new file mode 100644 index 0000000..7609d98 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_17.jpg b/other/AoWoW-master/images/icons/small/inv_wand_17.jpg new file mode 100644 index 0000000..784ca65 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_18.jpg b/other/AoWoW-master/images/icons/small/inv_wand_18.jpg new file mode 100644 index 0000000..1105e9c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_19.jpg b/other/AoWoW-master/images/icons/small/inv_wand_19.jpg new file mode 100644 index 0000000..b72d4d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/small/inv_wand_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..57d3d3c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/small/inv_wand_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..4244019 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_20.jpg b/other/AoWoW-master/images/icons/small/inv_wand_20.jpg new file mode 100644 index 0000000..83201b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_21.jpg b/other/AoWoW-master/images/icons/small/inv_wand_21.jpg new file mode 100644 index 0000000..e7bdeb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_22.jpg b/other/AoWoW-master/images/icons/small/inv_wand_22.jpg new file mode 100644 index 0000000..f59a8f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_23.jpg b/other/AoWoW-master/images/icons/small/inv_wand_23.jpg new file mode 100644 index 0000000..9198b35 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_24.jpg b/other/AoWoW-master/images/icons/small/inv_wand_24.jpg new file mode 100644 index 0000000..9868c9c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_wand_25.jpg b/other/AoWoW-master/images/icons/small/inv_wand_25.jpg new file mode 100644 index 0000000..4f7f7fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_wand_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_01.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_01.jpg new file mode 100644 index 0000000..8d2a3c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_02.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_02.jpg new file mode 100644 index 0000000..cc914cb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_03.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_03.jpg new file mode 100644 index 0000000..6127eed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_04.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_04.jpg new file mode 100644 index 0000000..69e29e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_05.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_05.jpg new file mode 100644 index 0000000..a1f1403 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_06.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_06.jpg new file mode 100644 index 0000000..c5d508a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_07.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_07.jpg new file mode 100644 index 0000000..18ed2fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_08.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_08.jpg new file mode 100644 index 0000000..d2f0ff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_09.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_09.jpg new file mode 100644 index 0000000..b4be978 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_10.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_10.jpg new file mode 100644 index 0000000..8ebb831 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_11.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_11.jpg new file mode 100644 index 0000000..2f8d434 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_12.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_12.jpg new file mode 100644 index 0000000..8b0a0eb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_13.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_13.jpg new file mode 100644 index 0000000..510bfb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_14.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_14.jpg new file mode 100644 index 0000000..a8e9263 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_15.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_15.jpg new file mode 100644 index 0000000..cb3cf76 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_16.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_16.jpg new file mode 100644 index 0000000..3bbee87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_17.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_17.jpg new file mode 100644 index 0000000..b3f6960 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_18.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_18.jpg new file mode 100644 index 0000000..a5487c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_19.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_19.jpg new file mode 100644 index 0000000..0356f13 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_20.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_20.jpg new file mode 100644 index 0000000..e5c5e67 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_28.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_28.jpg new file mode 100644 index 0000000..a8e9263 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_30.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_30.jpg new file mode 100644 index 0000000..8750e2e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_31.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_31.jpg new file mode 100644 index 0000000..2e0a0aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_32.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_32.jpg new file mode 100644 index 0000000..b15f4d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_37.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_37.jpg new file mode 100644 index 0000000..e5daa6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_38.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_38.jpg new file mode 100644 index 0000000..9efc2a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_bow_39.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_bow_39.jpg new file mode 100644 index 0000000..f4028ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_bow_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_01.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_01.jpg new file mode 100644 index 0000000..561608f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_02.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_02.jpg new file mode 100644 index 0000000..c56f488 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_03.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_03.jpg new file mode 100644 index 0000000..dac7aef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_04.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_04.jpg new file mode 100644 index 0000000..3704881 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_05.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_05.jpg new file mode 100644 index 0000000..b8bb0e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_06.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_06.jpg new file mode 100644 index 0000000..6d352b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_07.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_07.jpg new file mode 100644 index 0000000..5e2c706 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_08.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_08.jpg new file mode 100644 index 0000000..0a633db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_09.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_09.jpg new file mode 100644 index 0000000..062a4bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_10.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_10.jpg new file mode 100644 index 0000000..9773511 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_11.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_11.jpg new file mode 100644 index 0000000..bf671f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_12.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_12.jpg new file mode 100644 index 0000000..ed8d32b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_13.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_13.jpg new file mode 100644 index 0000000..2c772ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_14.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_14.jpg new file mode 100644 index 0000000..90beceb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_15.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_15.jpg new file mode 100644 index 0000000..9a7f1c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_16.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_16.jpg new file mode 100644 index 0000000..97364e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_17.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_17.jpg new file mode 100644 index 0000000..c6bad3d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_18.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_18.jpg new file mode 100644 index 0000000..5ee5a25 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_19.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_19.jpg new file mode 100644 index 0000000..5f54c75 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_20.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_20.jpg new file mode 100644 index 0000000..eaadf34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_25.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_25.jpg new file mode 100644 index 0000000..4df8749 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_26.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_26.jpg new file mode 100644 index 0000000..11ca360 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_crossbow_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_glave_01.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_glave_01.jpg new file mode 100644 index 0000000..96f3b79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_glave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halbard_01.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halbard_01.jpg new file mode 100644 index 0000000..78773d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halbard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd13.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd13.jpg new file mode 100644 index 0000000..049f688 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd14.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd14.jpg new file mode 100644 index 0000000..9a79eae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd15.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd15.jpg new file mode 100644 index 0000000..f880b68 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd16.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd16.jpg new file mode 100644 index 0000000..579df1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd17.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd17.jpg new file mode 100644 index 0000000..cc94547 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd18.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd18.jpg new file mode 100644 index 0000000..d7629fb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd19.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd19.jpg new file mode 100644 index 0000000..f6c19e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_02.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_02.jpg new file mode 100644 index 0000000..c9e4e8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_03.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_03.jpg new file mode 100644 index 0000000..b1fe97c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_04.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_04.jpg new file mode 100644 index 0000000..46608dc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_05.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_05.jpg new file mode 100644 index 0000000..79b7487 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_06.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_06.jpg new file mode 100644 index 0000000..ecfeaef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_07.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_07.jpg new file mode 100644 index 0000000..b31599f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_08.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_08.jpg new file mode 100644 index 0000000..9e62cd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_09.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_09.jpg new file mode 100644 index 0000000..28bc215 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_10.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_10.jpg new file mode 100644 index 0000000..743cc53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_11.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_11.jpg new file mode 100644 index 0000000..4c2ed38 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_12.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_12.jpg new file mode 100644 index 0000000..fb15c25 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_20.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_20.jpg new file mode 100644 index 0000000..f1356f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_22.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_22.jpg new file mode 100644 index 0000000..11b507d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_halberd_ahnqiraj.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_ahnqiraj.jpg new file mode 100644 index 0000000..f3e0607 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_halberd_ahnqiraj.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_01.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_01.jpg new file mode 100644 index 0000000..13e0cc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_02.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_02.jpg new file mode 100644 index 0000000..a748439 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_03.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_03.jpg new file mode 100644 index 0000000..bc24805 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_04.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_04.jpg new file mode 100644 index 0000000..c335c0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_05.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_05.jpg new file mode 100644 index 0000000..191dbf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_06.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_06.jpg new file mode 100644 index 0000000..4eb0fa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_07.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_07.jpg new file mode 100644 index 0000000..9ee0890 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_08.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_08.jpg new file mode 100644 index 0000000..618ed6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_09.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_09.jpg new file mode 100644 index 0000000..63e548d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_10.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_10.jpg new file mode 100644 index 0000000..aa9fcb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_11.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_11.jpg new file mode 100644 index 0000000..b645a44 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_12.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_12.jpg new file mode 100644 index 0000000..5dbecd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_13.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_13.jpg new file mode 100644 index 0000000..09bd29f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_14.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_14.jpg new file mode 100644 index 0000000..9e84284 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_15.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_15.jpg new file mode 100644 index 0000000..9ed946a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_hand_16.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_hand_16.jpg new file mode 100644 index 0000000..117d1b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_hand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_01.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_01.jpg new file mode 100644 index 0000000..254df0b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_02.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_02.jpg new file mode 100644 index 0000000..d95e9a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_03.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_03.jpg new file mode 100644 index 0000000..cbce3aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_04.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_04.jpg new file mode 100644 index 0000000..fd81c02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_05.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_05.jpg new file mode 100644 index 0000000..ef9e1e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_06.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_06.jpg new file mode 100644 index 0000000..c917803 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_07.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_07.jpg new file mode 100644 index 0000000..6e9c8a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_08.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_08.jpg new file mode 100644 index 0000000..129cbc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_09.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_09.jpg new file mode 100644 index 0000000..dafbab6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_10.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_10.jpg new file mode 100644 index 0000000..38fdb92 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_11.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_11.jpg new file mode 100644 index 0000000..ef5f4e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_13.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_13.jpg new file mode 100644 index 0000000..51cec59 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_14.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_14.jpg new file mode 100644 index 0000000..d857c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_15.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_15.jpg new file mode 100644 index 0000000..a8be8d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_16.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_16.jpg new file mode 100644 index 0000000..2179796 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_17.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_17.jpg new file mode 100644 index 0000000..f0a64b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_18.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_18.jpg new file mode 100644 index 0000000..78dde1a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_19.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_19.jpg new file mode 100644 index 0000000..282f3c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_20.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_20.jpg new file mode 100644 index 0000000..e6e346f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_21.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_21.jpg new file mode 100644 index 0000000..ae086e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_22.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_22.jpg new file mode 100644 index 0000000..7af3d17 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_23.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_23.jpg new file mode 100644 index 0000000..ab65d29 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_rifle_24.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_24.jpg new file mode 100644 index 0000000..cf97271 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_rifle_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_01.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_01.jpg new file mode 100644 index 0000000..ff1545d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_02.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_02.jpg new file mode 100644 index 0000000..2fa4e3b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_03.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_03.jpg new file mode 100644 index 0000000..ddfcd5a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_04.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_04.jpg new file mode 100644 index 0000000..ecdaa6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_05.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_05.jpg new file mode 100644 index 0000000..a6b5835 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_05.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_06.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_06.jpg new file mode 100644 index 0000000..ceb8274 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_06.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_07.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_07.jpg new file mode 100644 index 0000000..f5c10c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_07.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_08.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_08.jpg new file mode 100644 index 0000000..21b07e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_08.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_09.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_09.jpg new file mode 100644 index 0000000..b61c46c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_09.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_10.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_10.jpg new file mode 100644 index 0000000..7f2618b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_10.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_11.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_11.jpg new file mode 100644 index 0000000..089465f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_11.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_12.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_12.jpg new file mode 100644 index 0000000..5217b41 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_12.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_13.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_13.jpg new file mode 100644 index 0000000..a46d072 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_13.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_14.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_14.jpg new file mode 100644 index 0000000..6312c97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_14.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_15.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_15.jpg new file mode 100644 index 0000000..4417a18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_15.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_16.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_16.jpg new file mode 100644 index 0000000..9b13780 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_16.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_17.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_17.jpg new file mode 100644 index 0000000..b83b5c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_17.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_18.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_18.jpg new file mode 100644 index 0000000..8b91c29 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_18.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_19.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_19.jpg new file mode 100644 index 0000000..3b3e9d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_19.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_20.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_20.jpg new file mode 100644 index 0000000..94c1347 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_20.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_21.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_21.jpg new file mode 100644 index 0000000..c95d5f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_21.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_22.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_22.jpg new file mode 100644 index 0000000..4daff8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_22.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_23.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_23.jpg new file mode 100644 index 0000000..f477c14 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_23.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_24.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_24.jpg new file mode 100644 index 0000000..00fa518 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_24.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_25.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_25.jpg new file mode 100644 index 0000000..2d187b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_25.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_26.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_26.jpg new file mode 100644 index 0000000..a6b9a11 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_26.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_27.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_27.jpg new file mode 100644 index 0000000..9b570a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_27.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_28.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_28.jpg new file mode 100644 index 0000000..83f0c11 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_28.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_29.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_29.jpg new file mode 100644 index 0000000..4a70119 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_29.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_30.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_30.jpg new file mode 100644 index 0000000..8e5b755 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_30.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_31.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_31.jpg new file mode 100644 index 0000000..33c81e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_31.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_32.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_32.jpg new file mode 100644 index 0000000..679839e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_32.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_33.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_33.jpg new file mode 100644 index 0000000..42765f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_33.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_34.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_34.jpg new file mode 100644 index 0000000..fb2e85f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_34.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_35.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_35.jpg new file mode 100644 index 0000000..0f2939f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_35.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_37.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_37.jpg new file mode 100644 index 0000000..c53d9cc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_37.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_38.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_38.jpg new file mode 100644 index 0000000..806037e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_38.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_39.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_39.jpg new file mode 100644 index 0000000..0b47af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_39.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_40.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_40.jpg new file mode 100644 index 0000000..f7f4cc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_40.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_41.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_41.jpg new file mode 100644 index 0000000..07dc8d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_41.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_42.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_42.jpg new file mode 100644 index 0000000..47a4e36 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_42.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_43.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_43.jpg new file mode 100644 index 0000000..a7fdf22 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_43.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_44.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_44.jpg new file mode 100644 index 0000000..10670e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_44.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_45.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_45.jpg new file mode 100644 index 0000000..adfc974 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_45.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_46.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_46.jpg new file mode 100644 index 0000000..a7cd74e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_46.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_47.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_47.jpg new file mode 100644 index 0000000..57a4a30 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_47.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_48.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_48.jpg new file mode 100644 index 0000000..7bf9f70 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_48.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_49.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_49.jpg new file mode 100644 index 0000000..5562c2e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_49.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_50.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_50.jpg new file mode 100644 index 0000000..d87a216 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_50.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_51.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_51.jpg new file mode 100644 index 0000000..54a97d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_51.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_52.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_52.jpg new file mode 100644 index 0000000..b0ee0e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_52.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_53.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_53.jpg new file mode 100644 index 0000000..c910a6d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_53.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_54.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_54.jpg new file mode 100644 index 0000000..5963e84 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_54.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_55.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_55.jpg new file mode 100644 index 0000000..b19f545 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_55.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_56.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_56.jpg new file mode 100644 index 0000000..58bff43 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_56.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_57.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_57.jpg new file mode 100644 index 0000000..14e2862 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_57.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_58.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_58.jpg new file mode 100644 index 0000000..aae0519 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_58.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_59.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_59.jpg new file mode 100644 index 0000000..6363343 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_59.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_60.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_60.jpg new file mode 100644 index 0000000..63b21a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_60.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_61.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_61.jpg new file mode 100644 index 0000000..e0def77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_61.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_62.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_62.jpg new file mode 100644 index 0000000..ee11c4d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_62.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_63.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_63.jpg new file mode 100644 index 0000000..d286ac5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_63.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_64.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_64.jpg new file mode 100644 index 0000000..8d75b52 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_64.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_65.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_65.jpg new file mode 100644 index 0000000..96b2688 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_65.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_66.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_66.jpg new file mode 100644 index 0000000..669ddd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_66.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_71.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_71.jpg new file mode 100644 index 0000000..5031ad6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_71.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_73.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_73.jpg new file mode 100644 index 0000000..e81fbca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_73.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_74.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_74.jpg new file mode 100644 index 0000000..706de91 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_74.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_75.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_75.jpg new file mode 100644 index 0000000..614061e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_75.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_78.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_78.jpg new file mode 100644 index 0000000..d956240 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_78.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_79.jpg b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_79.jpg new file mode 100644 index 0000000..31784c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_weapon_shortblade_79.jpg differ diff --git a/other/AoWoW-master/images/icons/small/inv_zulgurubtrinket.jpg b/other/AoWoW-master/images/icons/small/inv_zulgurubtrinket.jpg new file mode 100644 index 0000000..648d81a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/inv_zulgurubtrinket.jpg differ diff --git a/other/AoWoW-master/images/icons/small/mail_gmicon.jpg b/other/AoWoW-master/images/icons/small/mail_gmicon.jpg new file mode 100644 index 0000000..201a8d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/mail_gmicon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/racial_dwarf_findtreasure.jpg b/other/AoWoW-master/images/icons/small/racial_dwarf_findtreasure.jpg new file mode 100644 index 0000000..816e1b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/racial_dwarf_findtreasure.jpg differ diff --git a/other/AoWoW-master/images/icons/small/racial_orc_berserkerstrength.jpg b/other/AoWoW-master/images/icons/small/racial_orc_berserkerstrength.jpg new file mode 100644 index 0000000..b37d5c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/racial_orc_berserkerstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/small/racial_troll_berserk.jpg b/other/AoWoW-master/images/icons/small/racial_troll_berserk.jpg new file mode 100644 index 0000000..ed11604 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/racial_troll_berserk.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_arcane01.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_arcane01.jpg new file mode 100644 index 0000000..c262ffe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_arcane01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_arcane02.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_arcane02.jpg new file mode 100644 index 0000000..bef0a7f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_arcane02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_arcane03.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_arcane03.jpg new file mode 100644 index 0000000..d64da96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_arcane03.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_arcane04.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_arcane04.jpg new file mode 100644 index 0000000..0028c6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_arcane04.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_arcanepotency.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_arcanepotency.jpg new file mode 100644 index 0000000..7876dcd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_arcanepotency.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_arcaneresilience.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_arcaneresilience.jpg new file mode 100644 index 0000000..92d6225 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_arcaneresilience.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_arcanetorrent.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_arcanetorrent.jpg new file mode 100644 index 0000000..5460a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_arcanetorrent.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_blast.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_blast.jpg new file mode 100644 index 0000000..ad95fad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_blast.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_blink.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_blink.jpg new file mode 100644 index 0000000..6407904 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_blink.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_focusedpower.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_focusedpower.jpg new file mode 100644 index 0000000..5d96586 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_manatap.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_manatap.jpg new file mode 100644 index 0000000..2b06691 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_manatap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_massdispel.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_massdispel.jpg new file mode 100644 index 0000000..7d3443c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_massdispel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_mindmastery.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_mindmastery.jpg new file mode 100644 index 0000000..6539062 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_mindmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portaldarnassus.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portaldarnassus.jpg new file mode 100644 index 0000000..30738d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portaldarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalexodar.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalexodar.jpg new file mode 100644 index 0000000..50e651e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalironforge.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalironforge.jpg new file mode 100644 index 0000000..5442b8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalorgrimmar.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalorgrimmar.jpg new file mode 100644 index 0000000..c3e2475 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalshattrath.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalshattrath.jpg new file mode 100644 index 0000000..1119867 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalsilvermoon.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalsilvermoon.jpg new file mode 100644 index 0000000..b74dfe3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalstonard.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalstonard.jpg new file mode 100644 index 0000000..72c3232 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalstormwind.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalstormwind.jpg new file mode 100644 index 0000000..a343e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portaltheramore.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portaltheramore.jpg new file mode 100644 index 0000000..45b5f0f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portaltheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalthunderbluff.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalthunderbluff.jpg new file mode 100644 index 0000000..6be075b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_portalundercity.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_portalundercity.jpg new file mode 100644 index 0000000..0f612e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_portalundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_prismaticcloak.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_prismaticcloak.jpg new file mode 100644 index 0000000..7d6301f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_prismaticcloak.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_starfire.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_starfire.jpg new file mode 100644 index 0000000..4855ca2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_starfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_studentofmagic.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_studentofmagic.jpg new file mode 100644 index 0000000..ba13cda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_studentofmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportdarnassus.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportdarnassus.jpg new file mode 100644 index 0000000..c1b3804 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportdarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportexodar.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportexodar.jpg new file mode 100644 index 0000000..35f7dc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportironforge.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportironforge.jpg new file mode 100644 index 0000000..351374a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportmoonglade.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportmoonglade.jpg new file mode 100644 index 0000000..bca0f0c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportmoonglade.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportorgrimmar.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportorgrimmar.jpg new file mode 100644 index 0000000..0382635 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportshattrath.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportshattrath.jpg new file mode 100644 index 0000000..dd14ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportsilvermoon.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportsilvermoon.jpg new file mode 100644 index 0000000..149c9a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportstonard.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportstonard.jpg new file mode 100644 index 0000000..79db6a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportstormwind.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportstormwind.jpg new file mode 100644 index 0000000..79ca81a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleporttheramore.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleporttheramore.jpg new file mode 100644 index 0000000..292f8c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleporttheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportthunderbluff.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportthunderbluff.jpg new file mode 100644 index 0000000..289784c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_arcane_teleportundercity.jpg b/other/AoWoW-master/images/icons/small/spell_arcane_teleportundercity.jpg new file mode 100644 index 0000000..1545c87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_arcane_teleportundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_brokenheart.jpg b/other/AoWoW-master/images/icons/small/spell_brokenheart.jpg new file mode 100644 index 0000000..3317109 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_brokenheart.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_chargenegative.jpg b/other/AoWoW-master/images/icons/small/spell_chargenegative.jpg new file mode 100644 index 0000000..a183c8f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_chargenegative.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_chargepositive.jpg b/other/AoWoW-master/images/icons/small/spell_chargepositive.jpg new file mode 100644 index 0000000..a326ce8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_chargepositive.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_bluecano.jpg b/other/AoWoW-master/images/icons/small/spell_fire_bluecano.jpg new file mode 100644 index 0000000..f5030db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_bluecano.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_bluefire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_bluefire.jpg new file mode 100644 index 0000000..b8477f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_bluefire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_bluefirenova.jpg b/other/AoWoW-master/images/icons/small/spell_fire_bluefirenova.jpg new file mode 100644 index 0000000..3af603a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_bluefirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_bluefireward.jpg b/other/AoWoW-master/images/icons/small/spell_fire_bluefireward.jpg new file mode 100644 index 0000000..1e71d77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_bluefireward.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_blueflamebolt.jpg b/other/AoWoW-master/images/icons/small/spell_fire_blueflamebolt.jpg new file mode 100644 index 0000000..796c040 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_blueflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_blueflamebreath.jpg b/other/AoWoW-master/images/icons/small/spell_fire_blueflamebreath.jpg new file mode 100644 index 0000000..dbe72fc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_blueflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_blueflamering.jpg b/other/AoWoW-master/images/icons/small/spell_fire_blueflamering.jpg new file mode 100644 index 0000000..15ad54f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_blueflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_blueflamestrike.jpg b/other/AoWoW-master/images/icons/small/spell_fire_blueflamestrike.jpg new file mode 100644 index 0000000..f1aa2ba Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_blueflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_bluehellfire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_bluehellfire.jpg new file mode 100644 index 0000000..b804b03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_bluehellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_blueimmolation.jpg b/other/AoWoW-master/images/icons/small/spell_fire_blueimmolation.jpg new file mode 100644 index 0000000..046cabc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_blueimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_bluepyroblast.jpg b/other/AoWoW-master/images/icons/small/spell_fire_bluepyroblast.jpg new file mode 100644 index 0000000..8f5de8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_bluepyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_bluerainoffire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_bluerainoffire.jpg new file mode 100644 index 0000000..225baca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_bluerainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_burningspeed.jpg b/other/AoWoW-master/images/icons/small/spell_fire_burningspeed.jpg new file mode 100644 index 0000000..a5a437b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_burningspeed.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_burnout.jpg b/other/AoWoW-master/images/icons/small/spell_fire_burnout.jpg new file mode 100644 index 0000000..147e9bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_burnout.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_elemental_totem.jpg b/other/AoWoW-master/images/icons/small/spell_fire_elemental_totem.jpg new file mode 100644 index 0000000..08c0be0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_elemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_elementaldevastation.jpg b/other/AoWoW-master/images/icons/small/spell_fire_elementaldevastation.jpg new file mode 100644 index 0000000..757d7de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_elementaldevastation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_enchantweapon.jpg b/other/AoWoW-master/images/icons/small/spell_fire_enchantweapon.jpg new file mode 100644 index 0000000..7c87558 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_enchantweapon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felcano.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felcano.jpg new file mode 100644 index 0000000..4a35082 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felcano.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felfire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felfire.jpg new file mode 100644 index 0000000..61f3310 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felfirenova.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felfirenova.jpg new file mode 100644 index 0000000..4ce68c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felfirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felfireward.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felfireward.jpg new file mode 100644 index 0000000..7d5186f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felfireward.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felflamebolt.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felflamebolt.jpg new file mode 100644 index 0000000..085cdfd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felflamebreath.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felflamebreath.jpg new file mode 100644 index 0000000..02b896f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felflamering.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felflamering.jpg new file mode 100644 index 0000000..944ec4f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felflamestrike.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felflamestrike.jpg new file mode 100644 index 0000000..0566373 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felhellfire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felhellfire.jpg new file mode 100644 index 0000000..d50ff96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felhellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felimmolation.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felimmolation.jpg new file mode 100644 index 0000000..ef309a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felpyroblast.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felpyroblast.jpg new file mode 100644 index 0000000..13bb899 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felpyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_felrainoffire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_felrainoffire.jpg new file mode 100644 index 0000000..a464c03 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_felrainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_fire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_fire.jpg new file mode 100644 index 0000000..3518ce1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_firearmor.jpg b/other/AoWoW-master/images/icons/small/spell_fire_firearmor.jpg new file mode 100644 index 0000000..6c00524 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_firearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_fireball.jpg b/other/AoWoW-master/images/icons/small/spell_fire_fireball.jpg new file mode 100644 index 0000000..5e990df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_fireball.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_fireball02.jpg b/other/AoWoW-master/images/icons/small/spell_fire_fireball02.jpg new file mode 100644 index 0000000..1144bde Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_fireball02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_firebolt.jpg b/other/AoWoW-master/images/icons/small/spell_fire_firebolt.jpg new file mode 100644 index 0000000..c9563db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_firebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_firebolt02.jpg b/other/AoWoW-master/images/icons/small/spell_fire_firebolt02.jpg new file mode 100644 index 0000000..63204b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_firebolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_flameblades.jpg b/other/AoWoW-master/images/icons/small/spell_fire_flameblades.jpg new file mode 100644 index 0000000..b79eab0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_flameblades.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_flamebolt.jpg b/other/AoWoW-master/images/icons/small/spell_fire_flamebolt.jpg new file mode 100644 index 0000000..5d2efc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_flamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_flameshock.jpg b/other/AoWoW-master/images/icons/small/spell_fire_flameshock.jpg new file mode 100644 index 0000000..92db894 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_flameshock.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_flametounge.jpg b/other/AoWoW-master/images/icons/small/spell_fire_flametounge.jpg new file mode 100644 index 0000000..8d3c2f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_flametounge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_flare.jpg b/other/AoWoW-master/images/icons/small/spell_fire_flare.jpg new file mode 100644 index 0000000..6f451d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_flare.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_frostresistancetotem.jpg b/other/AoWoW-master/images/icons/small/spell_fire_frostresistancetotem.jpg new file mode 100644 index 0000000..24e1dda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_frostresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_immolation.jpg b/other/AoWoW-master/images/icons/small/spell_fire_immolation.jpg new file mode 100644 index 0000000..3daed04 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_immolation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_incinerate.jpg b/other/AoWoW-master/images/icons/small/spell_fire_incinerate.jpg new file mode 100644 index 0000000..b3800f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_incinerate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_lavaspawn.jpg b/other/AoWoW-master/images/icons/small/spell_fire_lavaspawn.jpg new file mode 100644 index 0000000..53d87b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_lavaspawn.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_masterofelements.jpg b/other/AoWoW-master/images/icons/small/spell_fire_masterofelements.jpg new file mode 100644 index 0000000..10fb3cd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_masterofelements.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_meteorstorm.jpg b/other/AoWoW-master/images/icons/small/spell_fire_meteorstorm.jpg new file mode 100644 index 0000000..95b4ad7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_meteorstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_moltenblood.jpg b/other/AoWoW-master/images/icons/small/spell_fire_moltenblood.jpg new file mode 100644 index 0000000..5a26ed3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_moltenblood.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_playingwithfire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_playingwithfire.jpg new file mode 100644 index 0000000..0ff7ff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_playingwithfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_sealoffire.jpg b/other/AoWoW-master/images/icons/small/spell_fire_sealoffire.jpg new file mode 100644 index 0000000..c5ea7c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_sealoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_searingtotem.jpg b/other/AoWoW-master/images/icons/small/spell_fire_searingtotem.jpg new file mode 100644 index 0000000..47816d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_searingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_selfdestruct.jpg b/other/AoWoW-master/images/icons/small/spell_fire_selfdestruct.jpg new file mode 100644 index 0000000..53233a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_selfdestruct.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_soulburn.jpg b/other/AoWoW-master/images/icons/small/spell_fire_soulburn.jpg new file mode 100644 index 0000000..5f3f5f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_soulburn.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_sunkey.jpg b/other/AoWoW-master/images/icons/small/spell_fire_sunkey.jpg new file mode 100644 index 0000000..e11c6aa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_sunkey.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_totemofwrath.jpg b/other/AoWoW-master/images/icons/small/spell_fire_totemofwrath.jpg new file mode 100644 index 0000000..c15f34e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_totemofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_volcano.jpg b/other/AoWoW-master/images/icons/small/spell_fire_volcano.jpg new file mode 100644 index 0000000..ef4934d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_volcano.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fire_windsofwoe.jpg b/other/AoWoW-master/images/icons/small/spell_fire_windsofwoe.jpg new file mode 100644 index 0000000..35bd335 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fire_windsofwoe.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_fireresistancetotem_01.jpg b/other/AoWoW-master/images/icons/small/spell_fireresistancetotem_01.jpg new file mode 100644 index 0000000..0ce6b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_fireresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_arcticwinds.jpg b/other/AoWoW-master/images/icons/small/spell_frost_arcticwinds.jpg new file mode 100644 index 0000000..d9a87fa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_arcticwinds.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_chainsofice.jpg b/other/AoWoW-master/images/icons/small/spell_frost_chainsofice.jpg new file mode 100644 index 0000000..8624577 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_chainsofice.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_chillingarmor.jpg b/other/AoWoW-master/images/icons/small/spell_frost_chillingarmor.jpg new file mode 100644 index 0000000..c0dc4b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_chillingarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_chillingblast.jpg b/other/AoWoW-master/images/icons/small/spell_frost_chillingblast.jpg new file mode 100644 index 0000000..50628c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_chillingblast.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_chillingbolt.jpg b/other/AoWoW-master/images/icons/small/spell_frost_chillingbolt.jpg new file mode 100644 index 0000000..3ace525 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_chillingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_coldhearted.jpg b/other/AoWoW-master/images/icons/small/spell_frost_coldhearted.jpg new file mode 100644 index 0000000..852a81e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_coldhearted.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_fireresistancetotem.jpg b/other/AoWoW-master/images/icons/small/spell_frost_fireresistancetotem.jpg new file mode 100644 index 0000000..6431296 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_fireresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_freezingbreath.jpg b/other/AoWoW-master/images/icons/small/spell_frost_freezingbreath.jpg new file mode 100644 index 0000000..37c1e28 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_freezingbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frost.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frost.jpg new file mode 100644 index 0000000..5c814b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostarmor.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostarmor.jpg new file mode 100644 index 0000000..3f51c34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostarmor02.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostarmor02.jpg new file mode 100644 index 0000000..5dd8f6b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostarmor02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostblast.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostblast.jpg new file mode 100644 index 0000000..b087597 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostblast.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostbolt.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostbolt.jpg new file mode 100644 index 0000000..57c4ec7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostbolt02.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostbolt02.jpg new file mode 100644 index 0000000..dd48412 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostbolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostbrand.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostbrand.jpg new file mode 100644 index 0000000..02af13e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostbrand.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostnova.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostnova.jpg new file mode 100644 index 0000000..abbacd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostnova.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostshock.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostshock.jpg new file mode 100644 index 0000000..624624b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostshock.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frostward.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frostward.jpg new file mode 100644 index 0000000..3e961bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frostward.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_frozencore.jpg b/other/AoWoW-master/images/icons/small/spell_frost_frozencore.jpg new file mode 100644 index 0000000..a67937d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_frozencore.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_glacier.jpg b/other/AoWoW-master/images/icons/small/spell_frost_glacier.jpg new file mode 100644 index 0000000..26a064c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_glacier.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_iceclaw.jpg b/other/AoWoW-master/images/icons/small/spell_frost_iceclaw.jpg new file mode 100644 index 0000000..c860db9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_iceclaw.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_icefloes.jpg b/other/AoWoW-master/images/icons/small/spell_frost_icefloes.jpg new file mode 100644 index 0000000..27f8cb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_icefloes.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_iceshard.jpg b/other/AoWoW-master/images/icons/small/spell_frost_iceshard.jpg new file mode 100644 index 0000000..404c0ee Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_iceshard.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_iceshock.jpg b/other/AoWoW-master/images/icons/small/spell_frost_iceshock.jpg new file mode 100644 index 0000000..f0692a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_iceshock.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_icestorm.jpg b/other/AoWoW-master/images/icons/small/spell_frost_icestorm.jpg new file mode 100644 index 0000000..398f130 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_icestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_manaburn.jpg b/other/AoWoW-master/images/icons/small/spell_frost_manaburn.jpg new file mode 100644 index 0000000..da4be83 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_manarecharge.jpg b/other/AoWoW-master/images/icons/small/spell_frost_manarecharge.jpg new file mode 100644 index 0000000..c36b328 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_manarecharge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_stun.jpg b/other/AoWoW-master/images/icons/small/spell_frost_stun.jpg new file mode 100644 index 0000000..2f2df1a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_stun.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_summonwaterelemental.jpg b/other/AoWoW-master/images/icons/small/spell_frost_summonwaterelemental.jpg new file mode 100644 index 0000000..c993b3f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_summonwaterelemental.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_summonwaterelemental_2.jpg b/other/AoWoW-master/images/icons/small/spell_frost_summonwaterelemental_2.jpg new file mode 100644 index 0000000..1a5693a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_summonwaterelemental_2.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_windwalkon.jpg b/other/AoWoW-master/images/icons/small/spell_frost_windwalkon.jpg new file mode 100644 index 0000000..03d2e71 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_windwalkon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_wisp.jpg b/other/AoWoW-master/images/icons/small/spell_frost_wisp.jpg new file mode 100644 index 0000000..a20d7ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_wisp.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frost_wizardmark.jpg b/other/AoWoW-master/images/icons/small/spell_frost_wizardmark.jpg new file mode 100644 index 0000000..dbef602 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frost_wizardmark.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_frostresistancetotem_01.jpg b/other/AoWoW-master/images/icons/small/spell_frostresistancetotem_01.jpg new file mode 100644 index 0000000..abf0102 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_frostresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holiday_tow_spicecloud.jpg b/other/AoWoW-master/images/icons/small/spell_holiday_tow_spicecloud.jpg new file mode 100644 index 0000000..9864e01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holiday_tow_spicecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_absolution.jpg b/other/AoWoW-master/images/icons/small/spell_holy_absolution.jpg new file mode 100644 index 0000000..87a9a3b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_absolution.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_arcaneintellect.jpg b/other/AoWoW-master/images/icons/small/spell_holy_arcaneintellect.jpg new file mode 100644 index 0000000..54b14e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_arcaneintellect.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_ardentdefender.jpg b/other/AoWoW-master/images/icons/small/spell_holy_ardentdefender.jpg new file mode 100644 index 0000000..f18bc2c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_ardentdefender.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_ashestoashes.jpg b/other/AoWoW-master/images/icons/small/spell_holy_ashestoashes.jpg new file mode 100644 index 0000000..c13066c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_ashestoashes.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_auramastery.jpg b/other/AoWoW-master/images/icons/small/spell_holy_auramastery.jpg new file mode 100644 index 0000000..0224131 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_auramastery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_auraoflight.jpg b/other/AoWoW-master/images/icons/small/spell_holy_auraoflight.jpg new file mode 100644 index 0000000..3a3a773 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_auraoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_avengersshield.jpg b/other/AoWoW-master/images/icons/small/spell_holy_avengersshield.jpg new file mode 100644 index 0000000..9deeb7a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_avengersshield.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_avenginewrath.jpg b/other/AoWoW-master/images/icons/small/spell_holy_avenginewrath.jpg new file mode 100644 index 0000000..fdb7c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_avenginewrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blessedlife.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blessedlife.jpg new file mode 100644 index 0000000..d06d274 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blessedlife.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blessedrecovery.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blessedrecovery.jpg new file mode 100644 index 0000000..1e05894 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blessedrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blessedresillience.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blessedresillience.jpg new file mode 100644 index 0000000..b992b9f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blessedresillience.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blessingofagility.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blessingofagility.jpg new file mode 100644 index 0000000..77a6c30 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blessingofagility.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blessingofprotection.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blessingofprotection.jpg new file mode 100644 index 0000000..f5926b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blessingofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blessingofstamina.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blessingofstamina.jpg new file mode 100644 index 0000000..8d1c47a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blessingofstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blessingofstrength.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blessingofstrength.jpg new file mode 100644 index 0000000..06620da Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blessingofstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_blindingheal.jpg b/other/AoWoW-master/images/icons/small/spell_holy_blindingheal.jpg new file mode 100644 index 0000000..8f6dc6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_blindingheal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_championsbond.jpg b/other/AoWoW-master/images/icons/small/spell_holy_championsbond.jpg new file mode 100644 index 0000000..626f4d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_championsbond.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_championsgrace.jpg b/other/AoWoW-master/images/icons/small/spell_holy_championsgrace.jpg new file mode 100644 index 0000000..ddec1ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_championsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_chastise.jpg b/other/AoWoW-master/images/icons/small/spell_holy_chastise.jpg new file mode 100644 index 0000000..ac7e383 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_chastise.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_circleofrenewal.jpg b/other/AoWoW-master/images/icons/small/spell_holy_circleofrenewal.jpg new file mode 100644 index 0000000..084538f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_circleofrenewal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_consumemagic.jpg b/other/AoWoW-master/images/icons/small/spell_holy_consumemagic.jpg new file mode 100644 index 0000000..a68d99a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_consumemagic.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_crusade.jpg b/other/AoWoW-master/images/icons/small/spell_holy_crusade.jpg new file mode 100644 index 0000000..45a61ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_crusaderaura.jpg b/other/AoWoW-master/images/icons/small/spell_holy_crusaderaura.jpg new file mode 100644 index 0000000..79843f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_crusaderaura.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_crusaderstrike.jpg b/other/AoWoW-master/images/icons/small/spell_holy_crusaderstrike.jpg new file mode 100644 index 0000000..9f43672 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_crusaderstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_devotion.jpg b/other/AoWoW-master/images/icons/small/spell_holy_devotion.jpg new file mode 100644 index 0000000..2a326ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_devotion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_devotionaura.jpg b/other/AoWoW-master/images/icons/small/spell_holy_devotionaura.jpg new file mode 100644 index 0000000..537f73e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_devotionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_dispelmagic.jpg b/other/AoWoW-master/images/icons/small/spell_holy_dispelmagic.jpg new file mode 100644 index 0000000..ad2d3e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_dispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_divineillumination.jpg b/other/AoWoW-master/images/icons/small/spell_holy_divineillumination.jpg new file mode 100644 index 0000000..3c69532 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_divineillumination.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_divineintervention.jpg b/other/AoWoW-master/images/icons/small/spell_holy_divineintervention.jpg new file mode 100644 index 0000000..116f327 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_divineintervention.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_divinepurpose.jpg b/other/AoWoW-master/images/icons/small/spell_holy_divinepurpose.jpg new file mode 100644 index 0000000..c2bd21d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_divinepurpose.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_divinespirit.jpg b/other/AoWoW-master/images/icons/small/spell_holy_divinespirit.jpg new file mode 100644 index 0000000..ce7ff0f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_divinespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_dizzy.jpg b/other/AoWoW-master/images/icons/small/spell_holy_dizzy.jpg new file mode 100644 index 0000000..39dd5bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_dizzy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_elunesgrace.jpg b/other/AoWoW-master/images/icons/small/spell_holy_elunesgrace.jpg new file mode 100644 index 0000000..56abaf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_elunesgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_empowerchampion.jpg b/other/AoWoW-master/images/icons/small/spell_holy_empowerchampion.jpg new file mode 100644 index 0000000..a4d8819 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_empowerchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_excorcism.jpg b/other/AoWoW-master/images/icons/small/spell_holy_excorcism.jpg new file mode 100644 index 0000000..dc2c881 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_excorcism.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_excorcism_02.jpg b/other/AoWoW-master/images/icons/small/spell_holy_excorcism_02.jpg new file mode 100644 index 0000000..f03c8d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_excorcism_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_eyeforaneye.jpg b/other/AoWoW-master/images/icons/small/spell_holy_eyeforaneye.jpg new file mode 100644 index 0000000..584b7ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_eyeforaneye.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_fanaticism.jpg b/other/AoWoW-master/images/icons/small/spell_holy_fanaticism.jpg new file mode 100644 index 0000000..379f7a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_fanaticism.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_fistofjustice.jpg b/other/AoWoW-master/images/icons/small/spell_holy_fistofjustice.jpg new file mode 100644 index 0000000..97f1974 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_fistofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_flashheal.jpg b/other/AoWoW-master/images/icons/small/spell_holy_flashheal.jpg new file mode 100644 index 0000000..b905614 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_flashheal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofkings.jpg new file mode 100644 index 0000000..ebf8669 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingoflight.jpg b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingoflight.jpg new file mode 100644 index 0000000..0f96443 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofsalvation.jpg b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofsalvation.jpg new file mode 100644 index 0000000..ef2ea19 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofsanctuary.jpg b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofsanctuary.jpg new file mode 100644 index 0000000..f8d9b6d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofsanctuary.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofwisdom.jpg b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofwisdom.jpg new file mode 100644 index 0000000..cabc2df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_greaterblessingofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_greaterheal.jpg b/other/AoWoW-master/images/icons/small/spell_holy_greaterheal.jpg new file mode 100644 index 0000000..dde7070 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_greaterheal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_harmundeadaura.jpg b/other/AoWoW-master/images/icons/small/spell_holy_harmundeadaura.jpg new file mode 100644 index 0000000..cb440d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_harmundeadaura.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_heal.jpg b/other/AoWoW-master/images/icons/small/spell_holy_heal.jpg new file mode 100644 index 0000000..1f53044 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_heal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_heal02.jpg b/other/AoWoW-master/images/icons/small/spell_holy_heal02.jpg new file mode 100644 index 0000000..fe0814e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_heal02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_healingaura.jpg b/other/AoWoW-master/images/icons/small/spell_holy_healingaura.jpg new file mode 100644 index 0000000..bfb04a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_healingaura.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_healingfocus.jpg b/other/AoWoW-master/images/icons/small/spell_holy_healingfocus.jpg new file mode 100644 index 0000000..2a32661 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_healingfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_heroism.jpg b/other/AoWoW-master/images/icons/small/spell_holy_heroism.jpg new file mode 100644 index 0000000..286f645 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_holybolt.jpg b/other/AoWoW-master/images/icons/small/spell_holy_holybolt.jpg new file mode 100644 index 0000000..392b15e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_holybolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_holyguidance.jpg b/other/AoWoW-master/images/icons/small/spell_holy_holyguidance.jpg new file mode 100644 index 0000000..66dd7d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_holyguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_holynova.jpg b/other/AoWoW-master/images/icons/small/spell_holy_holynova.jpg new file mode 100644 index 0000000..6cbf883 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_holynova.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_holyprotection.jpg b/other/AoWoW-master/images/icons/small/spell_holy_holyprotection.jpg new file mode 100644 index 0000000..bcddfa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_holyprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_holysmite.jpg b/other/AoWoW-master/images/icons/small/spell_holy_holysmite.jpg new file mode 100644 index 0000000..56ccf6e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_holysmite.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_improvedresistanceauras.jpg b/other/AoWoW-master/images/icons/small/spell_holy_improvedresistanceauras.jpg new file mode 100644 index 0000000..f987ee3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_improvedresistanceauras.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_innerfire.jpg b/other/AoWoW-master/images/icons/small/spell_holy_innerfire.jpg new file mode 100644 index 0000000..615e61f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_innerfire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_lastingdefense.jpg b/other/AoWoW-master/images/icons/small/spell_holy_lastingdefense.jpg new file mode 100644 index 0000000..f1ef2bf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_lastingdefense.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_layonhands.jpg b/other/AoWoW-master/images/icons/small/spell_holy_layonhands.jpg new file mode 100644 index 0000000..91cf7ec Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_layonhands.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_lesserheal.jpg b/other/AoWoW-master/images/icons/small/spell_holy_lesserheal.jpg new file mode 100644 index 0000000..e6e0fda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_lesserheal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_lesserheal02.jpg b/other/AoWoW-master/images/icons/small/spell_holy_lesserheal02.jpg new file mode 100644 index 0000000..54f6e1a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_lesserheal02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_lightsgrace.jpg b/other/AoWoW-master/images/icons/small/spell_holy_lightsgrace.jpg new file mode 100644 index 0000000..74f9c48 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_lightsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_magicalsentry.jpg b/other/AoWoW-master/images/icons/small/spell_holy_magicalsentry.jpg new file mode 100644 index 0000000..78194ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_magicalsentry.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_mindsooth.jpg b/other/AoWoW-master/images/icons/small/spell_holy_mindsooth.jpg new file mode 100644 index 0000000..61a50c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_mindsooth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_mindvision.jpg b/other/AoWoW-master/images/icons/small/spell_holy_mindvision.jpg new file mode 100644 index 0000000..bbebc79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_mindvision.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_nullifydisease.jpg b/other/AoWoW-master/images/icons/small/spell_holy_nullifydisease.jpg new file mode 100644 index 0000000..d6bf4e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_painsupression.jpg b/other/AoWoW-master/images/icons/small/spell_holy_painsupression.jpg new file mode 100644 index 0000000..015a0fd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_painsupression.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_persuitofjustice.jpg b/other/AoWoW-master/images/icons/small/spell_holy_persuitofjustice.jpg new file mode 100644 index 0000000..f625496 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_persuitofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_power.jpg b/other/AoWoW-master/images/icons/small/spell_holy_power.jpg new file mode 100644 index 0000000..620ddfe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_power.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_powerinfusion.jpg b/other/AoWoW-master/images/icons/small/spell_holy_powerinfusion.jpg new file mode 100644 index 0000000..5b77d45 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_powerinfusion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_powerwordshield.jpg b/other/AoWoW-master/images/icons/small/spell_holy_powerwordshield.jpg new file mode 100644 index 0000000..4363317 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_powerwordshield.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_prayeroffortitude.jpg b/other/AoWoW-master/images/icons/small/spell_holy_prayeroffortitude.jpg new file mode 100644 index 0000000..5039ff2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_prayeroffortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_prayerofhealing.jpg b/other/AoWoW-master/images/icons/small/spell_holy_prayerofhealing.jpg new file mode 100644 index 0000000..f12f9e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_prayerofhealing.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_prayerofhealing02.jpg b/other/AoWoW-master/images/icons/small/spell_holy_prayerofhealing02.jpg new file mode 100644 index 0000000..2e99143 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_prayerofhealing02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_prayerofmendingtga.jpg b/other/AoWoW-master/images/icons/small/spell_holy_prayerofmendingtga.jpg new file mode 100644 index 0000000..cc46624 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_prayerofmendingtga.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_prayerofshadowprotection.jpg b/other/AoWoW-master/images/icons/small/spell_holy_prayerofshadowprotection.jpg new file mode 100644 index 0000000..da0e20b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_prayerofshadowprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_prayerofspirit.jpg b/other/AoWoW-master/images/icons/small/spell_holy_prayerofspirit.jpg new file mode 100644 index 0000000..41df032 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_prayerofspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_proclaimchampion.jpg b/other/AoWoW-master/images/icons/small/spell_holy_proclaimchampion.jpg new file mode 100644 index 0000000..fcfbd1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_proclaimchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_pureofheart.jpg b/other/AoWoW-master/images/icons/small/spell_holy_pureofheart.jpg new file mode 100644 index 0000000..06b320c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_pureofheart.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_purify.jpg b/other/AoWoW-master/images/icons/small/spell_holy_purify.jpg new file mode 100644 index 0000000..a002b7b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_purify.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_purifyingpower.jpg b/other/AoWoW-master/images/icons/small/spell_holy_purifyingpower.jpg new file mode 100644 index 0000000..d98e254 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_purifyingpower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_redemption.jpg b/other/AoWoW-master/images/icons/small/spell_holy_redemption.jpg new file mode 100644 index 0000000..38d88e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_redemption.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_removecurse.jpg b/other/AoWoW-master/images/icons/small/spell_holy_removecurse.jpg new file mode 100644 index 0000000..6641de9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_renew.jpg b/other/AoWoW-master/images/icons/small/spell_holy_renew.jpg new file mode 100644 index 0000000..fb54045 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_renew.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_restoration.jpg b/other/AoWoW-master/images/icons/small/spell_holy_restoration.jpg new file mode 100644 index 0000000..2783e92 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_restoration.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_resurrection.jpg b/other/AoWoW-master/images/icons/small/spell_holy_resurrection.jpg new file mode 100644 index 0000000..470b05a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_resurrection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_retribution.jpg b/other/AoWoW-master/images/icons/small/spell_holy_retribution.jpg new file mode 100644 index 0000000..4bb8530 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_retribution.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_retributionaura.jpg b/other/AoWoW-master/images/icons/small/spell_holy_retributionaura.jpg new file mode 100644 index 0000000..16aaf78 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_retributionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_revivechampion.jpg b/other/AoWoW-master/images/icons/small/spell_holy_revivechampion.jpg new file mode 100644 index 0000000..0929418 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_revivechampion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_righteousfury.jpg b/other/AoWoW-master/images/icons/small/spell_holy_righteousfury.jpg new file mode 100644 index 0000000..9b00139 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_righteousfury.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_righteousnessaura.jpg b/other/AoWoW-master/images/icons/small/spell_holy_righteousnessaura.jpg new file mode 100644 index 0000000..a9715c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_righteousnessaura.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofblood.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofblood.jpg new file mode 100644 index 0000000..700d8bd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofblood.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealoffury.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealoffury.jpg new file mode 100644 index 0000000..3f15959 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealoffury.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofmight.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofmight.jpg new file mode 100644 index 0000000..0e1536d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofmight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofprotection.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofprotection.jpg new file mode 100644 index 0000000..89a0872 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofrighteousness.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofrighteousness.jpg new file mode 100644 index 0000000..ed5b87a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofrighteousness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofsacrifice.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofsacrifice.jpg new file mode 100644 index 0000000..dfa3e27 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofsalvation.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofsalvation.jpg new file mode 100644 index 0000000..ef311e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofvalor.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofvalor.jpg new file mode 100644 index 0000000..7f679d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofvalor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofvengeance.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofvengeance.jpg new file mode 100644 index 0000000..2c75c80 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofvengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofwisdom.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofwisdom.jpg new file mode 100644 index 0000000..845a62d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_sealofwrath.jpg b/other/AoWoW-master/images/icons/small/spell_holy_sealofwrath.jpg new file mode 100644 index 0000000..ed25c75 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_sealofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_searinglight.jpg b/other/AoWoW-master/images/icons/small/spell_holy_searinglight.jpg new file mode 100644 index 0000000..c016647 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_searinglight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_searinglightpriest.jpg b/other/AoWoW-master/images/icons/small/spell_holy_searinglightpriest.jpg new file mode 100644 index 0000000..4eb6abd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_searinglightpriest.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_senseundead.jpg b/other/AoWoW-master/images/icons/small/spell_holy_senseundead.jpg new file mode 100644 index 0000000..b7bb449 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_senseundead.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_silence.jpg b/other/AoWoW-master/images/icons/small/spell_holy_silence.jpg new file mode 100644 index 0000000..5c1104d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_silence.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_spellwarding.jpg b/other/AoWoW-master/images/icons/small/spell_holy_spellwarding.jpg new file mode 100644 index 0000000..1f11afb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_spellwarding.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_spiritualguidence.jpg b/other/AoWoW-master/images/icons/small/spell_holy_spiritualguidence.jpg new file mode 100644 index 0000000..835c15e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_spiritualguidence.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_stoicism.jpg b/other/AoWoW-master/images/icons/small/spell_holy_stoicism.jpg new file mode 100644 index 0000000..da41006 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_stoicism.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_summonchampion.jpg b/other/AoWoW-master/images/icons/small/spell_holy_summonchampion.jpg new file mode 100644 index 0000000..7b70c79 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_summonchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_summonlightwell.jpg b/other/AoWoW-master/images/icons/small/spell_holy_summonlightwell.jpg new file mode 100644 index 0000000..9d9de27 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_summonlightwell.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_surgeoflight.jpg b/other/AoWoW-master/images/icons/small/spell_holy_surgeoflight.jpg new file mode 100644 index 0000000..d43a7f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_surgeoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_symbolofhope.jpg b/other/AoWoW-master/images/icons/small/spell_holy_symbolofhope.jpg new file mode 100644 index 0000000..8bb6db7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_symbolofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_turnundead.jpg b/other/AoWoW-master/images/icons/small/spell_holy_turnundead.jpg new file mode 100644 index 0000000..f180d5f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_turnundead.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_unyieldingfaith.jpg b/other/AoWoW-master/images/icons/small/spell_holy_unyieldingfaith.jpg new file mode 100644 index 0000000..fffa96d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_unyieldingfaith.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_vindication.jpg b/other/AoWoW-master/images/icons/small/spell_holy_vindication.jpg new file mode 100644 index 0000000..3ce0cb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_vindication.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_weaponmastery.jpg b/other/AoWoW-master/images/icons/small/spell_holy_weaponmastery.jpg new file mode 100644 index 0000000..5b93b1d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_holy_wordfortitude.jpg b/other/AoWoW-master/images/icons/small/spell_holy_wordfortitude.jpg new file mode 100644 index 0000000..f535cbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_holy_wordfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_ice_lament.jpg b/other/AoWoW-master/images/icons/small/spell_ice_lament.jpg new file mode 100644 index 0000000..961e86c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_ice_lament.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_ice_magicdamage.jpg b/other/AoWoW-master/images/icons/small/spell_ice_magicdamage.jpg new file mode 100644 index 0000000..a2c8d04 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_ice_magicdamage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_lightning_lightningbolt01.jpg b/other/AoWoW-master/images/icons/small/spell_lightning_lightningbolt01.jpg new file mode 100644 index 0000000..cf18486 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_lightning_lightningbolt01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_magearmor.jpg b/other/AoWoW-master/images/icons/small/spell_magearmor.jpg new file mode 100644 index 0000000..7aed6b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_magic_featherfall.jpg b/other/AoWoW-master/images/icons/small/spell_magic_featherfall.jpg new file mode 100644 index 0000000..0aec67b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_magic_featherfall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_magic_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/small/spell_magic_greaterblessingofkings.jpg new file mode 100644 index 0000000..1bcff5d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_magic_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_magic_lesserinvisibilty.jpg b/other/AoWoW-master/images/icons/small/spell_magic_lesserinvisibilty.jpg new file mode 100644 index 0000000..bcef705 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_magic_lesserinvisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_magic_magearmor.jpg b/other/AoWoW-master/images/icons/small/spell_magic_magearmor.jpg new file mode 100644 index 0000000..f2f4658 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_magic_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_magic_polymorphchicken.jpg b/other/AoWoW-master/images/icons/small/spell_magic_polymorphchicken.jpg new file mode 100644 index 0000000..5b5c67d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_magic_polymorphchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_magic_polymorphpig.jpg b/other/AoWoW-master/images/icons/small/spell_magic_polymorphpig.jpg new file mode 100644 index 0000000..2eeeaa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_magic_polymorphpig.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_conjuremanajewel.jpg b/other/AoWoW-master/images/icons/small/spell_misc_conjuremanajewel.jpg new file mode 100644 index 0000000..cad4341 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_conjuremanajewel.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_drink.jpg b/other/AoWoW-master/images/icons/small/spell_misc_drink.jpg new file mode 100644 index 0000000..cf044de Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_drink.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_food.jpg b/other/AoWoW-master/images/icons/small/spell_misc_food.jpg new file mode 100644 index 0000000..e24a6a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_food.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvpcombatmorale.jpg b/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvpcombatmorale.jpg new file mode 100644 index 0000000..37720c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvpcombatmorale.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvphonorholdfavor.jpg b/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvphonorholdfavor.jpg new file mode 100644 index 0000000..9bc386c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvphonorholdfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvpthrallmarfavor.jpg b/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvpthrallmarfavor.jpg new file mode 100644 index 0000000..ac1016a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_hellifrepvpthrallmarfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_warsongbrutal.jpg b/other/AoWoW-master/images/icons/small/spell_misc_warsongbrutal.jpg new file mode 100644 index 0000000..52260bb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_warsongbrutal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_misc_warsongfocus.jpg b/other/AoWoW-master/images/icons/small/spell_misc_warsongfocus.jpg new file mode 100644 index 0000000..cbf290f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_misc_warsongfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_abolishmagic.jpg b/other/AoWoW-master/images/icons/small/spell_nature_abolishmagic.jpg new file mode 100644 index 0000000..ae662cc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_abolishmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_acid_01.jpg b/other/AoWoW-master/images/icons/small/spell_nature_acid_01.jpg new file mode 100644 index 0000000..9645e74 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_acid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_agitatingtotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_agitatingtotem.jpg new file mode 100644 index 0000000..f8c350c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_agitatingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_ancestralguardian.jpg b/other/AoWoW-master/images/icons/small/spell_nature_ancestralguardian.jpg new file mode 100644 index 0000000..8a7f0d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_ancestralguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_astralrecal.jpg b/other/AoWoW-master/images/icons/small/spell_nature_astralrecal.jpg new file mode 100644 index 0000000..a2087d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_astralrecal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_astralrecalgroup.jpg b/other/AoWoW-master/images/icons/small/spell_nature_astralrecalgroup.jpg new file mode 100644 index 0000000..3816007 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_astralrecalgroup.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_bloodlust.jpg b/other/AoWoW-master/images/icons/small/spell_nature_bloodlust.jpg new file mode 100644 index 0000000..15f3c78 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_bloodlust.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_brilliance.jpg b/other/AoWoW-master/images/icons/small/spell_nature_brilliance.jpg new file mode 100644 index 0000000..8785794 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_brilliance.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_callstorm.jpg b/other/AoWoW-master/images/icons/small/spell_nature_callstorm.jpg new file mode 100644 index 0000000..196b865 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_callstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_chainlightning.jpg b/other/AoWoW-master/images/icons/small/spell_nature_chainlightning.jpg new file mode 100644 index 0000000..d69361b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_chainlightning.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_corrosivebreath.jpg b/other/AoWoW-master/images/icons/small/spell_nature_corrosivebreath.jpg new file mode 100644 index 0000000..11ce269 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_corrosivebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_crystalball.jpg b/other/AoWoW-master/images/icons/small/spell_nature_crystalball.jpg new file mode 100644 index 0000000..a40f5ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_crystalball.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_cyclone.jpg b/other/AoWoW-master/images/icons/small/spell_nature_cyclone.jpg new file mode 100644 index 0000000..c093959 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_diseasecleansingtotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_diseasecleansingtotem.jpg new file mode 100644 index 0000000..d21417e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_diseasecleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_drowsy.jpg b/other/AoWoW-master/images/icons/small/spell_nature_drowsy.jpg new file mode 100644 index 0000000..00665b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_drowsy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_dryaddispelmagic.jpg b/other/AoWoW-master/images/icons/small/spell_nature_dryaddispelmagic.jpg new file mode 100644 index 0000000..dc3f361 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_dryaddispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_earthbind.jpg b/other/AoWoW-master/images/icons/small/spell_nature_earthbind.jpg new file mode 100644 index 0000000..d2d1a8d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_earthbind.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_earthbindtotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_earthbindtotem.jpg new file mode 100644 index 0000000..274ca87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_earthbindtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_earthelemental_totem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_earthelemental_totem.jpg new file mode 100644 index 0000000..641be43 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_earthelemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_earthquake.jpg b/other/AoWoW-master/images/icons/small/spell_nature_earthquake.jpg new file mode 100644 index 0000000..6135668 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_earthquake.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_earthshock.jpg b/other/AoWoW-master/images/icons/small/spell_nature_earthshock.jpg new file mode 100644 index 0000000..5c8dc09 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_earthshock.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_elementalabsorption.jpg b/other/AoWoW-master/images/icons/small/spell_nature_elementalabsorption.jpg new file mode 100644 index 0000000..dfdbc22 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_elementalabsorption.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_elementalprecision_1.jpg b/other/AoWoW-master/images/icons/small/spell_nature_elementalprecision_1.jpg new file mode 100644 index 0000000..353f472 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_elementalprecision_1.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_elementalprecision_2.jpg b/other/AoWoW-master/images/icons/small/spell_nature_elementalprecision_2.jpg new file mode 100644 index 0000000..bdf5989 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_elementalprecision_2.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_elementalshields.jpg b/other/AoWoW-master/images/icons/small/spell_nature_elementalshields.jpg new file mode 100644 index 0000000..12395db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_elementalshields.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_enchantarmor.jpg b/other/AoWoW-master/images/icons/small/spell_nature_enchantarmor.jpg new file mode 100644 index 0000000..8dd0c4b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_enchantarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_eyeofthestorm.jpg b/other/AoWoW-master/images/icons/small/spell_nature_eyeofthestorm.jpg new file mode 100644 index 0000000..b875d68 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_eyeofthestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_faeriefire.jpg b/other/AoWoW-master/images/icons/small/spell_nature_faeriefire.jpg new file mode 100644 index 0000000..3e39c58 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_faeriefire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_farsight.jpg b/other/AoWoW-master/images/icons/small/spell_nature_farsight.jpg new file mode 100644 index 0000000..6d1dd56 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_farsight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_focusedmind.jpg b/other/AoWoW-master/images/icons/small/spell_nature_focusedmind.jpg new file mode 100644 index 0000000..1badefc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_focusedmind.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_forceofnature.jpg b/other/AoWoW-master/images/icons/small/spell_nature_forceofnature.jpg new file mode 100644 index 0000000..59eebf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_giftofthewaterspirit.jpg b/other/AoWoW-master/images/icons/small/spell_nature_giftofthewaterspirit.jpg new file mode 100644 index 0000000..5b7e4a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_giftofthewaterspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_giftofthewild.jpg b/other/AoWoW-master/images/icons/small/spell_nature_giftofthewild.jpg new file mode 100644 index 0000000..0ef16ad Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_giftofthewild.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_groundingtotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_groundingtotem.jpg new file mode 100644 index 0000000..88acca0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_groundingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_guardianward.jpg b/other/AoWoW-master/images/icons/small/spell_nature_guardianward.jpg new file mode 100644 index 0000000..fb3dd58 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_guardianward.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_healingtouch.jpg b/other/AoWoW-master/images/icons/small/spell_nature_healingtouch.jpg new file mode 100644 index 0000000..2047129 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_healingtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_healingwavegreater.jpg b/other/AoWoW-master/images/icons/small/spell_nature_healingwavegreater.jpg new file mode 100644 index 0000000..c14c40f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_healingwavegreater.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_healingwavelesser.jpg b/other/AoWoW-master/images/icons/small/spell_nature_healingwavelesser.jpg new file mode 100644 index 0000000..6f28320 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_healingwavelesser.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_healingway.jpg b/other/AoWoW-master/images/icons/small/spell_nature_healingway.jpg new file mode 100644 index 0000000..789c14e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_healingway.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_insectswarm.jpg b/other/AoWoW-master/images/icons/small/spell_nature_insectswarm.jpg new file mode 100644 index 0000000..342cc1f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_insectswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_invisibilitytotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_invisibilitytotem.jpg new file mode 100644 index 0000000..ff7b46b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_invisibilitytotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_invisibilty.jpg b/other/AoWoW-master/images/icons/small/spell_nature_invisibilty.jpg new file mode 100644 index 0000000..956f358 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_invisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_lightning.jpg b/other/AoWoW-master/images/icons/small/spell_nature_lightning.jpg new file mode 100644 index 0000000..aa5a3fa Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_lightning.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_lightningbolt.jpg b/other/AoWoW-master/images/icons/small/spell_nature_lightningbolt.jpg new file mode 100644 index 0000000..b77a40b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_lightningbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_lightningoverload.jpg b/other/AoWoW-master/images/icons/small/spell_nature_lightningoverload.jpg new file mode 100644 index 0000000..a03f35c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_lightningoverload.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_lightningshield.jpg b/other/AoWoW-master/images/icons/small/spell_nature_lightningshield.jpg new file mode 100644 index 0000000..8ee93f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_lightningshield.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_magicimmunity.jpg b/other/AoWoW-master/images/icons/small/spell_nature_magicimmunity.jpg new file mode 100644 index 0000000..aec8d4d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_magicimmunity.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_manaregentotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_manaregentotem.jpg new file mode 100644 index 0000000..82b2305 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_manaregentotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_massteleport.jpg b/other/AoWoW-master/images/icons/small/spell_nature_massteleport.jpg new file mode 100644 index 0000000..84725fe Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_massteleport.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_mentalquickness.jpg b/other/AoWoW-master/images/icons/small/spell_nature_mentalquickness.jpg new file mode 100644 index 0000000..84caa8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_mentalquickness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_mirrorimage.jpg b/other/AoWoW-master/images/icons/small/spell_nature_mirrorimage.jpg new file mode 100644 index 0000000..cb6cd18 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_mirrorimage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_moonglow.jpg b/other/AoWoW-master/images/icons/small/spell_nature_moonglow.jpg new file mode 100644 index 0000000..c45dd7f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_moonglow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_moonkey.jpg b/other/AoWoW-master/images/icons/small/spell_nature_moonkey.jpg new file mode 100644 index 0000000..f880376 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_moonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_natureblessing.jpg b/other/AoWoW-master/images/icons/small/spell_nature_natureblessing.jpg new file mode 100644 index 0000000..7463cdf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_natureblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_natureguardian.jpg b/other/AoWoW-master/images/icons/small/spell_nature_natureguardian.jpg new file mode 100644 index 0000000..b427a6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_natureguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_natureresistancetotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_natureresistancetotem.jpg new file mode 100644 index 0000000..401342b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_natureresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_naturesblessing.jpg b/other/AoWoW-master/images/icons/small/spell_nature_naturesblessing.jpg new file mode 100644 index 0000000..b2a6854 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_naturesblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_natureswrath.jpg b/other/AoWoW-master/images/icons/small/spell_nature_natureswrath.jpg new file mode 100644 index 0000000..f4e169e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_natureswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_naturetouchdecay.jpg b/other/AoWoW-master/images/icons/small/spell_nature_naturetouchdecay.jpg new file mode 100644 index 0000000..4e1c866 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_naturetouchdecay.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_naturetouchgrow.jpg b/other/AoWoW-master/images/icons/small/spell_nature_naturetouchgrow.jpg new file mode 100644 index 0000000..6e2ee50 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_naturetouchgrow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_nullifydisease.jpg b/other/AoWoW-master/images/icons/small/spell_nature_nullifydisease.jpg new file mode 100644 index 0000000..6617060 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_nullifypoison.jpg b/other/AoWoW-master/images/icons/small/spell_nature_nullifypoison.jpg new file mode 100644 index 0000000..7ef1ddf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_nullifypoison.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_nullifypoison_02.jpg b/other/AoWoW-master/images/icons/small/spell_nature_nullifypoison_02.jpg new file mode 100644 index 0000000..7d0ae98 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_nullifypoison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_nullward.jpg b/other/AoWoW-master/images/icons/small/spell_nature_nullward.jpg new file mode 100644 index 0000000..d68652f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_nullward.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_poisoncleansingtotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_poisoncleansingtotem.jpg new file mode 100644 index 0000000..6edc3f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_poisoncleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_polymorph.jpg b/other/AoWoW-master/images/icons/small/spell_nature_polymorph.jpg new file mode 100644 index 0000000..4a77897 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_polymorph.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_polymorph_cow.jpg b/other/AoWoW-master/images/icons/small/spell_nature_polymorph_cow.jpg new file mode 100644 index 0000000..67a67c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_polymorph_cow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_preservation.jpg b/other/AoWoW-master/images/icons/small/spell_nature_preservation.jpg new file mode 100644 index 0000000..c3c2665 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_preservation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_protectionformnature.jpg b/other/AoWoW-master/images/icons/small/spell_nature_protectionformnature.jpg new file mode 100644 index 0000000..56f3d65 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_protectionformnature.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_purge.jpg b/other/AoWoW-master/images/icons/small/spell_nature_purge.jpg new file mode 100644 index 0000000..003e8c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_purge.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_ravenform.jpg b/other/AoWoW-master/images/icons/small/spell_nature_ravenform.jpg new file mode 100644 index 0000000..ea5b571 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_ravenform.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_regenerate.jpg b/other/AoWoW-master/images/icons/small/spell_nature_regenerate.jpg new file mode 100644 index 0000000..c738790 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_regenerate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_regeneration.jpg b/other/AoWoW-master/images/icons/small/spell_nature_regeneration.jpg new file mode 100644 index 0000000..9143d29 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_regeneration.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_regeneration_02.jpg b/other/AoWoW-master/images/icons/small/spell_nature_regeneration_02.jpg new file mode 100644 index 0000000..4949a57 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_regeneration_02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_reincarnation.jpg b/other/AoWoW-master/images/icons/small/spell_nature_reincarnation.jpg new file mode 100644 index 0000000..24dc4a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_reincarnation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_rejuvenation.jpg b/other/AoWoW-master/images/icons/small/spell_nature_rejuvenation.jpg new file mode 100644 index 0000000..9fd3905 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_rejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_removecurse.jpg b/other/AoWoW-master/images/icons/small/spell_nature_removecurse.jpg new file mode 100644 index 0000000..5cffc1a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_removedisease.jpg b/other/AoWoW-master/images/icons/small/spell_nature_removedisease.jpg new file mode 100644 index 0000000..c89d2f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_removedisease.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_resistmagic.jpg b/other/AoWoW-master/images/icons/small/spell_nature_resistmagic.jpg new file mode 100644 index 0000000..6e2fe34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_resistmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_resistnature.jpg b/other/AoWoW-master/images/icons/small/spell_nature_resistnature.jpg new file mode 100644 index 0000000..5557312 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_resistnature.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_rockbiter.jpg b/other/AoWoW-master/images/icons/small/spell_nature_rockbiter.jpg new file mode 100644 index 0000000..ba384d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_rockbiter.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_sentinal.jpg b/other/AoWoW-master/images/icons/small/spell_nature_sentinal.jpg new file mode 100644 index 0000000..082ea8c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_sentinal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_shamanrage.jpg b/other/AoWoW-master/images/icons/small/spell_nature_shamanrage.jpg new file mode 100644 index 0000000..f50b939 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_shamanrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_skinofearth.jpg b/other/AoWoW-master/images/icons/small/spell_nature_skinofearth.jpg new file mode 100644 index 0000000..eb02000 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_skinofearth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_sleep.jpg b/other/AoWoW-master/images/icons/small/spell_nature_sleep.jpg new file mode 100644 index 0000000..15c32ae Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_sleep.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_slow.jpg b/other/AoWoW-master/images/icons/small/spell_nature_slow.jpg new file mode 100644 index 0000000..e29e805 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_slow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_slowingtotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_slowingtotem.jpg new file mode 100644 index 0000000..86679a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_slowingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_slowpoison.jpg b/other/AoWoW-master/images/icons/small/spell_nature_slowpoison.jpg new file mode 100644 index 0000000..beb5630 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_slowpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_spiritarmor.jpg b/other/AoWoW-master/images/icons/small/spell_nature_spiritarmor.jpg new file mode 100644 index 0000000..7167699 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_spiritarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_spiritwolf.jpg b/other/AoWoW-master/images/icons/small/spell_nature_spiritwolf.jpg new file mode 100644 index 0000000..206aa93 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_spiritwolf.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_starfall.jpg b/other/AoWoW-master/images/icons/small/spell_nature_starfall.jpg new file mode 100644 index 0000000..4001b1b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_starfall.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_stoneclawtotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_stoneclawtotem.jpg new file mode 100644 index 0000000..2534a1c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_stoneclawtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_stoneskintotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_stoneskintotem.jpg new file mode 100644 index 0000000..84010b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_stoneskintotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_stormreach.jpg b/other/AoWoW-master/images/icons/small/spell_nature_stormreach.jpg new file mode 100644 index 0000000..31e7ddc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_stormreach.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_stranglevines.jpg b/other/AoWoW-master/images/icons/small/spell_nature_stranglevines.jpg new file mode 100644 index 0000000..e2c61f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_stranglevines.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_strength.jpg b/other/AoWoW-master/images/icons/small/spell_nature_strength.jpg new file mode 100644 index 0000000..619e33f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_strength.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_strengthofearthtotem02.jpg b/other/AoWoW-master/images/icons/small/spell_nature_strengthofearthtotem02.jpg new file mode 100644 index 0000000..d37d12c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_strengthofearthtotem02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_swiftness.jpg b/other/AoWoW-master/images/icons/small/spell_nature_swiftness.jpg new file mode 100644 index 0000000..f1186ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_swiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_thorns.jpg b/other/AoWoW-master/images/icons/small/spell_nature_thorns.jpg new file mode 100644 index 0000000..2e669b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_thorns.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_thunderclap.jpg b/other/AoWoW-master/images/icons/small/spell_nature_thunderclap.jpg new file mode 100644 index 0000000..08c6509 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_timestop.jpg b/other/AoWoW-master/images/icons/small/spell_nature_timestop.jpg new file mode 100644 index 0000000..41d3c82 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_timestop.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_tranquility.jpg b/other/AoWoW-master/images/icons/small/spell_nature_tranquility.jpg new file mode 100644 index 0000000..1940b10 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_tranquility.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_tremortotem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_tremortotem.jpg new file mode 100644 index 0000000..9167065 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_tremortotem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_undyingstrength.jpg b/other/AoWoW-master/images/icons/small/spell_nature_undyingstrength.jpg new file mode 100644 index 0000000..64a6489 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_undyingstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_unleashedrage.jpg b/other/AoWoW-master/images/icons/small/spell_nature_unleashedrage.jpg new file mode 100644 index 0000000..663491d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_unleashedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_unrelentingstorm.jpg b/other/AoWoW-master/images/icons/small/spell_nature_unrelentingstorm.jpg new file mode 100644 index 0000000..7c69eda Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_unrelentingstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_unyeildingstamina.jpg b/other/AoWoW-master/images/icons/small/spell_nature_unyeildingstamina.jpg new file mode 100644 index 0000000..b599ae0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_unyeildingstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_web.jpg b/other/AoWoW-master/images/icons/small/spell_nature_web.jpg new file mode 100644 index 0000000..1ae800c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_web.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_windfury.jpg b/other/AoWoW-master/images/icons/small/spell_nature_windfury.jpg new file mode 100644 index 0000000..6e301db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_windfury.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_wispheal.jpg b/other/AoWoW-master/images/icons/small/spell_nature_wispheal.jpg new file mode 100644 index 0000000..df5720c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_wispheal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_wispsplode.jpg b/other/AoWoW-master/images/icons/small/spell_nature_wispsplode.jpg new file mode 100644 index 0000000..516448f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_wispsplode.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_nature_wrathofair_totem.jpg b/other/AoWoW-master/images/icons/small/spell_nature_wrathofair_totem.jpg new file mode 100644 index 0000000..c3fd91f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_nature_wrathofair_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_abominationexplosion.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_abominationexplosion.jpg new file mode 100644 index 0000000..97395d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_abominationexplosion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_animatedead.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_animatedead.jpg new file mode 100644 index 0000000..c905374 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_animatedead.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_antimagicshell.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_antimagicshell.jpg new file mode 100644 index 0000000..e35a761 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_antimagicshell.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_antishadow.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_antishadow.jpg new file mode 100644 index 0000000..8693ed3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_antishadow.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_auraofdarkness.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_auraofdarkness.jpg new file mode 100644 index 0000000..d3e3483 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_auraofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_blackplague.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_blackplague.jpg new file mode 100644 index 0000000..1aeeb02 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_blackplague.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_bloodboil.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_bloodboil.jpg new file mode 100644 index 0000000..881546f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_bloodboil.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_brainwash.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_brainwash.jpg new file mode 100644 index 0000000..825026b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_brainwash.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_burningspirit.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_burningspirit.jpg new file mode 100644 index 0000000..a8ef0c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_burningspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_callofbone.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_callofbone.jpg new file mode 100644 index 0000000..ae5b59d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_callofbone.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_carrionswarm.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_carrionswarm.jpg new file mode 100644 index 0000000..43b7656 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_carrionswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_charm.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_charm.jpg new file mode 100644 index 0000000..5051f15 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_charm.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_chilltouch.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_chilltouch.jpg new file mode 100644 index 0000000..90e3cfb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_chilltouch.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_coneofsilence.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_coneofsilence.jpg new file mode 100644 index 0000000..11e5345 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_coneofsilence.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_contagion.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_contagion.jpg new file mode 100644 index 0000000..1b1cd6d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_contagion.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_corpseexplode.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_corpseexplode.jpg new file mode 100644 index 0000000..cbae31f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_corpseexplode.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_creepingplague.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_creepingplague.jpg new file mode 100644 index 0000000..d0d07ca Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_creepingplague.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_cripple.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_cripple.jpg new file mode 100644 index 0000000..74282b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_cripple.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_curse.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_curse.jpg new file mode 100644 index 0000000..c7a2e87 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_curse.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_curseofachimonde.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_curseofachimonde.jpg new file mode 100644 index 0000000..341a261 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_curseofachimonde.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_curseofmannoroth.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_curseofmannoroth.jpg new file mode 100644 index 0000000..b7fced8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_curseofmannoroth.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_curseofsargeras.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_curseofsargeras.jpg new file mode 100644 index 0000000..ef5b395 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_curseofsargeras.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_curseoftounges.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_curseoftounges.jpg new file mode 100644 index 0000000..ac9732f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_curseoftounges.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_darkritual.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_darkritual.jpg new file mode 100644 index 0000000..60ccb47 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_darkritual.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_darksummoning.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_darksummoning.jpg new file mode 100644 index 0000000..02b84f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_darksummoning.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_deadofnight.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_deadofnight.jpg new file mode 100644 index 0000000..d8094bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_deadofnight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_deathanddecay.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_deathanddecay.jpg new file mode 100644 index 0000000..c583765 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_deathanddecay.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_deathcoil.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_deathcoil.jpg new file mode 100644 index 0000000..4d47df7 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_deathcoil.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_deathpact.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_deathpact.jpg new file mode 100644 index 0000000..a159222 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_deathpact.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_deathscream.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_deathscream.jpg new file mode 100644 index 0000000..3a7c301 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_deathscream.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_demonbreath.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_demonbreath.jpg new file mode 100644 index 0000000..30e8abc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_demonbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_demonicfortitude.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_demonicfortitude.jpg new file mode 100644 index 0000000..f5b645c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_demonicfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_demonictactics.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_demonictactics.jpg new file mode 100644 index 0000000..7c7ef39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_demonictactics.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_destructivesoul.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_destructivesoul.jpg new file mode 100644 index 0000000..83c513b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_destructivesoul.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_detectinvisibility.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_detectinvisibility.jpg new file mode 100644 index 0000000..8fd868c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_detectinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_detectlesserinvisibility.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_detectlesserinvisibility.jpg new file mode 100644 index 0000000..793677a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_detectlesserinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_enslavedemon.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_enslavedemon.jpg new file mode 100644 index 0000000..4211f6c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_enslavedemon.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_evileye.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_evileye.jpg new file mode 100644 index 0000000..640c8a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_evileye.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_felarmour.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_felarmour.jpg new file mode 100644 index 0000000..9292ed9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_felarmour.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_fingerofdeath.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_fingerofdeath.jpg new file mode 100644 index 0000000..26756e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_fingerofdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_focusedpower.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_focusedpower.jpg new file mode 100644 index 0000000..f8a6fbc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_fumble.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_fumble.jpg new file mode 100644 index 0000000..e605a34 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_fumble.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_gathershadows.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_gathershadows.jpg new file mode 100644 index 0000000..574b857 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_gathershadows.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_ghostkey.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_ghostkey.jpg new file mode 100644 index 0000000..07fb463 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_ghostkey.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_grimward.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_grimward.jpg new file mode 100644 index 0000000..da541df Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_grimward.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_haunting.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_haunting.jpg new file mode 100644 index 0000000..c05939f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_haunting.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_impphaseshift.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_impphaseshift.jpg new file mode 100644 index 0000000..8a580af Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_impphaseshift.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_improvedvampiricembrace.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_improvedvampiricembrace.jpg new file mode 100644 index 0000000..9a91e7d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_improvedvampiricembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_lastingaffliction.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_lastingaffliction.jpg new file mode 100644 index 0000000..11a5416 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_lastingaffliction.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_lastingafflictions.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_lastingafflictions.jpg new file mode 100644 index 0000000..523d8e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_lastingafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_lifedrain.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_lifedrain.jpg new file mode 100644 index 0000000..7175b85 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_lifedrain.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_lifedrain02.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_lifedrain02.jpg new file mode 100644 index 0000000..9b6a38d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_lifedrain02.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_manaburn.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_manaburn.jpg new file mode 100644 index 0000000..06e5927 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_manafeed.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_manafeed.jpg new file mode 100644 index 0000000..391bb42 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_manafeed.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_metamorphosis.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_metamorphosis.jpg new file mode 100644 index 0000000..d00fb8f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_metamorphosis.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_mindbomb.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_mindbomb.jpg new file mode 100644 index 0000000..630b1ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_mindbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_mindrot.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_mindrot.jpg new file mode 100644 index 0000000..8df6826 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_mindrot.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_mindsteal.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_mindsteal.jpg new file mode 100644 index 0000000..4415e01 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_mindsteal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_misery.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_misery.jpg new file mode 100644 index 0000000..b2669ef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_misery.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_nethercloak.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_nethercloak.jpg new file mode 100644 index 0000000..30a95d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_nethercloak.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_netherprotection.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_netherprotection.jpg new file mode 100644 index 0000000..1c8ec96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_netherprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_nightofthedead.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_nightofthedead.jpg new file mode 100644 index 0000000..46b0c77 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_nightofthedead.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_painfulafflictions.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_painfulafflictions.jpg new file mode 100644 index 0000000..807c8c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_painfulafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_painspike.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_painspike.jpg new file mode 100644 index 0000000..c190003 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_painspike.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_plaguecloud.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_plaguecloud.jpg new file mode 100644 index 0000000..c6e905e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_plaguecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_possession.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_possession.jpg new file mode 100644 index 0000000..5dd234c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_possession.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_psychicscream.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_psychicscream.jpg new file mode 100644 index 0000000..10de18a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_psychicscream.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_ragingscream.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_ragingscream.jpg new file mode 100644 index 0000000..1914e3f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_ragingscream.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_rainoffire.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_rainoffire.jpg new file mode 100644 index 0000000..dafc417 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_rainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_raisedead.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_raisedead.jpg new file mode 100644 index 0000000..3852d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_raisedead.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_requiem.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_requiem.jpg new file mode 100644 index 0000000..6afed7e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_requiem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_ritualofsacrifice.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_ritualofsacrifice.jpg new file mode 100644 index 0000000..6d25732 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_ritualofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_sacrificialshield.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_sacrificialshield.jpg new file mode 100644 index 0000000..b99e226 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_sacrificialshield.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_scourgebuild.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_scourgebuild.jpg new file mode 100644 index 0000000..ea8489c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_scourgebuild.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_sealofkings.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_sealofkings.jpg new file mode 100644 index 0000000..3c6a872 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_sealofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_seedofdestruction.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_seedofdestruction.jpg new file mode 100644 index 0000000..ca4e31a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_seedofdestruction.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadesofdarkness.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadesofdarkness.jpg new file mode 100644 index 0000000..e4cbc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadesofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadetruesight.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadetruesight.jpg new file mode 100644 index 0000000..6d4bf46 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadetruesight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowandflame.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowandflame.jpg new file mode 100644 index 0000000..94e0731 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowandflame.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowbolt.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowbolt.jpg new file mode 100644 index 0000000..ffe33a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowembrace.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowembrace.jpg new file mode 100644 index 0000000..c631bef Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowfiend.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowfiend.jpg new file mode 100644 index 0000000..b657696 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowfiend.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowform.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowform.jpg new file mode 100644 index 0000000..886757d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowform.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowfury.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowfury.jpg new file mode 100644 index 0000000..d5fb9bc Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowfury.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowmend.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowmend.jpg new file mode 100644 index 0000000..131fc8b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowmend.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowpact.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowpact.jpg new file mode 100644 index 0000000..42920d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowpact.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowpower.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowpower.jpg new file mode 100644 index 0000000..ecc5f1e Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowpower.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowward.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowward.jpg new file mode 100644 index 0000000..668bc14 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowward.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowworddominate.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowworddominate.jpg new file mode 100644 index 0000000..0410725 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowworddominate.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_shadowwordpain.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_shadowwordpain.jpg new file mode 100644 index 0000000..5435f39 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_shadowwordpain.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_siphonmana.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_siphonmana.jpg new file mode 100644 index 0000000..dca4514 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_siphonmana.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_soothingkiss.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_soothingkiss.jpg new file mode 100644 index 0000000..056947c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_soothingkiss.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_soulgem.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_soulgem.jpg new file mode 100644 index 0000000..3ccfe0a Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_soulgem.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_soulleech.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech.jpg new file mode 100644 index 0000000..d14ae47 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_1.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_1.jpg new file mode 100644 index 0000000..38f44be Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_1.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_2.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_2.jpg new file mode 100644 index 0000000..e08fa07 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_2.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_3.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_3.jpg new file mode 100644 index 0000000..a636271 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_soulleech_3.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_spectralsight.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_spectralsight.jpg new file mode 100644 index 0000000..bbdca4c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_spectralsight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_summonfelguard.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_summonfelguard.jpg new file mode 100644 index 0000000..a4d152f Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_summonfelguard.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_summonfelhunter.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_summonfelhunter.jpg new file mode 100644 index 0000000..9d5c595 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_summonfelhunter.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_summonimp.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_summonimp.jpg new file mode 100644 index 0000000..5279bdd Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_summonimp.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_summoninfernal.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_summoninfernal.jpg new file mode 100644 index 0000000..4ee533b Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_summoninfernal.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_summonsuccubus.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_summonsuccubus.jpg new file mode 100644 index 0000000..19759ce Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_summonsuccubus.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_summonvoidwalker.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_summonvoidwalker.jpg new file mode 100644 index 0000000..cf3f329 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_summonvoidwalker.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_teleport.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_teleport.jpg new file mode 100644 index 0000000..eb0ee0d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_teleport.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_twilight.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_twilight.jpg new file mode 100644 index 0000000..2581142 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_twilight.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_unholyfrenzy.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_unholyfrenzy.jpg new file mode 100644 index 0000000..fc8b839 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_unholyfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_unholystrength.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_unholystrength.jpg new file mode 100644 index 0000000..11cf1db Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_unholystrength.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_1.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_1.jpg new file mode 100644 index 0000000..5ffb216 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_1.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_2.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_2.jpg new file mode 100644 index 0000000..c4053fb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_2.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_3.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_3.jpg new file mode 100644 index 0000000..b936e85 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_unstableaffliction_3.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_unstableafllictions.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_unstableafllictions.jpg new file mode 100644 index 0000000..c8af014 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_unstableafllictions.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_unsummonbuilding.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_unsummonbuilding.jpg new file mode 100644 index 0000000..b257ebb Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_unsummonbuilding.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_shadow_vampiricaura.jpg b/other/AoWoW-master/images/icons/small/spell_shadow_vampiricaura.jpg new file mode 100644 index 0000000..29d2376 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_shadow_vampiricaura.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_totem_wardofdraining.jpg b/other/AoWoW-master/images/icons/small/spell_totem_wardofdraining.jpg new file mode 100644 index 0000000..ceb344d Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_totem_wardofdraining.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_unused.jpg b/other/AoWoW-master/images/icons/small/spell_unused.jpg new file mode 100644 index 0000000..d570653 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_unused.jpg differ diff --git a/other/AoWoW-master/images/icons/small/spell_unused2.jpg b/other/AoWoW-master/images/icons/small/spell_unused2.jpg new file mode 100644 index 0000000..9c478e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/spell_unused2.jpg differ diff --git a/other/AoWoW-master/images/icons/small/temp.jpg b/other/AoWoW-master/images/icons/small/temp.jpg new file mode 100644 index 0000000..aa82fd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/temp.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_alchemy.jpg b/other/AoWoW-master/images/icons/small/trade_alchemy.jpg new file mode 100644 index 0000000..20dfd00 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_alchemy.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_blacksmithing.jpg b/other/AoWoW-master/images/icons/small/trade_blacksmithing.jpg new file mode 100644 index 0000000..a11eb33 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_blacksmithing.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_brewpoison.jpg b/other/AoWoW-master/images/icons/small/trade_brewpoison.jpg new file mode 100644 index 0000000..6898bdf Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_brewpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_engineering.jpg b/other/AoWoW-master/images/icons/small/trade_engineering.jpg new file mode 100644 index 0000000..6b61da3 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_engineering.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_engraving.jpg b/other/AoWoW-master/images/icons/small/trade_engraving.jpg new file mode 100644 index 0000000..46b0e47 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_engraving.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_fishing.jpg b/other/AoWoW-master/images/icons/small/trade_fishing.jpg new file mode 100644 index 0000000..f90d150 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_fishing.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_herbalism.jpg b/other/AoWoW-master/images/icons/small/trade_herbalism.jpg new file mode 100644 index 0000000..92b11b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_herbalism.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_leatherworking.jpg b/other/AoWoW-master/images/icons/small/trade_leatherworking.jpg new file mode 100644 index 0000000..c38220c Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_leatherworking.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_mining.jpg b/other/AoWoW-master/images/icons/small/trade_mining.jpg new file mode 100644 index 0000000..9e517e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_mining.jpg differ diff --git a/other/AoWoW-master/images/icons/small/trade_tailoring.jpg b/other/AoWoW-master/images/icons/small/trade_tailoring.jpg new file mode 100644 index 0000000..d1a71ed Binary files /dev/null and b/other/AoWoW-master/images/icons/small/trade_tailoring.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_ambush.jpg b/other/AoWoW-master/images/icons/tiny/ability_ambush.jpg new file mode 100644 index 0000000..58d7e4a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_backstab.jpg b/other/AoWoW-master/images/icons/tiny/ability_backstab.jpg new file mode 100644 index 0000000..2134458 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_backstab.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_bullrush.jpg b/other/AoWoW-master/images/icons/tiny/ability_bullrush.jpg new file mode 100644 index 0000000..d1e5411 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_bullrush.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_cheapshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_cheapshot.jpg new file mode 100644 index 0000000..9818522 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_cheapshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_01.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_01.jpg new file mode 100644 index 0000000..a47a4dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_02.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_02.jpg new file mode 100644 index 0000000..e7592a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_03.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_03.jpg new file mode 100644 index 0000000..5c4730e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_04.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_04.jpg new file mode 100644 index 0000000..4df1f2a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_05.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_05.jpg new file mode 100644 index 0000000..cfca5be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_cursed_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_disease_01.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_01.jpg new file mode 100644 index 0000000..0bbeefe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_disease_02.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_02.jpg new file mode 100644 index 0000000..9a3a001 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_disease_03.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_03.jpg new file mode 100644 index 0000000..af55e7f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_disease_04.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_04.jpg new file mode 100644 index 0000000..31b5b04 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_disease_05.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_05.jpg new file mode 100644 index 0000000..2605e97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_disease_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_poison_01.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_01.jpg new file mode 100644 index 0000000..8d89360 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_poison_02.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_02.jpg new file mode 100644 index 0000000..c58bd1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_poison_03.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_03.jpg new file mode 100644 index 0000000..60546b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_poison_04.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_04.jpg new file mode 100644 index 0000000..e46c8b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_poison_05.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_05.jpg new file mode 100644 index 0000000..1b8f578 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_creature_poison_06.jpg b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_06.jpg new file mode 100644 index 0000000..ec81ab1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_creature_poison_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_criticalstrike.jpg b/other/AoWoW-master/images/icons/tiny/ability_criticalstrike.jpg new file mode 100644 index 0000000..cfe86db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_criticalstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_defend.jpg b/other/AoWoW-master/images/icons/tiny/ability_defend.jpg new file mode 100644 index 0000000..9de7d82 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_defend.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_devour.jpg b/other/AoWoW-master/images/icons/tiny/ability_devour.jpg new file mode 100644 index 0000000..70974d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_devour.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_aquaticform.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_aquaticform.jpg new file mode 100644 index 0000000..5394424 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_aquaticform.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_balanceofpower.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_balanceofpower.jpg new file mode 100644 index 0000000..3d8893c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_balanceofpower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_bash.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_bash.jpg new file mode 100644 index 0000000..17eff3d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_bash.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_catform.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_catform.jpg new file mode 100644 index 0000000..6a49364 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_catform.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_catformattack.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_catformattack.jpg new file mode 100644 index 0000000..2ab3e89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_catformattack.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_challangingroar.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_challangingroar.jpg new file mode 100644 index 0000000..9b0c00d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_challangingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_cower.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_cower.jpg new file mode 100644 index 0000000..5ad9c01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_cower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_cyclone.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_cyclone.jpg new file mode 100644 index 0000000..77d6338 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_dash.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_dash.jpg new file mode 100644 index 0000000..f7e18ab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_dash.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_demoralizingroar.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_demoralizingroar.jpg new file mode 100644 index 0000000..6042dc5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_demoralizingroar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_disembowel.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_disembowel.jpg new file mode 100644 index 0000000..2bc5193 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_dreamstate.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_dreamstate.jpg new file mode 100644 index 0000000..feb8e77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_dreamstate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_empoweredrejuvination.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_empoweredrejuvination.jpg new file mode 100644 index 0000000..9e22722 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_empoweredrejuvination.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_empoweredtouch.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_empoweredtouch.jpg new file mode 100644 index 0000000..47cd3c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_empoweredtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_enrage.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_enrage.jpg new file mode 100644 index 0000000..cb6be8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_enrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_ferociousbite.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_ferociousbite.jpg new file mode 100644 index 0000000..3e22e91 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_ferociousbite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_flightform.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_flightform.jpg new file mode 100644 index 0000000..06235fd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_flightform.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_forceofnature.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_forceofnature.jpg new file mode 100644 index 0000000..f294dad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_healinginstincts.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_healinginstincts.jpg new file mode 100644 index 0000000..8635083 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_healinginstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_lacerate.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_lacerate.jpg new file mode 100644 index 0000000..cb10f3e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_lacerate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_lunarguidance.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_lunarguidance.jpg new file mode 100644 index 0000000..ea15379 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_lunarguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_mangle.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_mangle.jpg new file mode 100644 index 0000000..29e6261 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_mangle.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_mangle.tga.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_mangle.tga.jpg new file mode 100644 index 0000000..29e6261 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_mangle.tga.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_mangle2.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_mangle2.jpg new file mode 100644 index 0000000..c101611 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_mangle2.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_maul.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_maul.jpg new file mode 100644 index 0000000..66ae884 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_maul.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_naturalperfection.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_naturalperfection.jpg new file mode 100644 index 0000000..cbac734 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_naturalperfection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_predatoryinstincts.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_predatoryinstincts.jpg new file mode 100644 index 0000000..4fa1349 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_predatoryinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_primaltenacity.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_primaltenacity.jpg new file mode 100644 index 0000000..cdcdc1e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_primaltenacity.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_rake.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_rake.jpg new file mode 100644 index 0000000..286c2e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_rake.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_ravage.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_ravage.jpg new file mode 100644 index 0000000..ac9b6cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_ravage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_supriseattack.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_supriseattack.jpg new file mode 100644 index 0000000..49bbdb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_supriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_swipe.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_swipe.jpg new file mode 100644 index 0000000..0914f79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_swipe.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_travelform.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_travelform.jpg new file mode 100644 index 0000000..bd7172a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_travelform.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_treeoflife.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_treeoflife.jpg new file mode 100644 index 0000000..0c737da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_treeoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_druid_twilightswrath.jpg b/other/AoWoW-master/images/icons/tiny/ability_druid_twilightswrath.jpg new file mode 100644 index 0000000..7168ac6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_druid_twilightswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_dualwield.jpg b/other/AoWoW-master/images/icons/tiny/ability_dualwield.jpg new file mode 100644 index 0000000..68d1750 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_dualwield.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_dualwieldspecialization.jpg b/other/AoWoW-master/images/icons/tiny/ability_dualwieldspecialization.jpg new file mode 100644 index 0000000..37308b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_dualwieldspecialization.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_ensnare.jpg b/other/AoWoW-master/images/icons/tiny/ability_ensnare.jpg new file mode 100644 index 0000000..41f3b51 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_ensnare.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_eyeoftheowl.jpg b/other/AoWoW-master/images/icons/tiny/ability_eyeoftheowl.jpg new file mode 100644 index 0000000..23d0592 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_eyeoftheowl.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_fiegndead.jpg b/other/AoWoW-master/images/icons/tiny/ability_fiegndead.jpg new file mode 100644 index 0000000..82f2c89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_fiegndead.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_ghoulfrenzy.jpg b/other/AoWoW-master/images/icons/tiny/ability_ghoulfrenzy.jpg new file mode 100644 index 0000000..ced1bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_ghoulfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_golemstormbolt.jpg b/other/AoWoW-master/images/icons/tiny/ability_golemstormbolt.jpg new file mode 100644 index 0000000..c242361 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_golemstormbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_golemthunderclap.jpg b/other/AoWoW-master/images/icons/tiny/ability_golemthunderclap.jpg new file mode 100644 index 0000000..4ee1ee8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_golemthunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_gouge.jpg b/other/AoWoW-master/images/icons/tiny/ability_gouge.jpg new file mode 100644 index 0000000..88ed17a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_gouge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hibernation.jpg b/other/AoWoW-master/images/icons/tiny/ability_hibernation.jpg new file mode 100644 index 0000000..d6923b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hibernation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_aimedshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_aimedshot.jpg new file mode 100644 index 0000000..1636125 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_aimedshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_animalhandler.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_animalhandler.jpg new file mode 100644 index 0000000..b6fc1bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_animalhandler.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_aspectofthemonkey.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_aspectofthemonkey.jpg new file mode 100644 index 0000000..5784f71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_aspectofthemonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_aspectoftheviper.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_aspectoftheviper.jpg new file mode 100644 index 0000000..b4993dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_aspectoftheviper.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_beastcall.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastcall.jpg new file mode 100644 index 0000000..1b40efa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastcall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_beastcall02.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastcall02.jpg new file mode 100644 index 0000000..2fa2c10 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastcall02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_beastsoothe.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastsoothe.jpg new file mode 100644 index 0000000..8297aa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastsoothe.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_beasttaming.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_beasttaming.jpg new file mode 100644 index 0000000..48580d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_beasttaming.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_beasttraining.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_beasttraining.jpg new file mode 100644 index 0000000..9a070b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_beasttraining.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_beastwithin.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastwithin.jpg new file mode 100644 index 0000000..7564162 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_beastwithin.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_catlikereflexes.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_catlikereflexes.jpg new file mode 100644 index 0000000..4ce263a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_catlikereflexes.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_combatexperience.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_combatexperience.jpg new file mode 100644 index 0000000..8f54b18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_combatexperience.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_criticalshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_criticalshot.jpg new file mode 100644 index 0000000..7517509 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_criticalshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_disarmingshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_disarmingshot.jpg new file mode 100644 index 0000000..f0cb90d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_disarmingshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_displacement.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_displacement.jpg new file mode 100644 index 0000000..110c521 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_displacement.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_eagleeye.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_eagleeye.jpg new file mode 100644 index 0000000..6354ccf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_eagleeye.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_ferociousinspiration.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_ferociousinspiration.jpg new file mode 100644 index 0000000..e0f5e41 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_ferociousinspiration.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_goforthethroat.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_goforthethroat.jpg new file mode 100644 index 0000000..adf37a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_goforthethroat.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_harass.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_harass.jpg new file mode 100644 index 0000000..54821b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_harass.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_killcommand.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_killcommand.jpg new file mode 100644 index 0000000..28f4eba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_killcommand.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_mastermarksman.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_mastermarksman.jpg new file mode 100644 index 0000000..a87876d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_mastermarksman.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_mastertactitian.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_mastertactitian.jpg new file mode 100644 index 0000000..6baac15 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_mastertactitian.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_mendpet.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_mendpet.jpg new file mode 100644 index 0000000..1796d3f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_mendpet.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_misdirection.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_misdirection.jpg new file mode 100644 index 0000000..1b68ff1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_misdirection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pathfinding.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pathfinding.jpg new file mode 100644 index 0000000..4cf78c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pathfinding.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_bat.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_bat.jpg new file mode 100644 index 0000000..01e54f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_bat.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_bear.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_bear.jpg new file mode 100644 index 0000000..d7de2aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_bear.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_boar.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_boar.jpg new file mode 100644 index 0000000..06718d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_boar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_cat.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_cat.jpg new file mode 100644 index 0000000..0d72a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_cat.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_crab.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_crab.jpg new file mode 100644 index 0000000..2f7cf9c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_crab.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_crocolisk.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_crocolisk.jpg new file mode 100644 index 0000000..9866894 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_crocolisk.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_dragonhawk.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_dragonhawk.jpg new file mode 100644 index 0000000..a728002 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_dragonhawk.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_gorilla.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_gorilla.jpg new file mode 100644 index 0000000..4b1b5a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_gorilla.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_hyena.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_hyena.jpg new file mode 100644 index 0000000..c59c405 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_hyena.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_netherray.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_netherray.jpg new file mode 100644 index 0000000..09f58de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_netherray.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_owl.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_owl.jpg new file mode 100644 index 0000000..d7e86fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_owl.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_raptor.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_raptor.jpg new file mode 100644 index 0000000..c77f13f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_ravager.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_ravager.jpg new file mode 100644 index 0000000..b85ab1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_ravager.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_scorpid.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_scorpid.jpg new file mode 100644 index 0000000..a5b6d4a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_scorpid.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_spider.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_spider.jpg new file mode 100644 index 0000000..c3979f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_spider.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_sporebat.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_sporebat.jpg new file mode 100644 index 0000000..ac7efbb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_sporebat.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_tallstrider.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_tallstrider.jpg new file mode 100644 index 0000000..89be0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_tallstrider.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_turtle.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_turtle.jpg new file mode 100644 index 0000000..1490adf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_turtle.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_vulture.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_vulture.jpg new file mode 100644 index 0000000..8418f93 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_vulture.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_warpstalker.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_warpstalker.jpg new file mode 100644 index 0000000..11e8717 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_warpstalker.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_windserpent.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_windserpent.jpg new file mode 100644 index 0000000..f930265 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_windserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_wolf.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_wolf.jpg new file mode 100644 index 0000000..b8827d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_pet_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_quickshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_quickshot.jpg new file mode 100644 index 0000000..4f66a01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_quickshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_rapidkilling.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_rapidkilling.jpg new file mode 100644 index 0000000..086bfbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_rapidkilling.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_readiness.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_readiness.jpg new file mode 100644 index 0000000..b7414da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_readiness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_resourcefulness.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_resourcefulness.jpg new file mode 100644 index 0000000..b466468 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_resourcefulness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_runningshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_runningshot.jpg new file mode 100644 index 0000000..7209789 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_runningshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_serpentswiftness.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_serpentswiftness.jpg new file mode 100644 index 0000000..8222fd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_serpentswiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_silenthunter.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_silenthunter.jpg new file mode 100644 index 0000000..6a68d8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_silenthunter.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_snaketrap.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_snaketrap.jpg new file mode 100644 index 0000000..b6370de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_snaketrap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_snipershot.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_snipershot.jpg new file mode 100644 index 0000000..8a0f39a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_snipershot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_steadyshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_steadyshot.jpg new file mode 100644 index 0000000..bd5d55c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_steadyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_survivalinstincts.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_survivalinstincts.jpg new file mode 100644 index 0000000..4dd873a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_survivalinstincts.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_swiftstrike.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_swiftstrike.jpg new file mode 100644 index 0000000..8151805 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_swiftstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_thrillofthehunt.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_thrillofthehunt.jpg new file mode 100644 index 0000000..c4708f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_thrillofthehunt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_hunter_zenarchery.jpg b/other/AoWoW-master/images/icons/tiny/ability_hunter_zenarchery.jpg new file mode 100644 index 0000000..085fa22 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_hunter_zenarchery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_impalingbolt.jpg b/other/AoWoW-master/images/icons/tiny/ability_impalingbolt.jpg new file mode 100644 index 0000000..dd81af9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_impalingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_kick.jpg b/other/AoWoW-master/images/icons/tiny/ability_kick.jpg new file mode 100644 index 0000000..6a6fda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_kick.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mage_invisibility.jpg b/other/AoWoW-master/images/icons/tiny/ability_mage_invisibility.jpg new file mode 100644 index 0000000..cd5345a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mage_invisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mage_moltenarmor.jpg b/other/AoWoW-master/images/icons/tiny/ability_mage_moltenarmor.jpg new file mode 100644 index 0000000..8eccd98 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mage_moltenarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_marksmanship.jpg b/other/AoWoW-master/images/icons/tiny/ability_marksmanship.jpg new file mode 100644 index 0000000..cd5cd34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_marksmanship.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_meleedamage.jpg b/other/AoWoW-master/images/icons/tiny/ability_meleedamage.jpg new file mode 100644 index 0000000..c5c70fb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_meleedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_blackdirewolf.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_blackdirewolf.jpg new file mode 100644 index 0000000..1808df5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_blackdirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_blackpanther.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_blackpanther.jpg new file mode 100644 index 0000000..4946537 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_blackpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_charger.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_charger.jpg new file mode 100644 index 0000000..fefb935 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_charger.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount.jpg new file mode 100644 index 0000000..1c00d5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_black.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_black.jpg new file mode 100644 index 0000000..01229ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_black.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_blue.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_blue.jpg new file mode 100644 index 0000000..887546f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_green.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_green.jpg new file mode 100644 index 0000000..8024e83 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_purple.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_purple.jpg new file mode 100644 index 0000000..6087264 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemount_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite.jpg new file mode 100644 index 0000000..985039e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_black.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_black.jpg new file mode 100644 index 0000000..e1021b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_black.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_blue.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_blue.jpg new file mode 100644 index 0000000..78188fb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_green.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_green.jpg new file mode 100644 index 0000000..bae8f31 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_purple.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_purple.jpg new file mode 100644 index 0000000..128e0f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_white.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_white.jpg new file mode 100644 index 0000000..005614d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_cockatricemountelite_white.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_dreadsteed.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_dreadsteed.jpg new file mode 100644 index 0000000..d88812c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_dreadsteed.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_gryphon_01.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_gryphon_01.jpg new file mode 100644 index 0000000..c6de99c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_gryphon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_gyrocoptor.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_gyrocoptor.jpg new file mode 100644 index 0000000..74741a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_gyrocoptor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_gyrocoptorelite.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_gyrocoptorelite.jpg new file mode 100644 index 0000000..a387655 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_gyrocoptorelite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_jungletiger.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_jungletiger.jpg new file mode 100644 index 0000000..bb3fb38 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_jungletiger.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_01.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_01.jpg new file mode 100644 index 0000000..2090ab3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_02.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_02.jpg new file mode 100644 index 0000000..dd62d8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_03.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_03.jpg new file mode 100644 index 0000000..8c43138 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_kodo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_mechastrider.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_mechastrider.jpg new file mode 100644 index 0000000..c78e3bd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_mechastrider.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_mountainram.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_mountainram.jpg new file mode 100644 index 0000000..73de2e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_mountainram.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_netherdrakeelite.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_netherdrakeelite.jpg new file mode 100644 index 0000000..19cfa9c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_netherdrakeelite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_netherdrakepurple.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_netherdrakepurple.jpg new file mode 100644 index 0000000..82b14a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_netherdrakepurple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_nightmarehorse.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_nightmarehorse.jpg new file mode 100644 index 0000000..13b94a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_nightmarehorse.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_pinktiger.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_pinktiger.jpg new file mode 100644 index 0000000..3ae5f99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_pinktiger.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_raptor.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_raptor.jpg new file mode 100644 index 0000000..7f17ed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_raptor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk.jpg new file mode 100644 index 0000000..d84390b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk_grey.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk_grey.jpg new file mode 100644 index 0000000..5aa5bb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk_grey.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk_purple.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk_purple.jpg new file mode 100644 index 0000000..145b193 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekk_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite.jpg new file mode 100644 index 0000000..42fe168 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_blue.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_blue.jpg new file mode 100644 index 0000000..c67e4a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_green.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_green.jpg new file mode 100644 index 0000000..76b51ad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_purple.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_purple.jpg new file mode 100644 index 0000000..d1a3777 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridingelekkelite_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_ridinghorse.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_ridinghorse.jpg new file mode 100644 index 0000000..32d440a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_ridinghorse.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_rocketmount.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_rocketmount.jpg new file mode 100644 index 0000000..f2a9903 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_rocketmount.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_rocketmountblue.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_rocketmountblue.jpg new file mode 100644 index 0000000..b66a142 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_rocketmountblue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_undeadhorse.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_undeadhorse.jpg new file mode 100644 index 0000000..701f68f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_undeadhorse.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_warhippogryph.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_warhippogryph.jpg new file mode 100644 index 0000000..69dcf47 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_warhippogryph.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_whitedirewolf.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_whitedirewolf.jpg new file mode 100644 index 0000000..445179b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_whitedirewolf.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_whitetiger.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_whitetiger.jpg new file mode 100644 index 0000000..8144236 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_whitetiger.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_mount_wyvern_01.jpg b/other/AoWoW-master/images/icons/tiny/ability_mount_wyvern_01.jpg new file mode 100644 index 0000000..f231fcc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_mount_wyvern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_parry.jpg b/other/AoWoW-master/images/icons/tiny/ability_parry.jpg new file mode 100644 index 0000000..6d8325f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_parry.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_physical_taunt.jpg b/other/AoWoW-master/images/icons/tiny/ability_physical_taunt.jpg new file mode 100644 index 0000000..3ea0678 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_physical_taunt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_piercedamage.jpg b/other/AoWoW-master/images/icons/tiny/ability_piercedamage.jpg new file mode 100644 index 0000000..39fdf9d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_piercedamage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_poisonarrow.jpg b/other/AoWoW-master/images/icons/tiny/ability_poisonarrow.jpg new file mode 100644 index 0000000..ae41d24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_poisonarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_poisons.jpg b/other/AoWoW-master/images/icons/tiny/ability_poisons.jpg new file mode 100644 index 0000000..481249b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_poisons.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_poisonsting.jpg b/other/AoWoW-master/images/icons/tiny/ability_poisonsting.jpg new file mode 100644 index 0000000..cb78833 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_poisonsting.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_racial_avatar.jpg b/other/AoWoW-master/images/icons/tiny/ability_racial_avatar.jpg new file mode 100644 index 0000000..c4eb6d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_racial_avatar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_racial_bearform.jpg b/other/AoWoW-master/images/icons/tiny/ability_racial_bearform.jpg new file mode 100644 index 0000000..a797393 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_racial_bearform.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_racial_bloodrage.jpg b/other/AoWoW-master/images/icons/tiny/ability_racial_bloodrage.jpg new file mode 100644 index 0000000..35d83dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_racial_bloodrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_racial_cannibalize.jpg b/other/AoWoW-master/images/icons/tiny/ability_racial_cannibalize.jpg new file mode 100644 index 0000000..5467465 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_racial_cannibalize.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_racial_shadowmeld.jpg b/other/AoWoW-master/images/icons/tiny/ability_racial_shadowmeld.jpg new file mode 100644 index 0000000..76050c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_racial_shadowmeld.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_racial_ultravision.jpg b/other/AoWoW-master/images/icons/tiny/ability_racial_ultravision.jpg new file mode 100644 index 0000000..ca3f355 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_racial_ultravision.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_repair.jpg b/other/AoWoW-master/images/icons/tiny/ability_repair.jpg new file mode 100644 index 0000000..cd8c19e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_repair.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_ambush.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_ambush.jpg new file mode 100644 index 0000000..0c92f8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_ambush.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_bladetwisting.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_bladetwisting.jpg new file mode 100644 index 0000000..0184f3e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_bladetwisting.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_bloodyeye.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_bloodyeye.jpg new file mode 100644 index 0000000..deddeee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_bloodyeye.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_cheatdeath.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_cheatdeath.jpg new file mode 100644 index 0000000..954d464 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_cheatdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_deadenednerves.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_deadenednerves.jpg new file mode 100644 index 0000000..6c961d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_deadenednerves.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_disembowel.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_disembowel.jpg new file mode 100644 index 0000000..518c4ac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_disembowel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_disguise.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_disguise.jpg new file mode 100644 index 0000000..0aa9312 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_disguise.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_distract.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_distract.jpg new file mode 100644 index 0000000..bfb4cc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_distract.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_dualweild.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_dualweild.jpg new file mode 100644 index 0000000..45e1e49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_dualweild.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_envelopingshadows.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_envelopingshadows.jpg new file mode 100644 index 0000000..303d2af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_envelopingshadows.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_eviscerate.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_eviscerate.jpg new file mode 100644 index 0000000..e2be0b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_eviscerate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_feigndeath.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_feigndeath.jpg new file mode 100644 index 0000000..bb583ac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_feigndeath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_feint.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_feint.jpg new file mode 100644 index 0000000..6ae45b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_feint.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_findweakness.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_findweakness.jpg new file mode 100644 index 0000000..1c74421 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_findweakness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_fleetfooted.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_fleetfooted.jpg new file mode 100644 index 0000000..89c3552 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_fleetfooted.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_garrote.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_garrote.jpg new file mode 100644 index 0000000..76db598 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_garrote.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_kidneyshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_kidneyshot.jpg new file mode 100644 index 0000000..7bdc6a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_kidneyshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_masterofsubtlety.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_masterofsubtlety.jpg new file mode 100644 index 0000000..8615d85 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_masterofsubtlety.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_nervesofsteel.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_nervesofsteel.jpg new file mode 100644 index 0000000..fe8c9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_nervesofsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_quickrecovery.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_quickrecovery.jpg new file mode 100644 index 0000000..96240d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_quickrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_rupture.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_rupture.jpg new file mode 100644 index 0000000..86f3a74 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_rupture.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_shadowstep.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_shadowstep.jpg new file mode 100644 index 0000000..a3e7868 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_shadowstep.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_shadowstrikes.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_shadowstrikes.jpg new file mode 100644 index 0000000..82cd701 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_shadowstrikes.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_sinistercalling.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_sinistercalling.jpg new file mode 100644 index 0000000..0a85196 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_sinistercalling.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_slicedice.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_slicedice.jpg new file mode 100644 index 0000000..05a8f91 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_slicedice.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_sprint.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_sprint.jpg new file mode 100644 index 0000000..40d8fb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_sprint.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_surpriseattack.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_surpriseattack.jpg new file mode 100644 index 0000000..bfd1bad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_surpriseattack.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_rogue_trip.jpg b/other/AoWoW-master/images/icons/tiny/ability_rogue_trip.jpg new file mode 100644 index 0000000..1852fe6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_rogue_trip.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_sap.jpg b/other/AoWoW-master/images/icons/tiny/ability_sap.jpg new file mode 100644 index 0000000..2191eb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_sap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_seal.jpg b/other/AoWoW-master/images/icons/tiny/ability_seal.jpg new file mode 100644 index 0000000..0eebf74 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_seal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_searingarrow.jpg b/other/AoWoW-master/images/icons/tiny/ability_searingarrow.jpg new file mode 100644 index 0000000..53d4368 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_searingarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_shaman_heroism.jpg b/other/AoWoW-master/images/icons/tiny/ability_shaman_heroism.jpg new file mode 100644 index 0000000..c728c07 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_shaman_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_shaman_stormstrike.jpg b/other/AoWoW-master/images/icons/tiny/ability_shaman_stormstrike.jpg new file mode 100644 index 0000000..6ff853c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_shaman_stormstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_shaman_watershield.jpg b/other/AoWoW-master/images/icons/tiny/ability_shaman_watershield.jpg new file mode 100644 index 0000000..d3c009e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_shaman_watershield.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_shockwave.jpg b/other/AoWoW-master/images/icons/tiny/ability_shockwave.jpg new file mode 100644 index 0000000..f937568 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_shockwave.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_shootwand.jpg b/other/AoWoW-master/images/icons/tiny/ability_shootwand.jpg new file mode 100644 index 0000000..84a2f99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_shootwand.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_smash.jpg b/other/AoWoW-master/images/icons/tiny/ability_smash.jpg new file mode 100644 index 0000000..252daf7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_smash.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_spy.jpg b/other/AoWoW-master/images/icons/tiny/ability_spy.jpg new file mode 100644 index 0000000..5e4c0aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_spy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_stealth.jpg b/other/AoWoW-master/images/icons/tiny/ability_stealth.jpg new file mode 100644 index 0000000..db66bbf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_stealth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_steelmelee.jpg b/other/AoWoW-master/images/icons/tiny/ability_steelmelee.jpg new file mode 100644 index 0000000..ee3eef9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_steelmelee.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_suffocate.jpg b/other/AoWoW-master/images/icons/tiny/ability_suffocate.jpg new file mode 100644 index 0000000..e577be6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_suffocate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_theblackarrow.jpg b/other/AoWoW-master/images/icons/tiny/ability_theblackarrow.jpg new file mode 100644 index 0000000..dbfce8e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_theblackarrow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_throw.jpg b/other/AoWoW-master/images/icons/tiny/ability_throw.jpg new file mode 100644 index 0000000..4849412 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_throw.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_thunderbolt.jpg b/other/AoWoW-master/images/icons/tiny/ability_thunderbolt.jpg new file mode 100644 index 0000000..aecc4af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_thunderbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_thunderclap.jpg b/other/AoWoW-master/images/icons/tiny/ability_thunderclap.jpg new file mode 100644 index 0000000..932c9ed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_townwatch.jpg b/other/AoWoW-master/images/icons/tiny/ability_townwatch.jpg new file mode 100644 index 0000000..59dd6af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_townwatch.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_tracking.jpg b/other/AoWoW-master/images/icons/tiny/ability_tracking.jpg new file mode 100644 index 0000000..1c49952 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_tracking.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_trueshot.jpg b/other/AoWoW-master/images/icons/tiny/ability_trueshot.jpg new file mode 100644 index 0000000..e1e3e7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_trueshot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_upgrademoonglaive.jpg b/other/AoWoW-master/images/icons/tiny/ability_upgrademoonglaive.jpg new file mode 100644 index 0000000..e8b45f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_upgrademoonglaive.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_vanish.jpg b/other/AoWoW-master/images/icons/tiny/ability_vanish.jpg new file mode 100644 index 0000000..ad51c1a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_vanish.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warlock_avoidance.jpg b/other/AoWoW-master/images/icons/tiny/ability_warlock_avoidance.jpg new file mode 100644 index 0000000..7579e82 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warlock_avoidance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_battleshout.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_battleshout.jpg new file mode 100644 index 0000000..aea62b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_battleshout.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_bloodfrenzy.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_bloodfrenzy.jpg new file mode 100644 index 0000000..1e4209a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_bloodfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_challange.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_challange.jpg new file mode 100644 index 0000000..ecbf1e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_challange.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_charge.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_charge.jpg new file mode 100644 index 0000000..1f42e96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_charge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_cleave.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_cleave.jpg new file mode 100644 index 0000000..091c89f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_cleave.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_commandingshout.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_commandingshout.jpg new file mode 100644 index 0000000..546ce86 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_commandingshout.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_decisivestrike.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_decisivestrike.jpg new file mode 100644 index 0000000..216ced1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_decisivestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_defensivestance.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_defensivestance.jpg new file mode 100644 index 0000000..d3bf2d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_defensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_devastate.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_devastate.jpg new file mode 100644 index 0000000..1606578 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_devastate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_disarm.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_disarm.jpg new file mode 100644 index 0000000..3be83fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_disarm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_endlessrage.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_endlessrage.jpg new file mode 100644 index 0000000..84ffa63 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_endlessrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_focusedrage.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_focusedrage.jpg new file mode 100644 index 0000000..cd180f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_focusedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_improveddisciplines.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_improveddisciplines.jpg new file mode 100644 index 0000000..0496eae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_improveddisciplines.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_innerrage.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_innerrage.jpg new file mode 100644 index 0000000..3aa4460 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_innerrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_intervene.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_intervene.jpg new file mode 100644 index 0000000..c0e737a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_intervene.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_offensivestance.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_offensivestance.jpg new file mode 100644 index 0000000..a7010e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_offensivestance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_punishingblow.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_punishingblow.jpg new file mode 100644 index 0000000..cf53244 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_punishingblow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_rallyingcry.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_rallyingcry.jpg new file mode 100644 index 0000000..5e29ac1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_rallyingcry.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_rampage.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_rampage.jpg new file mode 100644 index 0000000..5ae2aee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_rampage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_revenge.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_revenge.jpg new file mode 100644 index 0000000..59d1c72 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_revenge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_riposte.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_riposte.jpg new file mode 100644 index 0000000..cfbe158 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_riposte.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_savageblow.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_savageblow.jpg new file mode 100644 index 0000000..f9e84f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_savageblow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_secondwind.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_secondwind.jpg new file mode 100644 index 0000000..6357fcc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_secondwind.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldbash.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldbash.jpg new file mode 100644 index 0000000..6c3513a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldbash.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldguard.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldguard.jpg new file mode 100644 index 0000000..f6dc9a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldguard.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldmastery.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldmastery.jpg new file mode 100644 index 0000000..d4f1846 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldreflection.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldreflection.jpg new file mode 100644 index 0000000..d95f3de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldreflection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldwall.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldwall.jpg new file mode 100644 index 0000000..7e5f909 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_shieldwall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_sunder.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_sunder.jpg new file mode 100644 index 0000000..59e09fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_sunder.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_victoryrush.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_victoryrush.jpg new file mode 100644 index 0000000..b4fb7a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_victoryrush.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_warcry.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_warcry.jpg new file mode 100644 index 0000000..02f39eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_warcry.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warrior_weaponmastery.jpg b/other/AoWoW-master/images/icons/tiny/ability_warrior_weaponmastery.jpg new file mode 100644 index 0000000..6e58f32 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warrior_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_warstomp.jpg b/other/AoWoW-master/images/icons/tiny/ability_warstomp.jpg new file mode 100644 index 0000000..5df77ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_warstomp.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/ability_whirlwind.jpg b/other/AoWoW-master/images/icons/tiny/ability_whirlwind.jpg new file mode 100644 index 0000000..2ef14d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/ability_whirlwind.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/axe_1h_draenei_b_01.jpg b/other/AoWoW-master/images/icons/tiny/axe_1h_draenei_b_01.jpg new file mode 100644 index 0000000..538bf27 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/axe_1h_draenei_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/creature_sporemushroom.jpg b/other/AoWoW-master/images/icons/tiny/creature_sporemushroom.jpg new file mode 100644 index 0000000..8bcbff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/creature_sporemushroom.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv-mount_raven_54.jpg b/other/AoWoW-master/images/icons/tiny/inv-mount_raven_54.jpg new file mode 100644 index 0000000..9a411de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv-mount_raven_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv-sword_53.jpg b/other/AoWoW-master/images/icons/tiny/inv-sword_53.jpg new file mode 100644 index 0000000..35a83a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv-sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_1h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_1h_auchindoun_01.jpg new file mode 100644 index 0000000..ede13b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_1h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_1h_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_1h_haremmatron_d_01.jpg new file mode 100644 index 0000000..30f0415 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_1h_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_2h_auchindoun_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_2h_auchindoun_01.jpg new file mode 100644 index 0000000..09acca7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_2h_auchindoun_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ammo_arrow_01.jpg new file mode 100644 index 0000000..3f2babf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_ammo_arrow_02.jpg new file mode 100644 index 0000000..83e5e0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_01.jpg new file mode 100644 index 0000000..c6ff957 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_02.jpg new file mode 100644 index 0000000..28e957c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_03.jpg new file mode 100644 index 0000000..1dc22ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ammo_firetar.jpg b/other/AoWoW-master/images/icons/tiny/inv_ammo_firetar.jpg new file mode 100644 index 0000000..33d6f34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ammo_firetar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ammo_snowball.jpg b/other/AoWoW-master/images/icons/tiny/inv_ammo_snowball.jpg new file mode 100644 index 0000000..dce0be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ammo_snowball.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..b86b1ad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_armor_shield_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_armor_shield_naxxramas_d_01.jpg new file mode 100644 index 0000000..ca05452 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_armor_shield_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_armor_shield_naxxramas_d_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_armor_shield_naxxramas_d_02.jpg new file mode 100644 index 0000000..ec13dbd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_armor_shield_naxxramas_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg new file mode 100644 index 0000000..f0f2892 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_armor_shoulder_plate_naxxramas_raidwarrior_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_01.jpg new file mode 100644 index 0000000..8c3477d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_02.jpg new file mode 100644 index 0000000..d47b98f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_03.jpg new file mode 100644 index 0000000..1a9e6d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_04.jpg new file mode 100644 index 0000000..f9dfe61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_05.jpg new file mode 100644 index 0000000..4a94236 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_06.jpg new file mode 100644 index 0000000..8a91093 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_07.jpg new file mode 100644 index 0000000..d519d2c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_08.jpg new file mode 100644 index 0000000..c25781b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_09.jpg new file mode 100644 index 0000000..bc6b732 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_10.jpg new file mode 100644 index 0000000..30892af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_11.jpg new file mode 100644 index 0000000..3391686 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_12.jpg new file mode 100644 index 0000000..56644c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_13.jpg new file mode 100644 index 0000000..c070c13 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_14.jpg new file mode 100644 index 0000000..6cb6bcd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_15.jpg new file mode 100644 index 0000000..61dc9f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_16.jpg new file mode 100644 index 0000000..9983a6a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_17.jpg new file mode 100644 index 0000000..d084a9b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_18.jpg new file mode 100644 index 0000000..7c2ff1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_19.jpg new file mode 100644 index 0000000..8fd925d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..ba73d81 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..da54d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..b59b49b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_20.jpg new file mode 100644 index 0000000..31dd8e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_21.jpg new file mode 100644 index 0000000..efa0e9b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_22.jpg new file mode 100644 index 0000000..e9286d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_23.jpg new file mode 100644 index 0000000..c98cedd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_24.jpg new file mode 100644 index 0000000..3a92d6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_25.jpg new file mode 100644 index 0000000..a44dda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_26.jpg new file mode 100644 index 0000000..3c91e6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_29.jpg new file mode 100644 index 0000000..0625e2a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_2h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_2h_stratholme_d_01.jpg new file mode 100644 index 0000000..31afc16 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_2h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_30.jpg new file mode 100644 index 0000000..4be2edb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_31.jpg new file mode 100644 index 0000000..ac23aa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_32.jpg new file mode 100644 index 0000000..ac23aa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_33.jpg new file mode 100644 index 0000000..03fe8d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_34.jpg new file mode 100644 index 0000000..7bf41d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_35.jpg new file mode 100644 index 0000000..461dedc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_36.jpg new file mode 100644 index 0000000..e096979 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_37.jpg new file mode 100644 index 0000000..7df8493 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_38.jpg new file mode 100644 index 0000000..d463af8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_39.jpg new file mode 100644 index 0000000..da096a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_40.jpg new file mode 100644 index 0000000..c85ddc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_44.jpg new file mode 100644 index 0000000..e08743d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_45.jpg new file mode 100644 index 0000000..20e8da2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_46.jpg new file mode 100644 index 0000000..fcf337f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_49.jpg new file mode 100644 index 0000000..eff972a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_50.jpg new file mode 100644 index 0000000..676259b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_51.jpg new file mode 100644 index 0000000..5943560 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_52.jpg new file mode 100644 index 0000000..76458cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_53.jpg new file mode 100644 index 0000000..4a43c33 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_54.jpg new file mode 100644 index 0000000..4cd80a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_55.jpg new file mode 100644 index 0000000..2352ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_56.jpg new file mode 100644 index 0000000..f612d02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_57.jpg new file mode 100644 index 0000000..1b32d45 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_59.jpg new file mode 100644 index 0000000..6e72808 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_60.jpg new file mode 100644 index 0000000..b5fc006 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_61.jpg new file mode 100644 index 0000000..8268658 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_62.jpg new file mode 100644 index 0000000..0b9ad79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_63.jpg new file mode 100644 index 0000000..5e4adfd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_64.jpg new file mode 100644 index 0000000..5245c5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_65.jpg new file mode 100644 index 0000000..af9f38f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_66.jpg new file mode 100644 index 0000000..b57a01a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_67.jpg new file mode 100644 index 0000000..7705b16 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_68.jpg new file mode 100644 index 0000000..3683e63 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_69.jpg new file mode 100644 index 0000000..5f30ab1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_70.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_70.jpg new file mode 100644 index 0000000..757f26b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_70.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_71.jpg new file mode 100644 index 0000000..d913e50 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_72.jpg new file mode 100644 index 0000000..8a88b31 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_73.jpg new file mode 100644 index 0000000..d1f6394 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_84.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_84.jpg new file mode 100644 index 0000000..caafde7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_84.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_axe_85.jpg b/other/AoWoW-master/images/icons/tiny/inv_axe_85.jpg new file mode 100644 index 0000000..f2a044f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_axe_85.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_banner_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_banner_01.jpg new file mode 100644 index 0000000..dc48f61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_banner_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_banner_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_banner_02.jpg new file mode 100644 index 0000000..7af1587 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_banner_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_banner_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_banner_03.jpg new file mode 100644 index 0000000..658d055 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_banner_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_01.jpg new file mode 100644 index 0000000..9dca12a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_02.jpg new file mode 100644 index 0000000..a493686 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_03.jpg new file mode 100644 index 0000000..8772838 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bannerpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_battery_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_battery_01.jpg new file mode 100644 index 0000000..93b563f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_battery_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_battery_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_battery_02.jpg new file mode 100644 index 0000000..7e7e5a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_battery_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_01.jpg new file mode 100644 index 0000000..2790880 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_02.jpg new file mode 100644 index 0000000..e8d53c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_03.jpg new file mode 100644 index 0000000..98b4c37 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_04.jpg new file mode 100644 index 0000000..14a67dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_05.jpg new file mode 100644 index 0000000..281b1d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_06.jpg new file mode 100644 index 0000000..02f7bd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_07.jpg new file mode 100644 index 0000000..ffd4034 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_08.jpg new file mode 100644 index 0000000..3d05bb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_09.jpg new file mode 100644 index 0000000..7a8287f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_10.jpg new file mode 100644 index 0000000..99333d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_11.jpg new file mode 100644 index 0000000..7231b94 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_12.jpg new file mode 100644 index 0000000..6048270 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_13.jpg new file mode 100644 index 0000000..82eca91 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_14.jpg new file mode 100644 index 0000000..08502e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_15.jpg new file mode 100644 index 0000000..9f6ef8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_16.jpg new file mode 100644 index 0000000..85d9f5c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_17.jpg new file mode 100644 index 0000000..42bf17b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_18.jpg new file mode 100644 index 0000000..cbc409f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_19.jpg new file mode 100644 index 0000000..812e9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_20.jpg new file mode 100644 index 0000000..0911456 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_21.jpg new file mode 100644 index 0000000..21ff617 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_22.jpg new file mode 100644 index 0000000..81ac6ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_23.jpg new file mode 100644 index 0000000..1f9cf66 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_24.jpg new file mode 100644 index 0000000..1046307 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_25.jpg new file mode 100644 index 0000000..041444c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_26.jpg new file mode 100644 index 0000000..da97dfb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_27.jpg new file mode 100644 index 0000000..296ad4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_28.jpg new file mode 100644 index 0000000..7d18548 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_29.jpg new file mode 100644 index 0000000..a077d20 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_30.jpg new file mode 100644 index 0000000..498d619 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_31.jpg new file mode 100644 index 0000000..ea1d185 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_32.jpg new file mode 100644 index 0000000..df9f6c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_33.jpg new file mode 100644 index 0000000..f1fde72 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_34.jpg new file mode 100644 index 0000000..2b1d236 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_belt_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_belt_35.jpg new file mode 100644 index 0000000..2220c20 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_belt_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_blue.jpg new file mode 100644 index 0000000..8bcb25f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_bronze.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_bronze.jpg new file mode 100644 index 0000000..2f7e01f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_gold.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_gold.jpg new file mode 100644 index 0000000..7b1ecbd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_green.jpg new file mode 100644 index 0000000..1359434 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_orange.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_orange.jpg new file mode 100644 index 0000000..ccb7216 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_orange.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_purple.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_purple.jpg new file mode 100644 index 0000000..0edda0e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_red.jpg new file mode 100644 index 0000000..ec8fab4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_silver.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_silver.jpg new file mode 100644 index 0000000..d235a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bijou_yellow.jpg b/other/AoWoW-master/images/icons/tiny/inv_bijou_yellow.jpg new file mode 100644 index 0000000..29aa4ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bijou_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_01.jpg new file mode 100644 index 0000000..a1a9644 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_02.jpg new file mode 100644 index 0000000..701a7f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_03.jpg new file mode 100644 index 0000000..8acd5cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_04.jpg new file mode 100644 index 0000000..22c0daa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_05.jpg new file mode 100644 index 0000000..e7078de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_06.jpg new file mode 100644 index 0000000..9da437a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_07.jpg new file mode 100644 index 0000000..b367442 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_08.jpg new file mode 100644 index 0000000..f7f5c4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_09.jpg new file mode 100644 index 0000000..fbd66a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_01.jpg new file mode 100644 index 0000000..07d2516 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_02.jpg new file mode 100644 index 0000000..54533e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_03.jpg new file mode 100644 index 0000000..b0519b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_04.jpg new file mode 100644 index 0000000..4212baa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_05.jpg new file mode 100644 index 0000000..a21b346 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_06.jpg new file mode 100644 index 0000000..2f6614c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_07.jpg new file mode 100644 index 0000000..a04bdd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_08.jpg new file mode 100644 index 0000000..53b6a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_09.jpg new file mode 100644 index 0000000..6af8c1e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_10.jpg new file mode 100644 index 0000000..76f4cc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_11.jpg new file mode 100644 index 0000000..ea02ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_12.jpg new file mode 100644 index 0000000..590d910 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_chain_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_13.jpg new file mode 100644 index 0000000..67197f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_christmas01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_christmas01.jpg new file mode 100644 index 0000000..216cd81 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_01.jpg new file mode 100644 index 0000000..31258d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_02.jpg new file mode 100644 index 0000000..c541a73 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_03.jpg new file mode 100644 index 0000000..9bc6214 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_04.jpg new file mode 100644 index 0000000..e69de29 diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_05.jpg new file mode 100644 index 0000000..1dab7b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_06.jpg new file mode 100644 index 0000000..f51bc4c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_07.jpg new file mode 100644 index 0000000..58b4c7f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_08.jpg new file mode 100644 index 0000000..7812af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_09.jpg new file mode 100644 index 0000000..af4cbc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_10.jpg new file mode 100644 index 0000000..e0fb383 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_11.jpg new file mode 100644 index 0000000..3aec484 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_12.jpg new file mode 100644 index 0000000..9b83fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_13.jpg new file mode 100644 index 0000000..022f5e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_14.jpg new file mode 100644 index 0000000..ee80ff1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_15.jpg new file mode 100644 index 0000000..dfa4c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_16.jpg new file mode 100644 index 0000000..9ba6070 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_17.jpg new file mode 100644 index 0000000..1f1bf48 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_18.jpg new file mode 100644 index 0000000..4356355 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_20.jpg new file mode 100644 index 0000000..d8472c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_fabric_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_fabric_01.jpg new file mode 100644 index 0000000..c63c3d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_fabric_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_leather01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_leather01.jpg new file mode 100644 index 0000000..1326a81 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_leather01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_mail_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_mail_01.jpg new file mode 100644 index 0000000..4495641 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_01.jpg new file mode 100644 index 0000000..4a24931 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_02.jpg new file mode 100644 index 0000000..767cd25 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_03.jpg new file mode 100644 index 0000000..b54c021 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_04.jpg new file mode 100644 index 0000000..72d87e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_05.jpg new file mode 100644 index 0000000..b33e215 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_06.jpg new file mode 100644 index 0000000..26c4ea5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_07.jpg new file mode 100644 index 0000000..27c9a70 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_08.jpg new file mode 100644 index 0000000..b1c43e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_09.jpg new file mode 100644 index 0000000..e8f524d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_plate_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_10.jpg new file mode 100644 index 0000000..b8f0ba9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_boots_wolf.jpg b/other/AoWoW-master/images/icons/tiny/inv_boots_wolf.jpg new file mode 100644 index 0000000..af1ed88 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_boots_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bow_1h_auchindoun_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_bow_1h_auchindoun_d_01.jpg new file mode 100644 index 0000000..5d13fc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bow_1h_auchindoun_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_box_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_box_01.jpg new file mode 100644 index 0000000..7c60d86 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_box_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_box_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_box_02.jpg new file mode 100644 index 0000000..b4376e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_box_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_box_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_box_03.jpg new file mode 100644 index 0000000..991618a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_box_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_box_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_box_04.jpg new file mode 100644 index 0000000..f32be96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_box_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_box_birdcage_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_box_birdcage_01.jpg new file mode 100644 index 0000000..700773d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_box_birdcage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_box_petcarrier_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_box_petcarrier_01.jpg new file mode 100644 index 0000000..e3c6124 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_box_petcarrier_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_01.jpg new file mode 100644 index 0000000..9b35160 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_02.jpg new file mode 100644 index 0000000..49a1c17 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_03.jpg new file mode 100644 index 0000000..a592072 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_04.jpg new file mode 100644 index 0000000..5d4e18f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_05.jpg new file mode 100644 index 0000000..3c6d790 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_06.jpg new file mode 100644 index 0000000..73dd891 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_07.jpg new file mode 100644 index 0000000..fbdb141 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_08.jpg new file mode 100644 index 0000000..925246b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_09.jpg new file mode 100644 index 0000000..9fab0ed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_10.jpg new file mode 100644 index 0000000..f4532a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_11.jpg new file mode 100644 index 0000000..4dde806 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_12.jpg new file mode 100644 index 0000000..b1dbc0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_13.jpg new file mode 100644 index 0000000..761ffd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_14.jpg new file mode 100644 index 0000000..164057f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_15.jpg new file mode 100644 index 0000000..6407ac4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_16.jpg new file mode 100644 index 0000000..f14baab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_17.jpg new file mode 100644 index 0000000..d928071 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_18.jpg new file mode 100644 index 0000000..5e72329 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_bracer_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_bracer_19.jpg new file mode 100644 index 0000000..9c255b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_bracer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_brd_banner.jpg b/other/AoWoW-master/images/icons/tiny/inv_brd_banner.jpg new file mode 100644 index 0000000..138c54d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_brd_banner.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_cask_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_cask_01.jpg new file mode 100644 index 0000000..6a873c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_cask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_cask_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_cask_02.jpg new file mode 100644 index 0000000..4394b03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_cask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_cask_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_cask_03.jpg new file mode 100644 index 0000000..dcafca0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_cask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_cask_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_cask_04.jpg new file mode 100644 index 0000000..276304b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_cask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain.jpg new file mode 100644 index 0000000..10ffa59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_03.jpg new file mode 100644 index 0000000..67e7acb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_04.jpg new file mode 100644 index 0000000..5ca7fa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_05.jpg new file mode 100644 index 0000000..f5b705e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_06.jpg new file mode 100644 index 0000000..4c994ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_07.jpg new file mode 100644 index 0000000..64b76bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_08.jpg new file mode 100644 index 0000000..ba08069 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_09.jpg new file mode 100644 index 0000000..c2ed881 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_10.jpg new file mode 100644 index 0000000..9887b39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_11.jpg new file mode 100644 index 0000000..a438a6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_12.jpg new file mode 100644 index 0000000..3cd3c51 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_13.jpg new file mode 100644 index 0000000..a263d0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_14.jpg new file mode 100644 index 0000000..e473c02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_15.jpg new file mode 100644 index 0000000..ffdf64b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_16.jpg new file mode 100644 index 0000000..1a3ab02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_chain_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_17.jpg new file mode 100644 index 0000000..d9e50f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_chain_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_christmas01.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_christmas01.jpg new file mode 100644 index 0000000..c053873 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_christmas01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_christmas02.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_christmas02.jpg new file mode 100644 index 0000000..b2cfc76 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_christmas02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_01.jpg new file mode 100644 index 0000000..a5e165e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_02.jpg new file mode 100644 index 0000000..6461421 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_03.jpg new file mode 100644 index 0000000..0429013 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_04.jpg new file mode 100644 index 0000000..9533778 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_05.jpg new file mode 100644 index 0000000..fb89747 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_06.jpg new file mode 100644 index 0000000..94fd3ad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_07.jpg new file mode 100644 index 0000000..568210c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_08.jpg new file mode 100644 index 0000000..9a5365a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_09.jpg new file mode 100644 index 0000000..1e92ea8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_10.jpg new file mode 100644 index 0000000..d02e313 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_11.jpg new file mode 100644 index 0000000..e9dc006 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_12.jpg new file mode 100644 index 0000000..121baf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_13.jpg new file mode 100644 index 0000000..3d1ded4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_14.jpg new file mode 100644 index 0000000..2ec8719 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_15.jpg new file mode 100644 index 0000000..987bff0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_16.jpg new file mode 100644 index 0000000..d1500a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_17.jpg new file mode 100644 index 0000000..89e749d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_18.jpg new file mode 100644 index 0000000..476bf13 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_19.jpg new file mode 100644 index 0000000..3c59a21 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_20.jpg new file mode 100644 index 0000000..529488a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_21.jpg new file mode 100644 index 0000000..a6d3315 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_22.jpg new file mode 100644 index 0000000..d42fef8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_23.jpg new file mode 100644 index 0000000..b7baa32 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_24.jpg new file mode 100644 index 0000000..75dca61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_25.jpg new file mode 100644 index 0000000..fa031ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_26.jpg new file mode 100644 index 0000000..a093930 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_27.jpg new file mode 100644 index 0000000..fa91fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_28.jpg new file mode 100644 index 0000000..6c09689 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_29.jpg new file mode 100644 index 0000000..4426207 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_30.jpg new file mode 100644 index 0000000..8aea7eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_31.jpg new file mode 100644 index 0000000..8926c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_32.jpg new file mode 100644 index 0000000..a07727e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_33.jpg new file mode 100644 index 0000000..a632625 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_34.jpg new file mode 100644 index 0000000..2616191 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_35.jpg new file mode 100644 index 0000000..fc0cdfb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_36.jpg new file mode 100644 index 0000000..aa3b851 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_37.jpg new file mode 100644 index 0000000..ea88eb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_38.jpg new file mode 100644 index 0000000..1a6530c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_39.jpg new file mode 100644 index 0000000..3a42d58 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_40.jpg new file mode 100644 index 0000000..fda227e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_41.jpg new file mode 100644 index 0000000..fa64976 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_42.jpg new file mode 100644 index 0000000..22387f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_43.jpg new file mode 100644 index 0000000..bec0dd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_44.jpg new file mode 100644 index 0000000..dbdf235 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_45.jpg new file mode 100644 index 0000000..a1334ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_46.jpg new file mode 100644 index 0000000..25bd1a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_47.jpg new file mode 100644 index 0000000..84015eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_48.jpg new file mode 100644 index 0000000..dd8dc4b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_49.jpg new file mode 100644 index 0000000..942e76b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_50.jpg new file mode 100644 index 0000000..088c129 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_51.jpg new file mode 100644 index 0000000..59b4a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_52.jpg new file mode 100644 index 0000000..7a70305 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_53.jpg new file mode 100644 index 0000000..3b5e76c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_54.jpg new file mode 100644 index 0000000..a8ad0f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_55.jpg new file mode 100644 index 0000000..d0c1f9e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_56.jpg new file mode 100644 index 0000000..02ea67c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_57.jpg new file mode 100644 index 0000000..541fa63 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_58.jpg new file mode 100644 index 0000000..60da49d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_59.jpg new file mode 100644 index 0000000..7e1a8ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_60.jpg new file mode 100644 index 0000000..43e1b3f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_61.jpg new file mode 100644 index 0000000..5cd938a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_62.jpg new file mode 100644 index 0000000..5386d89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_63.jpg new file mode 100644 index 0000000..7b7fe92 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_64.jpg new file mode 100644 index 0000000..dab92a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_65.jpg new file mode 100644 index 0000000..e0bee5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_66.jpg new file mode 100644 index 0000000..1366252 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_67.jpg new file mode 100644 index 0000000..cc655a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_68.jpg new file mode 100644 index 0000000..4fb8659 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_69.jpg new file mode 100644 index 0000000..1ccfc52 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_70.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_70.jpg new file mode 100644 index 0000000..77d0e61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_70.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_72.jpg new file mode 100644 index 0000000..ba24396 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_cloth_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_fur.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_fur.jpg new file mode 100644 index 0000000..5c4e97f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_fur.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_01.jpg new file mode 100644 index 0000000..159f7e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_02.jpg new file mode 100644 index 0000000..49eeaf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_03.jpg new file mode 100644 index 0000000..557c23a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_04.jpg new file mode 100644 index 0000000..4a807cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_05.jpg new file mode 100644 index 0000000..0cdf4ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_06.jpg new file mode 100644 index 0000000..107045a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_07.jpg new file mode 100644 index 0000000..f57a59c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_08.jpg new file mode 100644 index 0000000..824d36e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_09.jpg new file mode 100644 index 0000000..6e40a93 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_10.jpg new file mode 100644 index 0000000..98f71af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_11.jpg new file mode 100644 index 0000000..ba954b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_12.jpg new file mode 100644 index 0000000..0bb611c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_13.jpg new file mode 100644 index 0000000..d58155b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_14.jpg new file mode 100644 index 0000000..0a6cc16 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_15.jpg new file mode 100644 index 0000000..d13f07b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_leather_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_16.jpg new file mode 100644 index 0000000..81e242f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_mail_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_02.jpg new file mode 100644 index 0000000..8f09c9d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_mail_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_03.jpg new file mode 100644 index 0000000..ea35f71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_mail_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_04.jpg new file mode 100644 index 0000000..3a1a30e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_mail_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_05.jpg new file mode 100644 index 0000000..fe5e3cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate01.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate01.jpg new file mode 100644 index 0000000..5400d62 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate02.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate02.jpg new file mode 100644 index 0000000..754aa9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate03.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate03.jpg new file mode 100644 index 0000000..460b9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate04.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate04.jpg new file mode 100644 index 0000000..25218e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate05.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate05.jpg new file mode 100644 index 0000000..7f790e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate06.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate06.jpg new file mode 100644 index 0000000..eb44917 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate07.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate07.jpg new file mode 100644 index 0000000..cd9bdf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate08.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate08.jpg new file mode 100644 index 0000000..d55c094 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate09.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate09.jpg new file mode 100644 index 0000000..1d39974 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate10.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate10.jpg new file mode 100644 index 0000000..6902edc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate11.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate11.jpg new file mode 100644 index 0000000..3fcae9c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate12.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate12.jpg new file mode 100644 index 0000000..ae1930c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate13.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate13.jpg new file mode 100644 index 0000000..8b81990 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate14.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate14.jpg new file mode 100644 index 0000000..bb63a07 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate15.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate15.jpg new file mode 100644 index 0000000..4cdb0d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate16.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate16.jpg new file mode 100644 index 0000000..352bd19 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate18.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate18.jpg new file mode 100644 index 0000000..56c68e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate19.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate19.jpg new file mode 100644 index 0000000..6eec69b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate20.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate20.jpg new file mode 100644 index 0000000..3d00e6e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate21.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate21.jpg new file mode 100644 index 0000000..6c689d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate_22.jpg new file mode 100644 index 0000000..8976385 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate_23.jpg new file mode 100644 index 0000000..2ee780f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_plate_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_plate_24.jpg new file mode 100644 index 0000000..8e0e854 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_samurai.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_samurai.jpg new file mode 100644 index 0000000..0718d06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_samurai.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_chest_wolf.jpg b/other/AoWoW-master/images/icons/tiny/inv_chest_wolf.jpg new file mode 100644 index 0000000..f87838d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_chest_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crate_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_crate_01.jpg new file mode 100644 index 0000000..4dee2fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crate_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_crate_02.jpg new file mode 100644 index 0000000..e7eb1a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crate_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_crate_03.jpg new file mode 100644 index 0000000..f9204a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crate_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_crate_04.jpg new file mode 100644 index 0000000..6b5db78 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crate_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_crate_05.jpg new file mode 100644 index 0000000..07498e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crate_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_crate_06.jpg new file mode 100644 index 0000000..20a93e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crown_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_crown_01.jpg new file mode 100644 index 0000000..a6c46f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crown_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crown_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_crown_02.jpg new file mode 100644 index 0000000..4799813 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crown_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crown_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_crown_13.jpg new file mode 100644 index 0000000..a0ac219 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crown_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crown_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_crown_14.jpg new file mode 100644 index 0000000..9c83c97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crown_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_crown_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_crown_15.jpg new file mode 100644 index 0000000..93e420b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_crown_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal01.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal01.jpg new file mode 100644 index 0000000..f12490e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal02.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal02.jpg new file mode 100644 index 0000000..e4905de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal03.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal03.jpg new file mode 100644 index 0000000..5427dae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal04.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal04.jpg new file mode 100644 index 0000000..1ca98f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal05.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal05.jpg new file mode 100644 index 0000000..91683da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal06.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal06.jpg new file mode 100644 index 0000000..312ceef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal07.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal07.jpg new file mode 100644 index 0000000..98e8c33 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal08.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal08.jpg new file mode 100644 index 0000000..d0b7408 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal09.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal09.jpg new file mode 100644 index 0000000..31b5d0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal10.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal10.jpg new file mode 100644 index 0000000..5d06b2a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal11.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal11.jpg new file mode 100644 index 0000000..e8e695b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_datacrystal12.jpg b/other/AoWoW-master/images/icons/tiny/inv_datacrystal12.jpg new file mode 100644 index 0000000..41e1961 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_datacrystal12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_diablostone.jpg b/other/AoWoW-master/images/icons/tiny/inv_diablostone.jpg new file mode 100644 index 0000000..6e7016e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_diablostone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_01.jpg new file mode 100644 index 0000000..61d374d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_02.jpg new file mode 100644 index 0000000..262f84e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_03.jpg new file mode 100644 index 0000000..72bc040 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_04.jpg new file mode 100644 index 0000000..1db9836 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_05.jpg new file mode 100644 index 0000000..209b37e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_06.jpg new file mode 100644 index 0000000..cd27714 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_07.jpg new file mode 100644 index 0000000..0341670 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_08.jpg new file mode 100644 index 0000000..333af87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_09.jpg new file mode 100644 index 0000000..4d1ee14 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_10.jpg new file mode 100644 index 0000000..18e3a13 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_11.jpg new file mode 100644 index 0000000..43d9e4a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_12.jpg new file mode 100644 index 0000000..97dedf1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_13.jpg new file mode 100644 index 0000000..2173c0a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_14.jpg new file mode 100644 index 0000000..dec8edf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_15.jpg new file mode 100644 index 0000000..746d277 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_16.jpg new file mode 100644 index 0000000..bff5d01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_17.jpg new file mode 100644 index 0000000..5e6ba07 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_18.jpg new file mode 100644 index 0000000..ac22233 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_19.jpg new file mode 100644 index 0000000..56fda87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_20.jpg new file mode 100644 index 0000000..0fea13d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_21.jpg new file mode 100644 index 0000000..812828b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_22.jpg new file mode 100644 index 0000000..3c09e0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_23.jpg new file mode 100644 index 0000000..90be319 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_milk_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_01.jpg new file mode 100644 index 0000000..1a1daad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_milk_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_02.jpg new file mode 100644 index 0000000..6a7cace Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_milk_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_03.jpg new file mode 100644 index 0000000..02589a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_milk_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_04.jpg new file mode 100644 index 0000000..a0aa4f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_milk_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_05.jpg new file mode 100644 index 0000000..6166056 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_milk_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_01.jpg new file mode 100644 index 0000000..2c79876 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_02.jpg new file mode 100644 index 0000000..b328141 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_03.jpg new file mode 100644 index 0000000..1a03e75 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_04.jpg new file mode 100644 index 0000000..58f82be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_05.jpg new file mode 100644 index 0000000..7d2fd83 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_06.jpg new file mode 100644 index 0000000..055e76b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_07.jpg new file mode 100644 index 0000000..400d14f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_08.jpg new file mode 100644 index 0000000..e73a701 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_09.jpg new file mode 100644 index 0000000..0397c8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_10.jpg new file mode 100644 index 0000000..caaf994 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_11.jpg new file mode 100644 index 0000000..b3eb5c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_12.jpg new file mode 100644 index 0000000..57dd4d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_drink_waterskin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_egg_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_egg_01.jpg new file mode 100644 index 0000000..57075dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_egg_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_egg_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_egg_02.jpg new file mode 100644 index 0000000..ef3f4ff Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_egg_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_egg_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_egg_03.jpg new file mode 100644 index 0000000..5b471b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_egg_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_egg_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_egg_04.jpg new file mode 100644 index 0000000..16f9acc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_egg_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_egg_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_egg_05.jpg new file mode 100644 index 0000000..d99c337 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_egg_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_air01.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_air01.jpg new file mode 100644 index 0000000..ca3cec7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_air01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_earth01.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_earth01.jpg new file mode 100644 index 0000000..255e210 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_earth01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_fire01.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_fire01.jpg new file mode 100644 index 0000000..7dbd317 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_fire01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_life01.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_life01.jpg new file mode 100644 index 0000000..178a549 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_life01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_mana.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_mana.jpg new file mode 100644 index 0000000..be552ee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_nether.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_nether.jpg new file mode 100644 index 0000000..69ca501 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_shadow01.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_shadow01.jpg new file mode 100644 index 0000000..747e46f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_shadow01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_water01.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_water01.jpg new file mode 100644 index 0000000..3fa1982 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_mote_water01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_air.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_air.jpg new file mode 100644 index 0000000..0e28ed7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_air.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_earth.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_earth.jpg new file mode 100644 index 0000000..05d36ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_earth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_fire.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_fire.jpg new file mode 100644 index 0000000..789ab6a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_life.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_life.jpg new file mode 100644 index 0000000..540dfaf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_life.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_mana.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_mana.jpg new file mode 100644 index 0000000..ebab029 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_mana.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_nether.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_nether.jpg new file mode 100644 index 0000000..fe1647c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_nether.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_shadow.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_shadow.jpg new file mode 100644 index 0000000..e367301 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_water.jpg b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_water.jpg new file mode 100644 index 0000000..48ae376 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_elemental_primal_water.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_disenchant.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_disenchant.jpg new file mode 100644 index 0000000..ff31d57 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_disenchant.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_dustarcane.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustarcane.jpg new file mode 100644 index 0000000..bf23ea1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustarcane.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_dustdream.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustdream.jpg new file mode 100644 index 0000000..a4456a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustdream.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_dustillusion.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustillusion.jpg new file mode 100644 index 0000000..e22fe8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustillusion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_dustsoul.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustsoul.jpg new file mode 100644 index 0000000..afda245 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustsoul.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_duststrange.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_duststrange.jpg new file mode 100644 index 0000000..25c5303 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_duststrange.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_dustvision.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustvision.jpg new file mode 100644 index 0000000..1d2aa5b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_dustvision.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencearcanelarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencearcanelarge.jpg new file mode 100644 index 0000000..6eaf518 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencearcanelarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencearcanesmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencearcanesmall.jpg new file mode 100644 index 0000000..a71b674 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencearcanesmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceastrallarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceastrallarge.jpg new file mode 100644 index 0000000..672d999 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceastrallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceastralsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceastralsmall.jpg new file mode 100644 index 0000000..8abe7a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceastralsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceeternallarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceeternallarge.jpg new file mode 100644 index 0000000..c64d725 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceeternallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceeternalsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceeternalsmall.jpg new file mode 100644 index 0000000..d677781 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essenceeternalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemagiclarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemagiclarge.jpg new file mode 100644 index 0000000..5a7d655 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemagiclarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemagicsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemagicsmall.jpg new file mode 100644 index 0000000..bc3e29f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemagicsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemysticallarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemysticallarge.jpg new file mode 100644 index 0000000..167b70e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemysticallarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemysticalsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemysticalsmall.jpg new file mode 100644 index 0000000..831f820 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencemysticalsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencenetherlarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencenetherlarge.jpg new file mode 100644 index 0000000..0df55ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencenetherlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_essencenethersmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencenethersmall.jpg new file mode 100644 index 0000000..8b44cb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_essencenethersmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_prismaticsphere.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_prismaticsphere.jpg new file mode 100644 index 0000000..599ac89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_prismaticsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardbrilliantlarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardbrilliantlarge.jpg new file mode 100644 index 0000000..56bfbae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardbrilliantlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardbrilliantsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardbrilliantsmall.jpg new file mode 100644 index 0000000..f873b47 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardbrilliantsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardgleamingsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardgleamingsmall.jpg new file mode 100644 index 0000000..9d7acf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardgleamingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglimmeringlarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglimmeringlarge.jpg new file mode 100644 index 0000000..ba07475 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglimmeringlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglimmeringsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglimmeringsmall.jpg new file mode 100644 index 0000000..33ae3a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglimmeringsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglowinglarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglowinglarge.jpg new file mode 100644 index 0000000..d5f5733 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglowinglarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglowingsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglowingsmall.jpg new file mode 100644 index 0000000..1c0ef70 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardglowingsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardnexuslarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardnexuslarge.jpg new file mode 100644 index 0000000..d82bf5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardnexuslarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardprismaticlarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardprismaticlarge.jpg new file mode 100644 index 0000000..ab04f19 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardprismaticlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardprismaticsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardprismaticsmall.jpg new file mode 100644 index 0000000..d2cd648 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardprismaticsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardradientlarge.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardradientlarge.jpg new file mode 100644 index 0000000..eeb992b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardradientlarge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_shardradientsmall.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardradientsmall.jpg new file mode 100644 index 0000000..9c8b55b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_shardradientsmall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_voidcrystal.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_voidcrystal.jpg new file mode 100644 index 0000000..336e2cd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_voidcrystal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_enchant_voidsphere.jpg b/other/AoWoW-master/images/icons/tiny/inv_enchant_voidsphere.jpg new file mode 100644 index 0000000..abc3c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_enchant_voidsphere.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_felcloth_ebon.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_felcloth_ebon.jpg new file mode 100644 index 0000000..838929b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_felcloth_ebon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_felrag.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_felrag.jpg new file mode 100644 index 0000000..a348551 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_felrag.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_01.jpg new file mode 100644 index 0000000..7f395a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_02.jpg new file mode 100644 index 0000000..7aa0a6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_03.jpg new file mode 100644 index 0000000..3a2b0f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_linen_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_01.jpg new file mode 100644 index 0000000..e4a3d4b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_02.jpg new file mode 100644 index 0000000..22afedd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_03.jpg new file mode 100644 index 0000000..449da94 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_mageweave_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_01.jpg new file mode 100644 index 0000000..629a555 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_02.jpg new file mode 100644 index 0000000..c68b4e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_primal.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_primal.jpg new file mode 100644 index 0000000..5ac2c6e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_moonrag_primal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave.jpg new file mode 100644 index 0000000..e63f2ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave_bolt.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave_bolt.jpg new file mode 100644 index 0000000..62dadac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave_bolt_imbued.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave_bolt_imbued.jpg new file mode 100644 index 0000000..62bb4a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_netherweave_bolt_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_purple_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_purple_01.jpg new file mode 100644 index 0000000..5e41840 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_purple_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_purple_02.jpg new file mode 100644 index 0000000..264bfed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_purple_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_purplefire_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_purplefire_01.jpg new file mode 100644 index 0000000..a0efd2f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_purplefire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_purplefire_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_purplefire_02.jpg new file mode 100644 index 0000000..a60ae22 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_purplefire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_01.jpg new file mode 100644 index 0000000..1d3f245 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_02.jpg new file mode 100644 index 0000000..f7c9c49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_03.jpg new file mode 100644 index 0000000..c646baa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_silk_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_soulcloth.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_soulcloth.jpg new file mode 100644 index 0000000..53eb975 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_soulcloth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_soulcloth_bolt.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_soulcloth_bolt.jpg new file mode 100644 index 0000000..0b514d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_soulcloth_bolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_spellfire.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_spellfire.jpg new file mode 100644 index 0000000..5d9c64c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_01.jpg new file mode 100644 index 0000000..347848c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_02.jpg new file mode 100644 index 0000000..454eb17 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_03.jpg new file mode 100644 index 0000000..caca03e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fabric_wool_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_01.jpg new file mode 100644 index 0000000..ecec267 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_02.jpg new file mode 100644 index 0000000..cfadf7e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_03.jpg new file mode 100644 index 0000000..5ecbb90 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_04.jpg new file mode 100644 index 0000000..0cb65fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_05.jpg new file mode 100644 index 0000000..4a2c1ad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_06.jpg new file mode 100644 index 0000000..112701e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_07.jpg new file mode 100644 index 0000000..89f4e84 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_08.jpg new file mode 100644 index 0000000..0e62867 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_09.jpg new file mode 100644 index 0000000..958ab17 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_10.jpg new file mode 100644 index 0000000..a08e950 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_11.jpg new file mode 100644 index 0000000..8d9350c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_12.jpg new file mode 100644 index 0000000..c9ff628 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_13.jpg new file mode 100644 index 0000000..353bbeb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_14.jpg new file mode 100644 index 0000000..e2405c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_15.jpg new file mode 100644 index 0000000..1782f8f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_feather_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_feather_16.jpg new file mode 100644 index 0000000..77df57c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_feather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fishingchair.jpg b/other/AoWoW-master/images/icons/tiny/inv_fishingchair.jpg new file mode 100644 index 0000000..9ac3911 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fishingchair.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fishingpole_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_fishingpole_01.jpg new file mode 100644 index 0000000..bb37cf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fishingpole_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_fishingpole_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_fishingpole_02.jpg new file mode 100644 index 0000000..7f2a2ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_fishingpole_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_food_christmasfruitcake_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_food_christmasfruitcake_01.jpg new file mode 100644 index 0000000..63dd69c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_food_christmasfruitcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_01.jpg new file mode 100644 index 0000000..21fa84a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_02.jpg new file mode 100644 index 0000000..86ed3c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_03.jpg new file mode 100644 index 0000000..6b82ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_04.jpg new file mode 100644 index 0000000..13ce303 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_05.jpg new file mode 100644 index 0000000..3a33969 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_06.jpg new file mode 100644 index 0000000..3352738 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_07.jpg new file mode 100644 index 0000000..0b29e6a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_08.jpg new file mode 100644 index 0000000..d34fdbb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_09.jpg new file mode 100644 index 0000000..4fa0c46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_10.jpg new file mode 100644 index 0000000..3fad082 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_11.jpg new file mode 100644 index 0000000..34db47b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_12.jpg new file mode 100644 index 0000000..45616ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_13.jpg new file mode 100644 index 0000000..62ac8f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_14.jpg new file mode 100644 index 0000000..72cde8f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_15.jpg new file mode 100644 index 0000000..d9cbe7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_16.jpg new file mode 100644 index 0000000..21ef7ac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_17.jpg new file mode 100644 index 0000000..f78c52e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_18.jpg new file mode 100644 index 0000000..fe55e0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_19.jpg new file mode 100644 index 0000000..53f818a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_20.jpg new file mode 100644 index 0000000..ecd3e34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_21.jpg new file mode 100644 index 0000000..dc7d17f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_22.jpg new file mode 100644 index 0000000..fe4e358 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_23.jpg new file mode 100644 index 0000000..cd88b4f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_24.jpg new file mode 100644 index 0000000..2b4ba1b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_25.jpg new file mode 100644 index 0000000..c4aa351 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_26.jpg new file mode 100644 index 0000000..65952bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_27.jpg new file mode 100644 index 0000000..b99eedc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_28.jpg new file mode 100644 index 0000000..860f856 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_29.jpg new file mode 100644 index 0000000..936fcc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_30.jpg new file mode 100644 index 0000000..a269706 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_31.jpg new file mode 100644 index 0000000..a83dff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_32.jpg new file mode 100644 index 0000000..d8f33e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_40.jpg new file mode 100644 index 0000000..06167d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_41.jpg new file mode 100644 index 0000000..26591c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_44.jpg new file mode 100644 index 0000000..a0e44cc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_47.jpg new file mode 100644 index 0000000..7689a97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_48.jpg new file mode 100644 index 0000000..dc88751 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_49.jpg new file mode 100644 index 0000000..3541c45 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_50.jpg new file mode 100644 index 0000000..fb67ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_51.jpg new file mode 100644 index 0000000..229ad40 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_52.jpg new file mode 100644 index 0000000..beb64d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_53.jpg new file mode 100644 index 0000000..7be5451 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_54.jpg new file mode 100644 index 0000000..2cf3049 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_55.jpg new file mode 100644 index 0000000..cccdb02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_56.jpg new file mode 100644 index 0000000..a9428f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_57.jpg new file mode 100644 index 0000000..b1f5160 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_58.jpg new file mode 100644 index 0000000..c323c57 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_59.jpg new file mode 100644 index 0000000..40b91bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_60.jpg new file mode 100644 index 0000000..386d8fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_61.jpg new file mode 100644 index 0000000..ae68f21 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_62.jpg new file mode 100644 index 0000000..fd8bc7d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_63.jpg new file mode 100644 index 0000000..84cd2a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_64.jpg new file mode 100644 index 0000000..a163650 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_65.jpg new file mode 100644 index 0000000..2eb7d3b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_66.jpg new file mode 100644 index 0000000..4bff58f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_67.jpg new file mode 100644 index 0000000..a04c01d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_68.jpg new file mode 100644 index 0000000..9b19d36 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gauntlets_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_69.jpg new file mode 100644 index 0000000..194ceeb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gauntlets_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_01.jpg new file mode 100644 index 0000000..f7f2088 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_02.jpg new file mode 100644 index 0000000..8d7c4ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_03.jpg new file mode 100644 index 0000000..9b7904e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_04.jpg new file mode 100644 index 0000000..e5d5c2a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_05.jpg new file mode 100644 index 0000000..82e63f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_06.jpg new file mode 100644 index 0000000..584bc19 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_07.jpg new file mode 100644 index 0000000..beba683 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_08.jpg new file mode 100644 index 0000000..f60fb59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_09.jpg new file mode 100644 index 0000000..862f771 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_adamantiteframe.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_adamantiteframe.jpg new file mode 100644 index 0000000..8aabf2f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_adamantiteframe.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_adamantiteshells.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_adamantiteshells.jpg new file mode 100644 index 0000000..b71dde2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_adamantiteshells.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_bronzeframework_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_bronzeframework_01.jpg new file mode 100644 index 0000000..3cd0938 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_bronzeframework_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_elementalblastingpowder.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_elementalblastingpowder.jpg new file mode 100644 index 0000000..497971e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_elementalblastingpowder.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironbolts.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironbolts.jpg new file mode 100644 index 0000000..ae9b2b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironbolts.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironbomb.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironbomb.jpg new file mode 100644 index 0000000..3113aed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironcasing.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironcasing.jpg new file mode 100644 index 0000000..ad0e63e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironcasing.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironshell.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironshell.jpg new file mode 100644 index 0000000..3922148 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felironshell.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_felstabilizer.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felstabilizer.jpg new file mode 100644 index 0000000..f06f52e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_felstabilizer.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_gnomishflameturret.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_gnomishflameturret.jpg new file mode 100644 index 0000000..baff683 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_gnomishflameturret.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_goblinboombox_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_goblinboombox_01.jpg new file mode 100644 index 0000000..4e5849c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_goblinboombox_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_goblingtonkcontroller.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_goblingtonkcontroller.jpg new file mode 100644 index 0000000..e67bdcd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_goblingtonkcontroller.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_hardenedadamantitetube.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_hardenedadamantitetube.jpg new file mode 100644 index 0000000..c7bbe00 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_hardenedadamantitetube.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_healthpotionpack.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_healthpotionpack.jpg new file mode 100644 index 0000000..7bebb4a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_healthpotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_khoriumpowercore.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_khoriumpowercore.jpg new file mode 100644 index 0000000..7c1e3d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_khoriumpowercore.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_manapotionpack.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_manapotionpack.jpg new file mode 100644 index 0000000..cb0e9d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_manapotionpack.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_manasyphon.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_manasyphon.jpg new file mode 100644 index 0000000..deba4b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_manasyphon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_mithrilcasing_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_mithrilcasing_01.jpg new file mode 100644 index 0000000..d3221ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_mithrilcasing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_mithrilcasing_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_mithrilcasing_02.jpg new file mode 100644 index 0000000..a38ae2e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_mithrilcasing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_newgoggles.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_newgoggles.jpg new file mode 100644 index 0000000..17c1f03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_newgoggles.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_01.jpg new file mode 100644 index 0000000..86e26f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_02.jpg new file mode 100644 index 0000000..8b08cb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_03.jpg new file mode 100644 index 0000000..7aa664c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_04.jpg new file mode 100644 index 0000000..f044d90 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_pipe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_poltryiser_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_poltryiser_01.jpg new file mode 100644 index 0000000..76c2e38 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_poltryiser_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketboot_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketboot_01.jpg new file mode 100644 index 0000000..0753975 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketboot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketboot_destroyed_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketboot_destroyed_02.jpg new file mode 100644 index 0000000..9a6f4bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketboot_destroyed_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketbootextreme.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketbootextreme.jpg new file mode 100644 index 0000000..d655da7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketbootextreme.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketlauncher.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketlauncher.jpg new file mode 100644 index 0000000..0badcc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_rocketlauncher.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_scope01.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_scope01.jpg new file mode 100644 index 0000000..d740da8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_scope01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_scope02.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_scope02.jpg new file mode 100644 index 0000000..aaf94a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_scope02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_supersappercharge.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_supersappercharge.jpg new file mode 100644 index 0000000..56b26e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_supersappercharge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_thebiggerone.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_thebiggerone.jpg new file mode 100644 index 0000000..33e23c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_thebiggerone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_gizmo_zapthrottlegascollector.jpg b/other/AoWoW-master/images/icons/tiny/inv_gizmo_zapthrottlegascollector.jpg new file mode 100644 index 0000000..cdffbc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_gizmo_zapthrottlegascollector.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_01.jpg new file mode 100644 index 0000000..6c7ae3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_02.jpg new file mode 100644 index 0000000..b758aa4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_03.jpg new file mode 100644 index 0000000..f67abb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_04.jpg new file mode 100644 index 0000000..60f301b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_05.jpg new file mode 100644 index 0000000..521f4ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_06.jpg new file mode 100644 index 0000000..c52c0c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_07.jpg new file mode 100644 index 0000000..c0dd835 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_08.jpg new file mode 100644 index 0000000..be5072b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_09.jpg new file mode 100644 index 0000000..5f9270a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_10.jpg new file mode 100644 index 0000000..2074c35 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_11.jpg new file mode 100644 index 0000000..3418bf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_12.jpg new file mode 100644 index 0000000..00f0fbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_13.jpg new file mode 100644 index 0000000..e0cd881 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_14.jpg new file mode 100644 index 0000000..77713a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_15.jpg new file mode 100644 index 0000000..e3fc581 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_16.jpg new file mode 100644 index 0000000..717ddfa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_17.jpg new file mode 100644 index 0000000..5d7facf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_18.jpg new file mode 100644 index 0000000..9fd2ddd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_19.jpg new file mode 100644 index 0000000..34a2811 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_20.jpg new file mode 100644 index 0000000..8711bc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_21.jpg new file mode 100644 index 0000000..a1fd555 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_22.jpg new file mode 100644 index 0000000..a5c7a97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_23.jpg new file mode 100644 index 0000000..7639311 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_24.jpg new file mode 100644 index 0000000..23654ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_25.jpg new file mode 100644 index 0000000..2f2f48b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_26.jpg new file mode 100644 index 0000000..0f1c785 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_27.jpg new file mode 100644 index 0000000..5d976b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_28.jpg new file mode 100644 index 0000000..e3f7fd0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_hammer_unique_sulfuras.jpg b/other/AoWoW-master/images/icons/tiny/inv_hammer_unique_sulfuras.jpg new file mode 100644 index 0000000..34920b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_hammer_unique_sulfuras.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helm_mask_zulgurub_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_helm_mask_zulgurub_d_01.jpg new file mode 100644 index 0000000..ff46be2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helm_mask_zulgurub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet128.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet128.jpg new file mode 100644 index 0000000..9e8ff77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet128.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_01.jpg new file mode 100644 index 0000000..41152ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_02.jpg new file mode 100644 index 0000000..fa3e8c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_03.jpg new file mode 100644 index 0000000..b15dd80 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_04.jpg new file mode 100644 index 0000000..08d652a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_05.jpg new file mode 100644 index 0000000..31976b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_06.jpg new file mode 100644 index 0000000..5fc048d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_07.jpg new file mode 100644 index 0000000..2192f77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_08.jpg new file mode 100644 index 0000000..ebb0fb3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_09.jpg new file mode 100644 index 0000000..7268cfc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_10.jpg new file mode 100644 index 0000000..f8db9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_100.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_100.jpg new file mode 100644 index 0000000..dd66802 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_100.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_101.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_101.jpg new file mode 100644 index 0000000..324993e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_101.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_102.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_102.jpg new file mode 100644 index 0000000..c7a0951 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_102.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_103.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_103.jpg new file mode 100644 index 0000000..2085996 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_103.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_11.jpg new file mode 100644 index 0000000..8420d7d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_111.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_111.jpg new file mode 100644 index 0000000..8dcb2c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_111.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_112.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_112.jpg new file mode 100644 index 0000000..730022b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_112.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_113.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_113.jpg new file mode 100644 index 0000000..f5c0f92 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_113.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_114.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_114.jpg new file mode 100644 index 0000000..c829fc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_114.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_116.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_116.jpg new file mode 100644 index 0000000..6cc46e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_116.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_117.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_117.jpg new file mode 100644 index 0000000..2f8691c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_117.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_118.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_118.jpg new file mode 100644 index 0000000..68a2695 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_118.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_119.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_119.jpg new file mode 100644 index 0000000..989b71c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_119.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_12.jpg new file mode 100644 index 0000000..4095364 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_120.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_120.jpg new file mode 100644 index 0000000..a6213f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_120.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_126.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_126.jpg new file mode 100644 index 0000000..de98757 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_126.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_127.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_127.jpg new file mode 100644 index 0000000..53a3ba2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_127.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_129.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_129.jpg new file mode 100644 index 0000000..c7fe533 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_129.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_13.jpg new file mode 100644 index 0000000..bba4622 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_14.jpg new file mode 100644 index 0000000..d54d3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_15.jpg new file mode 100644 index 0000000..c5a2771 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_16.jpg new file mode 100644 index 0000000..84b254e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_17.jpg new file mode 100644 index 0000000..919a490 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_18.jpg new file mode 100644 index 0000000..d063b0e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_19.jpg new file mode 100644 index 0000000..a08e6a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_20.jpg new file mode 100644 index 0000000..3f86df4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_21.jpg new file mode 100644 index 0000000..e550211 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_22.jpg new file mode 100644 index 0000000..c255614 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_23.jpg new file mode 100644 index 0000000..7130775 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_24.jpg new file mode 100644 index 0000000..a8d1b84 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_25.jpg new file mode 100644 index 0000000..95611ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_26.jpg new file mode 100644 index 0000000..c8b4682 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_27.jpg new file mode 100644 index 0000000..f50a78d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_28.jpg new file mode 100644 index 0000000..3ab0e2c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_29.jpg new file mode 100644 index 0000000..5c5dbaa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_30.jpg new file mode 100644 index 0000000..53e4834 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_31.jpg new file mode 100644 index 0000000..6b3e688 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_32.jpg new file mode 100644 index 0000000..c093c27 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_33.jpg new file mode 100644 index 0000000..65a1151 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_34.jpg new file mode 100644 index 0000000..5faf5c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_35.jpg new file mode 100644 index 0000000..4314c00 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_36.jpg new file mode 100644 index 0000000..b985832 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_37.jpg new file mode 100644 index 0000000..a16b1d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_38.jpg new file mode 100644 index 0000000..ff867a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_39.jpg new file mode 100644 index 0000000..2b1046f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_40.jpg new file mode 100644 index 0000000..2a63911 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_41.jpg new file mode 100644 index 0000000..f875dc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_42.jpg new file mode 100644 index 0000000..8184a15 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_43.jpg new file mode 100644 index 0000000..8219511 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_44.jpg new file mode 100644 index 0000000..b2bbbca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_45.jpg new file mode 100644 index 0000000..1c43fc1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_46.jpg new file mode 100644 index 0000000..a6f4066 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_47.jpg new file mode 100644 index 0000000..4fe506c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_48.jpg new file mode 100644 index 0000000..ad9f118 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_49.jpg new file mode 100644 index 0000000..ea46e82 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_50.jpg new file mode 100644 index 0000000..814976a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_51.jpg new file mode 100644 index 0000000..0eaa1c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_52.jpg new file mode 100644 index 0000000..cf919c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_53.jpg new file mode 100644 index 0000000..4f241a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_54.jpg new file mode 100644 index 0000000..6267131 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_55.jpg new file mode 100644 index 0000000..272569c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_56.jpg new file mode 100644 index 0000000..94cce7c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_57.jpg new file mode 100644 index 0000000..fd26a15 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_58.jpg new file mode 100644 index 0000000..19a5568 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_59.jpg new file mode 100644 index 0000000..e5bbb71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_60.jpg new file mode 100644 index 0000000..aed582e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_61.jpg new file mode 100644 index 0000000..8d917e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_62.jpg new file mode 100644 index 0000000..98a4773 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_63.jpg new file mode 100644 index 0000000..bd225fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_64.jpg new file mode 100644 index 0000000..6b5cd69 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_65.jpg new file mode 100644 index 0000000..0e386d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_66.jpg new file mode 100644 index 0000000..085775a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_67.jpg new file mode 100644 index 0000000..ad8c334 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_68.jpg new file mode 100644 index 0000000..9078d48 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_69.jpg new file mode 100644 index 0000000..63df1ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_70.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_70.jpg new file mode 100644 index 0000000..3022168 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_70.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_71.jpg new file mode 100644 index 0000000..63f1484 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_72.jpg new file mode 100644 index 0000000..c582e61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_73.jpg new file mode 100644 index 0000000..14be745 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_74.jpg new file mode 100644 index 0000000..377ea05 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_77.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_77.jpg new file mode 100644 index 0000000..4902cd3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_77.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_78.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_78.jpg new file mode 100644 index 0000000..139a977 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_78.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_81.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_81.jpg new file mode 100644 index 0000000..365367b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_81.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_84.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_84.jpg new file mode 100644 index 0000000..f5ce54f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_84.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_85.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_85.jpg new file mode 100644 index 0000000..6180795 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_85.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_86.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_86.jpg new file mode 100644 index 0000000..1dcbf7e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_86.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_87.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_87.jpg new file mode 100644 index 0000000..e36fbd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_87.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_88.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_88.jpg new file mode 100644 index 0000000..8dbaad0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_88.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_89.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_89.jpg new file mode 100644 index 0000000..c0377ab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_89.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_90.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_90.jpg new file mode 100644 index 0000000..8b7133a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_90.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_91.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_91.jpg new file mode 100644 index 0000000..1dd4661 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_91.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_92.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_92.jpg new file mode 100644 index 0000000..ec7dede Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_92.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_93.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_93.jpg new file mode 100644 index 0000000..997dce2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_93.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_94.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_94.jpg new file mode 100644 index 0000000..c2cde28 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_94.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_95.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_95.jpg new file mode 100644 index 0000000..e00e81c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_95.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_96.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_96.jpg new file mode 100644 index 0000000..98d32ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_96.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_97.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_97.jpg new file mode 100644 index 0000000..19d6982 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_97.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_98.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_98.jpg new file mode 100644 index 0000000..14dc05b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_98.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_helmet_99.jpg b/other/AoWoW-master/images/icons/tiny/inv_helmet_99.jpg new file mode 100644 index 0000000..66b1119 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_helmet_99.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestpretzel01.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestpretzel01.jpg new file mode 100644 index 0000000..478e88b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestpretzel01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage01.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage01.jpg new file mode 100644 index 0000000..fe2ffd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage02.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage02.jpg new file mode 100644 index 0000000..9246f69 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage03.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage03.jpg new file mode 100644 index 0000000..ad6cf7a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage04.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage04.jpg new file mode 100644 index 0000000..ea1b52f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_beerfestsausage04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_brewfestbuff_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_brewfestbuff_01.jpg new file mode 100644 index 0000000..51b2fa9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_brewfestbuff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_01.jpg new file mode 100644 index 0000000..daef087 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_02.jpg new file mode 100644 index 0000000..44dd344 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_03.jpg new file mode 100644 index 0000000..aa49968 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_present_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_01.jpg new file mode 100644 index 0000000..2453eee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_02.jpg new file mode 100644 index 0000000..3479989 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_03.jpg new file mode 100644 index 0000000..4a8fab8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_christmas_wrapping_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_summerfest_petals.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_summerfest_petals.jpg new file mode 100644 index 0000000..54379c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_summerfest_petals.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebandage.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebandage.jpg new file mode 100644 index 0000000..562518e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebandage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebowl.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebowl.jpg new file mode 100644 index 0000000..fd07e26 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebowl.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebrownie.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebrownie.jpg new file mode 100644 index 0000000..8e8b38d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicebrownie.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion01.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion01.jpg new file mode 100644 index 0000000..4dbb811 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion02.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion02.jpg new file mode 100644 index 0000000..e380142 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion03.jpg b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion03.jpg new file mode 100644 index 0000000..9ab36d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_holiday_tow_spicepotion03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_01.jpg new file mode 100644 index 0000000..f7add8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_02.jpg new file mode 100644 index 0000000..93fa3ff Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_03.jpg new file mode 100644 index 0000000..902d037 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_04.jpg new file mode 100644 index 0000000..5f21433 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_05.jpg new file mode 100644 index 0000000..08e3f9d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_06.jpg new file mode 100644 index 0000000..7329a56 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_07.jpg new file mode 100644 index 0000000..c99e7c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_08.jpg new file mode 100644 index 0000000..82ae106 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_09.jpg new file mode 100644 index 0000000..d5a034a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_10.jpg new file mode 100644 index 0000000..c64320a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_11.jpg new file mode 100644 index 0000000..e863ec3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_adamantite.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_adamantite.jpg new file mode 100644 index 0000000..ea0f030 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_bronze.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_bronze.jpg new file mode 100644 index 0000000..552005a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_eternium.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_eternium.jpg new file mode 100644 index 0000000..3b2157f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_feliron.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_feliron.jpg new file mode 100644 index 0000000..325701f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_felsteel.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_felsteel.jpg new file mode 100644 index 0000000..5ac44dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_iron.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_iron.jpg new file mode 100644 index 0000000..efbefe2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_mithril.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_mithril.jpg new file mode 100644 index 0000000..33db8fb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_steel.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_steel.jpg new file mode 100644 index 0000000..1c788c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_steel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ingot_thorium.jpg b/other/AoWoW-master/images/icons/tiny/inv_ingot_thorium.jpg new file mode 100644 index 0000000..fedc663 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ingot_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_blackpearlpanther.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_blackpearlpanther.jpg new file mode 100644 index 0000000..b13527d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_blackpearlpanther.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_bronzesetting.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_bronzesetting.jpg new file mode 100644 index 0000000..e8b05ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_bronzesetting.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_crimsonspinel_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_crimsonspinel_01.jpg new file mode 100644 index 0000000..37e4f8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_crimsonspinel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_crimsonspinel_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_crimsonspinel_02.jpg new file mode 100644 index 0000000..f674d76 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_crimsonspinel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_01.jpg new file mode 100644 index 0000000..6f9e928 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_02.jpg new file mode 100644 index 0000000..164f23c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_03.jpg new file mode 100644 index 0000000..906ef3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_dawnstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_delicatecopperwire.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_delicatecopperwire.jpg new file mode 100644 index 0000000..661b3a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_delicatecopperwire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_empyreansapphire_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_empyreansapphire_01.jpg new file mode 100644 index 0000000..447cb0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_empyreansapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_empyreansapphire_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_empyreansapphire_02.jpg new file mode 100644 index 0000000..524e9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_empyreansapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_goldenhare.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_goldenhare.jpg new file mode 100644 index 0000000..9817adc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_goldenhare.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_jadeowl.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_jadeowl.jpg new file mode 100644 index 0000000..4eb1a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_jadeowl.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_lionseye_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_lionseye_01.jpg new file mode 100644 index 0000000..0e58ba6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_lionseye_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_lionseye_02.jpg new file mode 100644 index 0000000..8350ec7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_lionseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_01.jpg new file mode 100644 index 0000000..23d519b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_02.jpg new file mode 100644 index 0000000..9ffd09c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_03.jpg new file mode 100644 index 0000000..903a1ee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_livingruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_mithrilfiligree.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_mithrilfiligree.jpg new file mode 100644 index 0000000..54f5be8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_mithrilfiligree.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_01.jpg new file mode 100644 index 0000000..29780d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_02.jpg new file mode 100644 index 0000000..94c1ebf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_03.jpg new file mode 100644 index 0000000..d394e8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nightseye_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_01.jpg new file mode 100644 index 0000000..969a80a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_02.jpg new file mode 100644 index 0000000..57a4469 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_03.jpg new file mode 100644 index 0000000..2c35e48 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_nobletopaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_pyrestone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_pyrestone_01.jpg new file mode 100644 index 0000000..a9f617b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_pyrestone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_pyrestone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_pyrestone_02.jpg new file mode 100644 index 0000000..5880576 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_pyrestone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_rubyserpent.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_rubyserpent.jpg new file mode 100644 index 0000000..440e364 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_rubyserpent.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_seasprayemerald_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_seasprayemerald_01.jpg new file mode 100644 index 0000000..d0b0f7d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_seasprayemerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_seasprayemerald_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_seasprayemerald_02.jpg new file mode 100644 index 0000000..0c6d25c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_seasprayemerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_shadowsongamethyst_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_shadowsongamethyst_01.jpg new file mode 100644 index 0000000..8606ffb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_shadowsongamethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_shadowsongamethyst_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_shadowsongamethyst_02.jpg new file mode 100644 index 0000000..6607400 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_shadowsongamethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_01.jpg new file mode 100644 index 0000000..04660df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_02.jpg new file mode 100644 index 0000000..b7e0e89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_03.jpg new file mode 100644 index 0000000..4fb3910 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_starofelune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_01.jpg new file mode 100644 index 0000000..df59c48 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_02.jpg new file mode 100644 index 0000000..0cb8f8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_03.jpg new file mode 100644 index 0000000..b96107e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_talasite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_thoriumsetting.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_thoriumsetting.jpg new file mode 100644 index 0000000..9a50732 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_thoriumsetting.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_truesilverboar.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_truesilverboar.jpg new file mode 100644 index 0000000..ceeb1a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_truesilverboar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_truesilvercrab.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_truesilvercrab.jpg new file mode 100644 index 0000000..1e56c73 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelcrafting_truesilvercrab.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_01.jpg new file mode 100644 index 0000000..6f4a368 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_02.jpg new file mode 100644 index 0000000..ce67e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_03.jpg new file mode 100644 index 0000000..752dddc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_04.jpg new file mode 100644 index 0000000..0707d77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_05.jpg new file mode 100644 index 0000000..3518a01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_06.jpg new file mode 100644 index 0000000..1367172 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_07.jpg new file mode 100644 index 0000000..3403478 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_amulet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_01.jpg new file mode 100644 index 0000000..86349ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_02.jpg new file mode 100644 index 0000000..2ea9467 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_03.jpg new file mode 100644 index 0000000..5da652a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_04.jpg new file mode 100644 index 0000000..bd56b0c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_05.jpg new file mode 100644 index 0000000..57941d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_frostwolftrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_01.jpg new file mode 100644 index 0000000..43a0fc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_02.jpg new file mode 100644 index 0000000..711136f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_03.jpg new file mode 100644 index 0000000..3f98a61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_04.jpg new file mode 100644 index 0000000..276cad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_05.jpg new file mode 100644 index 0000000..878bcbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_06.jpg new file mode 100644 index 0000000..7296842 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_07.jpg new file mode 100644 index 0000000..25d422d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_08.jpg new file mode 100644 index 0000000..8eb7a51 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_09.jpg new file mode 100644 index 0000000..68e1450 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_10.jpg new file mode 100644 index 0000000..480f55c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_11.jpg new file mode 100644 index 0000000..e71851f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_12.jpg new file mode 100644 index 0000000..05f7423 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_13.jpg new file mode 100644 index 0000000..00a8e0a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_14.jpg new file mode 100644 index 0000000..0585d08 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_15.jpg new file mode 100644 index 0000000..43e7a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_16.jpg new file mode 100644 index 0000000..b4629d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_17.jpg new file mode 100644 index 0000000..3e239a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_18.jpg new file mode 100644 index 0000000..bca0e4a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_19.jpg new file mode 100644 index 0000000..09939ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_20.jpg new file mode 100644 index 0000000..26b61d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_21.jpg new file mode 100644 index 0000000..0bb9cb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_22.jpg new file mode 100644 index 0000000..816bec3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_23.jpg new file mode 100644 index 0000000..459369c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_24.jpg new file mode 100644 index 0000000..44dd0d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_25.jpg new file mode 100644 index 0000000..1167512 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_26.jpg new file mode 100644 index 0000000..1eb1642 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_27.jpg new file mode 100644 index 0000000..dae76df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_27naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_27naxxramas.jpg new file mode 100644 index 0000000..25d6476 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_27naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_28.jpg new file mode 100644 index 0000000..fac0f8e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_28naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_28naxxramas.jpg new file mode 100644 index 0000000..7fd6825 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_28naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_29.jpg new file mode 100644 index 0000000..ada0ccd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_29naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_29naxxramas.jpg new file mode 100644 index 0000000..d28bef5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_29naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_30.jpg new file mode 100644 index 0000000..f4614c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_30naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_30naxxramas.jpg new file mode 100644 index 0000000..fe4e84e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_30naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_31.jpg new file mode 100644 index 0000000..5c8ba09 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_32.jpg new file mode 100644 index 0000000..dbd1acf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_33.jpg new file mode 100644 index 0000000..0575b88 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_34.jpg new file mode 100644 index 0000000..71a1ae8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_35.jpg new file mode 100644 index 0000000..42665bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_36.jpg new file mode 100644 index 0000000..d6228e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_37.jpg new file mode 100644 index 0000000..b4cfa0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_38.jpg new file mode 100644 index 0000000..bb73a20 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_39.jpg new file mode 100644 index 0000000..d153d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_40.jpg new file mode 100644 index 0000000..d31c6a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_41.jpg new file mode 100644 index 0000000..72fcdde Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_42.jpg new file mode 100644 index 0000000..dee03b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_43.jpg new file mode 100644 index 0000000..315aef9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_44.jpg new file mode 100644 index 0000000..5efce3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_45.jpg new file mode 100644 index 0000000..6c007ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_46.jpg new file mode 100644 index 0000000..acc6b3c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_47.jpg new file mode 100644 index 0000000..6a3be55 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_01.jpg new file mode 100644 index 0000000..34e36f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_02.jpg new file mode 100644 index 0000000..49ccc1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_03.jpg new file mode 100644 index 0000000..bba6fc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_04.jpg new file mode 100644 index 0000000..cd0fb03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_necklace_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_01.jpg new file mode 100644 index 0000000..fa6c629 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_02.jpg new file mode 100644 index 0000000..bf7a4e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_03.jpg new file mode 100644 index 0000000..e7ce7f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_04.jpg new file mode 100644 index 0000000..3a2bd93 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_05.jpg new file mode 100644 index 0000000..8141a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_06.jpg new file mode 100644 index 0000000..90eefdf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_07.jpg new file mode 100644 index 0000000..22c0fce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_08.jpg new file mode 100644 index 0000000..c07045e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_09.jpg new file mode 100644 index 0000000..493b9f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_10.jpg new file mode 100644 index 0000000..f188db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_11.jpg new file mode 100644 index 0000000..e1f7c66 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_12.jpg new file mode 100644 index 0000000..0856929 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_13.jpg new file mode 100644 index 0000000..bf15760 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_14.jpg new file mode 100644 index 0000000..e12cd5b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_15.jpg new file mode 100644 index 0000000..846e045 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_16.jpg new file mode 100644 index 0000000..fe0d274 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_17.jpg new file mode 100644 index 0000000..a6e4503 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_18.jpg new file mode 100644 index 0000000..b2023b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_19.jpg new file mode 100644 index 0000000..780fb3e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_20.jpg new file mode 100644 index 0000000..72d3abb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_21.jpg new file mode 100644 index 0000000..0cdfa31 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_22.jpg new file mode 100644 index 0000000..919c01b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_23.jpg new file mode 100644 index 0000000..c8eadf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_24.jpg new file mode 100644 index 0000000..cf1fd2e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_25.jpg new file mode 100644 index 0000000..015414f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_26.jpg new file mode 100644 index 0000000..e69de29 diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_27.jpg new file mode 100644 index 0000000..a7e1ea6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_28.jpg new file mode 100644 index 0000000..e0cfbc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_29.jpg new file mode 100644 index 0000000..c078fd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_30.jpg new file mode 100644 index 0000000..45e3023 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_31.jpg new file mode 100644 index 0000000..d236036 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_32.jpg new file mode 100644 index 0000000..aad2d91 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_33.jpg new file mode 100644 index 0000000..1a285a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_34.jpg new file mode 100644 index 0000000..002e300 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_35.jpg new file mode 100644 index 0000000..2e3709a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_36.jpg new file mode 100644 index 0000000..7d991a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_37.jpg new file mode 100644 index 0000000..7d8fc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_38.jpg new file mode 100644 index 0000000..342eb56 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_39.jpg new file mode 100644 index 0000000..6193392 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_40.jpg new file mode 100644 index 0000000..53ad764 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_41.jpg new file mode 100644 index 0000000..ef05eea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_42.jpg new file mode 100644 index 0000000..09ac8bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_43.jpg new file mode 100644 index 0000000..3afbc4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_44.jpg new file mode 100644 index 0000000..e24a842 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_45.jpg new file mode 100644 index 0000000..ccf243d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_46.jpg new file mode 100644 index 0000000..b059fa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_47.jpg new file mode 100644 index 0000000..f9856f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_48naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_48naxxramas.jpg new file mode 100644 index 0000000..43c1902 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_48naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_49naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_49naxxramas.jpg new file mode 100644 index 0000000..e1440b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_49naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_50naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_50naxxramas.jpg new file mode 100644 index 0000000..f590f8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_50naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_51naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_51naxxramas.jpg new file mode 100644 index 0000000..fccf208 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_51naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_52naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_52naxxramas.jpg new file mode 100644 index 0000000..f8c9ff9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_52naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_53naxxramas.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_53naxxramas.jpg new file mode 100644 index 0000000..51855da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_53naxxramas.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_54.jpg new file mode 100644 index 0000000..c43fbe5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_55.jpg new file mode 100644 index 0000000..bae5c05 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_56.jpg new file mode 100644 index 0000000..71e2268 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_57.jpg new file mode 100644 index 0000000..875a52a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_58.jpg new file mode 100644 index 0000000..0239b1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_59.jpg new file mode 100644 index 0000000..6521657 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_60.jpg new file mode 100644 index 0000000..3f644de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_61.jpg new file mode 100644 index 0000000..ced0125 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_62.jpg new file mode 100644 index 0000000..6fef648 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_63.jpg new file mode 100644 index 0000000..56a31b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_64.jpg new file mode 100644 index 0000000..d6ba983 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_65.jpg new file mode 100644 index 0000000..eea0a39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_66.jpg new file mode 100644 index 0000000..a66f59b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_67.jpg new file mode 100644 index 0000000..59ccb00 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_68.jpg new file mode 100644 index 0000000..689fa8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_69.jpg new file mode 100644 index 0000000..a8ff9f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_70.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_70.jpg new file mode 100644 index 0000000..cf4be80 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_70.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_71.jpg new file mode 100644 index 0000000..a1aebb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_72.jpg new file mode 100644 index 0000000..78c3c79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_73.jpg new file mode 100644 index 0000000..fc2e7da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_74.jpg new file mode 100644 index 0000000..f80019d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_75.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_75.jpg new file mode 100644 index 0000000..7142bd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_75.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_76.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_76.jpg new file mode 100644 index 0000000..49449a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_76.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_77.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_77.jpg new file mode 100644 index 0000000..f1060af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_77.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_78.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_78.jpg new file mode 100644 index 0000000..dd50f06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_78.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_79.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_79.jpg new file mode 100644 index 0000000..3a80125 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_79.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_80.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_80.jpg new file mode 100644 index 0000000..a5aa34a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_80.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_01.jpg new file mode 100644 index 0000000..3d6344e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_02.jpg new file mode 100644 index 0000000..64dba32 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_03.jpg new file mode 100644 index 0000000..b897cc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_04.jpg new file mode 100644 index 0000000..fa912b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_05.jpg new file mode 100644 index 0000000..c35979a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_06.jpg new file mode 100644 index 0000000..29a28d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_ring_ahnqiraj_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_01.jpg new file mode 100644 index 0000000..7c4a2da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_02.jpg new file mode 100644 index 0000000..28c00ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_03.jpg new file mode 100644 index 0000000..3858353 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_04.jpg new file mode 100644 index 0000000..7328b05 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_05.jpg new file mode 100644 index 0000000..8a91aa2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_stormpiketrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_01.jpg new file mode 100644 index 0000000..8fa5940 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_02.jpg new file mode 100644 index 0000000..75597fd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_03.jpg new file mode 100644 index 0000000..19fc86e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_04.jpg new file mode 100644 index 0000000..e367c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_05.jpg new file mode 100644 index 0000000..a465c5b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_06.jpg new file mode 100644 index 0000000..5a928e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_07.jpg new file mode 100644 index 0000000..4678103 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_08.jpg new file mode 100644 index 0000000..63f3d95 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_09.jpg new file mode 100644 index 0000000..53e00bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_10.jpg new file mode 100644 index 0000000..0d17cbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_11.jpg new file mode 100644 index 0000000..4aac97c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_12.jpg new file mode 100644 index 0000000..a066f56 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_13.jpg new file mode 100644 index 0000000..b3d6a63 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_14.jpg new file mode 100644 index 0000000..958f2c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_15.jpg new file mode 100644 index 0000000..1cc3fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_16.jpg new file mode 100644 index 0000000..188e55e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_17.jpg new file mode 100644 index 0000000..1026996 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_18.jpg new file mode 100644 index 0000000..bd14028 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_talisman_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_trinketpvp_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_trinketpvp_01.jpg new file mode 100644 index 0000000..d3fa941 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_trinketpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_jewelry_trinketpvp_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_jewelry_trinketpvp_02.jpg new file mode 100644 index 0000000..3d79cdd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_jewelry_trinketpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..d759501 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..269fbe9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_03.jpg new file mode 100644 index 0000000..0372d0a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_knife_1h_stratholme_d_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_01.jpg new file mode 100644 index 0000000..c69ac2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_02.jpg new file mode 100644 index 0000000..d674390 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_03.jpg new file mode 100644 index 0000000..15702f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_04.jpg new file mode 100644 index 0000000..fa3a7ac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_05.jpg new file mode 100644 index 0000000..85d3725 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_06.jpg new file mode 100644 index 0000000..df746c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_07.jpg new file mode 100644 index 0000000..0a8ccd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_08.jpg new file mode 100644 index 0000000..be8204a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_09.jpg new file mode 100644 index 0000000..b232b8e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_10.jpg new file mode 100644 index 0000000..5a2e535 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_11.jpg new file mode 100644 index 0000000..eaf3ecd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_12.jpg new file mode 100644 index 0000000..c52ed06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_13.jpg new file mode 100644 index 0000000..6d6ae34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_14.jpg new file mode 100644 index 0000000..3396cec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_15.jpg new file mode 100644 index 0000000..f615788 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_16.jpg new file mode 100644 index 0000000..90ceac3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_letter_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_letter_17.jpg new file mode 100644 index 0000000..85756d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_letter_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace22.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace22.jpg new file mode 100644 index 0000000..06d448d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace23.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace23.jpg new file mode 100644 index 0000000..a75b1f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_01.jpg new file mode 100644 index 0000000..c789b4d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_02.jpg new file mode 100644 index 0000000..7ad9f86 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_03.jpg new file mode 100644 index 0000000..39357c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_04.jpg new file mode 100644 index 0000000..e6f239f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_05.jpg new file mode 100644 index 0000000..3dc73c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_06.jpg new file mode 100644 index 0000000..3de4861 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_07.jpg new file mode 100644 index 0000000..e7bfbce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_08.jpg new file mode 100644 index 0000000..4de3990 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_09.jpg new file mode 100644 index 0000000..0956644 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_10.jpg new file mode 100644 index 0000000..41db536 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_11.jpg new file mode 100644 index 0000000..edfbad2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_12.jpg new file mode 100644 index 0000000..ed0168d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_13.jpg new file mode 100644 index 0000000..a58c87e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_14.jpg new file mode 100644 index 0000000..650038a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_15.jpg new file mode 100644 index 0000000..d0311c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_16.jpg new file mode 100644 index 0000000..387a770 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_17.jpg new file mode 100644 index 0000000..7672ddd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_18.jpg new file mode 100644 index 0000000..5f05ad6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_19.jpg new file mode 100644 index 0000000..8955491 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..fc8b9c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..d55d252 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_20.jpg new file mode 100644 index 0000000..182d0b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_21.jpg new file mode 100644 index 0000000..48978b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_22.jpg new file mode 100644 index 0000000..06d448d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_23.jpg new file mode 100644 index 0000000..a75b1f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_24.jpg new file mode 100644 index 0000000..f34b63b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_25.jpg new file mode 100644 index 0000000..a9cfc6d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_26.jpg new file mode 100644 index 0000000..a6efd1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_27.jpg new file mode 100644 index 0000000..5c97487 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_28.jpg new file mode 100644 index 0000000..5fd78e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_29.jpg new file mode 100644 index 0000000..f428d45 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..09e52c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..3d17aa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..4d42278 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_30.jpg new file mode 100644 index 0000000..012317c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_31.jpg new file mode 100644 index 0000000..7ecd308 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_32.jpg new file mode 100644 index 0000000..695db0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_33.jpg new file mode 100644 index 0000000..8e18d37 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_34.jpg new file mode 100644 index 0000000..4c0fb40 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_35.jpg new file mode 100644 index 0000000..323c150 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_36.jpg new file mode 100644 index 0000000..9e09c2d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_37.jpg new file mode 100644 index 0000000..b2ca9d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_38.jpg new file mode 100644 index 0000000..4239038 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_39.jpg new file mode 100644 index 0000000..679dc77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_40.jpg new file mode 100644 index 0000000..04984cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_41.jpg new file mode 100644 index 0000000..f391ae7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_42.jpg new file mode 100644 index 0000000..e281b89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_43.jpg new file mode 100644 index 0000000..e858d4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_44.jpg new file mode 100644 index 0000000..0bde72f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_45.jpg new file mode 100644 index 0000000..e77a5f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_46.jpg new file mode 100644 index 0000000..9d7d2b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_47.jpg new file mode 100644 index 0000000..7b024a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_48.jpg new file mode 100644 index 0000000..b4fa9dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_49.jpg new file mode 100644 index 0000000..5f55668 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_50.jpg new file mode 100644 index 0000000..ab2f795 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_51.jpg new file mode 100644 index 0000000..fba3af7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_52.jpg new file mode 100644 index 0000000..9608678 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_53.jpg new file mode 100644 index 0000000..4e9a04b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_54.jpg new file mode 100644 index 0000000..01f044d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_55.jpg new file mode 100644 index 0000000..de3fef5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_56.jpg new file mode 100644 index 0000000..49af2b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_57.jpg new file mode 100644 index 0000000..b23c78f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_66.jpg new file mode 100644 index 0000000..591d3af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_71.jpg new file mode 100644 index 0000000..93dec64 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_72.jpg new file mode 100644 index 0000000..b857c24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_73.jpg new file mode 100644 index 0000000..308735d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_74.jpg new file mode 100644 index 0000000..a09e499 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mace_82.jpg b/other/AoWoW-master/images/icons/tiny/inv_mace_82.jpg new file mode 100644 index 0000000..df2f322 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mace_82.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mask_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_mask_01.jpg new file mode 100644 index 0000000..324c724 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mask_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mask_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_mask_02.jpg new file mode 100644 index 0000000..eff4819 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mask_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mask_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_mask_03.jpg new file mode 100644 index 0000000..4ef38b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mask_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mask_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_mask_04.jpg new file mode 100644 index 0000000..d5d46b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mask_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mask_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_mask_05.jpg new file mode 100644 index 0000000..5b0b094 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mask_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mask_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_mask_06.jpg new file mode 100644 index 0000000..78d9f5b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mask_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_01.jpg new file mode 100644 index 0000000..988ce8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_02.jpg new file mode 100644 index 0000000..5eb7a8f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_03.jpg new file mode 100644 index 0000000..4207772 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_04.jpg new file mode 100644 index 0000000..fa93e17 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_05.jpg new file mode 100644 index 0000000..8d5086e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_06.jpg new file mode 100644 index 0000000..8dbe315 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ahnqirajtrinket_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_01.jpg new file mode 100644 index 0000000..cfc1ce2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_02.jpg new file mode 100644 index 0000000..82c5e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_03.jpg new file mode 100644 index 0000000..0aabf79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_04.jpg new file mode 100644 index 0000000..6127a86 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_05.jpg new file mode 100644 index 0000000..97f20cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_arrow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_01.jpg new file mode 100644 index 0000000..c1f8a25 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_02.jpg new file mode 100644 index 0000000..ebfb3f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_03.jpg new file mode 100644 index 0000000..617ff37 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_04.jpg new file mode 100644 index 0000000..ccd74f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_05.jpg new file mode 100644 index 0000000..7559a7e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_06.jpg new file mode 100644 index 0000000..b896c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_bullet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_01.jpg new file mode 100644 index 0000000..f096bb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_02.jpg new file mode 100644 index 0000000..e69de29 diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_03.jpg new file mode 100644 index 0000000..fadba3f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_04.jpg new file mode 100644 index 0000000..c8ffffc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_05.jpg new file mode 100644 index 0000000..72d1236 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_06.jpg new file mode 100644 index 0000000..ec00ea1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_07.jpg new file mode 100644 index 0000000..314c0d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ammo_gunpowder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_apexis_crystal.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_apexis_crystal.jpg new file mode 100644 index 0000000..f63ee8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_apexis_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_apexis_shard.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_apexis_shard.jpg new file mode 100644 index 0000000..eba88ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_apexis_shard.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_01.jpg new file mode 100644 index 0000000..9f67bb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_02.jpg new file mode 100644 index 0000000..74d2f6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_03.jpg new file mode 100644 index 0000000..6da6154 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_04.jpg new file mode 100644 index 0000000..2fc2b43 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_05.jpg new file mode 100644 index 0000000..9e5c110 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_06.jpg new file mode 100644 index 0000000..60cb815 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_07.jpg new file mode 100644 index 0000000..1dfa6f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_08.jpg new file mode 100644 index 0000000..beb2569 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_09.jpg new file mode 100644 index 0000000..6514a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_10.jpg new file mode 100644 index 0000000..64a5e96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_11.jpg new file mode 100644 index 0000000..4ae0a7c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_12.jpg new file mode 100644 index 0000000..2492660 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_14.jpg new file mode 100644 index 0000000..91460d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_15.jpg new file mode 100644 index 0000000..e69aa57 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_16.jpg new file mode 100644 index 0000000..cdaa6ad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_17.jpg new file mode 100644 index 0000000..9e91f08 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_18.jpg new file mode 100644 index 0000000..66fdbe5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_19.jpg new file mode 100644 index 0000000..c589996 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_20.jpg new file mode 100644 index 0000000..526a794 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_21.jpg new file mode 100644 index 0000000..adf0211 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_22.jpg new file mode 100644 index 0000000..41d7d95 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_23.jpg new file mode 100644 index 0000000..2f8408e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_24.jpg new file mode 100644 index 0000000..4cab773 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_25.jpg new file mode 100644 index 0000000..fd1afca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_26.jpg new file mode 100644 index 0000000..6f8a091 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_27.jpg new file mode 100644 index 0000000..ba0a456 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_armorkit_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_01.jpg new file mode 100644 index 0000000..83d7b83 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_02.jpg new file mode 100644 index 0000000..9c0c5f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_03.jpg new file mode 100644 index 0000000..b655f86 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_04.jpg new file mode 100644 index 0000000..56179ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_05.jpg new file mode 100644 index 0000000..02f2ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_06.jpg new file mode 100644 index 0000000..00c6192 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07.jpg new file mode 100644 index 0000000..72dcb1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_black.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_black.jpg new file mode 100644 index 0000000..2e35dba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_black.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_blue.jpg new file mode 100644 index 0000000..187a0ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_green.jpg new file mode 100644 index 0000000..9743b6f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_red.jpg new file mode 100644 index 0000000..56ab7f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_07_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_08.jpg new file mode 100644 index 0000000..6fc84c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09.jpg new file mode 100644 index 0000000..e80f079 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_black.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_black.jpg new file mode 100644 index 0000000..e172366 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_black.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_blue.jpg new file mode 100644 index 0000000..16ff819 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_green.jpg new file mode 100644 index 0000000..3d50fa9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_red.jpg new file mode 100644 index 0000000..2ee308c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_09_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10.jpg new file mode 100644 index 0000000..d8dacce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_black.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_black.jpg new file mode 100644 index 0000000..6f41cbe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_black.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_blue.jpg new file mode 100644 index 0000000..37b0e14 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_green.jpg new file mode 100644 index 0000000..342e794 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_red.jpg new file mode 100644 index 0000000..19cd4df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_10_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_11.jpg new file mode 100644 index 0000000..ff83575 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_12.jpg new file mode 100644 index 0000000..da12c8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_13.jpg new file mode 100644 index 0000000..ce6471e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_14.jpg new file mode 100644 index 0000000..0a242a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_15.jpg new file mode 100644 index 0000000..9a508c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_16.jpg new file mode 100644 index 0000000..9dc3e93 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_17.jpg new file mode 100644 index 0000000..a843978 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_18.jpg new file mode 100644 index 0000000..2ed1632 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_19.jpg new file mode 100644 index 0000000..19eb6e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_20.jpg new file mode 100644 index 0000000..b66177d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_21.jpg new file mode 100644 index 0000000..aef3772 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_22.jpg new file mode 100644 index 0000000..2e691ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_23_netherweave.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_23_netherweave.jpg new file mode 100644 index 0000000..a64c605 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_23_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_24_netherweave_imbued.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_24_netherweave_imbued.jpg new file mode 100644 index 0000000..50bef13 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_24_netherweave_imbued.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_25_mooncloth.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_25_mooncloth.jpg new file mode 100644 index 0000000..08065dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_25_mooncloth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_26_spellfire.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_26_spellfire.jpg new file mode 100644 index 0000000..c72345d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_26_spellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_27.jpg new file mode 100644 index 0000000..9385044 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_28_halloween.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_28_halloween.jpg new file mode 100644 index 0000000..04fc844 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_28_halloween.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_bigbagofenchantments.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_bigbagofenchantments.jpg new file mode 100644 index 0000000..a81a329 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_bigbagofenchantments.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_cenarionherbbag.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_cenarionherbbag.jpg new file mode 100644 index 0000000..95f1220 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_cenarionherbbag.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_corefelclothbag.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_corefelclothbag.jpg new file mode 100644 index 0000000..870cd18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_corefelclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_enchantedmageweave.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_enchantedmageweave.jpg new file mode 100644 index 0000000..ea40c1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_enchantedmageweave.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_enchantedrunecloth.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_enchantedrunecloth.jpg new file mode 100644 index 0000000..ea91681 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_enchantedrunecloth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_felclothbag.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_felclothbag.jpg new file mode 100644 index 0000000..4302fde Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_felclothbag.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_herbpouch.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_herbpouch.jpg new file mode 100644 index 0000000..c42a2cd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_herbpouch.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_satchelofcenarius.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_satchelofcenarius.jpg new file mode 100644 index 0000000..758dcf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_satchelofcenarius.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bag_soulbag.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_soulbag.jpg new file mode 100644 index 0000000..a827f8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bag_soulbag.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_01.jpg new file mode 100644 index 0000000..57dd1e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_02.jpg new file mode 100644 index 0000000..96a5fea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_03.jpg new file mode 100644 index 0000000..0dc0e3d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_04.jpg new file mode 100644 index 0000000..410a1d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_05.jpg new file mode 100644 index 0000000..7480d9c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_06.jpg new file mode 100644 index 0000000..27c76fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_07.jpg new file mode 100644 index 0000000..94cf552 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_08.jpg new file mode 100644 index 0000000..8bfe451 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_09.jpg new file mode 100644 index 0000000..0301f1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_10.jpg new file mode 100644 index 0000000..274113e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_11.jpg new file mode 100644 index 0000000..6dfd4a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_12.jpg new file mode 100644 index 0000000..21942f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_13.jpg new file mode 100644 index 0000000..8c1558a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_14.jpg new file mode 100644 index 0000000..085b365 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_15.jpg new file mode 100644 index 0000000..69704e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_16.jpg new file mode 100644 index 0000000..f637c12 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_17.jpg new file mode 100644 index 0000000..f1d5df5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_18.jpg new file mode 100644 index 0000000..3ce4fd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_19.jpg new file mode 100644 index 0000000..07b204c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_20.jpg new file mode 100644 index 0000000..afc460c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_netherweave.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_netherweave.jpg new file mode 100644 index 0000000..62ba8ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_netherweave.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_netherweave_heavy.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_netherweave_heavy.jpg new file mode 100644 index 0000000..846d1dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandage_netherweave_heavy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandana_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandana_01.jpg new file mode 100644 index 0000000..8522f3e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandana_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bandana_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bandana_03.jpg new file mode 100644 index 0000000..dac1354 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bandana_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_basket_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_basket_01.jpg new file mode 100644 index 0000000..3868d73 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_basket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_beer_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_beer_01.jpg new file mode 100644 index 0000000..3ae732d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_beer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_beer_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_beer_02.jpg new file mode 100644 index 0000000..8195d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_beer_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bell_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bell_01.jpg new file mode 100644 index 0000000..a93ddd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_birdbeck_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_birdbeck_01.jpg new file mode 100644 index 0000000..d8346be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_birdbeck_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_birdbeck_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_birdbeck_02.jpg new file mode 100644 index 0000000..20818a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_birdbeck_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_01.jpg new file mode 100644 index 0000000..9a278dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_02.jpg new file mode 100644 index 0000000..15ffe21 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_03.jpg new file mode 100644 index 0000000..b22c2f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_04.jpg new file mode 100644 index 0000000..d70c367 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_05.jpg new file mode 100644 index 0000000..59f0005 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_06.jpg new file mode 100644 index 0000000..5fd872c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_07.jpg new file mode 100644 index 0000000..d9aa717 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_08.jpg new file mode 100644 index 0000000..df2cd72 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_09.jpg new file mode 100644 index 0000000..b7f7483 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bomb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_01.jpg new file mode 100644 index 0000000..33dc486 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_02.jpg new file mode 100644 index 0000000..141d96b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_03.jpg new file mode 100644 index 0000000..d0214b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_04.jpg new file mode 100644 index 0000000..a1b3e4b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_05.jpg new file mode 100644 index 0000000..18b48d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_06.jpg new file mode 100644 index 0000000..a5d32ab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_07.jpg new file mode 100644 index 0000000..82287cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_08.jpg new file mode 100644 index 0000000..6d7b757 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_09.jpg new file mode 100644 index 0000000..4ebc958 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_10.jpg new file mode 100644 index 0000000..fc23750 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_dwarfskull_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_dwarfskull_01.jpg new file mode 100644 index 0000000..f523288 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_dwarfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_elfskull_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_elfskull_01.jpg new file mode 100644 index 0000000..af574ac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_elfskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_humanskull_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_humanskull_01.jpg new file mode 100644 index 0000000..889476a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_humanskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_orcskull_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_orcskull_01.jpg new file mode 100644 index 0000000..b7acf7a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_orcskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bone_taurenskull_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_taurenskull_01.jpg new file mode 100644 index 0000000..d7c9160 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bone_taurenskull_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_01.jpg new file mode 100644 index 0000000..5bd17fa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_02.jpg new file mode 100644 index 0000000..81ed39f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_03.jpg new file mode 100644 index 0000000..7ff1d9c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_04.jpg new file mode 100644 index 0000000..3455d8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_05.jpg new file mode 100644 index 0000000..2a93b66 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_06.jpg new file mode 100644 index 0000000..0d04457 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_07.jpg new file mode 100644 index 0000000..bd4ac8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_08.jpg new file mode 100644 index 0000000..8c974b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_09.jpg new file mode 100644 index 0000000..cf97f61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_10.jpg new file mode 100644 index 0000000..5421591 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_11.jpg new file mode 100644 index 0000000..498452f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_12.jpg new file mode 100644 index 0000000..f1b7785 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_13.jpg new file mode 100644 index 0000000..2fb14c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_14.jpg new file mode 100644 index 0000000..10632eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_book_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_book_15.jpg new file mode 100644 index 0000000..ff7431a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_book_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_bowl_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_bowl_01.jpg new file mode 100644 index 0000000..e5ea1a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_bowl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_branch_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_branch_01.jpg new file mode 100644 index 0000000..c9b0d81 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_branch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_candle_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_candle_01.jpg new file mode 100644 index 0000000..3d249ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_candle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_candle_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_candle_02.jpg new file mode 100644 index 0000000..817f40e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_candle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_candle_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_candle_03.jpg new file mode 100644 index 0000000..74f9502 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_candle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_01.jpg new file mode 100644 index 0000000..e4248fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_02.jpg new file mode 100644 index 0000000..18b8fe5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_03.jpg new file mode 100644 index 0000000..a532057 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_04.jpg new file mode 100644 index 0000000..6fc75ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_05.jpg new file mode 100644 index 0000000..eba5ffa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_06.jpg new file mode 100644 index 0000000..25ec3cc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_07.jpg new file mode 100644 index 0000000..96229b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_08.jpg new file mode 100644 index 0000000..c4212a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_09.jpg new file mode 100644 index 0000000..65f7f76 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_10.jpg new file mode 100644 index 0000000..1454bb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_11.jpg new file mode 100644 index 0000000..b25a43a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_12.jpg new file mode 100644 index 0000000..80f3c02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_13.jpg new file mode 100644 index 0000000..2396f7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_14.jpg new file mode 100644 index 0000000..aa241b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_15.jpg new file mode 100644 index 0000000..70391c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_16.jpg new file mode 100644 index 0000000..67aca48 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_17.jpg new file mode 100644 index 0000000..f8c9275 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_18.jpg new file mode 100644 index 0000000..2184b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_19.jpg new file mode 100644 index 0000000..aaf197d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_20.jpg new file mode 100644 index 0000000..27724a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_21.jpg new file mode 100644 index 0000000..f519307 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_22.jpg new file mode 100644 index 0000000..0757791 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_01.jpg new file mode 100644 index 0000000..f7f6e55 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_02.jpg new file mode 100644 index 0000000..e760577 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_03.jpg new file mode 100644 index 0000000..e5f5771 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cape_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_arcane.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_arcane.jpg new file mode 100644 index 0000000..cf7e54c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_arcane.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_fire.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_fire.jpg new file mode 100644 index 0000000..c837458 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_frost.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_frost.jpg new file mode 100644 index 0000000..5901c4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_nature.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_nature.jpg new file mode 100644 index 0000000..5834175 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_nature.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_shadow.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_shadow.jpg new file mode 100644 index 0000000..adc52a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_cauldron_shadow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_celebrationcake_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_celebrationcake_01.jpg new file mode 100644 index 0000000..ff7fce5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_celebrationcake_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_01.jpg new file mode 100644 index 0000000..cd50f9d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_02.jpg new file mode 100644 index 0000000..f8c41de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_03.jpg new file mode 100644 index 0000000..d3e078c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_04.jpg new file mode 100644 index 0000000..e4e02f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_05.jpg new file mode 100644 index 0000000..bc66171 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_06.jpg new file mode 100644 index 0000000..fa67d75 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_07.jpg new file mode 100644 index 0000000..5ad9121 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_08.jpg new file mode 100644 index 0000000..1df3c49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_09.jpg new file mode 100644 index 0000000..9cef080 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_10.jpg new file mode 100644 index 0000000..5af6fae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_11.jpg new file mode 100644 index 0000000..aaac858 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_12.jpg new file mode 100644 index 0000000..b3ee658 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_13.jpg new file mode 100644 index 0000000..5a74005 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_14.jpg new file mode 100644 index 0000000..d4122c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_coin_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_15.jpg new file mode 100644 index 0000000..7cb67e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_coin_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_comb_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_comb_01.jpg new file mode 100644 index 0000000..aca116e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_comb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_comb_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_comb_02.jpg new file mode 100644 index 0000000..647bda1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_comb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_crop_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_crop_01.jpg new file mode 100644 index 0000000..b1ccdb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_crop_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_crop_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_crop_02.jpg new file mode 100644 index 0000000..49305d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_crop_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothbelt.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothbelt.jpg new file mode 100644 index 0000000..7fdcb3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothboots.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothboots.jpg new file mode 100644 index 0000000..fb9494b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothboots.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothbracer.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothbracer.jpg new file mode 100644 index 0000000..133df24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothchest.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothchest.jpg new file mode 100644 index 0000000..feb8bed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothchest.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothglove.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothglove.jpg new file mode 100644 index 0000000..1069c43 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothglove.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothhelm.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothhelm.jpg new file mode 100644 index 0000000..03ac9b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothpants.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothpants.jpg new file mode 100644 index 0000000..511a923 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothpants.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothshoulder.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothshoulder.jpg new file mode 100644 index 0000000..a2770bd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_clothshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherbelt.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherbelt.jpg new file mode 100644 index 0000000..a503ac7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherboots.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherboots.jpg new file mode 100644 index 0000000..44d7671 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherboots.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherbracer.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherbracer.jpg new file mode 100644 index 0000000..4f22a5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherchest.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherchest.jpg new file mode 100644 index 0000000..23a44b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherchest.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherglove.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherglove.jpg new file mode 100644 index 0000000..5d9a19c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherglove.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherhelm.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherhelm.jpg new file mode 100644 index 0000000..d9df06a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherpants.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherpants.jpg new file mode 100644 index 0000000..fa9e01c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leatherpants.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leathershoulder.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leathershoulder.jpg new file mode 100644 index 0000000..43e030b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_leathershoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailbelt.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailbelt.jpg new file mode 100644 index 0000000..737e8b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailbelt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailboots.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailboots.jpg new file mode 100644 index 0000000..b0dfd74 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailboots.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailbracer.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailbracer.jpg new file mode 100644 index 0000000..13b522e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailbracer.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailchest.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailchest.jpg new file mode 100644 index 0000000..ce31d64 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailchest.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailglove.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailglove.jpg new file mode 100644 index 0000000..38fccf3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailglove.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailhelm.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailhelm.jpg new file mode 100644 index 0000000..e4caeb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailhelm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailpants.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailpants.jpg new file mode 100644 index 0000000..8d2ee31 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailpants.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailshoulder.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailshoulder.jpg new file mode 100644 index 0000000..db580ab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_mailshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platebelt.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platebelt.jpg new file mode 100644 index 0000000..abc2f39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platebelt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plateboots.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plateboots.jpg new file mode 100644 index 0000000..e609186 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plateboots.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platebracer.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platebracer.jpg new file mode 100644 index 0000000..acf4c54 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platebracer.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platechest.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platechest.jpg new file mode 100644 index 0000000..c293024 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platechest.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plategloves.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plategloves.jpg new file mode 100644 index 0000000..ba5ce73 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plategloves.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platehelm.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platehelm.jpg new file mode 100644 index 0000000..9eed68d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platehelm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platepants.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platepants.jpg new file mode 100644 index 0000000..0274cf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_platepants.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plateshoulder.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plateshoulder.jpg new file mode 100644 index 0000000..ba46765 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_desecrated_plateshoulder.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_01.jpg new file mode 100644 index 0000000..98ef2b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_02.jpg new file mode 100644 index 0000000..c3a3589 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_03.jpg new file mode 100644 index 0000000..8db7f4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_04.jpg new file mode 100644 index 0000000..cecb1d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dragonkite_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_drum_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_01.jpg new file mode 100644 index 0000000..871034f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_drum_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_02.jpg new file mode 100644 index 0000000..1511922 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_drum_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_03.jpg new file mode 100644 index 0000000..26f9588 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_drum_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_04.jpg new file mode 100644 index 0000000..53db8c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_drum_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_05.jpg new file mode 100644 index 0000000..3fcdcbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_drum_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_06.jpg new file mode 100644 index 0000000..a99fda5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_drum_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_07.jpg new file mode 100644 index 0000000..bf5a111 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_drum_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dust_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_01.jpg new file mode 100644 index 0000000..cc3eb94 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dust_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_02.jpg new file mode 100644 index 0000000..98d50d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dust_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_03.jpg new file mode 100644 index 0000000..410e9d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dust_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_04.jpg new file mode 100644 index 0000000..d129079 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dust_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_05.jpg new file mode 100644 index 0000000..64dba1a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_dust_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_06.jpg new file mode 100644 index 0000000..f478f1e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_dust_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ear_human_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_human_01.jpg new file mode 100644 index 0000000..b2abecf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ear_human_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_human_02.jpg new file mode 100644 index 0000000..d2e0985 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ear_nightelf_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_nightelf_01.jpg new file mode 100644 index 0000000..45a852d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_nightelf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ear_nightelf_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_nightelf_02.jpg new file mode 100644 index 0000000..7c874bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ear_nightelf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_elvencoins.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_elvencoins.jpg new file mode 100644 index 0000000..0f8dcfd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_elvencoins.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_01.jpg new file mode 100644 index 0000000..79ff9d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_02.jpg new file mode 100644 index 0000000..06eaaf6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_03.jpg new file mode 100644 index 0000000..5a7b193 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_04.jpg new file mode 100644 index 0000000..af3f7e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_05.jpg new file mode 100644 index 0000000..3809401 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_06.jpg new file mode 100644 index 0000000..e191802 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_07.jpg new file mode 100644 index 0000000..92757a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_08.jpg new file mode 100644 index 0000000..0f24e98 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_09.jpg new file mode 100644 index 0000000..ab4bcaa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_10.jpg new file mode 100644 index 0000000..5e44040 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_11.jpg new file mode 100644 index 0000000..57dbda0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_12.jpg new file mode 100644 index 0000000..59a92fd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_13.jpg new file mode 100644 index 0000000..aa41416 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_14.jpg new file mode 100644 index 0000000..e34c165 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_15.jpg new file mode 100644 index 0000000..b48acf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_16.jpg new file mode 100644 index 0000000..16b6d71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_17.jpg new file mode 100644 index 0000000..fe868e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_18.jpg new file mode 100644 index 0000000..20ccd99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_19.jpg new file mode 100644 index 0000000..2ed1ff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_20.jpg new file mode 100644 index 0000000..355bc16 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_21.jpg new file mode 100644 index 0000000..1d7c1fd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_23.jpg new file mode 100644 index 0000000..6862aac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_24.jpg new file mode 100644 index 0000000..6b53a41 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_essencedistiller.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_essencedistiller.jpg new file mode 100644 index 0000000..22781be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_essencedistiller.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_rocketchicken.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_rocketchicken.jpg new file mode 100644 index 0000000..a7da44a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_enggizmos_rocketchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_eye_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_eye_01.jpg new file mode 100644 index 0000000..7e9e26e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_eye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_film_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_film_01.jpg new file mode 100644 index 0000000..4239e01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_film_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_firedancer_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_firedancer_01.jpg new file mode 100644 index 0000000..1fc57e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_firedancer_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_01.jpg new file mode 100644 index 0000000..8fe02d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_02.jpg new file mode 100644 index 0000000..46d7af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_03.jpg new file mode 100644 index 0000000..352dfde Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_04.jpg new file mode 100644 index 0000000..282a5f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_05.jpg new file mode 100644 index 0000000..d9febc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_06.jpg new file mode 100644 index 0000000..6c8c6f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_07.jpg new file mode 100644 index 0000000..18ac762 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_08.jpg new file mode 100644 index 0000000..de1c4a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_09.jpg new file mode 100644 index 0000000..cac2bdf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_10.jpg new file mode 100644 index 0000000..8294c76 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_11.jpg new file mode 100644 index 0000000..0e7c412 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_12.jpg new file mode 100644 index 0000000..0a53393 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_13.jpg new file mode 100644 index 0000000..e7f2932 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_14.jpg new file mode 100644 index 0000000..193a9bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_15.jpg new file mode 100644 index 0000000..6bf7331 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_16.jpg new file mode 100644 index 0000000..86cab8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_17.jpg new file mode 100644 index 0000000..cbe8479 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_18.jpg new file mode 100644 index 0000000..5d9dee6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_19.jpg new file mode 100644 index 0000000..4039b69 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_20.jpg new file mode 100644 index 0000000..217bd4f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_21.jpg new file mode 100644 index 0000000..c57c18d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_22.jpg new file mode 100644 index 0000000..f824e03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_23.jpg new file mode 100644 index 0000000..d38ed7c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_24.jpg new file mode 100644 index 0000000..6b03f4f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_25.jpg new file mode 100644 index 0000000..0f16941 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_26.jpg new file mode 100644 index 0000000..ce5446e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_27.jpg new file mode 100644 index 0000000..3c036c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_28.jpg new file mode 100644 index 0000000..e3dd9bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_29.jpg new file mode 100644 index 0000000..64bb736 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_30.jpg new file mode 100644 index 0000000..cce6d1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_31.jpg new file mode 100644 index 0000000..3b931d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_32.jpg new file mode 100644 index 0000000..f343f9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_33.jpg new file mode 100644 index 0000000..163d0f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_34.jpg new file mode 100644 index 0000000..421d962 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_35.jpg new file mode 100644 index 0000000..ec4c381 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_36.jpg new file mode 100644 index 0000000..7dec8d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_37.jpg new file mode 100644 index 0000000..1f0dd3d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_38.jpg new file mode 100644 index 0000000..3bcccaf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_39.jpg new file mode 100644 index 0000000..d3444e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_40.jpg new file mode 100644 index 0000000..d3902c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_41.jpg new file mode 100644 index 0000000..a7d9975 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_42.jpg new file mode 100644 index 0000000..7181bb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_43.jpg new file mode 100644 index 0000000..885e911 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_44.jpg new file mode 100644 index 0000000..1c39bde Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_45.jpg new file mode 100644 index 0000000..a5f14e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_01.jpg new file mode 100644 index 0000000..9d06376 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_02.jpg new file mode 100644 index 0000000..b6eb153 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_03.jpg new file mode 100644 index 0000000..5f6d01c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fish_turtle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_flower_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_01.jpg new file mode 100644 index 0000000..97173b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_flower_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_02.jpg new file mode 100644 index 0000000..4adce3e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_flower_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_03.jpg new file mode 100644 index 0000000..d19f58e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_flower_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_04.jpg new file mode 100644 index 0000000..f4ed3a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_flower_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_flute_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_flute_01.jpg new file mode 100644 index 0000000..54efca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_flute_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_01.jpg new file mode 100644 index 0000000..79b3328 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_02.jpg new file mode 100644 index 0000000..a0c5c6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_03.jpg new file mode 100644 index 0000000..cf60f0e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_04.jpg new file mode 100644 index 0000000..c53916d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_05.jpg new file mode 100644 index 0000000..154711c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_06.jpg new file mode 100644 index 0000000..8d63c19 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_07.jpg new file mode 100644 index 0000000..4706364 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_08.jpg new file mode 100644 index 0000000..7b8c6b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_09.jpg new file mode 100644 index 0000000..7b6dbd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_10.jpg new file mode 100644 index 0000000..1ce0ad5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_100.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_100.jpg new file mode 100644 index 0000000..a0e5abb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_100.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_11.jpg new file mode 100644 index 0000000..ee5f8d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_12.jpg new file mode 100644 index 0000000..7bf3665 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_13.jpg new file mode 100644 index 0000000..6cf1a5d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_14.jpg new file mode 100644 index 0000000..9f16c0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_15.jpg new file mode 100644 index 0000000..4f89c9e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_16.jpg new file mode 100644 index 0000000..48a4786 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_17.jpg new file mode 100644 index 0000000..b3a5a60 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_18.jpg new file mode 100644 index 0000000..f44ffda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_19.jpg new file mode 100644 index 0000000..452b1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_20.jpg new file mode 100644 index 0000000..239f497 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_21.jpg new file mode 100644 index 0000000..7ebc0d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_22.jpg new file mode 100644 index 0000000..a90dc7e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_23.jpg new file mode 100644 index 0000000..805ccbb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_24.jpg new file mode 100644 index 0000000..aa397fa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_25.jpg new file mode 100644 index 0000000..fa0cd46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_26.jpg new file mode 100644 index 0000000..96bb097 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_27.jpg new file mode 100644 index 0000000..2b3f39d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_28.jpg new file mode 100644 index 0000000..ed68140 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_29.jpg new file mode 100644 index 0000000..2ce2a77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_30.jpg new file mode 100644 index 0000000..d1ae98e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_31.jpg new file mode 100644 index 0000000..eee3db3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_32.jpg new file mode 100644 index 0000000..f353e16 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_33.jpg new file mode 100644 index 0000000..a9c7074 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_34.jpg new file mode 100644 index 0000000..09d3f82 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_35.jpg new file mode 100644 index 0000000..d774b7c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_36.jpg new file mode 100644 index 0000000..c9e9154 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_37.jpg new file mode 100644 index 0000000..136fb06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_38.jpg new file mode 100644 index 0000000..1e4832d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_39.jpg new file mode 100644 index 0000000..876c0d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_40.jpg new file mode 100644 index 0000000..b551a4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_41.jpg new file mode 100644 index 0000000..b1d4e4f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_42.jpg new file mode 100644 index 0000000..1ffe9d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_43.jpg new file mode 100644 index 0000000..86be493 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_44.jpg new file mode 100644 index 0000000..c4099d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_45.jpg new file mode 100644 index 0000000..d6cad79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_46.jpg new file mode 100644 index 0000000..43f93d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_47.jpg new file mode 100644 index 0000000..30be43a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_48.jpg new file mode 100644 index 0000000..d33f1e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_49.jpg new file mode 100644 index 0000000..e25cce1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_50.jpg new file mode 100644 index 0000000..e84d41e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_51.jpg new file mode 100644 index 0000000..4594d64 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_52.jpg new file mode 100644 index 0000000..7112490 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_53.jpg new file mode 100644 index 0000000..2d41fb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_54.jpg new file mode 100644 index 0000000..28e28d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_55.jpg new file mode 100644 index 0000000..81ec6cc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_56.jpg new file mode 100644 index 0000000..d7f8cbe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_57.jpg new file mode 100644 index 0000000..464bb53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_58.jpg new file mode 100644 index 0000000..aa9f7f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_59.jpg new file mode 100644 index 0000000..a60b1da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_60.jpg new file mode 100644 index 0000000..b26d5e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_61.jpg new file mode 100644 index 0000000..c27ef62 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_62.jpg new file mode 100644 index 0000000..a73f10d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_63.jpg new file mode 100644 index 0000000..5de3e98 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_64.jpg new file mode 100644 index 0000000..9440de8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_65.jpg new file mode 100644 index 0000000..20c30f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_66.jpg new file mode 100644 index 0000000..e74a6a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_67.jpg new file mode 100644 index 0000000..fb29fee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_68.jpg new file mode 100644 index 0000000..59b7ae7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_69.jpg new file mode 100644 index 0000000..27cb7e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_70.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_70.jpg new file mode 100644 index 0000000..8ffd1cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_70.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_71.jpg new file mode 100644 index 0000000..55c0e12 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_72.jpg new file mode 100644 index 0000000..a7be016 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_73cinnamonroll.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_73cinnamonroll.jpg new file mode 100644 index 0000000..43cd820 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_73cinnamonroll.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_74.jpg new file mode 100644 index 0000000..771354b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_75.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_75.jpg new file mode 100644 index 0000000..52e5511 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_75.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_76.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_76.jpg new file mode 100644 index 0000000..fd2756c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_76.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_77.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_77.jpg new file mode 100644 index 0000000..5542ca8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_77.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_78.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_78.jpg new file mode 100644 index 0000000..205a1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_78.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_79.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_79.jpg new file mode 100644 index 0000000..84cdc06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_79.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_80.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_80.jpg new file mode 100644 index 0000000..0aaa573 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_80.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_81.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_81.jpg new file mode 100644 index 0000000..06d53df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_81.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_82.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_82.jpg new file mode 100644 index 0000000..860ada8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_82.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_83_talbuksteak.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_83_talbuksteak.jpg new file mode 100644 index 0000000..d057550 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_83_talbuksteak.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_84_roastclefthoof.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_84_roastclefthoof.jpg new file mode 100644 index 0000000..a359752 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_84_roastclefthoof.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_85_stegadonbite.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_85_stegadonbite.jpg new file mode 100644 index 0000000..de5cb31 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_85_stegadonbite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_86_basilisk.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_86_basilisk.jpg new file mode 100644 index 0000000..bf6c697 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_86_basilisk.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_87_sporelingsnack.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_87_sporelingsnack.jpg new file mode 100644 index 0000000..32efa77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_87_sporelingsnack.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_88_ravagernuggets.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_88_ravagernuggets.jpg new file mode 100644 index 0000000..3de60dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_88_ravagernuggets.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_89.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_89.jpg new file mode 100644 index 0000000..dfc5f60 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_89.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_90.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_90.jpg new file mode 100644 index 0000000..141c789 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_90.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_91.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_91.jpg new file mode 100644 index 0000000..c07fc6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_91.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_92_lobster.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_92_lobster.jpg new file mode 100644 index 0000000..6c59088 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_92_lobster.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_93_skethylberries.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_93_skethylberries.jpg new file mode 100644 index 0000000..dd8b448 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_93_skethylberries.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_94_garadarsharp.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_94_garadarsharp.jpg new file mode 100644 index 0000000..dcaa47b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_94_garadarsharp.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_95_grainbread.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_95_grainbread.jpg new file mode 100644 index 0000000..81cead5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_95_grainbread.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_96_zangarcaps.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_96_zangarcaps.jpg new file mode 100644 index 0000000..b350709 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_96_zangarcaps.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_97_sunspringcarp.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_97_sunspringcarp.jpg new file mode 100644 index 0000000..ac8aff4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_97_sunspringcarp.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_98_talbuk.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_98_talbuk.jpg new file mode 100644 index 0000000..5e589db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_98_talbuk.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_99.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_99.jpg new file mode 100644 index 0000000..f916f0c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_99.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_dimsum.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_dimsum.jpg new file mode 100644 index 0000000..c86f9f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_dimsum.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_wheat_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_wheat_01.jpg new file mode 100644 index 0000000..5934b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_wheat_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_food_wheat_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_food_wheat_02.jpg new file mode 100644 index 0000000..606cc18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_food_wheat_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_foot_centaur.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_foot_centaur.jpg new file mode 100644 index 0000000..b0fe529 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_foot_centaur.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_foot_kodo.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_foot_kodo.jpg new file mode 100644 index 0000000..6d09a5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_foot_kodo.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_fork&knife.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_fork&knife.jpg new file mode 100644 index 0000000..f5cc318 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_fork&knife.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_01.jpg new file mode 100644 index 0000000..edf01dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_02.jpg new file mode 100644 index 0000000..3ff6a42 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_03.jpg new file mode 100644 index 0000000..8d292fa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_04.jpg new file mode 100644 index 0000000..ae74690 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_05.jpg new file mode 100644 index 0000000..e850075 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_06.jpg new file mode 100644 index 0000000..71f0b58 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_07.jpg new file mode 100644 index 0000000..3bfa067 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gear_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_08.jpg new file mode 100644 index 0000000..e2d7f4f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_01.jpg new file mode 100644 index 0000000..bf48789 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_02.jpg new file mode 100644 index 0000000..5d23b63 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_03.jpg new file mode 100644 index 0000000..6ef2c95 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_01.jpg new file mode 100644 index 0000000..c23e1dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_02.jpg new file mode 100644 index 0000000..b7bf235 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_03.jpg new file mode 100644 index 0000000..b7851da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethyst_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethystrough_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethystrough_01.jpg new file mode 100644 index 0000000..fe70988 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_amethystrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_01.jpg new file mode 100644 index 0000000..9656265 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_02.jpg new file mode 100644 index 0000000..72a7f9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_03.jpg new file mode 100644 index 0000000..b2b1411 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_azuredraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_01.jpg new file mode 100644 index 0000000..aabea6d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_02.jpg new file mode 100644 index 0000000..afd9f17 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_03.jpg new file mode 100644 index 0000000..1ece3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodgem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_01.jpg new file mode 100644 index 0000000..782dc32 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_02.jpg new file mode 100644 index 0000000..b42497b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_03.jpg new file mode 100644 index 0000000..0db1740 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_bloodstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_01.jpg new file mode 100644 index 0000000..02da578 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_02.jpg new file mode 100644 index 0000000..c1a07ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_03.jpg new file mode 100644 index 0000000..3c14763 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystalcut_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystalcut_01.jpg new file mode 100644 index 0000000..03ade70 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_crystalcut_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_01.jpg new file mode 100644 index 0000000..0907e86 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_02.jpg new file mode 100644 index 0000000..635df3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_03.jpg new file mode 100644 index 0000000..24b936c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_deepperidot_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_01.jpg new file mode 100644 index 0000000..9c9c188 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_02.jpg new file mode 100644 index 0000000..c0d0af9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_03.jpg new file mode 100644 index 0000000..ed5c1b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_04.jpg new file mode 100644 index 0000000..773ce1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_05.jpg new file mode 100644 index 0000000..292fe90 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_06.jpg new file mode 100644 index 0000000..8206052 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_07.jpg new file mode 100644 index 0000000..ae424d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_diamond_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_01.jpg new file mode 100644 index 0000000..fe70988 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_02.jpg new file mode 100644 index 0000000..c4e2959 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_03.jpg new file mode 100644 index 0000000..4e8f2b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ebondraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_01.jpg new file mode 100644 index 0000000..9fea769 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_02.jpg new file mode 100644 index 0000000..10401e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_03.jpg new file mode 100644 index 0000000..6c37da9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emerald_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emeraldrough_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emeraldrough_01.jpg new file mode 100644 index 0000000..70b6c5e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emeraldrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emeraldrough_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emeraldrough_02.jpg new file mode 100644 index 0000000..a465bdb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_emeraldrough_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_01.jpg new file mode 100644 index 0000000..0b6af71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_02.jpg new file mode 100644 index 0000000..339241b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_03.jpg new file mode 100644 index 0000000..709d2a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_flamespessarite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_01.jpg new file mode 100644 index 0000000..7a8336a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_02.jpg new file mode 100644 index 0000000..7122209 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_03.jpg new file mode 100644 index 0000000..81bb689 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_goldendraenite_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_lionseye_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_lionseye_01.jpg new file mode 100644 index 0000000..f823db6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_lionseye_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_01.jpg new file mode 100644 index 0000000..95b18cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_02.jpg new file mode 100644 index 0000000..5b7eb6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_03.jpg new file mode 100644 index 0000000..c5b295a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opalrough_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opalrough_01.jpg new file mode 100644 index 0000000..f919420 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_opalrough_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_01.jpg new file mode 100644 index 0000000..e880113 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_02.jpg new file mode 100644 index 0000000..0717dda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_03.jpg new file mode 100644 index 0000000..a890f79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_04.jpg new file mode 100644 index 0000000..244d74f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_05.jpg new file mode 100644 index 0000000..838b477 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_06.jpg new file mode 100644 index 0000000..3fcf1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_07.jpg new file mode 100644 index 0000000..1c8237b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_08.jpg new file mode 100644 index 0000000..e8c8f1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_pearl_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_01.jpg new file mode 100644 index 0000000..2543e0f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_02.jpg new file mode 100644 index 0000000..de1b6f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_03.jpg new file mode 100644 index 0000000..ce78087 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_ruby_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_01.jpg new file mode 100644 index 0000000..6cb4ea4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_02.jpg new file mode 100644 index 0000000..015c0e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_03.jpg new file mode 100644 index 0000000..12ad096 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_sapphire_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_stone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_stone_01.jpg new file mode 100644 index 0000000..aaf1f80 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_01.jpg new file mode 100644 index 0000000..0ed81d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_02.jpg new file mode 100644 index 0000000..c2a55d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_03.jpg new file mode 100644 index 0000000..5b09114 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_topaz_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_variety_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_variety_01.jpg new file mode 100644 index 0000000..f4d04d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_variety_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gem_variety_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_variety_02.jpg new file mode 100644 index 0000000..6b6d1e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gem_variety_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gift_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_01.jpg new file mode 100644 index 0000000..796e023 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gift_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_02.jpg new file mode 100644 index 0000000..535a673 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gift_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_03.jpg new file mode 100644 index 0000000..348a3dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gift_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_04.jpg new file mode 100644 index 0000000..df77635 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_gift_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_05.jpg new file mode 100644 index 0000000..0cf6e59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_gift_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_01.jpg new file mode 100644 index 0000000..9bd3670 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_02.jpg new file mode 100644 index 0000000..64c625d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_03.jpg new file mode 100644 index 0000000..5a815b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_giftwrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_grouplooking.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_grouplooking.jpg new file mode 100644 index 0000000..ac2b625 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_grouplooking.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_groupneedmore.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_groupneedmore.jpg new file mode 100644 index 0000000..58c964f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_groupneedmore.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_02.jpg new file mode 100644 index 0000000..6e23df7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_centaur_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_centaur_01.jpg new file mode 100644 index 0000000..31062e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_centaur_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_01.jpg new file mode 100644 index 0000000..a088d30 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_black.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_black.jpg new file mode 100644 index 0000000..172930f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_black.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_blue.jpg new file mode 100644 index 0000000..e9b2454 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_bronze.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_bronze.jpg new file mode 100644 index 0000000..c1a0d82 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_green.jpg new file mode 100644 index 0000000..0b7f4e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_red.jpg new file mode 100644 index 0000000..73638fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dragon_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dwarf_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dwarf_01.jpg new file mode 100644 index 0000000..a063572 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dwarf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_dwarf_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dwarf_02.jpg new file mode 100644 index 0000000..0c52180 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_dwarf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_elf_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_elf_01.jpg new file mode 100644 index 0000000..db81037 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_elf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_elf_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_elf_02.jpg new file mode 100644 index 0000000..1502167 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_elf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnoll_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnoll_01.jpg new file mode 100644 index 0000000..5709b6a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnoll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnome_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnome_01.jpg new file mode 100644 index 0000000..0852db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnome_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnome_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnome_02.jpg new file mode 100644 index 0000000..f6b381c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_gnome_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_human_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_human_01.jpg new file mode 100644 index 0000000..8a2ff81 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_human_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_human_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_human_02.jpg new file mode 100644 index 0000000..4049fbf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_human_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_kobold_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_kobold_01.jpg new file mode 100644 index 0000000..135b734 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_kobold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_murloc_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_murloc_01.jpg new file mode 100644 index 0000000..e6d33c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_murloc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_orc_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_orc_01.jpg new file mode 100644 index 0000000..c1adafb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_orc_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_orc_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_orc_02.jpg new file mode 100644 index 0000000..310a567 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_orc_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_quillboar_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_quillboar_01.jpg new file mode 100644 index 0000000..655400b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_quillboar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_scourge_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_scourge_01.jpg new file mode 100644 index 0000000..4ef9a36 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_scourge_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_tauren_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_tauren_01.jpg new file mode 100644 index 0000000..551e67c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_tauren_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_tauren_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_tauren_02.jpg new file mode 100644 index 0000000..dc2669f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_tauren_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_tiger_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_tiger_01.jpg new file mode 100644 index 0000000..94ba564 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_tiger_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_troll_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_troll_01.jpg new file mode 100644 index 0000000..2d7c051 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_troll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_troll_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_troll_02.jpg new file mode 100644 index 0000000..dab3d8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_troll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_undead_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_undead_01.jpg new file mode 100644 index 0000000..8420717 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_undead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_head_undead_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_head_undead_02.jpg new file mode 100644 index 0000000..073256e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_head_undead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_01.jpg new file mode 100644 index 0000000..e08ad49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_02.jpg new file mode 100644 index 0000000..56468d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_03.jpg new file mode 100644 index 0000000..8bea9ee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_04.jpg new file mode 100644 index 0000000..1abf7f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_05.jpg new file mode 100644 index 0000000..0d848dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_06.jpg new file mode 100644 index 0000000..28f4ccc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_07.jpg new file mode 100644 index 0000000..0a6e9a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_08.jpg new file mode 100644 index 0000000..5fa6b2f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_09.jpg new file mode 100644 index 0000000..0cfb2f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_10.jpg new file mode 100644 index 0000000..d02fa27 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_11.jpg new file mode 100644 index 0000000..7657a6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_11a.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_11a.jpg new file mode 100644 index 0000000..1c8588e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_11a.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_12.jpg new file mode 100644 index 0000000..9d3f054 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_13.jpg new file mode 100644 index 0000000..4a7267c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_14.jpg new file mode 100644 index 0000000..482d893 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_15.jpg new file mode 100644 index 0000000..828f56e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_16.jpg new file mode 100644 index 0000000..9d3fc94 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_17.jpg new file mode 100644 index 0000000..a7dacbd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_18.jpg new file mode 100644 index 0000000..f559863 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_19.jpg new file mode 100644 index 0000000..868e9de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_ancientlichen.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_ancientlichen.jpg new file mode 100644 index 0000000..15d1ed1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_ancientlichen.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_blacklotus.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_blacklotus.jpg new file mode 100644 index 0000000..9598075 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_blacklotus.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_dreamfoil.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_dreamfoil.jpg new file mode 100644 index 0000000..36a2a99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_dreamfoil.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_dreamingglory.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_dreamingglory.jpg new file mode 100644 index 0000000..5a36672 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_dreamingglory.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_felblossom.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_felblossom.jpg new file mode 100644 index 0000000..882d3c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_felblossom.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_fellotus.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_fellotus.jpg new file mode 100644 index 0000000..be555a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_fellotus.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_felweed.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_felweed.jpg new file mode 100644 index 0000000..d4ca9b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_felweed.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_flamecap.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_flamecap.jpg new file mode 100644 index 0000000..98240e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_flamecap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_icecap.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_icecap.jpg new file mode 100644 index 0000000..00023de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_icecap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_manathistle.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_manathistle.jpg new file mode 100644 index 0000000..fbde74d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_manathistle.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_mountainsilversage.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_mountainsilversage.jpg new file mode 100644 index 0000000..79003e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_mountainsilversage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_netherbloom.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_netherbloom.jpg new file mode 100644 index 0000000..c564dfc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_netherbloom.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_nightmareseed.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_nightmareseed.jpg new file mode 100644 index 0000000..d946abe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_nightmareseed.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_nightmarevine.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_nightmarevine.jpg new file mode 100644 index 0000000..1e760c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_nightmarevine.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_plaguebloom.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_plaguebloom.jpg new file mode 100644 index 0000000..d010fdd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_plaguebloom.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_ragveil.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_ragveil.jpg new file mode 100644 index 0000000..c1bf466 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_ragveil.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_sansamroot.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_sansamroot.jpg new file mode 100644 index 0000000..e1e81a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_sansamroot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_herb_terrocone.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_terrocone.jpg new file mode 100644 index 0000000..637dea2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_herb_terrocone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_hook_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_hook_01.jpg new file mode 100644 index 0000000..968dc5b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_hook_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_horn_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_horn_01.jpg new file mode 100644 index 0000000..193a97d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_horn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_horn_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_horn_02.jpg new file mode 100644 index 0000000..cd4b70f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_horn_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_horn_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_horn_03.jpg new file mode 100644 index 0000000..e9e5cdd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_horn_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_idol_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_01.jpg new file mode 100644 index 0000000..270ab42 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_idol_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_02.jpg new file mode 100644 index 0000000..f3bd7e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_idol_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_03.jpg new file mode 100644 index 0000000..1c20028 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_idol_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_04.jpg new file mode 100644 index 0000000..b49db2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_idol_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_05.jpg new file mode 100644 index 0000000..b42e7cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_idol_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_01.jpg new file mode 100644 index 0000000..5ba6d06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_02.jpg new file mode 100644 index 0000000..cd278c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_03.jpg new file mode 100644 index 0000000..326d50d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_04.jpg new file mode 100644 index 0000000..57e283c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_05.jpg new file mode 100644 index 0000000..b611440 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_06.jpg new file mode 100644 index 0000000..db02a5d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_07.jpg new file mode 100644 index 0000000..d4720c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_08.jpg new file mode 100644 index 0000000..3cabed0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_09.jpg new file mode 100644 index 0000000..9a1db2f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_10.jpg new file mode 100644 index 0000000..f81df17 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_11.jpg new file mode 100644 index 0000000..875e71b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_12.jpg new file mode 100644 index 0000000..e11ab84 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_13.jpg new file mode 100644 index 0000000..ed6e58e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_key_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_key_14.jpg new file mode 100644 index 0000000..dddba18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_key_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_lantern_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_lantern_01.jpg new file mode 100644 index 0000000..59774f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_lantern_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_01.jpg new file mode 100644 index 0000000..8981fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_02.jpg new file mode 100644 index 0000000..74711db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_03.jpg new file mode 100644 index 0000000..5c4ff1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_04.jpg new file mode 100644 index 0000000..30b5ad9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_05.jpg new file mode 100644 index 0000000..713dc32 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_06.jpg new file mode 100644 index 0000000..ca68303 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_07.jpg new file mode 100644 index 0000000..7c9dca6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_08.jpg new file mode 100644 index 0000000..46a67a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_09.jpg new file mode 100644 index 0000000..0dbe239 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_10.jpg new file mode 100644 index 0000000..670e180 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_11.jpg new file mode 100644 index 0000000..2da457e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_12.jpg new file mode 100644 index 0000000..8631703 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_13.jpg new file mode 100644 index 0000000..d70454a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_14.jpg new file mode 100644 index 0000000..8c93b50 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_leatherscrap_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_luckymoneyenvelope.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_luckymoneyenvelope.jpg new file mode 100644 index 0000000..e296af0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_luckymoneyenvelope.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_map_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_map_01.jpg new file mode 100644 index 0000000..df7f7db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_map_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_blue.jpg new file mode 100644 index 0000000..69321a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_green.jpg new file mode 100644 index 0000000..787b362 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_purple.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_purple.jpg new file mode 100644 index 0000000..0ad3968 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_red.jpg new file mode 100644 index 0000000..fa62861 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_white.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_white.jpg new file mode 100644 index 0000000..e6c278e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_white.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_yellow.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_yellow.jpg new file mode 100644 index 0000000..76e206d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelarge_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_blue.jpg new file mode 100644 index 0000000..4981972 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_green.jpg new file mode 100644 index 0000000..3654e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_purple.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_purple.jpg new file mode 100644 index 0000000..1d8ead5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_red.jpg new file mode 100644 index 0000000..e633454 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_white.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_white.jpg new file mode 100644 index 0000000..bc7e6d3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_yellow.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_yellow.jpg new file mode 100644 index 0000000..8cfb8ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilelargecluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_blue.jpg new file mode 100644 index 0000000..5742836 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_green.jpg new file mode 100644 index 0000000..0f345f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_purple.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_purple.jpg new file mode 100644 index 0000000..b125d5f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_red.jpg new file mode 100644 index 0000000..82c1544 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_white.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_white.jpg new file mode 100644 index 0000000..c4f3eda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_white.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_yellow.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_yellow.jpg new file mode 100644 index 0000000..640e990 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmall_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_blue.jpg new file mode 100644 index 0000000..53a6a0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_green.jpg new file mode 100644 index 0000000..f55016a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_purple.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_purple.jpg new file mode 100644 index 0000000..1b74723 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_red.jpg new file mode 100644 index 0000000..971e3ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_white.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_white.jpg new file mode 100644 index 0000000..b7a7558 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_white.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_yellow.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_yellow.jpg new file mode 100644 index 0000000..5dca4f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_missilesmallcluster_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_01.jpg new file mode 100644 index 0000000..d94ea4c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_02.jpg new file mode 100644 index 0000000..e7cf3be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_03.jpg new file mode 100644 index 0000000..c870644 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_04.jpg new file mode 100644 index 0000000..2f9539f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterclaw_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterfang_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterfang_01.jpg new file mode 100644 index 0000000..317b142 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterfang_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_01.jpg new file mode 100644 index 0000000..5b27ca9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_02.jpg new file mode 100644 index 0000000..e950800 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_03.jpg new file mode 100644 index 0000000..97fd7ac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_04.jpg new file mode 100644 index 0000000..13ddc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterhead_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_01.jpg new file mode 100644 index 0000000..2651619 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_02.jpg new file mode 100644 index 0000000..e854f8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_03.jpg new file mode 100644 index 0000000..a2d9466 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_04.jpg new file mode 100644 index 0000000..83bd667 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_05.jpg new file mode 100644 index 0000000..27b255a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_06.jpg new file mode 100644 index 0000000..ea5f3d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_07.jpg new file mode 100644 index 0000000..c65e0f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_08.jpg new file mode 100644 index 0000000..204313c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_09.jpg new file mode 100644 index 0000000..51209c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_10.jpg new file mode 100644 index 0000000..2f1edbb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_11.jpg new file mode 100644 index 0000000..378561a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_12.jpg new file mode 100644 index 0000000..d3170d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_13.jpg new file mode 100644 index 0000000..972fb5c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_14.jpg new file mode 100644 index 0000000..fa60d80 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_15.jpg new file mode 100644 index 0000000..bbe6bd2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_16.jpg new file mode 100644 index 0000000..11d0812 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_17.jpg new file mode 100644 index 0000000..d64a030 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_18.jpg new file mode 100644 index 0000000..ec74aeb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterscales_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monsterspidercarapace_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterspidercarapace_01.jpg new file mode 100644 index 0000000..0a3d50a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monsterspidercarapace_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_01.jpg new file mode 100644 index 0000000..513c056 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_02.jpg new file mode 100644 index 0000000..872c1e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_03.jpg new file mode 100644 index 0000000..3eda9ad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_monstertail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_net_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_net_01.jpg new file mode 100644 index 0000000..60e9117 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_net_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_noose_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_noose_01.jpg new file mode 100644 index 0000000..152de57 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_noose_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_note_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_note_01.jpg new file mode 100644 index 0000000..43c943a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_note_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_note_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_note_02.jpg new file mode 100644 index 0000000..ddd47bd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_note_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_note_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_note_03.jpg new file mode 100644 index 0000000..5cb9aa0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_note_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_note_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_note_04.jpg new file mode 100644 index 0000000..011e8c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_note_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_note_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_note_05.jpg new file mode 100644 index 0000000..eb4cc2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_note_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_note_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_note_06.jpg new file mode 100644 index 0000000..3a74537 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_note_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_orb_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_01.jpg new file mode 100644 index 0000000..7fe118e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_orb_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_02.jpg new file mode 100644 index 0000000..ea16468 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_orb_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_03.jpg new file mode 100644 index 0000000..4b0bc23 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_orb_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_04.jpg new file mode 100644 index 0000000..0bf3831 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_orb_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_05.jpg new file mode 100644 index 0000000..c3a6d3d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_orb_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_organ_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_01.jpg new file mode 100644 index 0000000..0938292 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_organ_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_02.jpg new file mode 100644 index 0000000..c29f025 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_organ_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_03.jpg new file mode 100644 index 0000000..742b404 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_organ_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_04.jpg new file mode 100644 index 0000000..39bd967 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_organ_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_05.jpg new file mode 100644 index 0000000..9b6c881 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_organ_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_06.jpg new file mode 100644 index 0000000..9b24e69 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_organ_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ornatebox.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ornatebox.jpg new file mode 100644 index 0000000..0fcac0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ornatebox.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_01.jpg new file mode 100644 index 0000000..7173680 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_02.jpg new file mode 100644 index 0000000..2ecb5f3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_03.jpg new file mode 100644 index 0000000..0052a46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_04.jpg new file mode 100644 index 0000000..6b59005 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_05.jpg new file mode 100644 index 0000000..e8decd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_06.jpg new file mode 100644 index 0000000..7ebb0fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_01.jpg new file mode 100644 index 0000000..33ef432 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_02.jpg new file mode 100644 index 0000000..65f692e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_03.jpg new file mode 100644 index 0000000..fc68d49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_01.jpg new file mode 100644 index 0000000..2771c22 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_02.jpg new file mode 100644 index 0000000..2aeba14 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_03.jpg new file mode 100644 index 0000000..970b83c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_04.jpg new file mode 100644 index 0000000..e542768 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_05.jpg new file mode 100644 index 0000000..5fc1630 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_bear_ruin_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_01.jpg new file mode 100644 index 0000000..285fdb9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_02.jpg new file mode 100644 index 0000000..632873d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_01.jpg new file mode 100644 index 0000000..e30ad30 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_02.jpg new file mode 100644 index 0000000..0c30d82 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_03.jpg new file mode 100644 index 0000000..385ef50 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_boar_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_01.jpg new file mode 100644 index 0000000..6176e3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_02.jpg new file mode 100644 index 0000000..cc3bde9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_01.jpg new file mode 100644 index 0000000..04ffd37 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_02.jpg new file mode 100644 index 0000000..31f05d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_03.jpg new file mode 100644 index 0000000..afbe34d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_04.jpg new file mode 100644 index 0000000..31138f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pelt_wolf_ruin_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_petbiscuit_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_petbiscuit_01.jpg new file mode 100644 index 0000000..1d2e965 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_petbiscuit_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pheonixpet_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pheonixpet_01.jpg new file mode 100644 index 0000000..8262266 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pheonixpet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pipe_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pipe_01.jpg new file mode 100644 index 0000000..adb39e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pipe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_platnumdisks.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_platnumdisks.jpg new file mode 100644 index 0000000..a33d188 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_platnumdisks.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_01.jpg new file mode 100644 index 0000000..ded4bff Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_02.jpg new file mode 100644 index 0000000..34d8fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_03.jpg new file mode 100644 index 0000000..d5ee52c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_pocketwatch_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_adamantite.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_adamantite.jpg new file mode 100644 index 0000000..14f72c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_black.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_black.jpg new file mode 100644 index 0000000..f0dca85 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_black.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_blue.jpg new file mode 100644 index 0000000..72d1236 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_copper.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_copper.jpg new file mode 100644 index 0000000..ff3840c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_copper.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_feliron.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_feliron.jpg new file mode 100644 index 0000000..d0de7fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_green.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_green.jpg new file mode 100644 index 0000000..70bff0e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_green.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_iron.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_iron.jpg new file mode 100644 index 0000000..e4e8084 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_iron.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_mithril.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_mithril.jpg new file mode 100644 index 0000000..33224eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_mithril.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_purple.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_purple.jpg new file mode 100644 index 0000000..77f0d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_purple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_thorium.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_thorium.jpg new file mode 100644 index 0000000..743793f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_thorium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_powder_tin.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_tin.jpg new file mode 100644 index 0000000..ccdf4a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_powder_tin.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_blue.jpg new file mode 100644 index 0000000..20de8ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_prismatic.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_prismatic.jpg new file mode 100644 index 0000000..386cf18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_prismatic.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_red.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_red.jpg new file mode 100644 index 0000000..f3dee3e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_red.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_white.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_white.jpg new file mode 100644 index 0000000..9d9a2ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_white.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_yellow.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_yellow.jpg new file mode 100644 index 0000000..edf4892 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_punchcards_yellow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_01.jpg new file mode 100644 index 0000000..73c511e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_02.jpg new file mode 100644 index 0000000..7de2ba6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_03.jpg new file mode 100644 index 0000000..33c9a00 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_04.jpg new file mode 100644 index 0000000..bd576e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_05.jpg new file mode 100644 index 0000000..bdc9115 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_qirajicrystal_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_questionmark.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_questionmark.jpg new file mode 100644 index 0000000..43477cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_questionmark.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_01.jpg new file mode 100644 index 0000000..8d937e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_02.jpg new file mode 100644 index 0000000..dad9f52 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_03.jpg new file mode 100644 index 0000000..b2be373 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_04.jpg new file mode 100644 index 0000000..d6afcc8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_05.jpg new file mode 100644 index 0000000..cb6c926 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_06.jpg new file mode 100644 index 0000000..c450273 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_07.jpg new file mode 100644 index 0000000..7ca620a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_08.jpg new file mode 100644 index 0000000..b8ad9e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_09.jpg new file mode 100644 index 0000000..4ef3749 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_10.jpg new file mode 100644 index 0000000..5e7c5e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_quiver_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ribbon_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ribbon_01.jpg new file mode 100644 index 0000000..bb3c922 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ribbon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_root_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_root_01.jpg new file mode 100644 index 0000000..ef544d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_root_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_root_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_root_02.jpg new file mode 100644 index 0000000..abf85cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_root_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_01.jpg new file mode 100644 index 0000000..2911792 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_02.jpg new file mode 100644 index 0000000..1ac7b7a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_03.jpg new file mode 100644 index 0000000..b3fe824 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_04.jpg new file mode 100644 index 0000000..a91cde5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_05.jpg new file mode 100644 index 0000000..52c6a58 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_06.jpg new file mode 100644 index 0000000..c9462bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_07.jpg new file mode 100644 index 0000000..606e37a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_08.jpg new file mode 100644 index 0000000..a86d1e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_09.jpg new file mode 100644 index 0000000..858d6c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_10.jpg new file mode 100644 index 0000000..8bc8810 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_11.jpg new file mode 100644 index 0000000..ed3c874 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_12.jpg new file mode 100644 index 0000000..5a32a29 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_rune_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_13.jpg new file mode 100644 index 0000000..17292de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_rune_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_screwdriver_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_screwdriver_01.jpg new file mode 100644 index 0000000..c3aa956 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_screwdriver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_screwdriver_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_screwdriver_02.jpg new file mode 100644 index 0000000..316ec16 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_screwdriver_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_shadowegg.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_shadowegg.jpg new file mode 100644 index 0000000..13d94d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_shadowegg.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_shell_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_01.jpg new file mode 100644 index 0000000..a180c83 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_shell_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_02.jpg new file mode 100644 index 0000000..e20fa28 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_shell_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_03.jpg new file mode 100644 index 0000000..0f45208 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_shell_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_04.jpg new file mode 100644 index 0000000..7e325bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_shell_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_shovel_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_shovel_01.jpg new file mode 100644 index 0000000..177042a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_shovel_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_shovel_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_shovel_02.jpg new file mode 100644 index 0000000..bcf11bd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_shovel_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_slime_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_slime_01.jpg new file mode 100644 index 0000000..378d148 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_slime_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_spineleaf_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_spineleaf_01.jpg new file mode 100644 index 0000000..03a108f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_spineleaf_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_01.jpg new file mode 100644 index 0000000..ec7536c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_02.jpg new file mode 100644 index 0000000..840e2cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_03.jpg new file mode 100644 index 0000000..74f5d33 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_spyglass_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_01.jpg new file mode 100644 index 0000000..6dca254 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_02.jpg new file mode 100644 index 0000000..4f1ff03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_03.jpg new file mode 100644 index 0000000..42ca488 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_04.jpg new file mode 100644 index 0000000..a32ccb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_05.jpg new file mode 100644 index 0000000..54c362c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_06.jpg new file mode 100644 index 0000000..1a216aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_07.jpg new file mode 100644 index 0000000..05cbe6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_08.jpg new file mode 100644 index 0000000..c14bf13 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_09.jpg new file mode 100644 index 0000000..f417ecd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_statue_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_10.jpg new file mode 100644 index 0000000..546ea28 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_statue_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_01.jpg new file mode 100644 index 0000000..3edf987 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_02.jpg new file mode 100644 index 0000000..c446354 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_03.jpg new file mode 100644 index 0000000..b322a41 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_04.jpg new file mode 100644 index 0000000..385ac8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_05.jpg new file mode 100644 index 0000000..fbfe135 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_06.jpg new file mode 100644 index 0000000..75a34ff Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_07.jpg new file mode 100644 index 0000000..6a288fb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_08.jpg new file mode 100644 index 0000000..238dacc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_09.jpg new file mode 100644 index 0000000..c416593 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_10.jpg new file mode 100644 index 0000000..4b217b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_11.jpg new file mode 100644 index 0000000..54492af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_stonetablet_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierblue.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierblue.jpg new file mode 100644 index 0000000..83dea0a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierblue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_braziergreen.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_braziergreen.jpg new file mode 100644 index 0000000..ac0c0bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_braziergreen.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierorange.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierorange.jpg new file mode 100644 index 0000000..e0fa952 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierorange.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierred.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierred.jpg new file mode 100644 index 0000000..cfa039c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_summerfest_brazierred.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_surgeonglove_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_surgeonglove_01.jpg new file mode 100644 index 0000000..698f9cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_surgeonglove_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_symbolofkings_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_symbolofkings_01.jpg new file mode 100644 index 0000000..f8f3ec6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_symbolofkings_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_01.jpg new file mode 100644 index 0000000..5f0b3d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_02.jpg new file mode 100644 index 0000000..cd6f165 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_03.jpg new file mode 100644 index 0000000..32f9410 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_04.jpg new file mode 100644 index 0000000..61b7252 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardpvp_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_tabardsummer01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardsummer01.jpg new file mode 100644 index 0000000..52af5b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardsummer01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_tabardsummer02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardsummer02.jpg new file mode 100644 index 0000000..c4e3393 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_tabardsummer02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_thegoldencheep.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_thegoldencheep.jpg new file mode 100644 index 0000000..65cc751 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_thegoldencheep.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_thread_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_thread_01.jpg new file mode 100644 index 0000000..f76a4c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_thread_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_throwingball_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_throwingball_01.jpg new file mode 100644 index 0000000..480aadf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_throwingball_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_darkmoon_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_darkmoon_01.jpg new file mode 100644 index 0000000..1ea2d2d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_darkmoon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_beasts_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_beasts_01.jpg new file mode 100644 index 0000000..8f0d2a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_beasts_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_blessings.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_blessings.jpg new file mode 100644 index 0000000..812069c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_blessings.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_bluedragon_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_bluedragon_01.jpg new file mode 100644 index 0000000..fd28a9b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_bluedragon_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_crusade.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_crusade.jpg new file mode 100644 index 0000000..b38d361 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_elemental_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_elemental_01.jpg new file mode 100644 index 0000000..940a2cd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_elemental_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_furies.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_furies.jpg new file mode 100644 index 0000000..0664869 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_furies.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_heroism_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_heroism_01.jpg new file mode 100644 index 0000000..0a826c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_heroism_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_lunacy.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_lunacy.jpg new file mode 100644 index 0000000..5d7483c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_lunacy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_madness.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_madness.jpg new file mode 100644 index 0000000..e442973 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_madness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_maelstrom_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_maelstrom_01.jpg new file mode 100644 index 0000000..6af6a28 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_maelstrom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_portal_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_portal_01.jpg new file mode 100644 index 0000000..530c363 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_portal_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_stack_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_stack_01.jpg new file mode 100644 index 0000000..978f76c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_stack_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_storms.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_storms.jpg new file mode 100644 index 0000000..c13f672 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_storms.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_twistingnether_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_twistingnether_01.jpg new file mode 100644 index 0000000..e766e52 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_twistingnether_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_vengeance.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_vengeance.jpg new file mode 100644 index 0000000..3122e70 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_vengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_warlord_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_warlord_01.jpg new file mode 100644 index 0000000..26b773a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_warlord_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_wrath.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_wrath.jpg new file mode 100644 index 0000000..fc85c18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_ticket_tarot_wrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn.jpg new file mode 100644 index 0000000..8be7a7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn2.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn2.jpg new file mode 100644 index 0000000..64c2ef7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn2.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn3.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn3.jpg new file mode 100644 index 0000000..b2f6485 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_token_argentdawn3.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_token_honorhold.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_token_honorhold.jpg new file mode 100644 index 0000000..47f9c53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_token_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_token_scarletcrusade.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_token_scarletcrusade.jpg new file mode 100644 index 0000000..9df4daf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_token_scarletcrusade.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_token_thrallmar.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_token_thrallmar.jpg new file mode 100644 index 0000000..e28b7eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_token_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_01.jpg new file mode 100644 index 0000000..8791dc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_02.jpg new file mode 100644 index 0000000..1039e64 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_03.jpg new file mode 100644 index 0000000..09cbbd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_04.jpg new file mode 100644 index 0000000..d0b15b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_05.jpg new file mode 100644 index 0000000..b9002b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_06.jpg new file mode 100644 index 0000000..8590365 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_07.jpg new file mode 100644 index 0000000..11dedc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_08.jpg new file mode 100644 index 0000000..0215483 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_toy_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_09.jpg new file mode 100644 index 0000000..5c20dde Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_toy_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_urn_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_urn_01.jpg new file mode 100644 index 0000000..acc6368 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_urn_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_chain.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_chain.jpg new file mode 100644 index 0000000..076f9bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_chain.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_cloth.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_cloth.jpg new file mode 100644 index 0000000..7791475 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_cloth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_leather.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_leather.jpg new file mode 100644 index 0000000..e286b04 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_leather.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_plate.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_plate.jpg new file mode 100644 index 0000000..e529ccd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_wartornscrap_plate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_weathermachine_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_weathermachine_01.jpg new file mode 100644 index 0000000..d78114f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_weathermachine_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_wrench_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_wrench_01.jpg new file mode 100644 index 0000000..97e4b71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_wrench_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_misc_wrench_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_misc_wrench_02.jpg new file mode 100644 index 0000000..3c835a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_misc_wrench_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_01.jpg new file mode 100644 index 0000000..443065c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_02.jpg new file mode 100644 index 0000000..a5f84b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_03.jpg new file mode 100644 index 0000000..00041fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_04.jpg new file mode 100644 index 0000000..ca9209c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_05.jpg new file mode 100644 index 0000000..111fbe2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_06.jpg new file mode 100644 index 0000000..eed4170 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_07.jpg new file mode 100644 index 0000000..6342847 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_08.jpg new file mode 100644 index 0000000..0a71ff2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_09.jpg new file mode 100644 index 0000000..1dd837a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_10.jpg new file mode 100644 index 0000000..6546035 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_11.jpg new file mode 100644 index 0000000..d7d0564 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_12.jpg new file mode 100644 index 0000000..de24dfa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_mushroom_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_mushroom_13.jpg new file mode 100644 index 0000000..670d79d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_mushroom_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_musket_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_musket_01.jpg new file mode 100644 index 0000000..8badd67 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_musket_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_musket_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_musket_02.jpg new file mode 100644 index 0000000..ed7095e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_musket_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_musket_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_musket_03.jpg new file mode 100644 index 0000000..97b6377 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_musket_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_musket_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_musket_04.jpg new file mode 100644 index 0000000..a1b1f46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_musket_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_netherwhelp.jpg b/other/AoWoW-master/images/icons/tiny/inv_netherwhelp.jpg new file mode 100644 index 0000000..1dcf964 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_netherwhelp.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_blood_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_blood_01.jpg new file mode 100644 index 0000000..e3a67c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_blood_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_blood_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_blood_02.jpg new file mode 100644 index 0000000..16bfd9e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_blood_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_draenei_a_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_draenei_a_01.jpg new file mode 100644 index 0000000..38f9fae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_draenei_a_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_draenei_a_02.jpg new file mode 100644 index 0000000..324a27a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_hyjal_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_hyjal_d_01.jpg new file mode 100644 index 0000000..7114db1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_hyjal_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_02.jpg new file mode 100644 index 0000000..dae590f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_03.jpg new file mode 100644 index 0000000..e71a80b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_04.jpg new file mode 100644 index 0000000..fa1af41 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_d_01.jpg new file mode 100644 index 0000000..d6116cd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_naxxramas_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_01.jpg new file mode 100644 index 0000000..3dcc1d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_02.jpg new file mode 100644 index 0000000..d4d357f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03blue.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03blue.jpg new file mode 100644 index 0000000..bff409a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03blue.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03orange.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03orange.jpg new file mode 100644 index 0000000..5b2459d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03orange.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03white.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03white.jpg new file mode 100644 index 0000000..b4b65b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_outlandraid_03white.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_stratholme_a_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_stratholme_a_01.jpg new file mode 100644 index 0000000..7c47705 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_stratholme_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_stratholme_a_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_stratholme_a_02.jpg new file mode 100644 index 0000000..a51ff4b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_stratholme_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_sunwell_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_sunwell_d_01.jpg new file mode 100644 index 0000000..bb5a561 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_sunwell_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_sunwell_d_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_sunwell_d_02.jpg new file mode 100644 index 0000000..fea34a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_sunwell_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_zulaman_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_zulaman_d_01.jpg new file mode 100644 index 0000000..ed818fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_zulaman_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_offhand_zulaman_d_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_offhand_zulaman_d_02.jpg new file mode 100644 index 0000000..a978435 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_offhand_zulaman_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_adamantium.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_adamantium.jpg new file mode 100644 index 0000000..1dd8863 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_adamantium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_adamantium_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_adamantium_01.jpg new file mode 100644 index 0000000..09badf8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_adamantium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_arcanite_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_arcanite_01.jpg new file mode 100644 index 0000000..9a9dff5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_arcanite_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_arcanite_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_arcanite_02.jpg new file mode 100644 index 0000000..cde5231 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_arcanite_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_copper_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_copper_01.jpg new file mode 100644 index 0000000..558aa12 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_copper_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_eternium.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_eternium.jpg new file mode 100644 index 0000000..2cab0c7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_ethernium_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_ethernium_01.jpg new file mode 100644 index 0000000..614c079 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_ethernium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_feliron.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_feliron.jpg new file mode 100644 index 0000000..80cd755 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_feliron.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_feliron_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_feliron_01.jpg new file mode 100644 index 0000000..7226120 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_feliron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_gold_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_gold_01.jpg new file mode 100644 index 0000000..2b5f02e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_gold_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_iron_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_iron_01.jpg new file mode 100644 index 0000000..d64e103 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_iron_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_khorium.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_khorium.jpg new file mode 100644 index 0000000..65edaf0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_khorium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_khorium_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_khorium_01.jpg new file mode 100644 index 0000000..0eaad26 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_khorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_mithril_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_mithril_01.jpg new file mode 100644 index 0000000..7660490 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_mithril_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_mithril_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_mithril_02.jpg new file mode 100644 index 0000000..6c5360c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_mithril_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_thorium_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_thorium_01.jpg new file mode 100644 index 0000000..eb4a576 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_thorium_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_thorium_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_thorium_02.jpg new file mode 100644 index 0000000..1ddcc1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_thorium_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_tin_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_tin_01.jpg new file mode 100644 index 0000000..1e38f2f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_tin_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_ore_truesilver_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_ore_truesilver_01.jpg new file mode 100644 index 0000000..60a9e3d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_ore_truesilver_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_01.jpg new file mode 100644 index 0000000..71e362c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_02.jpg new file mode 100644 index 0000000..366dedb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_03.jpg new file mode 100644 index 0000000..8692a25 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_04.jpg new file mode 100644 index 0000000..8d63758 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_05.jpg new file mode 100644 index 0000000..f5229dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_06.jpg new file mode 100644 index 0000000..b79faac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_07.jpg new file mode 100644 index 0000000..2260836 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_08.jpg new file mode 100644 index 0000000..04328b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_09.jpg new file mode 100644 index 0000000..9896bed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_10.jpg new file mode 100644 index 0000000..bf97c6e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_11.jpg new file mode 100644 index 0000000..f9edd51 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_12.jpg new file mode 100644 index 0000000..bd73ba2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_13.jpg new file mode 100644 index 0000000..b6220d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_14.jpg new file mode 100644 index 0000000..a215aca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_01.jpg new file mode 100644 index 0000000..b01c89d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_02.jpg new file mode 100644 index 0000000..d0b69eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_03.jpg new file mode 100644 index 0000000..22e0aee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_04.jpg new file mode 100644 index 0000000..e64bc01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_05.jpg new file mode 100644 index 0000000..5bb1f61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_06.jpg new file mode 100644 index 0000000..2f45338 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_07.jpg new file mode 100644 index 0000000..8c17952 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_08.jpg new file mode 100644 index 0000000..8a3ee0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_09.jpg new file mode 100644 index 0000000..8185596 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_10.jpg new file mode 100644 index 0000000..72ca3e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_11.jpg new file mode 100644 index 0000000..7205629 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_12.jpg new file mode 100644 index 0000000..3e0968c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_13.jpg new file mode 100644 index 0000000..4f50207 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_14.jpg new file mode 100644 index 0000000..16fb39a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_15.jpg new file mode 100644 index 0000000..ac6ec46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_16.jpg new file mode 100644 index 0000000..c465793 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_17.jpg new file mode 100644 index 0000000..8a82595 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_18.jpg new file mode 100644 index 0000000..502901d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_19.jpg new file mode 100644 index 0000000..5275467 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_20.jpg new file mode 100644 index 0000000..653eae8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_21.jpg new file mode 100644 index 0000000..2c5dc69 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_22.jpg new file mode 100644 index 0000000..4159349 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_23.jpg new file mode 100644 index 0000000..f835af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_24.jpg new file mode 100644 index 0000000..eda6960 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_25.jpg new file mode 100644 index 0000000..cb599ff Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_26.jpg new file mode 100644 index 0000000..050e779 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_27.jpg new file mode 100644 index 0000000..375bdda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_28.jpg new file mode 100644 index 0000000..c45d770 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_29.jpg new file mode 100644 index 0000000..27f6180 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_cloth_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_01.jpg new file mode 100644 index 0000000..05a8ea4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_02.jpg new file mode 100644 index 0000000..5cd761d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_03.jpg new file mode 100644 index 0000000..19b7b98 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_04.jpg new file mode 100644 index 0000000..b11d09c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_05.jpg new file mode 100644 index 0000000..7c0ece9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_06.jpg new file mode 100644 index 0000000..a8b980d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_07.jpg new file mode 100644 index 0000000..acf1f2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_08.jpg new file mode 100644 index 0000000..e060587 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_09.jpg new file mode 100644 index 0000000..b781b4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_10.jpg new file mode 100644 index 0000000..6236c77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_11.jpg new file mode 100644 index 0000000..724a980 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_12.jpg new file mode 100644 index 0000000..715060e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_13.jpg new file mode 100644 index 0000000..4418366 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_14.jpg new file mode 100644 index 0000000..b4827b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_15.jpg new file mode 100644 index 0000000..dca4808 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_16.jpg new file mode 100644 index 0000000..8c1d6ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_17.jpg new file mode 100644 index 0000000..70719b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_18.jpg new file mode 100644 index 0000000..becb219 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_19.jpg new file mode 100644 index 0000000..eb9b240 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_20.jpg new file mode 100644 index 0000000..2da5fcb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_21.jpg new file mode 100644 index 0000000..6b596bd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_22.jpg new file mode 100644 index 0000000..c7005b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_23.jpg new file mode 100644 index 0000000..ab2ce52 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_24.jpg new file mode 100644 index 0000000..04e6daf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_25.jpg new file mode 100644 index 0000000..0f61bd7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_26.jpg new file mode 100644 index 0000000..d0b3129 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_leather_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_27.jpg new file mode 100644 index 0000000..f183a11 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_leather_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_01.jpg new file mode 100644 index 0000000..16484bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_02.jpg new file mode 100644 index 0000000..d85cbbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_03.jpg new file mode 100644 index 0000000..e53ea68 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_04.jpg new file mode 100644 index 0000000..bcef591 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_05.jpg new file mode 100644 index 0000000..cd63560 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_06.jpg new file mode 100644 index 0000000..68c59fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_07.jpg new file mode 100644 index 0000000..338e01b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_08.jpg new file mode 100644 index 0000000..fff56b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_09.jpg new file mode 100644 index 0000000..b3428dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_10.jpg new file mode 100644 index 0000000..1701443 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_11.jpg new file mode 100644 index 0000000..2e44358 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_12.jpg new file mode 100644 index 0000000..3f3fee9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_13.jpg new file mode 100644 index 0000000..f267df9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_14.jpg new file mode 100644 index 0000000..6222126 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_15.jpg new file mode 100644 index 0000000..4bba845 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_16.jpg new file mode 100644 index 0000000..70cdba7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_17.jpg new file mode 100644 index 0000000..558890f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_18.jpg new file mode 100644 index 0000000..fbac900 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_19.jpg new file mode 100644 index 0000000..c4425dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_20.jpg new file mode 100644 index 0000000..f038fc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_21.jpg new file mode 100644 index 0000000..71cb8f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_24.jpg new file mode 100644 index 0000000..01c3172 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_25.jpg new file mode 100644 index 0000000..ef143b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_mail_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_26.jpg new file mode 100644 index 0000000..c315b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_mail_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_01.jpg new file mode 100644 index 0000000..8768623 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_02.jpg new file mode 100644 index 0000000..8ec3613 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_03.jpg new file mode 100644 index 0000000..016ae3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_04.jpg new file mode 100644 index 0000000..e072ffa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_05.jpg new file mode 100644 index 0000000..e0021ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_06.jpg new file mode 100644 index 0000000..6a7c025 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_07.jpg new file mode 100644 index 0000000..47dbf24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_08.jpg new file mode 100644 index 0000000..8a3de59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_09.jpg new file mode 100644 index 0000000..21c852a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_10.jpg new file mode 100644 index 0000000..8e741b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_11.jpg new file mode 100644 index 0000000..26cd54e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_12.jpg new file mode 100644 index 0000000..fd924b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_13.jpg new file mode 100644 index 0000000..9d1f7d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_14.jpg new file mode 100644 index 0000000..e59d2db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_15.jpg new file mode 100644 index 0000000..6a7ad50 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_16.jpg new file mode 100644 index 0000000..7a544dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_17.jpg new file mode 100644 index 0000000..6086fd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_18.jpg new file mode 100644 index 0000000..8efa3d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_19.jpg new file mode 100644 index 0000000..416874e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_20.jpg new file mode 100644 index 0000000..f0747f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_21.jpg new file mode 100644 index 0000000..15e74b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_22.jpg new file mode 100644 index 0000000..ecc54bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_23.jpg new file mode 100644 index 0000000..695150f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_24.jpg new file mode 100644 index 0000000..f53fe12 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_25.jpg new file mode 100644 index 0000000..32eea49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_26.jpg new file mode 100644 index 0000000..dd9ccc7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_27.jpg new file mode 100644 index 0000000..026365c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_28.jpg new file mode 100644 index 0000000..0f44bc6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_plate_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_29.jpg new file mode 100644 index 0000000..82737f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_plate_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pants_wolf.jpg b/other/AoWoW-master/images/icons/tiny/inv_pants_wolf.jpg new file mode 100644 index 0000000..5668567 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pants_wolf.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pick_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_pick_01.jpg new file mode 100644 index 0000000..bcbac7c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pick_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pick_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_pick_02.jpg new file mode 100644 index 0000000..82483e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pick_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pick_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_pick_03.jpg new file mode 100644 index 0000000..0f81c1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pick_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_pick_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_pick_05.jpg new file mode 100644 index 0000000..39a0f3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_pick_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_poison_mindnumbing.jpg b/other/AoWoW-master/images/icons/tiny/inv_poison_mindnumbing.jpg new file mode 100644 index 0000000..4a05c06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_poison_mindnumbing.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_01.jpg new file mode 100644 index 0000000..0a438b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_02.jpg new file mode 100644 index 0000000..f89bc4e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_03.jpg new file mode 100644 index 0000000..3efab80 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_04.jpg new file mode 100644 index 0000000..1e939c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_05.jpg new file mode 100644 index 0000000..e4ddf50 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_06.jpg new file mode 100644 index 0000000..882aa99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_07.jpg new file mode 100644 index 0000000..11bd111 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_08.jpg new file mode 100644 index 0000000..0a5778c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_09.jpg new file mode 100644 index 0000000..da3d973 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_10.jpg new file mode 100644 index 0000000..179d17d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_100.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_100.jpg new file mode 100644 index 0000000..ad2a25d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_100.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_101.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_101.jpg new file mode 100644 index 0000000..eacdcbe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_101.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_102.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_102.jpg new file mode 100644 index 0000000..265853b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_102.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_103.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_103.jpg new file mode 100644 index 0000000..0ef0c1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_103.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_104.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_104.jpg new file mode 100644 index 0000000..3a8d6e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_104.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_105.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_105.jpg new file mode 100644 index 0000000..08af171 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_105.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_106.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_106.jpg new file mode 100644 index 0000000..ab5db44 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_106.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_107.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_107.jpg new file mode 100644 index 0000000..0d8895e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_107.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_108.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_108.jpg new file mode 100644 index 0000000..0587f67 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_108.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_109.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_109.jpg new file mode 100644 index 0000000..fe197d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_109.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_11.jpg new file mode 100644 index 0000000..70eecd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_110.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_110.jpg new file mode 100644 index 0000000..d666548 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_110.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_111.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_111.jpg new file mode 100644 index 0000000..3cbbc61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_111.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_112.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_112.jpg new file mode 100644 index 0000000..399bf89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_112.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_113.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_113.jpg new file mode 100644 index 0000000..6e7ab02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_113.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_114.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_114.jpg new file mode 100644 index 0000000..4f93052 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_114.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_115.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_115.jpg new file mode 100644 index 0000000..9aaf3e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_115.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_116.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_116.jpg new file mode 100644 index 0000000..c0a975e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_116.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_117.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_117.jpg new file mode 100644 index 0000000..439a995 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_117.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_118.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_118.jpg new file mode 100644 index 0000000..d3f8eec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_118.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_119.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_119.jpg new file mode 100644 index 0000000..dc94b0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_119.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_12.jpg new file mode 100644 index 0000000..0bc2ce9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_120.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_120.jpg new file mode 100644 index 0000000..c732f4f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_120.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_121.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_121.jpg new file mode 100644 index 0000000..0654f38 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_121.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_122.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_122.jpg new file mode 100644 index 0000000..4b50b34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_122.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_123.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_123.jpg new file mode 100644 index 0000000..7383352 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_123.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_124.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_124.jpg new file mode 100644 index 0000000..9d03a9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_124.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_125.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_125.jpg new file mode 100644 index 0000000..64fef0c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_125.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_126.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_126.jpg new file mode 100644 index 0000000..8d2a3e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_126.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_127.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_127.jpg new file mode 100644 index 0000000..54e71ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_127.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_128.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_128.jpg new file mode 100644 index 0000000..8058b90 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_128.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_129.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_129.jpg new file mode 100644 index 0000000..e7be820 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_129.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_13.jpg new file mode 100644 index 0000000..250f52f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_130.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_130.jpg new file mode 100644 index 0000000..3a4d656 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_130.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_131.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_131.jpg new file mode 100644 index 0000000..2c498c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_131.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_132.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_132.jpg new file mode 100644 index 0000000..56b3808 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_132.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_133.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_133.jpg new file mode 100644 index 0000000..b757753 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_133.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_134.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_134.jpg new file mode 100644 index 0000000..76bb060 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_134.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_135.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_135.jpg new file mode 100644 index 0000000..ac41c89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_135.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_136.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_136.jpg new file mode 100644 index 0000000..110b27f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_136.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_137.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_137.jpg new file mode 100644 index 0000000..8ed7b42 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_137.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_138.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_138.jpg new file mode 100644 index 0000000..648da3b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_138.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_139.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_139.jpg new file mode 100644 index 0000000..84c01cf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_139.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_14.jpg new file mode 100644 index 0000000..8ae9303 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_140.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_140.jpg new file mode 100644 index 0000000..2cd9eb8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_140.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_141.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_141.jpg new file mode 100644 index 0000000..66f812a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_141.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_142.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_142.jpg new file mode 100644 index 0000000..cb214d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_142.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_143.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_143.jpg new file mode 100644 index 0000000..2bc897a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_143.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_144.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_144.jpg new file mode 100644 index 0000000..b1965d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_144.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_145.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_145.jpg new file mode 100644 index 0000000..c051e20 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_145.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_146.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_146.jpg new file mode 100644 index 0000000..9d1ee06 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_146.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_147.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_147.jpg new file mode 100644 index 0000000..4c68abe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_147.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_148.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_148.jpg new file mode 100644 index 0000000..a753b12 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_148.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_149.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_149.jpg new file mode 100644 index 0000000..e9bbfee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_149.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_15.jpg new file mode 100644 index 0000000..277a7d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_150.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_150.jpg new file mode 100644 index 0000000..5af9e2c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_150.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_151.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_151.jpg new file mode 100644 index 0000000..da67304 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_151.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_152.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_152.jpg new file mode 100644 index 0000000..5c6e277 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_152.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_153.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_153.jpg new file mode 100644 index 0000000..4935b2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_153.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_154.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_154.jpg new file mode 100644 index 0000000..bb8b8b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_154.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_155.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_155.jpg new file mode 100644 index 0000000..dd08a65 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_155.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_156.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_156.jpg new file mode 100644 index 0000000..ce4c880 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_156.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_157.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_157.jpg new file mode 100644 index 0000000..a0775ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_157.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_158.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_158.jpg new file mode 100644 index 0000000..0ae6fe0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_158.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_159.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_159.jpg new file mode 100644 index 0000000..927889a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_159.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_16.jpg new file mode 100644 index 0000000..ebffcca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_160.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_160.jpg new file mode 100644 index 0000000..50b2e0a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_160.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_161.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_161.jpg new file mode 100644 index 0000000..cf1afc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_161.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_162.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_162.jpg new file mode 100644 index 0000000..a916da2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_162.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_163.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_163.jpg new file mode 100644 index 0000000..85589db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_163.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_164.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_164.jpg new file mode 100644 index 0000000..453f042 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_164.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_165.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_165.jpg new file mode 100644 index 0000000..e215b5c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_165.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_166.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_166.jpg new file mode 100644 index 0000000..c99b374 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_166.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_167.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_167.jpg new file mode 100644 index 0000000..ac5bd45 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_167.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_168.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_168.jpg new file mode 100644 index 0000000..db76691 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_168.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_17.jpg new file mode 100644 index 0000000..d436994 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_18.jpg new file mode 100644 index 0000000..7787872 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_19.jpg new file mode 100644 index 0000000..8f4cede Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_20.jpg new file mode 100644 index 0000000..c12d1bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_21.jpg new file mode 100644 index 0000000..6dd485c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_22.jpg new file mode 100644 index 0000000..909f607 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_23.jpg new file mode 100644 index 0000000..06793ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_24.jpg new file mode 100644 index 0000000..2c4abf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_25.jpg new file mode 100644 index 0000000..418296a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_26.jpg new file mode 100644 index 0000000..59ee981 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_27.jpg new file mode 100644 index 0000000..9031a48 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_28.jpg new file mode 100644 index 0000000..92880ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_29.jpg new file mode 100644 index 0000000..5ec7bf9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_30.jpg new file mode 100644 index 0000000..2a7e0b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_31.jpg new file mode 100644 index 0000000..a80a8c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_32.jpg new file mode 100644 index 0000000..db1b84e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_33.jpg new file mode 100644 index 0000000..efe0809 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_34.jpg new file mode 100644 index 0000000..08543da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_35.jpg new file mode 100644 index 0000000..6c00451 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_36.jpg new file mode 100644 index 0000000..129bbfb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_37.jpg new file mode 100644 index 0000000..2138eae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_38.jpg new file mode 100644 index 0000000..3bda1de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_39.jpg new file mode 100644 index 0000000..fca171b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_40.jpg new file mode 100644 index 0000000..f678b99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_41.jpg new file mode 100644 index 0000000..af7a821 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_42.jpg new file mode 100644 index 0000000..edbd2a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_43.jpg new file mode 100644 index 0000000..7b371d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_44.jpg new file mode 100644 index 0000000..8718b18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_45.jpg new file mode 100644 index 0000000..11d84c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_46.jpg new file mode 100644 index 0000000..a564188 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_47.jpg new file mode 100644 index 0000000..01d3c66 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_48.jpg new file mode 100644 index 0000000..e2ad6b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_49.jpg new file mode 100644 index 0000000..9dd8b69 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_50.jpg new file mode 100644 index 0000000..74e0bd9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_51.jpg new file mode 100644 index 0000000..8bf1ef6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_52.jpg new file mode 100644 index 0000000..fb39ca2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_53.jpg new file mode 100644 index 0000000..ca71eb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_54.jpg new file mode 100644 index 0000000..570616d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_55.jpg new file mode 100644 index 0000000..35b221b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_56.jpg new file mode 100644 index 0000000..c1b07c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_57.jpg new file mode 100644 index 0000000..7cb606a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_58.jpg new file mode 100644 index 0000000..30b1d09 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_59.jpg new file mode 100644 index 0000000..39994a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_60.jpg new file mode 100644 index 0000000..f3ad914 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_61.jpg new file mode 100644 index 0000000..5cb9d33 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_62.jpg new file mode 100644 index 0000000..1e3a858 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_63.jpg new file mode 100644 index 0000000..ad81946 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_64.jpg new file mode 100644 index 0000000..e58996d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_65.jpg new file mode 100644 index 0000000..ce27656 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_66.jpg new file mode 100644 index 0000000..863f44f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_67.jpg new file mode 100644 index 0000000..4418c03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_68.jpg new file mode 100644 index 0000000..4a7d6b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_69.jpg new file mode 100644 index 0000000..7144238 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_70.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_70.jpg new file mode 100644 index 0000000..bc0768e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_70.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_71.jpg new file mode 100644 index 0000000..49c859d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_72.jpg new file mode 100644 index 0000000..f520570 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_73.jpg new file mode 100644 index 0000000..44d26b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_74.jpg new file mode 100644 index 0000000..23a4ace Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_75.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_75.jpg new file mode 100644 index 0000000..d2dd3bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_75.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_76.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_76.jpg new file mode 100644 index 0000000..926c903 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_76.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_77.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_77.jpg new file mode 100644 index 0000000..6087062 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_77.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_78.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_78.jpg new file mode 100644 index 0000000..f0e80f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_78.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_79.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_79.jpg new file mode 100644 index 0000000..de6169d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_79.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_80.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_80.jpg new file mode 100644 index 0000000..101bc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_80.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_81.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_81.jpg new file mode 100644 index 0000000..6ddff08 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_81.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_82.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_82.jpg new file mode 100644 index 0000000..6124847 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_82.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_83.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_83.jpg new file mode 100644 index 0000000..50e0149 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_83.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_84.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_84.jpg new file mode 100644 index 0000000..2cd2185 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_84.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_85.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_85.jpg new file mode 100644 index 0000000..7b22ab5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_85.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_86.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_86.jpg new file mode 100644 index 0000000..e4929f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_86.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_87.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_87.jpg new file mode 100644 index 0000000..9d3b58b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_87.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_88.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_88.jpg new file mode 100644 index 0000000..15725a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_88.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_89.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_89.jpg new file mode 100644 index 0000000..cb32bac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_89.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_90.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_90.jpg new file mode 100644 index 0000000..bef82f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_90.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_91.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_91.jpg new file mode 100644 index 0000000..9a7cd7c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_91.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_92.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_92.jpg new file mode 100644 index 0000000..19e2bd8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_92.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_93.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_93.jpg new file mode 100644 index 0000000..dc8efa3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_93.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_94.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_94.jpg new file mode 100644 index 0000000..c9618dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_94.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_95.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_95.jpg new file mode 100644 index 0000000..45c50b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_95.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_96.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_96.jpg new file mode 100644 index 0000000..2517d71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_96.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_97.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_97.jpg new file mode 100644 index 0000000..f4fbac1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_97.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_98.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_98.jpg new file mode 100644 index 0000000..1f09f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_98.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_potion_99.jpg b/other/AoWoW-master/images/icons/tiny/inv_potion_99.jpg new file mode 100644 index 0000000..7b0ccb4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_potion_99.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_bindingscommand.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_bindingscommand.jpg new file mode 100644 index 0000000..5e167a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_bindingscommand.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_bindingsdominance.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_bindingsdominance.jpg new file mode 100644 index 0000000..5cf4e7d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_bindingsdominance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_carapaceoldgod.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_carapaceoldgod.jpg new file mode 100644 index 0000000..55b797e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_carapaceoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_drapemartial.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_drapemartial.jpg new file mode 100644 index 0000000..0bf104e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_drapemartial.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_draperegal.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_draperegal.jpg new file mode 100644 index 0000000..e2921c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_draperegal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_hiltornate.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_hiltornate.jpg new file mode 100644 index 0000000..1737f80 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_hiltornate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_hiltspiked.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_hiltspiked.jpg new file mode 100644 index 0000000..6ba966f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_hiltspiked.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_huskoldgod.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_huskoldgod.jpg new file mode 100644 index 0000000..95a5638 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_huskoldgod.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelblessed.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelblessed.jpg new file mode 100644 index 0000000..ade5209 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelblessed.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelencased.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelencased.jpg new file mode 100644 index 0000000..f329584 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelencased.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelengraved.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelengraved.jpg new file mode 100644 index 0000000..daa0fc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelengraved.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelglyphed.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelglyphed.jpg new file mode 100644 index 0000000..e99ee5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_jewelglyphed.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_ourohide.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_ourohide.jpg new file mode 100644 index 0000000..84c313b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_ourohide.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_ringceremonial.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_ringceremonial.jpg new file mode 100644 index 0000000..259ab85 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_ringceremonial.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_ringmagisterial.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_ringmagisterial.jpg new file mode 100644 index 0000000..4f99f91 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_ringmagisterial.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qiraj_skinsandworm.jpg b/other/AoWoW-master/images/icons/tiny/inv_qiraj_skinsandworm.jpg new file mode 100644 index 0000000..268b5b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qiraj_skinsandworm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_alabaster.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_alabaster.jpg new file mode 100644 index 0000000..33bfb9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_alabaster.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_amber.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_amber.jpg new file mode 100644 index 0000000..f489957 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_amber.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_azure.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_azure.jpg new file mode 100644 index 0000000..9ae3c70 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_azure.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_death.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_death.jpg new file mode 100644 index 0000000..c38f96c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_death.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_jasper.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_jasper.jpg new file mode 100644 index 0000000..f531904 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_jasper.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_lambent.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_lambent.jpg new file mode 100644 index 0000000..861c249 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_lambent.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_life.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_life.jpg new file mode 100644 index 0000000..191e072 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_life.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_night.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_night.jpg new file mode 100644 index 0000000..2bde29d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_night.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_obsidian.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_obsidian.jpg new file mode 100644 index 0000000..d77d06f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_obsidian.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_onyx.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_onyx.jpg new file mode 100644 index 0000000..6a5f25f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_onyx.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_rebirth.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_rebirth.jpg new file mode 100644 index 0000000..9320300 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_rebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_sage.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_sage.jpg new file mode 100644 index 0000000..4fb7941 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_sage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_strife.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_strife.jpg new file mode 100644 index 0000000..5de3995 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_strife.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_sun.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_sun.jpg new file mode 100644 index 0000000..81036a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_sun.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_vermillion.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_vermillion.jpg new file mode 100644 index 0000000..4d97d85 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_vermillion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_qirajidol_war.jpg b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_war.jpg new file mode 100644 index 0000000..e07efaf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_qirajidol_war.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_idolofferocity.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_idolofferocity.jpg new file mode 100644 index 0000000..3f89a1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_idolofferocity.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_idolofhealth.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_idolofhealth.jpg new file mode 100644 index 0000000..56a06b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_idolofhealth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_idolofrejuvenation.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_idolofrejuvenation.jpg new file mode 100644 index 0000000..88b664a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_idolofrejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_libramofgrace.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_libramofgrace.jpg new file mode 100644 index 0000000..d233e02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_libramofgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_libramofhope.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_libramofhope.jpg new file mode 100644 index 0000000..0f268c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_libramofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_libramoftruth.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_libramoftruth.jpg new file mode 100644 index 0000000..fedbf77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_libramoftruth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_totemoflife.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_totemoflife.jpg new file mode 100644 index 0000000..c4df34d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_totemoflife.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_totemofrage.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_totemofrage.jpg new file mode 100644 index 0000000..14276de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_totemofrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_relics_totemofrebirth.jpg b/other/AoWoW-master/images/icons/tiny/inv_relics_totemofrebirth.jpg new file mode 100644 index 0000000..85a9613 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_relics_totemofrebirth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rod_adamantite.jpg b/other/AoWoW-master/images/icons/tiny/inv_rod_adamantite.jpg new file mode 100644 index 0000000..03892eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rod_adamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedadamantite.jpg b/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedadamantite.jpg new file mode 100644 index 0000000..d0239f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedadamantite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedeternium.jpg b/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedeternium.jpg new file mode 100644 index 0000000..b6421f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedeternium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedfelsteel.jpg b/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedfelsteel.jpg new file mode 100644 index 0000000..d056e11 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rod_enchantedfelsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rod_eternium.jpg b/other/AoWoW-master/images/icons/tiny/inv_rod_eternium.jpg new file mode 100644 index 0000000..21e7faa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rod_eternium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rod_felsteel.jpg b/other/AoWoW-master/images/icons/tiny/inv_rod_felsteel.jpg new file mode 100644 index 0000000..f8cff87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rod_felsteel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rosebouquet01.jpg b/other/AoWoW-master/images/icons/tiny/inv_rosebouquet01.jpg new file mode 100644 index 0000000..5426b4a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rosebouquet01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_rosepotted01.jpg b/other/AoWoW-master/images/icons/tiny/inv_rosepotted01.jpg new file mode 100644 index 0000000..9f7950f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_rosepotted01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_bone.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_bone.jpg new file mode 100644 index 0000000..8ec1b09 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_bone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_bronze.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_bronze.jpg new file mode 100644 index 0000000..62c53a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_bronze.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_clay.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_clay.jpg new file mode 100644 index 0000000..66962ff Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_clay.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_crystal.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_crystal.jpg new file mode 100644 index 0000000..98585ab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_crystal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_gold.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_gold.jpg new file mode 100644 index 0000000..fe86399 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_gold.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_ivory.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_ivory.jpg new file mode 100644 index 0000000..8ec1b09 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_ivory.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_silver.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_silver.jpg new file mode 100644 index 0000000..db7b540 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_silver.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scarab_stone.jpg b/other/AoWoW-master/images/icons/tiny/inv_scarab_stone.jpg new file mode 100644 index 0000000..65db79b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scarab_stone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_01.jpg new file mode 100644 index 0000000..7c5556c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_02.jpg new file mode 100644 index 0000000..c6c9dea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_03.jpg new file mode 100644 index 0000000..284aa8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_04.jpg new file mode 100644 index 0000000..d948924 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_05.jpg new file mode 100644 index 0000000..3a12d89 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_06.jpg new file mode 100644 index 0000000..cb03ccb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_07.jpg new file mode 100644 index 0000000..706d680 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_08.jpg new file mode 100644 index 0000000..d46cc1e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_09.jpg new file mode 100644 index 0000000..9bbd143 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_scroll_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_scroll_10.jpg new file mode 100644 index 0000000..b203933 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_scroll_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_01.jpg new file mode 100644 index 0000000..4ff3a9d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_02.jpg new file mode 100644 index 0000000..1e6104f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_03.jpg new file mode 100644 index 0000000..62d5b24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_04.jpg new file mode 100644 index 0000000..9329387 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_05.jpg new file mode 100644 index 0000000..3cccf24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_06.jpg new file mode 100644 index 0000000..325be44 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_07.jpg new file mode 100644 index 0000000..afd184f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_08.jpg new file mode 100644 index 0000000..2b6305e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_09.jpg new file mode 100644 index 0000000..538f500 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_10.jpg new file mode 100644 index 0000000..8649a3a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_11.jpg new file mode 100644 index 0000000..3e3ef43 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_12.jpg new file mode 100644 index 0000000..42b8035 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_13.jpg new file mode 100644 index 0000000..52f45f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_14.jpg new file mode 100644 index 0000000..8cf9a0c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_15.jpg new file mode 100644 index 0000000..1460336 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_16.jpg new file mode 100644 index 0000000..85e844b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_17.jpg new file mode 100644 index 0000000..48bf666 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_18.jpg new file mode 100644 index 0000000..5b8a2c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_19.jpg new file mode 100644 index 0000000..039a63c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_20.jpg new file mode 100644 index 0000000..bf9fde5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_21.jpg new file mode 100644 index 0000000..7101b91 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_22.jpg new file mode 100644 index 0000000..7d37818 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_23.jpg new file mode 100644 index 0000000..07475e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_24.jpg new file mode 100644 index 0000000..28e9911 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_26.jpg new file mode 100644 index 0000000..59e7959 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_27.jpg new file mode 100644 index 0000000..c794a7e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_28.jpg new file mode 100644 index 0000000..7e6bd14 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_29.jpg new file mode 100644 index 0000000..d213b4b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_30.jpg new file mode 100644 index 0000000..4a5c53e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_31.jpg new file mode 100644 index 0000000..9991c6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_32.jpg new file mode 100644 index 0000000..614ddfc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_33.jpg new file mode 100644 index 0000000..2c5f286 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_34.jpg new file mode 100644 index 0000000..4150f92 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_35.jpg new file mode 100644 index 0000000..4b1b8ab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_36.jpg new file mode 100644 index 0000000..8101777 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_37.jpg new file mode 100644 index 0000000..af37a2a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_38.jpg new file mode 100644 index 0000000..b723011 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_39.jpg new file mode 100644 index 0000000..2481f58 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_40.jpg new file mode 100644 index 0000000..8921a2e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_41.jpg new file mode 100644 index 0000000..e8d8675 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_42.jpg new file mode 100644 index 0000000..3d7d4cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_43.jpg new file mode 100644 index 0000000..9c274f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_48.jpg new file mode 100644 index 0000000..7511bac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_52.jpg new file mode 100644 index 0000000..8084519 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_53.jpg new file mode 100644 index 0000000..53e51be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shield_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_shield_54.jpg new file mode 100644 index 0000000..d194745 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shield_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_01.jpg new file mode 100644 index 0000000..f950669 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_02.jpg new file mode 100644 index 0000000..9ff185d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_03.jpg new file mode 100644 index 0000000..fc2addb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_04.jpg new file mode 100644 index 0000000..92b10a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_05.jpg new file mode 100644 index 0000000..cfa3f7c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_06.jpg new file mode 100644 index 0000000..5b53c0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_07.jpg new file mode 100644 index 0000000..56d61ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_08.jpg new file mode 100644 index 0000000..43ed6a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_09.jpg new file mode 100644 index 0000000..d059657 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_10.jpg new file mode 100644 index 0000000..daea6f8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_11.jpg new file mode 100644 index 0000000..3ae48bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_12.jpg new file mode 100644 index 0000000..35ba7d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_13.jpg new file mode 100644 index 0000000..6a2297f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_14.jpg new file mode 100644 index 0000000..bc16a23 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_15.jpg new file mode 100644 index 0000000..342912d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_16.jpg new file mode 100644 index 0000000..e7f73d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_17.jpg new file mode 100644 index 0000000..1b7082c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_black_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_black_01.jpg new file mode 100644 index 0000000..6a787d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_black_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_blue_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_blue_01.jpg new file mode 100644 index 0000000..fbf59d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_blue_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_green_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_green_01.jpg new file mode 100644 index 0000000..60a56cc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_green_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_grey_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_grey_01.jpg new file mode 100644 index 0000000..127cd60 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_grey_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_guildtabard_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_guildtabard_01.jpg new file mode 100644 index 0000000..7dccd2a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_guildtabard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_orange_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_orange_01.jpg new file mode 100644 index 0000000..fe56ce9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_orange_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_purple_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_purple_01.jpg new file mode 100644 index 0000000..4c8f2c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_purple_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_red_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_red_01.jpg new file mode 100644 index 0000000..79d8bbd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_red_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_white_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_white_01.jpg new file mode 100644 index 0000000..4fe25fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_white_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shirt_yellow_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shirt_yellow_01.jpg new file mode 100644 index 0000000..aeb3e1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shirt_yellow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_01.jpg new file mode 100644 index 0000000..3a11760 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_02.jpg new file mode 100644 index 0000000..ed06a18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_03.jpg new file mode 100644 index 0000000..2b03f04 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_04.jpg new file mode 100644 index 0000000..60dde55 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_05.jpg new file mode 100644 index 0000000..7d2a89c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_06.jpg new file mode 100644 index 0000000..823dda6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_07.jpg new file mode 100644 index 0000000..4662769 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_08.jpg new file mode 100644 index 0000000..1eb6a8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_09.jpg new file mode 100644 index 0000000..74659cc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_10.jpg new file mode 100644 index 0000000..8d56831 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_11.jpg new file mode 100644 index 0000000..0c6be59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_12.jpg new file mode 100644 index 0000000..33c8860 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_13.jpg new file mode 100644 index 0000000..34303d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_14.jpg new file mode 100644 index 0000000..a157471 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_15.jpg new file mode 100644 index 0000000..1eb8c5c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_16.jpg new file mode 100644 index 0000000..cb2b3ab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_17.jpg new file mode 100644 index 0000000..bb667ac Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_18.jpg new file mode 100644 index 0000000..0c15851 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_19.jpg new file mode 100644 index 0000000..338b99d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_20.jpg new file mode 100644 index 0000000..7766568 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_21.jpg new file mode 100644 index 0000000..6d80ef1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_22.jpg new file mode 100644 index 0000000..7a904e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_23.jpg new file mode 100644 index 0000000..f9d495c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_24.jpg new file mode 100644 index 0000000..d717085 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_25.jpg new file mode 100644 index 0000000..d6b0d26 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_26.jpg new file mode 100644 index 0000000..51772fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_27.jpg new file mode 100644 index 0000000..35788d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_28.jpg new file mode 100644 index 0000000..fa66a94 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_29.jpg new file mode 100644 index 0000000..bcb55d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_30.jpg new file mode 100644 index 0000000..2b1b1be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_31.jpg new file mode 100644 index 0000000..a454216 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_32.jpg new file mode 100644 index 0000000..14c9f65 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_33.jpg new file mode 100644 index 0000000..89c18c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_34.jpg new file mode 100644 index 0000000..d7a5bc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_35.jpg new file mode 100644 index 0000000..3c13b59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_36.jpg new file mode 100644 index 0000000..d41473e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_37.jpg new file mode 100644 index 0000000..dcc6aee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_40.jpg new file mode 100644 index 0000000..296c38b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_41.jpg new file mode 100644 index 0000000..90a16bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_44.jpg new file mode 100644 index 0000000..b921402 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_47.jpg new file mode 100644 index 0000000..ce6e906 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_48.jpg new file mode 100644 index 0000000..b5559b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_49.jpg new file mode 100644 index 0000000..1635f6e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_50.jpg new file mode 100644 index 0000000..2eafcc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_51.jpg new file mode 100644 index 0000000..6750614 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_52.jpg new file mode 100644 index 0000000..039d289 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_53.jpg new file mode 100644 index 0000000..154337f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_54.jpg new file mode 100644 index 0000000..2418568 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_55.jpg new file mode 100644 index 0000000..c5f52bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_56.jpg new file mode 100644 index 0000000..2f7bf52 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_57.jpg new file mode 100644 index 0000000..ee6ed5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_58.jpg new file mode 100644 index 0000000..bfd69de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_59.jpg new file mode 100644 index 0000000..1ad75a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_60.jpg new file mode 100644 index 0000000..0692603 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_61.jpg new file mode 100644 index 0000000..8e21274 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_62.jpg new file mode 100644 index 0000000..d25d431 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_63.jpg new file mode 100644 index 0000000..e994c6e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_64.jpg new file mode 100644 index 0000000..50fabca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_65.jpg new file mode 100644 index 0000000..94bd610 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_66.jpg new file mode 100644 index 0000000..517ffc3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_67.jpg new file mode 100644 index 0000000..7e53eab Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_68.jpg new file mode 100644 index 0000000..500469b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_81.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_81.jpg new file mode 100644 index 0000000..1873756 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_81.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_82.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_82.jpg new file mode 100644 index 0000000..7633749 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_82.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_83.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_83.jpg new file mode 100644 index 0000000..559926b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_83.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_84.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_84.jpg new file mode 100644 index 0000000..40c62b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_84.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_85.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_85.jpg new file mode 100644 index 0000000..5e8a51c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_85.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_86.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_86.jpg new file mode 100644 index 0000000..e306148 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_86.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_88.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_88.jpg new file mode 100644 index 0000000..8233909 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_88.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_90.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_90.jpg new file mode 100644 index 0000000..4e31d54 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_90.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_91.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_91.jpg new file mode 100644 index 0000000..328920a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_91.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_shoulder_haremmatron_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_shoulder_haremmatron_d_01.jpg new file mode 100644 index 0000000..3aeae24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_shoulder_haremmatron_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_01.jpg new file mode 100644 index 0000000..4379856 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_02.jpg new file mode 100644 index 0000000..4b178d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_03.jpg new file mode 100644 index 0000000..7e6b834 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_04.jpg new file mode 100644 index 0000000..0e15afe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_05.jpg new file mode 100644 index 0000000..d638e36 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_06.jpg new file mode 100644 index 0000000..ea2d3a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_07.jpg new file mode 100644 index 0000000..587c3d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_08.jpg new file mode 100644 index 0000000..b0beb9e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_09.jpg new file mode 100644 index 0000000..6fc7197 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_10.jpg new file mode 100644 index 0000000..a42b919 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_spear_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_spear_11.jpg new file mode 100644 index 0000000..f101f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_spear_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_01.jpg new file mode 100644 index 0000000..9fd2625 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_02.jpg new file mode 100644 index 0000000..4bcde4b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_03.jpg new file mode 100644 index 0000000..e356009 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_04.jpg new file mode 100644 index 0000000..3a7953a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_05.jpg new file mode 100644 index 0000000..4148d26 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_06.jpg new file mode 100644 index 0000000..407c455 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_07.jpg new file mode 100644 index 0000000..52c8fad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_08.jpg new file mode 100644 index 0000000..10e9007 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_09.jpg new file mode 100644 index 0000000..9477239 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_10.jpg new file mode 100644 index 0000000..a9d8ecc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_11.jpg new file mode 100644 index 0000000..2ac936e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_12.jpg new file mode 100644 index 0000000..40e1e03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_13.jpg new file mode 100644 index 0000000..70955a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_14.jpg new file mode 100644 index 0000000..97ee64b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_15.jpg new file mode 100644 index 0000000..41d680f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_16.jpg new file mode 100644 index 0000000..8f97c88 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_17.jpg new file mode 100644 index 0000000..bd86b6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_18.jpg new file mode 100644 index 0000000..de12b59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_19.jpg new file mode 100644 index 0000000..4ed3cb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_20.jpg new file mode 100644 index 0000000..27c4fa8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_21.jpg new file mode 100644 index 0000000..e1157dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_22.jpg new file mode 100644 index 0000000..1a364f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_23.jpg new file mode 100644 index 0000000..c4ecd08 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_24.jpg new file mode 100644 index 0000000..e0e9155 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_25.jpg new file mode 100644 index 0000000..fe1278d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_26.jpg new file mode 100644 index 0000000..2c408d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_27.jpg new file mode 100644 index 0000000..ea9b409 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_28.jpg new file mode 100644 index 0000000..b39f755 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_29.jpg new file mode 100644 index 0000000..d12dba0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_30.jpg new file mode 100644 index 0000000..1793542 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_31.jpg new file mode 100644 index 0000000..4a84981 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_32.jpg new file mode 100644 index 0000000..4c387af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_33.jpg new file mode 100644 index 0000000..8e49eef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_34.jpg new file mode 100644 index 0000000..d91bf9f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_35.jpg new file mode 100644 index 0000000..99c4a38 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_36.jpg new file mode 100644 index 0000000..d7f5948 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_37.jpg new file mode 100644 index 0000000..8a41da4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_38.jpg new file mode 100644 index 0000000..14e831e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_39.jpg new file mode 100644 index 0000000..1782a11 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_40.jpg new file mode 100644 index 0000000..a56caea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_41.jpg new file mode 100644 index 0000000..af84c2d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_42.jpg new file mode 100644 index 0000000..2a748c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_43.jpg new file mode 100644 index 0000000..5b66fc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_45.jpg new file mode 100644 index 0000000..cbaad69 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_46.jpg new file mode 100644 index 0000000..393f17a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_47.jpg new file mode 100644 index 0000000..c82776e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_48.jpg new file mode 100644 index 0000000..7e08c9e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_49.jpg new file mode 100644 index 0000000..b422bfb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_50.jpg new file mode 100644 index 0000000..945a1cd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_51.jpg new file mode 100644 index 0000000..9c2bc9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_52.jpg new file mode 100644 index 0000000..38bc67e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_53.jpg new file mode 100644 index 0000000..d174de9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_54.jpg new file mode 100644 index 0000000..d33c628 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_55.jpg new file mode 100644 index 0000000..578e32b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_56.jpg new file mode 100644 index 0000000..fec3809 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_57.jpg new file mode 100644 index 0000000..4eea209 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_58.jpg new file mode 100644 index 0000000..c5a8646 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_59.jpg new file mode 100644 index 0000000..a1ff4b4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_60.jpg new file mode 100644 index 0000000..4f2ec0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_61.jpg new file mode 100644 index 0000000..20df528 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_63.jpg new file mode 100644 index 0000000..93963ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_64.jpg new file mode 100644 index 0000000..b45fff6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_65.jpg new file mode 100644 index 0000000..a9dfaa7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_73.jpg new file mode 100644 index 0000000..71470b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_74.jpg new file mode 100644 index 0000000..9da39fa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_78.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_78.jpg new file mode 100644 index 0000000..1be8bbe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_78.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_79.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_79.jpg new file mode 100644 index 0000000..62be978 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_79.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_01.jpg new file mode 100644 index 0000000..5390260 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_02.jpg new file mode 100644 index 0000000..d9346cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_03.jpg new file mode 100644 index 0000000..00d5a0f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_draenei_a_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_goldfeathered_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_goldfeathered_01.jpg new file mode 100644 index 0000000..cf966c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_goldfeathered_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_staff_medivh.jpg b/other/AoWoW-master/images/icons/tiny/inv_staff_medivh.jpg new file mode 100644 index 0000000..75a20ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_staff_medivh.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_01.jpg new file mode 100644 index 0000000..375ea9a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_02.jpg new file mode 100644 index 0000000..e00147d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_03.jpg new file mode 100644 index 0000000..945e353 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_04.jpg new file mode 100644 index 0000000..1623a92 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_05.jpg new file mode 100644 index 0000000..2dc9c78 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_06.jpg new file mode 100644 index 0000000..a958caa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_07.jpg new file mode 100644 index 0000000..d93f178 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_08.jpg new file mode 100644 index 0000000..bdf5e04 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_09.jpg new file mode 100644 index 0000000..6152eb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_10.jpg new file mode 100644 index 0000000..540c221 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_11.jpg new file mode 100644 index 0000000..7b1d1c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_12.jpg new file mode 100644 index 0000000..389adf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_13.jpg new file mode 100644 index 0000000..6f9b280 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_14.jpg new file mode 100644 index 0000000..f10d2e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_15.jpg new file mode 100644 index 0000000..5e90e7f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_16.jpg new file mode 100644 index 0000000..4712797 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_01.jpg new file mode 100644 index 0000000..32873ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_02.jpg new file mode 100644 index 0000000..604fd46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_03.jpg new file mode 100644 index 0000000..5b46de5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_04.jpg new file mode 100644 index 0000000..4e7dee2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_05.jpg new file mode 100644 index 0000000..4f6c5df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_grindingstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_01.jpg new file mode 100644 index 0000000..3f845af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_02.jpg new file mode 100644 index 0000000..7074e66 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_03.jpg new file mode 100644 index 0000000..9ebdb7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_04.jpg new file mode 100644 index 0000000..7a95c19 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_05.jpg new file mode 100644 index 0000000..296beff Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_06.jpg new file mode 100644 index 0000000..6b0f89c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_07.jpg new file mode 100644 index 0000000..b489d7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_sharpeningstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_01.jpg new file mode 100644 index 0000000..3942e2f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_02.jpg new file mode 100644 index 0000000..93d9cb7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_03.jpg new file mode 100644 index 0000000..0b5d9a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_04.jpg new file mode 100644 index 0000000..ac447ed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_05.jpg new file mode 100644 index 0000000..d20d600 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_06.jpg new file mode 100644 index 0000000..9a7d43b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_07.jpg new file mode 100644 index 0000000..081e2f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_stone_weightstone_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_firedrink.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_firedrink.jpg new file mode 100644 index 0000000..b0113bd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_firedrink.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_fireflower.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_fireflower.jpg new file mode 100644 index 0000000..1aeeb2b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_fireflower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_firepotion.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_firepotion.jpg new file mode 100644 index 0000000..116371e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_firepotion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_firespirit.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_firespirit.jpg new file mode 100644 index 0000000..bf8a451 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_firespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_groundflower.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_groundflower.jpg new file mode 100644 index 0000000..4ed0c09 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_groundflower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_smorc.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_smorc.jpg new file mode 100644 index 0000000..affd780 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_smorc.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_high.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_high.jpg new file mode 100644 index 0000000..2259a1e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_high.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_low.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_low.jpg new file mode 100644 index 0000000..3920715 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_low.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_medium.jpg b/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_medium.jpg new file mode 100644 index 0000000..2296f10 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_summerfest_symbol_medium.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_01.jpg new file mode 100644 index 0000000..a57eff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_02.jpg new file mode 100644 index 0000000..cc8890a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_03.jpg new file mode 100644 index 0000000..c025125 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_04.jpg new file mode 100644 index 0000000..d53cefc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_05.jpg new file mode 100644 index 0000000..ffaa7ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_06.jpg new file mode 100644 index 0000000..c9c12aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_07.jpg new file mode 100644 index 0000000..7bcef5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_08.jpg new file mode 100644 index 0000000..d8c943e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_09.jpg new file mode 100644 index 0000000..093d62c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_10.jpg new file mode 100644 index 0000000..152b51e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_107.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_107.jpg new file mode 100644 index 0000000..fc3585b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_107.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_108.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_108.jpg new file mode 100644 index 0000000..4037da4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_108.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_109.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_109.jpg new file mode 100644 index 0000000..ef13a55 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_109.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_11.jpg new file mode 100644 index 0000000..09acca7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_114.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_114.jpg new file mode 100644 index 0000000..eb4f3fd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_114.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_115.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_115.jpg new file mode 100644 index 0000000..a47dc23 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_115.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_116.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_116.jpg new file mode 100644 index 0000000..03832aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_116.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_118.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_118.jpg new file mode 100644 index 0000000..3ddc23e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_118.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_12.jpg new file mode 100644 index 0000000..37abc54 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_13.jpg new file mode 100644 index 0000000..a3185a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_14.jpg new file mode 100644 index 0000000..7f9f177 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_15.jpg new file mode 100644 index 0000000..fa06c15 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_16.jpg new file mode 100644 index 0000000..6905195 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_17.jpg new file mode 100644 index 0000000..994151e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_18.jpg new file mode 100644 index 0000000..ab867dd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_19.jpg new file mode 100644 index 0000000..41dcc85 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_01.jpg new file mode 100644 index 0000000..d6180e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_02.jpg new file mode 100644 index 0000000..5e87d39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_03.jpg new file mode 100644 index 0000000..c19ebcf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_1h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_20.jpg new file mode 100644 index 0000000..bd16b36 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_21.jpg new file mode 100644 index 0000000..07cc462 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_22.jpg new file mode 100644 index 0000000..bc8f940 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_23.jpg new file mode 100644 index 0000000..48419c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_24.jpg new file mode 100644 index 0000000..8062019 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_25.jpg new file mode 100644 index 0000000..1460c5d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_26.jpg new file mode 100644 index 0000000..3a0f7f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_27.jpg new file mode 100644 index 0000000..30dd1b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_28.jpg new file mode 100644 index 0000000..ad09db4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_29.jpg new file mode 100644 index 0000000..cb77ca1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_ashbringercorrupt.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_ashbringercorrupt.jpg new file mode 100644 index 0000000..d536f50 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_ashbringercorrupt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_01.jpg new file mode 100644 index 0000000..f8af05b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_02.jpg new file mode 100644 index 0000000..51fb519 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_03.jpg new file mode 100644 index 0000000..d71e761 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blacksmithing_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_b_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_b_01.jpg new file mode 100644 index 0000000..4da8c99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_b_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_b_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_b_02.jpg new file mode 100644 index 0000000..072faf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_b_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_01.jpg new file mode 100644 index 0000000..6183c21 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_02.jpg new file mode 100644 index 0000000..5bb728a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_03.jpg new file mode 100644 index 0000000..fc9414e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_2h_blood_c_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_30.jpg new file mode 100644 index 0000000..6b25ee9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_31.jpg new file mode 100644 index 0000000..8cfe947 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_32.jpg new file mode 100644 index 0000000..ffdf926 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_33.jpg new file mode 100644 index 0000000..6401285 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_34.jpg new file mode 100644 index 0000000..cae2339 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_35.jpg new file mode 100644 index 0000000..8130362 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_36.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_36.jpg new file mode 100644 index 0000000..c95c33d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_36.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_37.jpg new file mode 100644 index 0000000..769e11f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_38.jpg new file mode 100644 index 0000000..8c27b01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_39.jpg new file mode 100644 index 0000000..c9c353f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_40.jpg new file mode 100644 index 0000000..2a31bd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_41.jpg new file mode 100644 index 0000000..72c1731 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_42.jpg new file mode 100644 index 0000000..3b8e1f4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_43.jpg new file mode 100644 index 0000000..38f6ba4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_44.jpg new file mode 100644 index 0000000..b4019fd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_45.jpg new file mode 100644 index 0000000..44cda7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_46.jpg new file mode 100644 index 0000000..101c5f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_47.jpg new file mode 100644 index 0000000..fefd776 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_48.jpg new file mode 100644 index 0000000..f805f87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_49.jpg new file mode 100644 index 0000000..79157ea Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_50.jpg new file mode 100644 index 0000000..932d5f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_51.jpg new file mode 100644 index 0000000..aca5609 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_52.jpg new file mode 100644 index 0000000..804e8e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_53.jpg new file mode 100644 index 0000000..6958c21 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_54.jpg new file mode 100644 index 0000000..e546b21 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_55.jpg new file mode 100644 index 0000000..fabf784 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_56.jpg new file mode 100644 index 0000000..804e8e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_57.jpg new file mode 100644 index 0000000..9940038 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_58.jpg new file mode 100644 index 0000000..ffd6c22 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_59.jpg new file mode 100644 index 0000000..7973958 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_60.jpg new file mode 100644 index 0000000..af8ed14 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_61.jpg new file mode 100644 index 0000000..f7176e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_62.jpg new file mode 100644 index 0000000..89d853b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_63.jpg new file mode 100644 index 0000000..58cafec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_64.jpg new file mode 100644 index 0000000..5256980 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_65.jpg new file mode 100644 index 0000000..9c882c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_66.jpg new file mode 100644 index 0000000..cfb4145 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_67.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_67.jpg new file mode 100644 index 0000000..8ffe328 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_67.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_68.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_68.jpg new file mode 100644 index 0000000..c8a03a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_68.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_69.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_69.jpg new file mode 100644 index 0000000..0b2cb73 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_69.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_70.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_70.jpg new file mode 100644 index 0000000..bdc8f49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_70.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_71.jpg new file mode 100644 index 0000000..492ed07 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_72.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_72.jpg new file mode 100644 index 0000000..c30a26c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_72.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_73.jpg new file mode 100644 index 0000000..8f63914 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_74.jpg new file mode 100644 index 0000000..fe803ed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_75.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_75.jpg new file mode 100644 index 0000000..d03d64b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_75.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_76.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_76.jpg new file mode 100644 index 0000000..2e266b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_76.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_77.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_77.jpg new file mode 100644 index 0000000..f21586b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_77.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_78.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_78.jpg new file mode 100644 index 0000000..6a0ae71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_78.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_79.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_79.jpg new file mode 100644 index 0000000..69955e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_79.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_80.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_80.jpg new file mode 100644 index 0000000..0f55f8e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_80.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_81.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_81.jpg new file mode 100644 index 0000000..512196d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_81.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_82.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_82.jpg new file mode 100644 index 0000000..368fe77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_82.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_83.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_83.jpg new file mode 100644 index 0000000..79a8418 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_83.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_84.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_84.jpg new file mode 100644 index 0000000..fc3cb53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_84.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_85.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_85.jpg new file mode 100644 index 0000000..3fe2402 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_85.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_86.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_86.jpg new file mode 100644 index 0000000..f29c997 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_86.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_87.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_87.jpg new file mode 100644 index 0000000..beb5fc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_87.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_88.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_88.jpg new file mode 100644 index 0000000..dbc9b07 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_88.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_89.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_89.jpg new file mode 100644 index 0000000..1f1bb7e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_89.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_90.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_90.jpg new file mode 100644 index 0000000..c7adde7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_90.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_91.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_91.jpg new file mode 100644 index 0000000..1b351aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_91.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_92.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_92.jpg new file mode 100644 index 0000000..1d64935 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_92.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_93.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_93.jpg new file mode 100644 index 0000000..2962e25 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_93.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_94.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_94.jpg new file mode 100644 index 0000000..2826fa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_94.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_bloodelf_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_bloodelf_03.jpg new file mode 100644 index 0000000..2fe61c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_bloodelf_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_01.jpg new file mode 100644 index 0000000..b1c8c1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_02.jpg new file mode 100644 index 0000000..9119a46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_03.jpg new file mode 100644 index 0000000..38ebd9f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_04.jpg new file mode 100644 index 0000000..c7c63f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_05.jpg new file mode 100644 index 0000000..8a72ed5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_06.jpg new file mode 100644 index 0000000..4fd7f5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_07.jpg new file mode 100644 index 0000000..a99455e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_08.jpg new file mode 100644 index 0000000..54b0132 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_sword_draenei_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_01.jpg new file mode 100644 index 0000000..8478eb2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_02.jpg new file mode 100644 index 0000000..68a8922 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_03.jpg new file mode 100644 index 0000000..9fdb4b1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_04.jpg new file mode 100644 index 0000000..1441f86 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_05.jpg new file mode 100644 index 0000000..ed28a35 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_06.jpg new file mode 100644 index 0000000..fdc036e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingaxe_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingknife_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_01.jpg new file mode 100644 index 0000000..9b6e3c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingknife_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_02.jpg new file mode 100644 index 0000000..1d1b973 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingknife_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_03.jpg new file mode 100644 index 0000000..09e3c61 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingknife_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_04.jpg new file mode 100644 index 0000000..1f8e609 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingknife_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_05.jpg new file mode 100644 index 0000000..f9e079a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingknife_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_06.jpg new file mode 100644 index 0000000..8e9cab8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_throwingknife_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_07.jpg new file mode 100644 index 0000000..4437d2d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_throwingknife_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_torch_lit.jpg b/other/AoWoW-master/images/icons/tiny/inv_torch_lit.jpg new file mode 100644 index 0000000..97d8351 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_torch_lit.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_torch_thrown.jpg b/other/AoWoW-master/images/icons/tiny/inv_torch_thrown.jpg new file mode 100644 index 0000000..c170685 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_torch_thrown.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_torch_unlit.jpg b/other/AoWoW-master/images/icons/tiny/inv_torch_unlit.jpg new file mode 100644 index 0000000..02f05bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_torch_unlit.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_01.jpg new file mode 100644 index 0000000..2ce3bc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_02.jpg new file mode 100644 index 0000000..578bea1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_03.jpg new file mode 100644 index 0000000..15fef51 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_tradeskillitem_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_honorhold.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_honorhold.jpg new file mode 100644 index 0000000..0f9b139 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_honorhold.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas01.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas01.jpg new file mode 100644 index 0000000..eb3380c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas02.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas02.jpg new file mode 100644 index 0000000..5cb8f22 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas03.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas03.jpg new file mode 100644 index 0000000..00ba79f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas04.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas04.jpg new file mode 100644 index 0000000..439ef49 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas05.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas05.jpg new file mode 100644 index 0000000..47a6afe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas06.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas06.jpg new file mode 100644 index 0000000..f569dc0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_naxxramas06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_trinket_thrallmar.jpg b/other/AoWoW-master/images/icons/tiny/inv_trinket_thrallmar.jpg new file mode 100644 index 0000000..1d1d86d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_trinket_thrallmar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinecolognebottle.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinecolognebottle.jpg new file mode 100644 index 0000000..04f2ffb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinecolognebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentineperfumebottle.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentineperfumebottle.jpg new file mode 100644 index 0000000..5c99ad0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentineperfumebottle.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinepinkrocket.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinepinkrocket.jpg new file mode 100644 index 0000000..7336e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinepinkrocket.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinesboxofchocolates01.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinesboxofchocolates01.jpg new file mode 100644 index 0000000..34edff9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinesboxofchocolates01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinesboxofchocolates02.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinesboxofchocolates02.jpg new file mode 100644 index 0000000..1f8c1fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinesboxofchocolates02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinescandy.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinescandy.jpg new file mode 100644 index 0000000..457a779 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinescandy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinescandysack.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinescandysack.jpg new file mode 100644 index 0000000..457c56b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinescandysack.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinescard01.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinescard01.jpg new file mode 100644 index 0000000..a9753c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinescard01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinescard02.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinescard02.jpg new file mode 100644 index 0000000..61ad523 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinescard02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinescardtornleft.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinescardtornleft.jpg new file mode 100644 index 0000000..66ae148 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinescardtornleft.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentinescardtornright.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentinescardtornright.jpg new file mode 100644 index 0000000..0fe57e7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentinescardtornright.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate01.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate01.jpg new file mode 100644 index 0000000..d22a410 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate02.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate02.jpg new file mode 100644 index 0000000..3e7eec6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate03.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate03.jpg new file mode 100644 index 0000000..a923e72 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate04.jpg b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate04.jpg new file mode 100644 index 0000000..5c0a7de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_valentineschocolate04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_waepon_bow_zulgrub_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_waepon_bow_zulgrub_d_01.jpg new file mode 100644 index 0000000..4144177 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_waepon_bow_zulgrub_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_waepon_bow_zulgrub_d_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_waepon_bow_zulgrub_d_02.jpg new file mode 100644 index 0000000..f5458c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_waepon_bow_zulgrub_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_01.jpg new file mode 100644 index 0000000..c75a2ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_02.jpg new file mode 100644 index 0000000..5715f05 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_03.jpg new file mode 100644 index 0000000..9bc3116 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_04.jpg new file mode 100644 index 0000000..678277a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_05.jpg new file mode 100644 index 0000000..140c162 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_06.jpg new file mode 100644 index 0000000..dbf5526 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_07.jpg new file mode 100644 index 0000000..311d654 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_08.jpg new file mode 100644 index 0000000..c04ed8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_09.jpg new file mode 100644 index 0000000..648d339 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_10.jpg new file mode 100644 index 0000000..ff6578d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_11.jpg new file mode 100644 index 0000000..1af4b5c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_12.jpg new file mode 100644 index 0000000..bc0d6e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_14.jpg new file mode 100644 index 0000000..7ceeb24 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_15.jpg new file mode 100644 index 0000000..acdf8df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_16.jpg new file mode 100644 index 0000000..7609d98 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_17.jpg new file mode 100644 index 0000000..784ca65 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_18.jpg new file mode 100644 index 0000000..1105e9c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_19.jpg new file mode 100644 index 0000000..b72d4d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_1h_stratholme_d_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_1h_stratholme_d_01.jpg new file mode 100644 index 0000000..57d3d3c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_1h_stratholme_d_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_1h_stratholme_d_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_1h_stratholme_d_02.jpg new file mode 100644 index 0000000..4244019 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_1h_stratholme_d_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_20.jpg new file mode 100644 index 0000000..83201b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_21.jpg new file mode 100644 index 0000000..e7bdeb1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_22.jpg new file mode 100644 index 0000000..f59a8f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_23.jpg new file mode 100644 index 0000000..9198b35 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_24.jpg new file mode 100644 index 0000000..9868c9c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_wand_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_wand_25.jpg new file mode 100644 index 0000000..4f7f7fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_wand_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_01.jpg new file mode 100644 index 0000000..8d2a3c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_02.jpg new file mode 100644 index 0000000..cc914cb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_03.jpg new file mode 100644 index 0000000..6127eed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_04.jpg new file mode 100644 index 0000000..69e29e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_05.jpg new file mode 100644 index 0000000..a1f1403 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_06.jpg new file mode 100644 index 0000000..c5d508a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_07.jpg new file mode 100644 index 0000000..18ed2fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_08.jpg new file mode 100644 index 0000000..d2f0ff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_09.jpg new file mode 100644 index 0000000..b4be978 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_10.jpg new file mode 100644 index 0000000..8ebb831 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_11.jpg new file mode 100644 index 0000000..2f8d434 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_12.jpg new file mode 100644 index 0000000..8b0a0eb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_13.jpg new file mode 100644 index 0000000..510bfb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_14.jpg new file mode 100644 index 0000000..a8e9263 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_15.jpg new file mode 100644 index 0000000..cb3cf76 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_16.jpg new file mode 100644 index 0000000..3bbee87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_17.jpg new file mode 100644 index 0000000..b3f6960 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_18.jpg new file mode 100644 index 0000000..a5487c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_19.jpg new file mode 100644 index 0000000..0356f13 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_20.jpg new file mode 100644 index 0000000..e5c5e67 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_28.jpg new file mode 100644 index 0000000..a8e9263 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_30.jpg new file mode 100644 index 0000000..8750e2e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_31.jpg new file mode 100644 index 0000000..2e0a0aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_32.jpg new file mode 100644 index 0000000..b15f4d6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_37.jpg new file mode 100644 index 0000000..e5daa6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_38.jpg new file mode 100644 index 0000000..9efc2a9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_39.jpg new file mode 100644 index 0000000..f4028ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_bow_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_01.jpg new file mode 100644 index 0000000..561608f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_02.jpg new file mode 100644 index 0000000..c56f488 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_03.jpg new file mode 100644 index 0000000..dac7aef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_04.jpg new file mode 100644 index 0000000..3704881 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_05.jpg new file mode 100644 index 0000000..b8bb0e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_06.jpg new file mode 100644 index 0000000..6d352b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_07.jpg new file mode 100644 index 0000000..5e2c706 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_08.jpg new file mode 100644 index 0000000..0a633db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_09.jpg new file mode 100644 index 0000000..062a4bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_10.jpg new file mode 100644 index 0000000..9773511 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_11.jpg new file mode 100644 index 0000000..bf671f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_12.jpg new file mode 100644 index 0000000..ed8d32b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_13.jpg new file mode 100644 index 0000000..2c772ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_14.jpg new file mode 100644 index 0000000..90beceb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_15.jpg new file mode 100644 index 0000000..9a7f1c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_16.jpg new file mode 100644 index 0000000..97364e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_17.jpg new file mode 100644 index 0000000..c6bad3d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_18.jpg new file mode 100644 index 0000000..5ee5a25 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_19.jpg new file mode 100644 index 0000000..5f54c75 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_20.jpg new file mode 100644 index 0000000..eaadf34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_25.jpg new file mode 100644 index 0000000..4df8749 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_26.jpg new file mode 100644 index 0000000..11ca360 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_crossbow_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_glave_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_glave_01.jpg new file mode 100644 index 0000000..96f3b79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_glave_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halbard_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halbard_01.jpg new file mode 100644 index 0000000..78773d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halbard_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd13.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd13.jpg new file mode 100644 index 0000000..049f688 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd14.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd14.jpg new file mode 100644 index 0000000..9a79eae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd15.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd15.jpg new file mode 100644 index 0000000..f880b68 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd16.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd16.jpg new file mode 100644 index 0000000..579df1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd17.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd17.jpg new file mode 100644 index 0000000..cc94547 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd18.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd18.jpg new file mode 100644 index 0000000..d7629fb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd19.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd19.jpg new file mode 100644 index 0000000..f6c19e4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_02.jpg new file mode 100644 index 0000000..c9e4e8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_03.jpg new file mode 100644 index 0000000..b1fe97c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_04.jpg new file mode 100644 index 0000000..46608dc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_05.jpg new file mode 100644 index 0000000..79b7487 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_06.jpg new file mode 100644 index 0000000..ecfeaef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_07.jpg new file mode 100644 index 0000000..b31599f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_08.jpg new file mode 100644 index 0000000..9e62cd6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_09.jpg new file mode 100644 index 0000000..28bc215 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_10.jpg new file mode 100644 index 0000000..743cc53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_11.jpg new file mode 100644 index 0000000..4c2ed38 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_12.jpg new file mode 100644 index 0000000..fb15c25 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_20.jpg new file mode 100644 index 0000000..f1356f9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_22.jpg new file mode 100644 index 0000000..11b507d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_ahnqiraj.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_ahnqiraj.jpg new file mode 100644 index 0000000..f3e0607 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_halberd_ahnqiraj.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_01.jpg new file mode 100644 index 0000000..13e0cc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_02.jpg new file mode 100644 index 0000000..a748439 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_03.jpg new file mode 100644 index 0000000..bc24805 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_04.jpg new file mode 100644 index 0000000..c335c0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_05.jpg new file mode 100644 index 0000000..191dbf2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_06.jpg new file mode 100644 index 0000000..4eb0fa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_07.jpg new file mode 100644 index 0000000..9ee0890 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_08.jpg new file mode 100644 index 0000000..618ed6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_09.jpg new file mode 100644 index 0000000..63e548d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_10.jpg new file mode 100644 index 0000000..aa9fcb6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_11.jpg new file mode 100644 index 0000000..b645a44 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_12.jpg new file mode 100644 index 0000000..5dbecd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_13.jpg new file mode 100644 index 0000000..09bd29f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_14.jpg new file mode 100644 index 0000000..9e84284 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_15.jpg new file mode 100644 index 0000000..9ed946a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_16.jpg new file mode 100644 index 0000000..117d1b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_hand_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_01.jpg new file mode 100644 index 0000000..254df0b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_02.jpg new file mode 100644 index 0000000..d95e9a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_03.jpg new file mode 100644 index 0000000..cbce3aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_04.jpg new file mode 100644 index 0000000..fd81c02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_05.jpg new file mode 100644 index 0000000..ef9e1e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_06.jpg new file mode 100644 index 0000000..c917803 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_07.jpg new file mode 100644 index 0000000..6e9c8a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_08.jpg new file mode 100644 index 0000000..129cbc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_09.jpg new file mode 100644 index 0000000..dafbab6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_10.jpg new file mode 100644 index 0000000..38fdb92 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_11.jpg new file mode 100644 index 0000000..ef5f4e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_13.jpg new file mode 100644 index 0000000..51cec59 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_14.jpg new file mode 100644 index 0000000..d857c41 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_15.jpg new file mode 100644 index 0000000..a8be8d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_16.jpg new file mode 100644 index 0000000..2179796 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_17.jpg new file mode 100644 index 0000000..f0a64b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_18.jpg new file mode 100644 index 0000000..78dde1a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_19.jpg new file mode 100644 index 0000000..282f3c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_20.jpg new file mode 100644 index 0000000..e6e346f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_21.jpg new file mode 100644 index 0000000..ae086e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_22.jpg new file mode 100644 index 0000000..7af3d17 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_23.jpg new file mode 100644 index 0000000..ab65d29 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_24.jpg new file mode 100644 index 0000000..cf97271 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_rifle_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_01.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_01.jpg new file mode 100644 index 0000000..ff1545d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_02.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_02.jpg new file mode 100644 index 0000000..2fa4e3b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_03.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_03.jpg new file mode 100644 index 0000000..ddfcd5a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_04.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_04.jpg new file mode 100644 index 0000000..ecdaa6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_05.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_05.jpg new file mode 100644 index 0000000..a6b5835 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_05.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_06.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_06.jpg new file mode 100644 index 0000000..ceb8274 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_06.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_07.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_07.jpg new file mode 100644 index 0000000..f5c10c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_07.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_08.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_08.jpg new file mode 100644 index 0000000..21b07e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_08.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_09.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_09.jpg new file mode 100644 index 0000000..b61c46c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_09.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_10.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_10.jpg new file mode 100644 index 0000000..7f2618b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_10.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_11.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_11.jpg new file mode 100644 index 0000000..089465f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_11.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_12.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_12.jpg new file mode 100644 index 0000000..5217b41 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_12.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_13.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_13.jpg new file mode 100644 index 0000000..a46d072 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_13.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_14.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_14.jpg new file mode 100644 index 0000000..6312c97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_14.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_15.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_15.jpg new file mode 100644 index 0000000..4417a18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_15.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_16.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_16.jpg new file mode 100644 index 0000000..9b13780 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_16.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_17.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_17.jpg new file mode 100644 index 0000000..b83b5c3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_17.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_18.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_18.jpg new file mode 100644 index 0000000..8b91c29 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_18.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_19.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_19.jpg new file mode 100644 index 0000000..3b3e9d2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_19.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_20.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_20.jpg new file mode 100644 index 0000000..94c1347 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_20.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_21.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_21.jpg new file mode 100644 index 0000000..c95d5f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_21.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_22.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_22.jpg new file mode 100644 index 0000000..4daff8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_22.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_23.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_23.jpg new file mode 100644 index 0000000..f477c14 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_23.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_24.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_24.jpg new file mode 100644 index 0000000..00fa518 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_24.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_25.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_25.jpg new file mode 100644 index 0000000..2d187b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_25.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_26.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_26.jpg new file mode 100644 index 0000000..a6b9a11 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_26.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_27.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_27.jpg new file mode 100644 index 0000000..9b570a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_27.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_28.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_28.jpg new file mode 100644 index 0000000..83f0c11 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_28.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_29.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_29.jpg new file mode 100644 index 0000000..4a70119 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_29.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_30.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_30.jpg new file mode 100644 index 0000000..8e5b755 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_30.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_31.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_31.jpg new file mode 100644 index 0000000..33c81e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_31.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_32.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_32.jpg new file mode 100644 index 0000000..679839e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_32.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_33.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_33.jpg new file mode 100644 index 0000000..42765f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_33.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_34.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_34.jpg new file mode 100644 index 0000000..fb2e85f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_34.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_35.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_35.jpg new file mode 100644 index 0000000..0f2939f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_35.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_37.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_37.jpg new file mode 100644 index 0000000..c53d9cc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_37.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_38.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_38.jpg new file mode 100644 index 0000000..806037e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_38.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_39.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_39.jpg new file mode 100644 index 0000000..0b47af3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_39.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_40.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_40.jpg new file mode 100644 index 0000000..f7f4cc9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_40.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_41.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_41.jpg new file mode 100644 index 0000000..07dc8d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_41.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_42.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_42.jpg new file mode 100644 index 0000000..47a4e36 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_42.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_43.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_43.jpg new file mode 100644 index 0000000..a7fdf22 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_43.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_44.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_44.jpg new file mode 100644 index 0000000..10670e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_44.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_45.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_45.jpg new file mode 100644 index 0000000..adfc974 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_45.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_46.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_46.jpg new file mode 100644 index 0000000..a7cd74e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_46.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_47.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_47.jpg new file mode 100644 index 0000000..57a4a30 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_47.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_48.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_48.jpg new file mode 100644 index 0000000..7bf9f70 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_48.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_49.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_49.jpg new file mode 100644 index 0000000..5562c2e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_49.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_50.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_50.jpg new file mode 100644 index 0000000..d87a216 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_50.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_51.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_51.jpg new file mode 100644 index 0000000..54a97d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_51.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_52.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_52.jpg new file mode 100644 index 0000000..b0ee0e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_52.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_53.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_53.jpg new file mode 100644 index 0000000..c910a6d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_53.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_54.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_54.jpg new file mode 100644 index 0000000..5963e84 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_54.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_55.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_55.jpg new file mode 100644 index 0000000..b19f545 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_55.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_56.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_56.jpg new file mode 100644 index 0000000..58bff43 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_56.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_57.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_57.jpg new file mode 100644 index 0000000..14e2862 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_57.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_58.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_58.jpg new file mode 100644 index 0000000..aae0519 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_58.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_59.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_59.jpg new file mode 100644 index 0000000..6363343 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_59.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_60.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_60.jpg new file mode 100644 index 0000000..63b21a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_60.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_61.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_61.jpg new file mode 100644 index 0000000..e0def77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_61.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_62.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_62.jpg new file mode 100644 index 0000000..ee11c4d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_62.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_63.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_63.jpg new file mode 100644 index 0000000..d286ac5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_63.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_64.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_64.jpg new file mode 100644 index 0000000..8d75b52 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_64.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_65.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_65.jpg new file mode 100644 index 0000000..96b2688 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_65.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_66.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_66.jpg new file mode 100644 index 0000000..669ddd5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_66.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_71.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_71.jpg new file mode 100644 index 0000000..5031ad6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_71.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_73.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_73.jpg new file mode 100644 index 0000000..e81fbca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_73.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_74.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_74.jpg new file mode 100644 index 0000000..706de91 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_74.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_75.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_75.jpg new file mode 100644 index 0000000..614061e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_75.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_78.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_78.jpg new file mode 100644 index 0000000..d956240 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_78.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_79.jpg b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_79.jpg new file mode 100644 index 0000000..31784c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_weapon_shortblade_79.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/inv_zulgurubtrinket.jpg b/other/AoWoW-master/images/icons/tiny/inv_zulgurubtrinket.jpg new file mode 100644 index 0000000..648d81a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/inv_zulgurubtrinket.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/mail_gmicon.jpg b/other/AoWoW-master/images/icons/tiny/mail_gmicon.jpg new file mode 100644 index 0000000..201a8d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/mail_gmicon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/racial_dwarf_findtreasure.jpg b/other/AoWoW-master/images/icons/tiny/racial_dwarf_findtreasure.jpg new file mode 100644 index 0000000..816e1b3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/racial_dwarf_findtreasure.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/racial_orc_berserkerstrength.jpg b/other/AoWoW-master/images/icons/tiny/racial_orc_berserkerstrength.jpg new file mode 100644 index 0000000..b37d5c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/racial_orc_berserkerstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/racial_troll_berserk.jpg b/other/AoWoW-master/images/icons/tiny/racial_troll_berserk.jpg new file mode 100644 index 0000000..ed11604 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/racial_troll_berserk.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane01.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane01.jpg new file mode 100644 index 0000000..c262ffe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane02.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane02.jpg new file mode 100644 index 0000000..bef0a7f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane03.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane03.jpg new file mode 100644 index 0000000..d64da96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane03.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane04.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane04.jpg new file mode 100644 index 0000000..0028c6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcane04.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_arcanepotency.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcanepotency.jpg new file mode 100644 index 0000000..7876dcd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcanepotency.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_arcaneresilience.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcaneresilience.jpg new file mode 100644 index 0000000..92d6225 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcaneresilience.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_arcanetorrent.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcanetorrent.jpg new file mode 100644 index 0000000..5460a53 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_arcanetorrent.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_blast.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_blast.jpg new file mode 100644 index 0000000..ad95fad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_blast.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_blink.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_blink.jpg new file mode 100644 index 0000000..6407904 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_blink.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_focusedpower.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_focusedpower.jpg new file mode 100644 index 0000000..5d96586 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_manatap.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_manatap.jpg new file mode 100644 index 0000000..2b06691 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_manatap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_massdispel.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_massdispel.jpg new file mode 100644 index 0000000..7d3443c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_massdispel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_mindmastery.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_mindmastery.jpg new file mode 100644 index 0000000..6539062 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_mindmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portaldarnassus.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portaldarnassus.jpg new file mode 100644 index 0000000..30738d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portaldarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalexodar.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalexodar.jpg new file mode 100644 index 0000000..50e651e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalironforge.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalironforge.jpg new file mode 100644 index 0000000..5442b8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalorgrimmar.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalorgrimmar.jpg new file mode 100644 index 0000000..c3e2475 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalshattrath.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalshattrath.jpg new file mode 100644 index 0000000..1119867 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalsilvermoon.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalsilvermoon.jpg new file mode 100644 index 0000000..b74dfe3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalstonard.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalstonard.jpg new file mode 100644 index 0000000..72c3232 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalstormwind.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalstormwind.jpg new file mode 100644 index 0000000..a343e99 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portaltheramore.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portaltheramore.jpg new file mode 100644 index 0000000..45b5f0f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portaltheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalthunderbluff.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalthunderbluff.jpg new file mode 100644 index 0000000..6be075b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_portalundercity.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalundercity.jpg new file mode 100644 index 0000000..0f612e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_portalundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_prismaticcloak.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_prismaticcloak.jpg new file mode 100644 index 0000000..7d6301f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_prismaticcloak.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_starfire.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_starfire.jpg new file mode 100644 index 0000000..4855ca2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_starfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_studentofmagic.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_studentofmagic.jpg new file mode 100644 index 0000000..ba13cda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_studentofmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportdarnassus.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportdarnassus.jpg new file mode 100644 index 0000000..c1b3804 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportdarnassus.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportexodar.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportexodar.jpg new file mode 100644 index 0000000..35f7dc2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportexodar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportironforge.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportironforge.jpg new file mode 100644 index 0000000..351374a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportironforge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportmoonglade.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportmoonglade.jpg new file mode 100644 index 0000000..bca0f0c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportmoonglade.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportorgrimmar.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportorgrimmar.jpg new file mode 100644 index 0000000..0382635 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportorgrimmar.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportshattrath.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportshattrath.jpg new file mode 100644 index 0000000..dd14ca4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportshattrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportsilvermoon.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportsilvermoon.jpg new file mode 100644 index 0000000..149c9a1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportsilvermoon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportstonard.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportstonard.jpg new file mode 100644 index 0000000..79db6a6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportstonard.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportstormwind.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportstormwind.jpg new file mode 100644 index 0000000..79ca81a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportstormwind.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleporttheramore.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleporttheramore.jpg new file mode 100644 index 0000000..292f8c9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleporttheramore.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportthunderbluff.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportthunderbluff.jpg new file mode 100644 index 0000000..289784c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportthunderbluff.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportundercity.jpg b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportundercity.jpg new file mode 100644 index 0000000..1545c87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_arcane_teleportundercity.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_brokenheart.jpg b/other/AoWoW-master/images/icons/tiny/spell_brokenheart.jpg new file mode 100644 index 0000000..3317109 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_brokenheart.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_chargenegative.jpg b/other/AoWoW-master/images/icons/tiny/spell_chargenegative.jpg new file mode 100644 index 0000000..a183c8f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_chargenegative.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_chargepositive.jpg b/other/AoWoW-master/images/icons/tiny/spell_chargepositive.jpg new file mode 100644 index 0000000..a326ce8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_chargepositive.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_bluecano.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_bluecano.jpg new file mode 100644 index 0000000..f5030db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_bluecano.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_bluefire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_bluefire.jpg new file mode 100644 index 0000000..b8477f1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_bluefire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_bluefirenova.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_bluefirenova.jpg new file mode 100644 index 0000000..3af603a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_bluefirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_bluefireward.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_bluefireward.jpg new file mode 100644 index 0000000..1e71d77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_bluefireward.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamebolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamebolt.jpg new file mode 100644 index 0000000..796c040 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamebreath.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamebreath.jpg new file mode 100644 index 0000000..dbe72fc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamering.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamering.jpg new file mode 100644 index 0000000..15ad54f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamestrike.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamestrike.jpg new file mode 100644 index 0000000..f1aa2ba Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_blueflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_bluehellfire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_bluehellfire.jpg new file mode 100644 index 0000000..b804b03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_bluehellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_blueimmolation.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_blueimmolation.jpg new file mode 100644 index 0000000..046cabc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_blueimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_bluepyroblast.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_bluepyroblast.jpg new file mode 100644 index 0000000..8f5de8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_bluepyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_bluerainoffire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_bluerainoffire.jpg new file mode 100644 index 0000000..225baca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_bluerainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_burningspeed.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_burningspeed.jpg new file mode 100644 index 0000000..a5a437b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_burningspeed.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_burnout.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_burnout.jpg new file mode 100644 index 0000000..147e9bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_burnout.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_elemental_totem.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_elemental_totem.jpg new file mode 100644 index 0000000..08c0be0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_elemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_elementaldevastation.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_elementaldevastation.jpg new file mode 100644 index 0000000..757d7de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_elementaldevastation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_enchantweapon.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_enchantweapon.jpg new file mode 100644 index 0000000..7c87558 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_enchantweapon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felcano.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felcano.jpg new file mode 100644 index 0000000..4a35082 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felcano.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felfire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felfire.jpg new file mode 100644 index 0000000..61f3310 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felfirenova.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felfirenova.jpg new file mode 100644 index 0000000..4ce68c2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felfirenova.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felfireward.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felfireward.jpg new file mode 100644 index 0000000..7d5186f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felfireward.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felflamebolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamebolt.jpg new file mode 100644 index 0000000..085cdfd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felflamebreath.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamebreath.jpg new file mode 100644 index 0000000..02b896f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felflamering.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamering.jpg new file mode 100644 index 0000000..944ec4f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamering.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felflamestrike.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamestrike.jpg new file mode 100644 index 0000000..0566373 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felflamestrike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felhellfire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felhellfire.jpg new file mode 100644 index 0000000..d50ff96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felhellfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felimmolation.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felimmolation.jpg new file mode 100644 index 0000000..ef309a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felimmolation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felpyroblast.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felpyroblast.jpg new file mode 100644 index 0000000..13bb899 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felpyroblast.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_felrainoffire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_felrainoffire.jpg new file mode 100644 index 0000000..a464c03 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_felrainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_fire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_fire.jpg new file mode 100644 index 0000000..3518ce1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_fire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_firearmor.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_firearmor.jpg new file mode 100644 index 0000000..6c00524 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_firearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_fireball.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_fireball.jpg new file mode 100644 index 0000000..5e990df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_fireball.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_fireball02.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_fireball02.jpg new file mode 100644 index 0000000..1144bde Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_fireball02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_firebolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_firebolt.jpg new file mode 100644 index 0000000..c9563db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_firebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_firebolt02.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_firebolt02.jpg new file mode 100644 index 0000000..63204b9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_firebolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_flameblades.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_flameblades.jpg new file mode 100644 index 0000000..b79eab0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_flameblades.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_flamebolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_flamebolt.jpg new file mode 100644 index 0000000..5d2efc4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_flamebolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_flameshock.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_flameshock.jpg new file mode 100644 index 0000000..92db894 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_flameshock.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_flametounge.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_flametounge.jpg new file mode 100644 index 0000000..8d3c2f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_flametounge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_flare.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_flare.jpg new file mode 100644 index 0000000..6f451d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_flare.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_frostresistancetotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_frostresistancetotem.jpg new file mode 100644 index 0000000..24e1dda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_frostresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_immolation.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_immolation.jpg new file mode 100644 index 0000000..3daed04 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_immolation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_incinerate.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_incinerate.jpg new file mode 100644 index 0000000..b3800f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_incinerate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_lavaspawn.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_lavaspawn.jpg new file mode 100644 index 0000000..53d87b0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_lavaspawn.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_masterofelements.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_masterofelements.jpg new file mode 100644 index 0000000..10fb3cd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_masterofelements.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_meteorstorm.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_meteorstorm.jpg new file mode 100644 index 0000000..95b4ad7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_meteorstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_moltenblood.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_moltenblood.jpg new file mode 100644 index 0000000..5a26ed3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_moltenblood.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_playingwithfire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_playingwithfire.jpg new file mode 100644 index 0000000..0ff7ff8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_playingwithfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_sealoffire.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_sealoffire.jpg new file mode 100644 index 0000000..c5ea7c5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_sealoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_searingtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_searingtotem.jpg new file mode 100644 index 0000000..47816d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_searingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_selfdestruct.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_selfdestruct.jpg new file mode 100644 index 0000000..53233a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_selfdestruct.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_soulburn.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_soulburn.jpg new file mode 100644 index 0000000..5f3f5f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_soulburn.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_sunkey.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_sunkey.jpg new file mode 100644 index 0000000..e11c6aa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_sunkey.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_totemofwrath.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_totemofwrath.jpg new file mode 100644 index 0000000..c15f34e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_totemofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_volcano.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_volcano.jpg new file mode 100644 index 0000000..ef4934d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_volcano.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fire_windsofwoe.jpg b/other/AoWoW-master/images/icons/tiny/spell_fire_windsofwoe.jpg new file mode 100644 index 0000000..35bd335 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fire_windsofwoe.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_fireresistancetotem_01.jpg b/other/AoWoW-master/images/icons/tiny/spell_fireresistancetotem_01.jpg new file mode 100644 index 0000000..0ce6b1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_fireresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_arcticwinds.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_arcticwinds.jpg new file mode 100644 index 0000000..d9a87fa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_arcticwinds.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_chainsofice.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_chainsofice.jpg new file mode 100644 index 0000000..8624577 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_chainsofice.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_chillingarmor.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_chillingarmor.jpg new file mode 100644 index 0000000..c0dc4b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_chillingarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_chillingblast.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_chillingblast.jpg new file mode 100644 index 0000000..50628c6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_chillingblast.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_chillingbolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_chillingbolt.jpg new file mode 100644 index 0000000..3ace525 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_chillingbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_coldhearted.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_coldhearted.jpg new file mode 100644 index 0000000..852a81e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_coldhearted.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_fireresistancetotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_fireresistancetotem.jpg new file mode 100644 index 0000000..6431296 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_fireresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_freezingbreath.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_freezingbreath.jpg new file mode 100644 index 0000000..37c1e28 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_freezingbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frost.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frost.jpg new file mode 100644 index 0000000..5c814b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frost.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostarmor.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostarmor.jpg new file mode 100644 index 0000000..3f51c34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostarmor02.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostarmor02.jpg new file mode 100644 index 0000000..5dd8f6b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostarmor02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostblast.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostblast.jpg new file mode 100644 index 0000000..b087597 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostblast.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostbolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostbolt.jpg new file mode 100644 index 0000000..57c4ec7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostbolt02.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostbolt02.jpg new file mode 100644 index 0000000..dd48412 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostbolt02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostbrand.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostbrand.jpg new file mode 100644 index 0000000..02af13e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostbrand.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostnova.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostnova.jpg new file mode 100644 index 0000000..abbacd1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostnova.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostshock.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostshock.jpg new file mode 100644 index 0000000..624624b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostshock.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frostward.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frostward.jpg new file mode 100644 index 0000000..3e961bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frostward.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_frozencore.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_frozencore.jpg new file mode 100644 index 0000000..a67937d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_frozencore.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_glacier.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_glacier.jpg new file mode 100644 index 0000000..26a064c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_glacier.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_iceclaw.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_iceclaw.jpg new file mode 100644 index 0000000..c860db9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_iceclaw.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_icefloes.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_icefloes.jpg new file mode 100644 index 0000000..27f8cb5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_icefloes.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_iceshard.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_iceshard.jpg new file mode 100644 index 0000000..404c0ee Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_iceshard.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_iceshock.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_iceshock.jpg new file mode 100644 index 0000000..f0692a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_iceshock.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_icestorm.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_icestorm.jpg new file mode 100644 index 0000000..398f130 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_icestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_manaburn.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_manaburn.jpg new file mode 100644 index 0000000..da4be83 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_manarecharge.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_manarecharge.jpg new file mode 100644 index 0000000..c36b328 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_manarecharge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_stun.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_stun.jpg new file mode 100644 index 0000000..2f2df1a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_stun.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_summonwaterelemental.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_summonwaterelemental.jpg new file mode 100644 index 0000000..c993b3f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_summonwaterelemental.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_summonwaterelemental_2.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_summonwaterelemental_2.jpg new file mode 100644 index 0000000..1a5693a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_summonwaterelemental_2.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_windwalkon.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_windwalkon.jpg new file mode 100644 index 0000000..03d2e71 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_windwalkon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_wisp.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_wisp.jpg new file mode 100644 index 0000000..a20d7ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_wisp.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frost_wizardmark.jpg b/other/AoWoW-master/images/icons/tiny/spell_frost_wizardmark.jpg new file mode 100644 index 0000000..dbef602 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frost_wizardmark.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_frostresistancetotem_01.jpg b/other/AoWoW-master/images/icons/tiny/spell_frostresistancetotem_01.jpg new file mode 100644 index 0000000..abf0102 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_frostresistancetotem_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holiday_tow_spicecloud.jpg b/other/AoWoW-master/images/icons/tiny/spell_holiday_tow_spicecloud.jpg new file mode 100644 index 0000000..9864e01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holiday_tow_spicecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_absolution.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_absolution.jpg new file mode 100644 index 0000000..87a9a3b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_absolution.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_arcaneintellect.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_arcaneintellect.jpg new file mode 100644 index 0000000..54b14e9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_arcaneintellect.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_ardentdefender.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_ardentdefender.jpg new file mode 100644 index 0000000..f18bc2c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_ardentdefender.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_ashestoashes.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_ashestoashes.jpg new file mode 100644 index 0000000..c13066c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_ashestoashes.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_auramastery.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_auramastery.jpg new file mode 100644 index 0000000..0224131 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_auramastery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_auraoflight.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_auraoflight.jpg new file mode 100644 index 0000000..3a3a773 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_auraoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_avengersshield.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_avengersshield.jpg new file mode 100644 index 0000000..9deeb7a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_avengersshield.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_avenginewrath.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_avenginewrath.jpg new file mode 100644 index 0000000..fdb7c8a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_avenginewrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blessedlife.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blessedlife.jpg new file mode 100644 index 0000000..d06d274 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blessedlife.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blessedrecovery.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blessedrecovery.jpg new file mode 100644 index 0000000..1e05894 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blessedrecovery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blessedresillience.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blessedresillience.jpg new file mode 100644 index 0000000..b992b9f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blessedresillience.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofagility.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofagility.jpg new file mode 100644 index 0000000..77a6c30 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofagility.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofprotection.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofprotection.jpg new file mode 100644 index 0000000..f5926b7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofstamina.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofstamina.jpg new file mode 100644 index 0000000..8d1c47a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofstrength.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofstrength.jpg new file mode 100644 index 0000000..06620da Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blessingofstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_blindingheal.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_blindingheal.jpg new file mode 100644 index 0000000..8f6dc6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_blindingheal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_championsbond.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_championsbond.jpg new file mode 100644 index 0000000..626f4d7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_championsbond.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_championsgrace.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_championsgrace.jpg new file mode 100644 index 0000000..ddec1ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_championsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_chastise.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_chastise.jpg new file mode 100644 index 0000000..ac7e383 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_chastise.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_circleofrenewal.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_circleofrenewal.jpg new file mode 100644 index 0000000..084538f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_circleofrenewal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_consumemagic.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_consumemagic.jpg new file mode 100644 index 0000000..a68d99a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_consumemagic.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_crusade.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_crusade.jpg new file mode 100644 index 0000000..45a61ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_crusade.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_crusaderaura.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_crusaderaura.jpg new file mode 100644 index 0000000..79843f7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_crusaderaura.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_crusaderstrike.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_crusaderstrike.jpg new file mode 100644 index 0000000..9f43672 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_crusaderstrike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_devotion.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_devotion.jpg new file mode 100644 index 0000000..2a326ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_devotion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_devotionaura.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_devotionaura.jpg new file mode 100644 index 0000000..537f73e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_devotionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_dispelmagic.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_dispelmagic.jpg new file mode 100644 index 0000000..ad2d3e5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_dispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_divineillumination.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_divineillumination.jpg new file mode 100644 index 0000000..3c69532 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_divineillumination.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_divineintervention.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_divineintervention.jpg new file mode 100644 index 0000000..116f327 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_divineintervention.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_divinepurpose.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_divinepurpose.jpg new file mode 100644 index 0000000..c2bd21d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_divinepurpose.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_divinespirit.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_divinespirit.jpg new file mode 100644 index 0000000..ce7ff0f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_divinespirit.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_dizzy.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_dizzy.jpg new file mode 100644 index 0000000..39dd5bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_dizzy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_elunesgrace.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_elunesgrace.jpg new file mode 100644 index 0000000..56abaf5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_elunesgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_empowerchampion.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_empowerchampion.jpg new file mode 100644 index 0000000..a4d8819 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_empowerchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_excorcism.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_excorcism.jpg new file mode 100644 index 0000000..dc2c881 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_excorcism.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_excorcism_02.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_excorcism_02.jpg new file mode 100644 index 0000000..f03c8d4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_excorcism_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_eyeforaneye.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_eyeforaneye.jpg new file mode 100644 index 0000000..584b7ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_eyeforaneye.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_fanaticism.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_fanaticism.jpg new file mode 100644 index 0000000..379f7a7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_fanaticism.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_fistofjustice.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_fistofjustice.jpg new file mode 100644 index 0000000..97f1974 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_fistofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_flashheal.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_flashheal.jpg new file mode 100644 index 0000000..b905614 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_flashheal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofkings.jpg new file mode 100644 index 0000000..ebf8669 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingoflight.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingoflight.jpg new file mode 100644 index 0000000..0f96443 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofsalvation.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofsalvation.jpg new file mode 100644 index 0000000..ef2ea19 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofsanctuary.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofsanctuary.jpg new file mode 100644 index 0000000..f8d9b6d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofsanctuary.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofwisdom.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofwisdom.jpg new file mode 100644 index 0000000..cabc2df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterblessingofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_greaterheal.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterheal.jpg new file mode 100644 index 0000000..dde7070 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_greaterheal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_harmundeadaura.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_harmundeadaura.jpg new file mode 100644 index 0000000..cb440d5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_harmundeadaura.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_heal.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_heal.jpg new file mode 100644 index 0000000..1f53044 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_heal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_heal02.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_heal02.jpg new file mode 100644 index 0000000..fe0814e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_heal02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_healingaura.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_healingaura.jpg new file mode 100644 index 0000000..bfb04a4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_healingaura.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_healingfocus.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_healingfocus.jpg new file mode 100644 index 0000000..2a32661 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_healingfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_heroism.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_heroism.jpg new file mode 100644 index 0000000..286f645 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_heroism.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_holybolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_holybolt.jpg new file mode 100644 index 0000000..392b15e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_holybolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_holyguidance.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_holyguidance.jpg new file mode 100644 index 0000000..66dd7d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_holyguidance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_holynova.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_holynova.jpg new file mode 100644 index 0000000..6cbf883 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_holynova.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_holyprotection.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_holyprotection.jpg new file mode 100644 index 0000000..bcddfa1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_holyprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_holysmite.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_holysmite.jpg new file mode 100644 index 0000000..56ccf6e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_holysmite.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_improvedresistanceauras.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_improvedresistanceauras.jpg new file mode 100644 index 0000000..f987ee3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_improvedresistanceauras.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_innerfire.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_innerfire.jpg new file mode 100644 index 0000000..615e61f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_innerfire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_lastingdefense.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_lastingdefense.jpg new file mode 100644 index 0000000..f1ef2bf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_lastingdefense.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_layonhands.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_layonhands.jpg new file mode 100644 index 0000000..91cf7ec Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_layonhands.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_lesserheal.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_lesserheal.jpg new file mode 100644 index 0000000..e6e0fda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_lesserheal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_lesserheal02.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_lesserheal02.jpg new file mode 100644 index 0000000..54f6e1a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_lesserheal02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_lightsgrace.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_lightsgrace.jpg new file mode 100644 index 0000000..74f9c48 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_lightsgrace.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_magicalsentry.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_magicalsentry.jpg new file mode 100644 index 0000000..78194ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_magicalsentry.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_mindsooth.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_mindsooth.jpg new file mode 100644 index 0000000..61a50c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_mindsooth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_mindvision.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_mindvision.jpg new file mode 100644 index 0000000..bbebc79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_mindvision.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_nullifydisease.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_nullifydisease.jpg new file mode 100644 index 0000000..d6bf4e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_painsupression.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_painsupression.jpg new file mode 100644 index 0000000..015a0fd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_painsupression.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_persuitofjustice.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_persuitofjustice.jpg new file mode 100644 index 0000000..f625496 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_persuitofjustice.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_power.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_power.jpg new file mode 100644 index 0000000..620ddfe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_power.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_powerinfusion.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_powerinfusion.jpg new file mode 100644 index 0000000..5b77d45 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_powerinfusion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_powerwordshield.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_powerwordshield.jpg new file mode 100644 index 0000000..4363317 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_powerwordshield.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_prayeroffortitude.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_prayeroffortitude.jpg new file mode 100644 index 0000000..5039ff2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_prayeroffortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofhealing.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofhealing.jpg new file mode 100644 index 0000000..f12f9e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofhealing.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofhealing02.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofhealing02.jpg new file mode 100644 index 0000000..2e99143 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofhealing02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofmendingtga.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofmendingtga.jpg new file mode 100644 index 0000000..cc46624 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofmendingtga.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofshadowprotection.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofshadowprotection.jpg new file mode 100644 index 0000000..da0e20b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofshadowprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofspirit.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofspirit.jpg new file mode 100644 index 0000000..41df032 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_prayerofspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_proclaimchampion.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_proclaimchampion.jpg new file mode 100644 index 0000000..fcfbd1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_proclaimchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_pureofheart.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_pureofheart.jpg new file mode 100644 index 0000000..06b320c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_pureofheart.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_purify.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_purify.jpg new file mode 100644 index 0000000..a002b7b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_purify.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_purifyingpower.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_purifyingpower.jpg new file mode 100644 index 0000000..d98e254 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_purifyingpower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_redemption.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_redemption.jpg new file mode 100644 index 0000000..38d88e8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_redemption.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_removecurse.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_removecurse.jpg new file mode 100644 index 0000000..6641de9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_renew.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_renew.jpg new file mode 100644 index 0000000..fb54045 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_renew.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_restoration.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_restoration.jpg new file mode 100644 index 0000000..2783e92 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_restoration.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_resurrection.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_resurrection.jpg new file mode 100644 index 0000000..470b05a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_resurrection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_retribution.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_retribution.jpg new file mode 100644 index 0000000..4bb8530 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_retribution.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_retributionaura.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_retributionaura.jpg new file mode 100644 index 0000000..16aaf78 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_retributionaura.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_revivechampion.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_revivechampion.jpg new file mode 100644 index 0000000..0929418 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_revivechampion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_righteousfury.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_righteousfury.jpg new file mode 100644 index 0000000..9b00139 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_righteousfury.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_righteousnessaura.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_righteousnessaura.jpg new file mode 100644 index 0000000..a9715c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_righteousnessaura.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofblood.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofblood.jpg new file mode 100644 index 0000000..700d8bd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofblood.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealoffury.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealoffury.jpg new file mode 100644 index 0000000..3f15959 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealoffury.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofmight.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofmight.jpg new file mode 100644 index 0000000..0e1536d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofmight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofprotection.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofprotection.jpg new file mode 100644 index 0000000..89a0872 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofrighteousness.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofrighteousness.jpg new file mode 100644 index 0000000..ed5b87a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofrighteousness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofsacrifice.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofsacrifice.jpg new file mode 100644 index 0000000..dfa3e27 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofsalvation.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofsalvation.jpg new file mode 100644 index 0000000..ef311e2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofsalvation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofvalor.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofvalor.jpg new file mode 100644 index 0000000..7f679d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofvalor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofvengeance.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofvengeance.jpg new file mode 100644 index 0000000..2c75c80 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofvengeance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofwisdom.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofwisdom.jpg new file mode 100644 index 0000000..845a62d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofwisdom.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_sealofwrath.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofwrath.jpg new file mode 100644 index 0000000..ed25c75 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_sealofwrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_searinglight.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_searinglight.jpg new file mode 100644 index 0000000..c016647 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_searinglight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_searinglightpriest.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_searinglightpriest.jpg new file mode 100644 index 0000000..4eb6abd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_searinglightpriest.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_senseundead.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_senseundead.jpg new file mode 100644 index 0000000..b7bb449 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_senseundead.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_silence.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_silence.jpg new file mode 100644 index 0000000..5c1104d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_silence.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_spellwarding.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_spellwarding.jpg new file mode 100644 index 0000000..1f11afb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_spellwarding.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_spiritualguidence.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_spiritualguidence.jpg new file mode 100644 index 0000000..835c15e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_spiritualguidence.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_stoicism.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_stoicism.jpg new file mode 100644 index 0000000..da41006 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_stoicism.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_summonchampion.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_summonchampion.jpg new file mode 100644 index 0000000..7b70c79 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_summonchampion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_summonlightwell.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_summonlightwell.jpg new file mode 100644 index 0000000..9d9de27 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_summonlightwell.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_surgeoflight.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_surgeoflight.jpg new file mode 100644 index 0000000..d43a7f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_surgeoflight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_symbolofhope.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_symbolofhope.jpg new file mode 100644 index 0000000..8bb6db7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_symbolofhope.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_turnundead.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_turnundead.jpg new file mode 100644 index 0000000..f180d5f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_turnundead.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_unyieldingfaith.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_unyieldingfaith.jpg new file mode 100644 index 0000000..fffa96d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_unyieldingfaith.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_vindication.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_vindication.jpg new file mode 100644 index 0000000..3ce0cb0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_vindication.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_weaponmastery.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_weaponmastery.jpg new file mode 100644 index 0000000..5b93b1d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_weaponmastery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_holy_wordfortitude.jpg b/other/AoWoW-master/images/icons/tiny/spell_holy_wordfortitude.jpg new file mode 100644 index 0000000..f535cbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_holy_wordfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_ice_lament.jpg b/other/AoWoW-master/images/icons/tiny/spell_ice_lament.jpg new file mode 100644 index 0000000..961e86c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_ice_lament.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_ice_magicdamage.jpg b/other/AoWoW-master/images/icons/tiny/spell_ice_magicdamage.jpg new file mode 100644 index 0000000..a2c8d04 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_ice_magicdamage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_lightning_lightningbolt01.jpg b/other/AoWoW-master/images/icons/tiny/spell_lightning_lightningbolt01.jpg new file mode 100644 index 0000000..cf18486 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_lightning_lightningbolt01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_magearmor.jpg b/other/AoWoW-master/images/icons/tiny/spell_magearmor.jpg new file mode 100644 index 0000000..7aed6b8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_magic_featherfall.jpg b/other/AoWoW-master/images/icons/tiny/spell_magic_featherfall.jpg new file mode 100644 index 0000000..0aec67b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_magic_featherfall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_magic_greaterblessingofkings.jpg b/other/AoWoW-master/images/icons/tiny/spell_magic_greaterblessingofkings.jpg new file mode 100644 index 0000000..1bcff5d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_magic_greaterblessingofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_magic_lesserinvisibilty.jpg b/other/AoWoW-master/images/icons/tiny/spell_magic_lesserinvisibilty.jpg new file mode 100644 index 0000000..bcef705 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_magic_lesserinvisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_magic_magearmor.jpg b/other/AoWoW-master/images/icons/tiny/spell_magic_magearmor.jpg new file mode 100644 index 0000000..f2f4658 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_magic_magearmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_magic_polymorphchicken.jpg b/other/AoWoW-master/images/icons/tiny/spell_magic_polymorphchicken.jpg new file mode 100644 index 0000000..5b5c67d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_magic_polymorphchicken.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_magic_polymorphpig.jpg b/other/AoWoW-master/images/icons/tiny/spell_magic_polymorphpig.jpg new file mode 100644 index 0000000..2eeeaa6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_magic_polymorphpig.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_conjuremanajewel.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_conjuremanajewel.jpg new file mode 100644 index 0000000..cad4341 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_conjuremanajewel.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_drink.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_drink.jpg new file mode 100644 index 0000000..cf044de Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_drink.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_food.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_food.jpg new file mode 100644 index 0000000..e24a6a2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_food.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvpcombatmorale.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvpcombatmorale.jpg new file mode 100644 index 0000000..37720c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvpcombatmorale.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvphonorholdfavor.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvphonorholdfavor.jpg new file mode 100644 index 0000000..9bc386c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvphonorholdfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvpthrallmarfavor.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvpthrallmarfavor.jpg new file mode 100644 index 0000000..ac1016a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_hellifrepvpthrallmarfavor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_warsongbrutal.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_warsongbrutal.jpg new file mode 100644 index 0000000..52260bb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_warsongbrutal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_misc_warsongfocus.jpg b/other/AoWoW-master/images/icons/tiny/spell_misc_warsongfocus.jpg new file mode 100644 index 0000000..cbf290f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_misc_warsongfocus.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_abolishmagic.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_abolishmagic.jpg new file mode 100644 index 0000000..ae662cc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_abolishmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_acid_01.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_acid_01.jpg new file mode 100644 index 0000000..9645e74 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_acid_01.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_agitatingtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_agitatingtotem.jpg new file mode 100644 index 0000000..f8c350c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_agitatingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_ancestralguardian.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_ancestralguardian.jpg new file mode 100644 index 0000000..8a7f0d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_ancestralguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_astralrecal.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_astralrecal.jpg new file mode 100644 index 0000000..a2087d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_astralrecal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_astralrecalgroup.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_astralrecalgroup.jpg new file mode 100644 index 0000000..3816007 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_astralrecalgroup.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_bloodlust.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_bloodlust.jpg new file mode 100644 index 0000000..15f3c78 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_bloodlust.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_brilliance.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_brilliance.jpg new file mode 100644 index 0000000..8785794 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_brilliance.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_callstorm.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_callstorm.jpg new file mode 100644 index 0000000..196b865 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_callstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_chainlightning.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_chainlightning.jpg new file mode 100644 index 0000000..d69361b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_chainlightning.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_corrosivebreath.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_corrosivebreath.jpg new file mode 100644 index 0000000..11ce269 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_corrosivebreath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_crystalball.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_crystalball.jpg new file mode 100644 index 0000000..a40f5ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_crystalball.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_cyclone.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_cyclone.jpg new file mode 100644 index 0000000..c093959 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_cyclone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_diseasecleansingtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_diseasecleansingtotem.jpg new file mode 100644 index 0000000..d21417e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_diseasecleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_drowsy.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_drowsy.jpg new file mode 100644 index 0000000..00665b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_drowsy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_dryaddispelmagic.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_dryaddispelmagic.jpg new file mode 100644 index 0000000..dc3f361 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_dryaddispelmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_earthbind.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_earthbind.jpg new file mode 100644 index 0000000..d2d1a8d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_earthbind.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_earthbindtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_earthbindtotem.jpg new file mode 100644 index 0000000..274ca87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_earthbindtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_earthelemental_totem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_earthelemental_totem.jpg new file mode 100644 index 0000000..641be43 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_earthelemental_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_earthquake.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_earthquake.jpg new file mode 100644 index 0000000..6135668 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_earthquake.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_earthshock.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_earthshock.jpg new file mode 100644 index 0000000..5c8dc09 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_earthshock.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_elementalabsorption.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalabsorption.jpg new file mode 100644 index 0000000..dfdbc22 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalabsorption.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_elementalprecision_1.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalprecision_1.jpg new file mode 100644 index 0000000..353f472 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalprecision_1.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_elementalprecision_2.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalprecision_2.jpg new file mode 100644 index 0000000..bdf5989 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalprecision_2.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_elementalshields.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalshields.jpg new file mode 100644 index 0000000..12395db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_elementalshields.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_enchantarmor.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_enchantarmor.jpg new file mode 100644 index 0000000..8dd0c4b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_enchantarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_eyeofthestorm.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_eyeofthestorm.jpg new file mode 100644 index 0000000..b875d68 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_eyeofthestorm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_faeriefire.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_faeriefire.jpg new file mode 100644 index 0000000..3e39c58 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_faeriefire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_farsight.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_farsight.jpg new file mode 100644 index 0000000..6d1dd56 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_farsight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_focusedmind.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_focusedmind.jpg new file mode 100644 index 0000000..1badefc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_focusedmind.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_forceofnature.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_forceofnature.jpg new file mode 100644 index 0000000..59eebf4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_forceofnature.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_giftofthewaterspirit.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_giftofthewaterspirit.jpg new file mode 100644 index 0000000..5b7e4a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_giftofthewaterspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_giftofthewild.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_giftofthewild.jpg new file mode 100644 index 0000000..0ef16ad Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_giftofthewild.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_groundingtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_groundingtotem.jpg new file mode 100644 index 0000000..88acca0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_groundingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_guardianward.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_guardianward.jpg new file mode 100644 index 0000000..fb3dd58 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_guardianward.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_healingtouch.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_healingtouch.jpg new file mode 100644 index 0000000..2047129 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_healingtouch.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_healingwavegreater.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_healingwavegreater.jpg new file mode 100644 index 0000000..c14c40f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_healingwavegreater.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_healingwavelesser.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_healingwavelesser.jpg new file mode 100644 index 0000000..6f28320 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_healingwavelesser.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_healingway.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_healingway.jpg new file mode 100644 index 0000000..789c14e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_healingway.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_insectswarm.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_insectswarm.jpg new file mode 100644 index 0000000..342cc1f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_insectswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_invisibilitytotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_invisibilitytotem.jpg new file mode 100644 index 0000000..ff7b46b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_invisibilitytotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_invisibilty.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_invisibilty.jpg new file mode 100644 index 0000000..956f358 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_invisibilty.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_lightning.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_lightning.jpg new file mode 100644 index 0000000..aa5a3fa Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_lightning.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_lightningbolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_lightningbolt.jpg new file mode 100644 index 0000000..b77a40b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_lightningbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_lightningoverload.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_lightningoverload.jpg new file mode 100644 index 0000000..a03f35c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_lightningoverload.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_lightningshield.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_lightningshield.jpg new file mode 100644 index 0000000..8ee93f2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_lightningshield.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_magicimmunity.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_magicimmunity.jpg new file mode 100644 index 0000000..aec8d4d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_magicimmunity.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_manaregentotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_manaregentotem.jpg new file mode 100644 index 0000000..82b2305 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_manaregentotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_massteleport.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_massteleport.jpg new file mode 100644 index 0000000..84725fe Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_massteleport.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_mentalquickness.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_mentalquickness.jpg new file mode 100644 index 0000000..84caa8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_mentalquickness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_mirrorimage.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_mirrorimage.jpg new file mode 100644 index 0000000..cb6cd18 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_mirrorimage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_moonglow.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_moonglow.jpg new file mode 100644 index 0000000..c45dd7f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_moonglow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_moonkey.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_moonkey.jpg new file mode 100644 index 0000000..f880376 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_moonkey.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_natureblessing.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_natureblessing.jpg new file mode 100644 index 0000000..7463cdf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_natureblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_natureguardian.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_natureguardian.jpg new file mode 100644 index 0000000..b427a6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_natureguardian.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_natureresistancetotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_natureresistancetotem.jpg new file mode 100644 index 0000000..401342b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_natureresistancetotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_naturesblessing.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_naturesblessing.jpg new file mode 100644 index 0000000..b2a6854 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_naturesblessing.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_natureswrath.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_natureswrath.jpg new file mode 100644 index 0000000..f4e169e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_natureswrath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_naturetouchdecay.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_naturetouchdecay.jpg new file mode 100644 index 0000000..4e1c866 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_naturetouchdecay.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_naturetouchgrow.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_naturetouchgrow.jpg new file mode 100644 index 0000000..6e2ee50 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_naturetouchgrow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_nullifydisease.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_nullifydisease.jpg new file mode 100644 index 0000000..6617060 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_nullifydisease.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_nullifypoison.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_nullifypoison.jpg new file mode 100644 index 0000000..7ef1ddf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_nullifypoison.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_nullifypoison_02.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_nullifypoison_02.jpg new file mode 100644 index 0000000..7d0ae98 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_nullifypoison_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_nullward.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_nullward.jpg new file mode 100644 index 0000000..d68652f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_nullward.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_poisoncleansingtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_poisoncleansingtotem.jpg new file mode 100644 index 0000000..6edc3f5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_poisoncleansingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_polymorph.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_polymorph.jpg new file mode 100644 index 0000000..4a77897 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_polymorph.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_polymorph_cow.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_polymorph_cow.jpg new file mode 100644 index 0000000..67a67c0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_polymorph_cow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_preservation.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_preservation.jpg new file mode 100644 index 0000000..c3c2665 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_preservation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_protectionformnature.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_protectionformnature.jpg new file mode 100644 index 0000000..56f3d65 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_protectionformnature.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_purge.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_purge.jpg new file mode 100644 index 0000000..003e8c1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_purge.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_ravenform.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_ravenform.jpg new file mode 100644 index 0000000..ea5b571 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_ravenform.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_regenerate.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_regenerate.jpg new file mode 100644 index 0000000..c738790 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_regenerate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_regeneration.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_regeneration.jpg new file mode 100644 index 0000000..9143d29 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_regeneration.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_regeneration_02.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_regeneration_02.jpg new file mode 100644 index 0000000..4949a57 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_regeneration_02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_reincarnation.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_reincarnation.jpg new file mode 100644 index 0000000..24dc4a8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_reincarnation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_rejuvenation.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_rejuvenation.jpg new file mode 100644 index 0000000..9fd3905 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_rejuvenation.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_removecurse.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_removecurse.jpg new file mode 100644 index 0000000..5cffc1a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_removecurse.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_removedisease.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_removedisease.jpg new file mode 100644 index 0000000..c89d2f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_removedisease.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_resistmagic.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_resistmagic.jpg new file mode 100644 index 0000000..6e2fe34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_resistmagic.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_resistnature.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_resistnature.jpg new file mode 100644 index 0000000..5557312 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_resistnature.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_rockbiter.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_rockbiter.jpg new file mode 100644 index 0000000..ba384d8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_rockbiter.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_sentinal.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_sentinal.jpg new file mode 100644 index 0000000..082ea8c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_sentinal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_shamanrage.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_shamanrage.jpg new file mode 100644 index 0000000..f50b939 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_shamanrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_skinofearth.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_skinofearth.jpg new file mode 100644 index 0000000..eb02000 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_skinofearth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_sleep.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_sleep.jpg new file mode 100644 index 0000000..15c32ae Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_sleep.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_slow.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_slow.jpg new file mode 100644 index 0000000..e29e805 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_slow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_slowingtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_slowingtotem.jpg new file mode 100644 index 0000000..86679a0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_slowingtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_slowpoison.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_slowpoison.jpg new file mode 100644 index 0000000..beb5630 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_slowpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_spiritarmor.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_spiritarmor.jpg new file mode 100644 index 0000000..7167699 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_spiritarmor.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_spiritwolf.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_spiritwolf.jpg new file mode 100644 index 0000000..206aa93 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_spiritwolf.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_starfall.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_starfall.jpg new file mode 100644 index 0000000..4001b1b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_starfall.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_stoneclawtotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_stoneclawtotem.jpg new file mode 100644 index 0000000..2534a1c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_stoneclawtotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_stoneskintotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_stoneskintotem.jpg new file mode 100644 index 0000000..84010b5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_stoneskintotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_stormreach.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_stormreach.jpg new file mode 100644 index 0000000..31e7ddc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_stormreach.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_stranglevines.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_stranglevines.jpg new file mode 100644 index 0000000..e2c61f0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_stranglevines.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_strength.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_strength.jpg new file mode 100644 index 0000000..619e33f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_strength.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_strengthofearthtotem02.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_strengthofearthtotem02.jpg new file mode 100644 index 0000000..d37d12c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_strengthofearthtotem02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_swiftness.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_swiftness.jpg new file mode 100644 index 0000000..f1186ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_swiftness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_thorns.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_thorns.jpg new file mode 100644 index 0000000..2e669b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_thorns.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_thunderclap.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_thunderclap.jpg new file mode 100644 index 0000000..08c6509 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_thunderclap.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_timestop.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_timestop.jpg new file mode 100644 index 0000000..41d3c82 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_timestop.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_tranquility.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_tranquility.jpg new file mode 100644 index 0000000..1940b10 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_tranquility.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_tremortotem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_tremortotem.jpg new file mode 100644 index 0000000..9167065 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_tremortotem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_undyingstrength.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_undyingstrength.jpg new file mode 100644 index 0000000..64a6489 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_undyingstrength.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_unleashedrage.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_unleashedrage.jpg new file mode 100644 index 0000000..663491d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_unleashedrage.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_unrelentingstorm.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_unrelentingstorm.jpg new file mode 100644 index 0000000..7c69eda Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_unrelentingstorm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_unyeildingstamina.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_unyeildingstamina.jpg new file mode 100644 index 0000000..b599ae0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_unyeildingstamina.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_web.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_web.jpg new file mode 100644 index 0000000..1ae800c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_web.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_windfury.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_windfury.jpg new file mode 100644 index 0000000..6e301db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_windfury.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_wispheal.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_wispheal.jpg new file mode 100644 index 0000000..df5720c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_wispheal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_wispsplode.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_wispsplode.jpg new file mode 100644 index 0000000..516448f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_wispsplode.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_nature_wrathofair_totem.jpg b/other/AoWoW-master/images/icons/tiny/spell_nature_wrathofair_totem.jpg new file mode 100644 index 0000000..c3fd91f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_nature_wrathofair_totem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_abominationexplosion.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_abominationexplosion.jpg new file mode 100644 index 0000000..97395d1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_abominationexplosion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_animatedead.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_animatedead.jpg new file mode 100644 index 0000000..c905374 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_animatedead.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_antimagicshell.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_antimagicshell.jpg new file mode 100644 index 0000000..e35a761 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_antimagicshell.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_antishadow.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_antishadow.jpg new file mode 100644 index 0000000..8693ed3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_antishadow.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_auraofdarkness.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_auraofdarkness.jpg new file mode 100644 index 0000000..d3e3483 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_auraofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_blackplague.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_blackplague.jpg new file mode 100644 index 0000000..1aeeb02 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_blackplague.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_bloodboil.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_bloodboil.jpg new file mode 100644 index 0000000..881546f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_bloodboil.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_brainwash.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_brainwash.jpg new file mode 100644 index 0000000..825026b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_brainwash.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_burningspirit.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_burningspirit.jpg new file mode 100644 index 0000000..a8ef0c4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_burningspirit.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_callofbone.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_callofbone.jpg new file mode 100644 index 0000000..ae5b59d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_callofbone.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_carrionswarm.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_carrionswarm.jpg new file mode 100644 index 0000000..43b7656 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_carrionswarm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_charm.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_charm.jpg new file mode 100644 index 0000000..5051f15 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_charm.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_chilltouch.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_chilltouch.jpg new file mode 100644 index 0000000..90e3cfb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_chilltouch.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_coneofsilence.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_coneofsilence.jpg new file mode 100644 index 0000000..11e5345 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_coneofsilence.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_contagion.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_contagion.jpg new file mode 100644 index 0000000..1b1cd6d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_contagion.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_corpseexplode.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_corpseexplode.jpg new file mode 100644 index 0000000..cbae31f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_corpseexplode.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_creepingplague.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_creepingplague.jpg new file mode 100644 index 0000000..d0d07ca Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_creepingplague.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_cripple.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_cripple.jpg new file mode 100644 index 0000000..74282b2 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_cripple.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_curse.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_curse.jpg new file mode 100644 index 0000000..c7a2e87 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_curse.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofachimonde.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofachimonde.jpg new file mode 100644 index 0000000..341a261 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofachimonde.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofmannoroth.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofmannoroth.jpg new file mode 100644 index 0000000..b7fced8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofmannoroth.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofsargeras.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofsargeras.jpg new file mode 100644 index 0000000..ef5b395 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseofsargeras.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_curseoftounges.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseoftounges.jpg new file mode 100644 index 0000000..ac9732f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_curseoftounges.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_darkritual.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_darkritual.jpg new file mode 100644 index 0000000..60ccb47 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_darkritual.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_darksummoning.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_darksummoning.jpg new file mode 100644 index 0000000..02b84f6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_darksummoning.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_deadofnight.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_deadofnight.jpg new file mode 100644 index 0000000..d8094bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_deadofnight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_deathanddecay.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathanddecay.jpg new file mode 100644 index 0000000..c583765 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathanddecay.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_deathcoil.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathcoil.jpg new file mode 100644 index 0000000..4d47df7 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathcoil.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_deathpact.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathpact.jpg new file mode 100644 index 0000000..a159222 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathpact.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_deathscream.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathscream.jpg new file mode 100644 index 0000000..3a7c301 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_deathscream.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_demonbreath.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_demonbreath.jpg new file mode 100644 index 0000000..30e8abc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_demonbreath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_demonicfortitude.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_demonicfortitude.jpg new file mode 100644 index 0000000..f5b645c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_demonicfortitude.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_demonictactics.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_demonictactics.jpg new file mode 100644 index 0000000..7c7ef39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_demonictactics.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_destructivesoul.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_destructivesoul.jpg new file mode 100644 index 0000000..83c513b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_destructivesoul.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_detectinvisibility.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_detectinvisibility.jpg new file mode 100644 index 0000000..8fd868c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_detectinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_detectlesserinvisibility.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_detectlesserinvisibility.jpg new file mode 100644 index 0000000..793677a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_detectlesserinvisibility.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_enslavedemon.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_enslavedemon.jpg new file mode 100644 index 0000000..4211f6c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_enslavedemon.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_evileye.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_evileye.jpg new file mode 100644 index 0000000..640c8a5 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_evileye.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_felarmour.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_felarmour.jpg new file mode 100644 index 0000000..9292ed9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_felarmour.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_fingerofdeath.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_fingerofdeath.jpg new file mode 100644 index 0000000..26756e3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_fingerofdeath.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_focusedpower.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_focusedpower.jpg new file mode 100644 index 0000000..f8a6fbc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_focusedpower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_fumble.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_fumble.jpg new file mode 100644 index 0000000..e605a34 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_fumble.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_gathershadows.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_gathershadows.jpg new file mode 100644 index 0000000..574b857 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_gathershadows.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_ghostkey.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_ghostkey.jpg new file mode 100644 index 0000000..07fb463 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_ghostkey.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_grimward.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_grimward.jpg new file mode 100644 index 0000000..da541df Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_grimward.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_haunting.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_haunting.jpg new file mode 100644 index 0000000..c05939f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_haunting.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_impphaseshift.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_impphaseshift.jpg new file mode 100644 index 0000000..8a580af Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_impphaseshift.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_improvedvampiricembrace.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_improvedvampiricembrace.jpg new file mode 100644 index 0000000..9a91e7d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_improvedvampiricembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_lastingaffliction.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_lastingaffliction.jpg new file mode 100644 index 0000000..11a5416 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_lastingaffliction.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_lastingafflictions.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_lastingafflictions.jpg new file mode 100644 index 0000000..523d8e1 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_lastingafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_lifedrain.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_lifedrain.jpg new file mode 100644 index 0000000..7175b85 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_lifedrain.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_lifedrain02.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_lifedrain02.jpg new file mode 100644 index 0000000..9b6a38d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_lifedrain02.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_manaburn.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_manaburn.jpg new file mode 100644 index 0000000..06e5927 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_manaburn.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_manafeed.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_manafeed.jpg new file mode 100644 index 0000000..391bb42 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_manafeed.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_metamorphosis.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_metamorphosis.jpg new file mode 100644 index 0000000..d00fb8f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_metamorphosis.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_mindbomb.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_mindbomb.jpg new file mode 100644 index 0000000..630b1ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_mindbomb.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_mindrot.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_mindrot.jpg new file mode 100644 index 0000000..8df6826 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_mindrot.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_mindsteal.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_mindsteal.jpg new file mode 100644 index 0000000..4415e01 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_mindsteal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_misery.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_misery.jpg new file mode 100644 index 0000000..b2669ef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_misery.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_nethercloak.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_nethercloak.jpg new file mode 100644 index 0000000..30a95d0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_nethercloak.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_netherprotection.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_netherprotection.jpg new file mode 100644 index 0000000..1c8ec96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_netherprotection.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_nightofthedead.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_nightofthedead.jpg new file mode 100644 index 0000000..46b0c77 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_nightofthedead.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_painfulafflictions.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_painfulafflictions.jpg new file mode 100644 index 0000000..807c8c8 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_painfulafflictions.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_painspike.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_painspike.jpg new file mode 100644 index 0000000..c190003 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_painspike.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_plaguecloud.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_plaguecloud.jpg new file mode 100644 index 0000000..c6e905e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_plaguecloud.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_possession.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_possession.jpg new file mode 100644 index 0000000..5dd234c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_possession.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_psychicscream.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_psychicscream.jpg new file mode 100644 index 0000000..10de18a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_psychicscream.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_ragingscream.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_ragingscream.jpg new file mode 100644 index 0000000..1914e3f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_ragingscream.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_rainoffire.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_rainoffire.jpg new file mode 100644 index 0000000..dafc417 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_rainoffire.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_raisedead.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_raisedead.jpg new file mode 100644 index 0000000..3852d96 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_raisedead.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_requiem.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_requiem.jpg new file mode 100644 index 0000000..6afed7e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_requiem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_ritualofsacrifice.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_ritualofsacrifice.jpg new file mode 100644 index 0000000..6d25732 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_ritualofsacrifice.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_sacrificialshield.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_sacrificialshield.jpg new file mode 100644 index 0000000..b99e226 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_sacrificialshield.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_scourgebuild.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_scourgebuild.jpg new file mode 100644 index 0000000..ea8489c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_scourgebuild.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_sealofkings.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_sealofkings.jpg new file mode 100644 index 0000000..3c6a872 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_sealofkings.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_seedofdestruction.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_seedofdestruction.jpg new file mode 100644 index 0000000..ca4e31a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_seedofdestruction.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadesofdarkness.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadesofdarkness.jpg new file mode 100644 index 0000000..e4cbc97 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadesofdarkness.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadetruesight.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadetruesight.jpg new file mode 100644 index 0000000..6d4bf46 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadetruesight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowandflame.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowandflame.jpg new file mode 100644 index 0000000..94e0731 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowandflame.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowbolt.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowbolt.jpg new file mode 100644 index 0000000..ffe33a3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowbolt.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowembrace.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowembrace.jpg new file mode 100644 index 0000000..c631bef Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowembrace.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowfiend.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowfiend.jpg new file mode 100644 index 0000000..b657696 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowfiend.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowform.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowform.jpg new file mode 100644 index 0000000..886757d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowform.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowfury.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowfury.jpg new file mode 100644 index 0000000..d5fb9bc Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowfury.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowmend.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowmend.jpg new file mode 100644 index 0000000..131fc8b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowmend.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowpact.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowpact.jpg new file mode 100644 index 0000000..42920d9 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowpact.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowpower.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowpower.jpg new file mode 100644 index 0000000..ecc5f1e Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowpower.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowward.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowward.jpg new file mode 100644 index 0000000..668bc14 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowward.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowworddominate.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowworddominate.jpg new file mode 100644 index 0000000..0410725 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowworddominate.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowwordpain.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowwordpain.jpg new file mode 100644 index 0000000..5435f39 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_shadowwordpain.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_siphonmana.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_siphonmana.jpg new file mode 100644 index 0000000..dca4514 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_siphonmana.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_soothingkiss.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_soothingkiss.jpg new file mode 100644 index 0000000..056947c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_soothingkiss.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_soulgem.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulgem.jpg new file mode 100644 index 0000000..3ccfe0a Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulgem.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech.jpg new file mode 100644 index 0000000..d14ae47 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_1.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_1.jpg new file mode 100644 index 0000000..38f44be Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_1.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_2.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_2.jpg new file mode 100644 index 0000000..e08fa07 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_2.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_3.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_3.jpg new file mode 100644 index 0000000..a636271 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_soulleech_3.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_spectralsight.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_spectralsight.jpg new file mode 100644 index 0000000..bbdca4c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_spectralsight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_summonfelguard.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonfelguard.jpg new file mode 100644 index 0000000..a4d152f Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonfelguard.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_summonfelhunter.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonfelhunter.jpg new file mode 100644 index 0000000..9d5c595 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonfelhunter.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_summonimp.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonimp.jpg new file mode 100644 index 0000000..5279bdd Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonimp.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_summoninfernal.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_summoninfernal.jpg new file mode 100644 index 0000000..4ee533b Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_summoninfernal.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_summonsuccubus.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonsuccubus.jpg new file mode 100644 index 0000000..19759ce Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonsuccubus.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_summonvoidwalker.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonvoidwalker.jpg new file mode 100644 index 0000000..cf3f329 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_summonvoidwalker.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_teleport.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_teleport.jpg new file mode 100644 index 0000000..eb0ee0d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_teleport.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_twilight.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_twilight.jpg new file mode 100644 index 0000000..2581142 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_twilight.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_unholyfrenzy.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_unholyfrenzy.jpg new file mode 100644 index 0000000..fc8b839 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_unholyfrenzy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_unholystrength.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_unholystrength.jpg new file mode 100644 index 0000000..11cf1db Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_unholystrength.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_1.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_1.jpg new file mode 100644 index 0000000..5ffb216 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_1.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_2.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_2.jpg new file mode 100644 index 0000000..c4053fb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_2.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_3.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_3.jpg new file mode 100644 index 0000000..b936e85 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableaffliction_3.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableafllictions.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableafllictions.jpg new file mode 100644 index 0000000..c8af014 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_unstableafllictions.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_unsummonbuilding.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_unsummonbuilding.jpg new file mode 100644 index 0000000..b257ebb Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_unsummonbuilding.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_shadow_vampiricaura.jpg b/other/AoWoW-master/images/icons/tiny/spell_shadow_vampiricaura.jpg new file mode 100644 index 0000000..29d2376 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_shadow_vampiricaura.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_totem_wardofdraining.jpg b/other/AoWoW-master/images/icons/tiny/spell_totem_wardofdraining.jpg new file mode 100644 index 0000000..ceb344d Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_totem_wardofdraining.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_unused.jpg b/other/AoWoW-master/images/icons/tiny/spell_unused.jpg new file mode 100644 index 0000000..d570653 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_unused.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/spell_unused2.jpg b/other/AoWoW-master/images/icons/tiny/spell_unused2.jpg new file mode 100644 index 0000000..9c478e0 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/spell_unused2.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/temp.jpg b/other/AoWoW-master/images/icons/tiny/temp.jpg new file mode 100644 index 0000000..aa82fd4 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/temp.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_alchemy.jpg b/other/AoWoW-master/images/icons/tiny/trade_alchemy.jpg new file mode 100644 index 0000000..20dfd00 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_alchemy.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_blacksmithing.jpg b/other/AoWoW-master/images/icons/tiny/trade_blacksmithing.jpg new file mode 100644 index 0000000..a11eb33 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_blacksmithing.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_brewpoison.jpg b/other/AoWoW-master/images/icons/tiny/trade_brewpoison.jpg new file mode 100644 index 0000000..6898bdf Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_brewpoison.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_engineering.jpg b/other/AoWoW-master/images/icons/tiny/trade_engineering.jpg new file mode 100644 index 0000000..6b61da3 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_engineering.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_engraving.jpg b/other/AoWoW-master/images/icons/tiny/trade_engraving.jpg new file mode 100644 index 0000000..46b0e47 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_engraving.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_fishing.jpg b/other/AoWoW-master/images/icons/tiny/trade_fishing.jpg new file mode 100644 index 0000000..f90d150 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_fishing.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_herbalism.jpg b/other/AoWoW-master/images/icons/tiny/trade_herbalism.jpg new file mode 100644 index 0000000..92b11b6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_herbalism.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_leatherworking.jpg b/other/AoWoW-master/images/icons/tiny/trade_leatherworking.jpg new file mode 100644 index 0000000..c38220c Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_leatherworking.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_mining.jpg b/other/AoWoW-master/images/icons/tiny/trade_mining.jpg new file mode 100644 index 0000000..9e517e6 Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_mining.jpg differ diff --git a/other/AoWoW-master/images/icons/tiny/trade_tailoring.jpg b/other/AoWoW-master/images/icons/tiny/trade_tailoring.jpg new file mode 100644 index 0000000..d1a71ed Binary files /dev/null and b/other/AoWoW-master/images/icons/tiny/trade_tailoring.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/-1.jpg b/other/AoWoW-master/images/maps/enus/normal/-1.jpg new file mode 100644 index 0000000..82eef75 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/-1.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/-2.jpg b/other/AoWoW-master/images/maps/enus/normal/-2.jpg new file mode 100644 index 0000000..b2e8148 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/-2.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/-3.jpg b/other/AoWoW-master/images/maps/enus/normal/-3.jpg new file mode 100644 index 0000000..95a0f93 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/-3.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/-4.jpg b/other/AoWoW-master/images/maps/enus/normal/-4.jpg new file mode 100644 index 0000000..db52c00 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/-4.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1.jpg b/other/AoWoW-master/images/maps/enus/normal/1.jpg new file mode 100644 index 0000000..6d5eff7 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/10.jpg b/other/AoWoW-master/images/maps/enus/normal/10.jpg new file mode 100644 index 0000000..dbc2e61 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/10.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/11.jpg b/other/AoWoW-master/images/maps/enus/normal/11.jpg new file mode 100644 index 0000000..24b5584 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/11.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/12.jpg b/other/AoWoW-master/images/maps/enus/normal/12.jpg new file mode 100644 index 0000000..b876188 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/12.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/130.jpg b/other/AoWoW-master/images/maps/enus/normal/130.jpg new file mode 100644 index 0000000..0e4150a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/130.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/133.jpg b/other/AoWoW-master/images/maps/enus/normal/133.jpg new file mode 100644 index 0000000..afbbcd5 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/133.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1337.jpg b/other/AoWoW-master/images/maps/enus/normal/1337.jpg new file mode 100644 index 0000000..04ed789 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1337.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1377.jpg b/other/AoWoW-master/images/maps/enus/normal/1377.jpg new file mode 100644 index 0000000..551fbc8 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1377.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/139.jpg b/other/AoWoW-master/images/maps/enus/normal/139.jpg new file mode 100644 index 0000000..74f2229 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/139.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/14.jpg b/other/AoWoW-master/images/maps/enus/normal/14.jpg new file mode 100644 index 0000000..e7e57da Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/14.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/141.jpg b/other/AoWoW-master/images/maps/enus/normal/141.jpg new file mode 100644 index 0000000..792ea23 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/141.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1417.jpg b/other/AoWoW-master/images/maps/enus/normal/1417.jpg new file mode 100644 index 0000000..f98ee9b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1417.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/148.jpg b/other/AoWoW-master/images/maps/enus/normal/148.jpg new file mode 100644 index 0000000..fdb2975 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/148.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1497.jpg b/other/AoWoW-master/images/maps/enus/normal/1497.jpg new file mode 100644 index 0000000..da4ae2c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1497.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/15.jpg b/other/AoWoW-master/images/maps/enus/normal/15.jpg new file mode 100644 index 0000000..50a4581 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/15.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1519.jpg b/other/AoWoW-master/images/maps/enus/normal/1519.jpg new file mode 100644 index 0000000..f6d785d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1519.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1537.jpg b/other/AoWoW-master/images/maps/enus/normal/1537.jpg new file mode 100644 index 0000000..84dd6ca Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1537.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1583b.jpg b/other/AoWoW-master/images/maps/enus/normal/1583b.jpg new file mode 100644 index 0000000..10fb249 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1583b.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1584.jpg b/other/AoWoW-master/images/maps/enus/normal/1584.jpg new file mode 100644 index 0000000..fb61269 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1584.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/16.jpg b/other/AoWoW-master/images/maps/enus/normal/16.jpg new file mode 100644 index 0000000..c304ea2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/16.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1637.jpg b/other/AoWoW-master/images/maps/enus/normal/1637.jpg new file mode 100644 index 0000000..89dcf11 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1637.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1638.jpg b/other/AoWoW-master/images/maps/enus/normal/1638.jpg new file mode 100644 index 0000000..c02a94c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1638.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/1657.jpg b/other/AoWoW-master/images/maps/enus/normal/1657.jpg new file mode 100644 index 0000000..49491ae Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/1657.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/17.jpg b/other/AoWoW-master/images/maps/enus/normal/17.jpg new file mode 100644 index 0000000..a31e325 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/17.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/19.jpg b/other/AoWoW-master/images/maps/enus/normal/19.jpg new file mode 100644 index 0000000..375bc81 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/19.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2017.jpg b/other/AoWoW-master/images/maps/enus/normal/2017.jpg new file mode 100644 index 0000000..c21deb4 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2017.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2057.jpg b/other/AoWoW-master/images/maps/enus/normal/2057.jpg new file mode 100644 index 0000000..beeb7f2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2057.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2100.jpg b/other/AoWoW-master/images/maps/enus/normal/2100.jpg new file mode 100644 index 0000000..8f48d6a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2100.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/215.jpg b/other/AoWoW-master/images/maps/enus/normal/215.jpg new file mode 100644 index 0000000..cc8d265 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/215.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2159.jpg b/other/AoWoW-master/images/maps/enus/normal/2159.jpg new file mode 100644 index 0000000..03eca32 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2159.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2366.jpg b/other/AoWoW-master/images/maps/enus/normal/2366.jpg new file mode 100644 index 0000000..50acfdd Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2366.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2367.jpg b/other/AoWoW-master/images/maps/enus/normal/2367.jpg new file mode 100644 index 0000000..d11eae0 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2367.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2437.jpg b/other/AoWoW-master/images/maps/enus/normal/2437.jpg new file mode 100644 index 0000000..3a38d3b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2437.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2557.jpg b/other/AoWoW-master/images/maps/enus/normal/2557.jpg new file mode 100644 index 0000000..ece4a5a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2557.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2557e.jpg b/other/AoWoW-master/images/maps/enus/normal/2557e.jpg new file mode 100644 index 0000000..9ee279b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2557e.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2557n.jpg b/other/AoWoW-master/images/maps/enus/normal/2557n.jpg new file mode 100644 index 0000000..d2bc397 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2557n.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2557w.jpg b/other/AoWoW-master/images/maps/enus/normal/2557w.jpg new file mode 100644 index 0000000..4b7915f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2557w.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2597.jpg b/other/AoWoW-master/images/maps/enus/normal/2597.jpg new file mode 100644 index 0000000..46bcf61 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2597.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/267.jpg b/other/AoWoW-master/images/maps/enus/normal/267.jpg new file mode 100644 index 0000000..a771831 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/267.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/2717.jpg b/other/AoWoW-master/images/maps/enus/normal/2717.jpg new file mode 100644 index 0000000..a9f335a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/2717.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/28.jpg b/other/AoWoW-master/images/maps/enus/normal/28.jpg new file mode 100644 index 0000000..9ee41b2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/28.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3.jpg b/other/AoWoW-master/images/maps/enus/normal/3.jpg new file mode 100644 index 0000000..b71e165 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3277.jpg b/other/AoWoW-master/images/maps/enus/normal/3277.jpg new file mode 100644 index 0000000..f047bd1 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3277.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/33.jpg b/other/AoWoW-master/images/maps/enus/normal/33.jpg new file mode 100644 index 0000000..7ee1b82 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/33.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/331.jpg b/other/AoWoW-master/images/maps/enus/normal/331.jpg new file mode 100644 index 0000000..8a11074 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/331.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3358.jpg b/other/AoWoW-master/images/maps/enus/normal/3358.jpg new file mode 100644 index 0000000..837ceb4 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3358.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3428.jpg b/other/AoWoW-master/images/maps/enus/normal/3428.jpg new file mode 100644 index 0000000..f3397ce Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3428.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3429.jpg b/other/AoWoW-master/images/maps/enus/normal/3429.jpg new file mode 100644 index 0000000..995dee4 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3429.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3430.jpg b/other/AoWoW-master/images/maps/enus/normal/3430.jpg new file mode 100644 index 0000000..69fadd3 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3430.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3433.jpg b/other/AoWoW-master/images/maps/enus/normal/3433.jpg new file mode 100644 index 0000000..104d618 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3433.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3456.jpg b/other/AoWoW-master/images/maps/enus/normal/3456.jpg new file mode 100644 index 0000000..f240ab2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3456.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3483.jpg b/other/AoWoW-master/images/maps/enus/normal/3483.jpg new file mode 100644 index 0000000..8c1ca48 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3483.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3487.jpg b/other/AoWoW-master/images/maps/enus/normal/3487.jpg new file mode 100644 index 0000000..e1350a5 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3487.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3518.jpg b/other/AoWoW-master/images/maps/enus/normal/3518.jpg new file mode 100644 index 0000000..131eb4c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3518.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3519.jpg b/other/AoWoW-master/images/maps/enus/normal/3519.jpg new file mode 100644 index 0000000..750502c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3519.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3520.jpg b/other/AoWoW-master/images/maps/enus/normal/3520.jpg new file mode 100644 index 0000000..1cf6c55 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3520.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3521.jpg b/other/AoWoW-master/images/maps/enus/normal/3521.jpg new file mode 100644 index 0000000..ae87856 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3521.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3522.jpg b/other/AoWoW-master/images/maps/enus/normal/3522.jpg new file mode 100644 index 0000000..5d1997e Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3522.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3523.jpg b/other/AoWoW-master/images/maps/enus/normal/3523.jpg new file mode 100644 index 0000000..e7476d5 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3523.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3524.jpg b/other/AoWoW-master/images/maps/enus/normal/3524.jpg new file mode 100644 index 0000000..63ebc69 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3524.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3525.jpg b/other/AoWoW-master/images/maps/enus/normal/3525.jpg new file mode 100644 index 0000000..cbf12b2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3525.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3557.jpg b/other/AoWoW-master/images/maps/enus/normal/3557.jpg new file mode 100644 index 0000000..49092c3 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3557.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3562.jpg b/other/AoWoW-master/images/maps/enus/normal/3562.jpg new file mode 100644 index 0000000..8eaf28b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3562.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/357.jpg b/other/AoWoW-master/images/maps/enus/normal/357.jpg new file mode 100644 index 0000000..2736b3a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/357.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/36.jpg b/other/AoWoW-master/images/maps/enus/normal/36.jpg new file mode 100644 index 0000000..1163a0f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/36.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3606.jpg b/other/AoWoW-master/images/maps/enus/normal/3606.jpg new file mode 100644 index 0000000..5e370e1 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3606.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3607.jpg b/other/AoWoW-master/images/maps/enus/normal/3607.jpg new file mode 100644 index 0000000..2a4170d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3607.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/361.jpg b/other/AoWoW-master/images/maps/enus/normal/361.jpg new file mode 100644 index 0000000..96b773f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/361.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3618.jpg b/other/AoWoW-master/images/maps/enus/normal/3618.jpg new file mode 100644 index 0000000..ac6034f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3618.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3703.jpg b/other/AoWoW-master/images/maps/enus/normal/3703.jpg new file mode 100644 index 0000000..afb6f45 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3703.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3713.jpg b/other/AoWoW-master/images/maps/enus/normal/3713.jpg new file mode 100644 index 0000000..9e7233c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3713.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3714.jpg b/other/AoWoW-master/images/maps/enus/normal/3714.jpg new file mode 100644 index 0000000..9daf0be Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3714.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3715.jpg b/other/AoWoW-master/images/maps/enus/normal/3715.jpg new file mode 100644 index 0000000..939b6bc Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3715.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3716.jpg b/other/AoWoW-master/images/maps/enus/normal/3716.jpg new file mode 100644 index 0000000..5bf7eda Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3716.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3717.jpg b/other/AoWoW-master/images/maps/enus/normal/3717.jpg new file mode 100644 index 0000000..16b65ab Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3717.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3789.jpg b/other/AoWoW-master/images/maps/enus/normal/3789.jpg new file mode 100644 index 0000000..eb2f8e8 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3789.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3790.jpg b/other/AoWoW-master/images/maps/enus/normal/3790.jpg new file mode 100644 index 0000000..f6461e1 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3790.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3791.jpg b/other/AoWoW-master/images/maps/enus/normal/3791.jpg new file mode 100644 index 0000000..1d6b7e8 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3791.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3792.jpg b/other/AoWoW-master/images/maps/enus/normal/3792.jpg new file mode 100644 index 0000000..6f91a77 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3792.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/38.jpg b/other/AoWoW-master/images/maps/enus/normal/38.jpg new file mode 100644 index 0000000..cc940ff Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/38.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3805.jpg b/other/AoWoW-master/images/maps/enus/normal/3805.jpg new file mode 100644 index 0000000..8852474 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3805.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3820.jpg b/other/AoWoW-master/images/maps/enus/normal/3820.jpg new file mode 100644 index 0000000..21f0827 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3820.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3836.jpg b/other/AoWoW-master/images/maps/enus/normal/3836.jpg new file mode 100644 index 0000000..a927afc Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3836.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3842.jpg b/other/AoWoW-master/images/maps/enus/normal/3842.jpg new file mode 100644 index 0000000..4df7364 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3842.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3846.jpg b/other/AoWoW-master/images/maps/enus/normal/3846.jpg new file mode 100644 index 0000000..9791e0a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3846.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3847.jpg b/other/AoWoW-master/images/maps/enus/normal/3847.jpg new file mode 100644 index 0000000..67a90be Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3847.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3849.jpg b/other/AoWoW-master/images/maps/enus/normal/3849.jpg new file mode 100644 index 0000000..caf47f1 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3849.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/3959.jpg b/other/AoWoW-master/images/maps/enus/normal/3959.jpg new file mode 100644 index 0000000..b48ed99 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/3959.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/4.jpg b/other/AoWoW-master/images/maps/enus/normal/4.jpg new file mode 100644 index 0000000..0f35b99 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/4.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/40.jpg b/other/AoWoW-master/images/maps/enus/normal/40.jpg new file mode 100644 index 0000000..1d8baf5 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/40.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/400.jpg b/other/AoWoW-master/images/maps/enus/normal/400.jpg new file mode 100644 index 0000000..f13261b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/400.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/405.jpg b/other/AoWoW-master/images/maps/enus/normal/405.jpg new file mode 100644 index 0000000..fa977cf Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/405.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/406.jpg b/other/AoWoW-master/images/maps/enus/normal/406.jpg new file mode 100644 index 0000000..59af91e Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/406.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/4080.jpg b/other/AoWoW-master/images/maps/enus/normal/4080.jpg new file mode 100644 index 0000000..ecaf7f9 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/4080.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/4095.jpg b/other/AoWoW-master/images/maps/enus/normal/4095.jpg new file mode 100644 index 0000000..08dfd37 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/4095.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/41.jpg b/other/AoWoW-master/images/maps/enus/normal/41.jpg new file mode 100644 index 0000000..c042f42 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/41.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/44.jpg b/other/AoWoW-master/images/maps/enus/normal/44.jpg new file mode 100644 index 0000000..d3994bd Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/44.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/440.jpg b/other/AoWoW-master/images/maps/enus/normal/440.jpg new file mode 100644 index 0000000..22c0a70 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/440.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/45.jpg b/other/AoWoW-master/images/maps/enus/normal/45.jpg new file mode 100644 index 0000000..72e9d9e Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/45.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/457.jpg b/other/AoWoW-master/images/maps/enus/normal/457.jpg new file mode 100644 index 0000000..089eca4 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/457.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/46.jpg b/other/AoWoW-master/images/maps/enus/normal/46.jpg new file mode 100644 index 0000000..fb9dd83 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/46.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/47.jpg b/other/AoWoW-master/images/maps/enus/normal/47.jpg new file mode 100644 index 0000000..360885d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/47.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/490.jpg b/other/AoWoW-master/images/maps/enus/normal/490.jpg new file mode 100644 index 0000000..25bed51 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/490.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/491.jpg b/other/AoWoW-master/images/maps/enus/normal/491.jpg new file mode 100644 index 0000000..0592d7e Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/491.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/493.jpg b/other/AoWoW-master/images/maps/enus/normal/493.jpg new file mode 100644 index 0000000..8c8f6f9 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/493.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/51.jpg b/other/AoWoW-master/images/maps/enus/normal/51.jpg new file mode 100644 index 0000000..86798dc Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/51.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/616.jpg b/other/AoWoW-master/images/maps/enus/normal/616.jpg new file mode 100644 index 0000000..f8c1c0e Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/616.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/618.jpg b/other/AoWoW-master/images/maps/enus/normal/618.jpg new file mode 100644 index 0000000..19b618d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/618.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/717.jpg b/other/AoWoW-master/images/maps/enus/normal/717.jpg new file mode 100644 index 0000000..71c284a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/717.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/718.jpg b/other/AoWoW-master/images/maps/enus/normal/718.jpg new file mode 100644 index 0000000..1e235f3 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/718.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/719.jpg b/other/AoWoW-master/images/maps/enus/normal/719.jpg new file mode 100644 index 0000000..b59e02f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/719.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/722.jpg b/other/AoWoW-master/images/maps/enus/normal/722.jpg new file mode 100644 index 0000000..b58fd56 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/722.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/796.jpg b/other/AoWoW-master/images/maps/enus/normal/796.jpg new file mode 100644 index 0000000..8391991 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/796.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/796a.jpg b/other/AoWoW-master/images/maps/enus/normal/796a.jpg new file mode 100644 index 0000000..3f5de94 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/796a.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/796b.jpg b/other/AoWoW-master/images/maps/enus/normal/796b.jpg new file mode 100644 index 0000000..d1bea00 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/796b.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/796c.jpg b/other/AoWoW-master/images/maps/enus/normal/796c.jpg new file mode 100644 index 0000000..d975c1b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/796c.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/796d.jpg b/other/AoWoW-master/images/maps/enus/normal/796d.jpg new file mode 100644 index 0000000..608f58d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/796d.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/8.jpg b/other/AoWoW-master/images/maps/enus/normal/8.jpg new file mode 100644 index 0000000..3f1dd2d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/8.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/85.jpg b/other/AoWoW-master/images/maps/enus/normal/85.jpg new file mode 100644 index 0000000..ced6f05 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/85.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/normal/978.jpg b/other/AoWoW-master/images/maps/enus/normal/978.jpg new file mode 100644 index 0000000..61a1eec Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/normal/978.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/-1.jpg b/other/AoWoW-master/images/maps/enus/zoom/-1.jpg new file mode 100644 index 0000000..b27463b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/-1.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/-2.jpg b/other/AoWoW-master/images/maps/enus/zoom/-2.jpg new file mode 100644 index 0000000..a7f126b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/-2.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/-3.jpg b/other/AoWoW-master/images/maps/enus/zoom/-3.jpg new file mode 100644 index 0000000..44863cc Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/-3.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/-4.jpg b/other/AoWoW-master/images/maps/enus/zoom/-4.jpg new file mode 100644 index 0000000..e99f8e6 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/-4.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1.jpg b/other/AoWoW-master/images/maps/enus/zoom/1.jpg new file mode 100644 index 0000000..d6d03c9 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/10.jpg b/other/AoWoW-master/images/maps/enus/zoom/10.jpg new file mode 100644 index 0000000..fc99d4f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/10.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/11.jpg b/other/AoWoW-master/images/maps/enus/zoom/11.jpg new file mode 100644 index 0000000..31d0893 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/11.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/12.jpg b/other/AoWoW-master/images/maps/enus/zoom/12.jpg new file mode 100644 index 0000000..e8388fc Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/12.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/130.jpg b/other/AoWoW-master/images/maps/enus/zoom/130.jpg new file mode 100644 index 0000000..da93274 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/130.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/133.jpg b/other/AoWoW-master/images/maps/enus/zoom/133.jpg new file mode 100644 index 0000000..7261de5 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/133.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1337.jpg b/other/AoWoW-master/images/maps/enus/zoom/1337.jpg new file mode 100644 index 0000000..7322941 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1337.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1377.jpg b/other/AoWoW-master/images/maps/enus/zoom/1377.jpg new file mode 100644 index 0000000..1b4d88a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1377.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/139.jpg b/other/AoWoW-master/images/maps/enus/zoom/139.jpg new file mode 100644 index 0000000..f1d8542 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/139.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/14.jpg b/other/AoWoW-master/images/maps/enus/zoom/14.jpg new file mode 100644 index 0000000..9c10228 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/14.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/141.jpg b/other/AoWoW-master/images/maps/enus/zoom/141.jpg new file mode 100644 index 0000000..1536b45 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/141.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1417.jpg b/other/AoWoW-master/images/maps/enus/zoom/1417.jpg new file mode 100644 index 0000000..c1ea0ec Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1417.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/148.jpg b/other/AoWoW-master/images/maps/enus/zoom/148.jpg new file mode 100644 index 0000000..3a17b39 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/148.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1497.jpg b/other/AoWoW-master/images/maps/enus/zoom/1497.jpg new file mode 100644 index 0000000..1ac046a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1497.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/15.jpg b/other/AoWoW-master/images/maps/enus/zoom/15.jpg new file mode 100644 index 0000000..8875899 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/15.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1519.jpg b/other/AoWoW-master/images/maps/enus/zoom/1519.jpg new file mode 100644 index 0000000..634fa11 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1519.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1537.jpg b/other/AoWoW-master/images/maps/enus/zoom/1537.jpg new file mode 100644 index 0000000..6fc14f7 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1537.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1583b.jpg b/other/AoWoW-master/images/maps/enus/zoom/1583b.jpg new file mode 100644 index 0000000..217c4ff Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1583b.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1584.jpg b/other/AoWoW-master/images/maps/enus/zoom/1584.jpg new file mode 100644 index 0000000..7fe57c8 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1584.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/16.jpg b/other/AoWoW-master/images/maps/enus/zoom/16.jpg new file mode 100644 index 0000000..5192db1 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/16.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1637.jpg b/other/AoWoW-master/images/maps/enus/zoom/1637.jpg new file mode 100644 index 0000000..0f60d99 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1637.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1638.jpg b/other/AoWoW-master/images/maps/enus/zoom/1638.jpg new file mode 100644 index 0000000..63ee34f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1638.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/1657.jpg b/other/AoWoW-master/images/maps/enus/zoom/1657.jpg new file mode 100644 index 0000000..a796c2c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/1657.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/17.jpg b/other/AoWoW-master/images/maps/enus/zoom/17.jpg new file mode 100644 index 0000000..cd1ce6d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/17.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/19.jpg b/other/AoWoW-master/images/maps/enus/zoom/19.jpg new file mode 100644 index 0000000..8d399c0 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/19.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2017.jpg b/other/AoWoW-master/images/maps/enus/zoom/2017.jpg new file mode 100644 index 0000000..cfca35c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2017.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2057.jpg b/other/AoWoW-master/images/maps/enus/zoom/2057.jpg new file mode 100644 index 0000000..cd81ec8 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2057.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2100.jpg b/other/AoWoW-master/images/maps/enus/zoom/2100.jpg new file mode 100644 index 0000000..4e17fd1 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2100.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/215.jpg b/other/AoWoW-master/images/maps/enus/zoom/215.jpg new file mode 100644 index 0000000..e04a1de Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/215.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2159.jpg b/other/AoWoW-master/images/maps/enus/zoom/2159.jpg new file mode 100644 index 0000000..c6760e3 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2159.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2366.jpg b/other/AoWoW-master/images/maps/enus/zoom/2366.jpg new file mode 100644 index 0000000..ef4d46f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2366.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2367.jpg b/other/AoWoW-master/images/maps/enus/zoom/2367.jpg new file mode 100644 index 0000000..e582610 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2367.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2437.jpg b/other/AoWoW-master/images/maps/enus/zoom/2437.jpg new file mode 100644 index 0000000..a2f4c5f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2437.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2557.jpg b/other/AoWoW-master/images/maps/enus/zoom/2557.jpg new file mode 100644 index 0000000..3ab8794 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2557.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2557e.jpg b/other/AoWoW-master/images/maps/enus/zoom/2557e.jpg new file mode 100644 index 0000000..bd7eef0 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2557e.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2557n.jpg b/other/AoWoW-master/images/maps/enus/zoom/2557n.jpg new file mode 100644 index 0000000..93b845e Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2557n.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2557w.jpg b/other/AoWoW-master/images/maps/enus/zoom/2557w.jpg new file mode 100644 index 0000000..a3fa8f5 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2557w.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2597.jpg b/other/AoWoW-master/images/maps/enus/zoom/2597.jpg new file mode 100644 index 0000000..aa1e045 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2597.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/267.jpg b/other/AoWoW-master/images/maps/enus/zoom/267.jpg new file mode 100644 index 0000000..3489b79 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/267.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/2717.jpg b/other/AoWoW-master/images/maps/enus/zoom/2717.jpg new file mode 100644 index 0000000..fe97268 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/2717.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/28.jpg b/other/AoWoW-master/images/maps/enus/zoom/28.jpg new file mode 100644 index 0000000..e578a68 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/28.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3.jpg b/other/AoWoW-master/images/maps/enus/zoom/3.jpg new file mode 100644 index 0000000..195ce50 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3277.jpg b/other/AoWoW-master/images/maps/enus/zoom/3277.jpg new file mode 100644 index 0000000..ea91d10 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3277.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/33.jpg b/other/AoWoW-master/images/maps/enus/zoom/33.jpg new file mode 100644 index 0000000..73fdc58 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/33.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/331.jpg b/other/AoWoW-master/images/maps/enus/zoom/331.jpg new file mode 100644 index 0000000..b27e3a4 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/331.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3358.jpg b/other/AoWoW-master/images/maps/enus/zoom/3358.jpg new file mode 100644 index 0000000..260b41c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3358.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3428.jpg b/other/AoWoW-master/images/maps/enus/zoom/3428.jpg new file mode 100644 index 0000000..677dc23 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3428.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3429.jpg b/other/AoWoW-master/images/maps/enus/zoom/3429.jpg new file mode 100644 index 0000000..2553d81 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3429.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3430.jpg b/other/AoWoW-master/images/maps/enus/zoom/3430.jpg new file mode 100644 index 0000000..fc34db4 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3430.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3433.jpg b/other/AoWoW-master/images/maps/enus/zoom/3433.jpg new file mode 100644 index 0000000..18bf703 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3433.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3456.jpg b/other/AoWoW-master/images/maps/enus/zoom/3456.jpg new file mode 100644 index 0000000..84ad1e2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3456.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3483.jpg b/other/AoWoW-master/images/maps/enus/zoom/3483.jpg new file mode 100644 index 0000000..2e0a686 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3483.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3487.jpg b/other/AoWoW-master/images/maps/enus/zoom/3487.jpg new file mode 100644 index 0000000..1b89dea Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3487.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3518.jpg b/other/AoWoW-master/images/maps/enus/zoom/3518.jpg new file mode 100644 index 0000000..35a35f9 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3518.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3519.jpg b/other/AoWoW-master/images/maps/enus/zoom/3519.jpg new file mode 100644 index 0000000..7876cfa Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3519.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3520.jpg b/other/AoWoW-master/images/maps/enus/zoom/3520.jpg new file mode 100644 index 0000000..f37b277 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3520.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3521.jpg b/other/AoWoW-master/images/maps/enus/zoom/3521.jpg new file mode 100644 index 0000000..84ae1cd Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3521.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3522.jpg b/other/AoWoW-master/images/maps/enus/zoom/3522.jpg new file mode 100644 index 0000000..887f32c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3522.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3523.jpg b/other/AoWoW-master/images/maps/enus/zoom/3523.jpg new file mode 100644 index 0000000..3a8e2cd Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3523.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3524.jpg b/other/AoWoW-master/images/maps/enus/zoom/3524.jpg new file mode 100644 index 0000000..755b806 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3524.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3525.jpg b/other/AoWoW-master/images/maps/enus/zoom/3525.jpg new file mode 100644 index 0000000..c80b9c7 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3525.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3557.jpg b/other/AoWoW-master/images/maps/enus/zoom/3557.jpg new file mode 100644 index 0000000..f32dbc3 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3557.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3562.jpg b/other/AoWoW-master/images/maps/enus/zoom/3562.jpg new file mode 100644 index 0000000..94906c2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3562.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/357.jpg b/other/AoWoW-master/images/maps/enus/zoom/357.jpg new file mode 100644 index 0000000..d5f3ff9 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/357.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/36.jpg b/other/AoWoW-master/images/maps/enus/zoom/36.jpg new file mode 100644 index 0000000..e4bffa8 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/36.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3606.jpg b/other/AoWoW-master/images/maps/enus/zoom/3606.jpg new file mode 100644 index 0000000..e3c8e1d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3606.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3607.jpg b/other/AoWoW-master/images/maps/enus/zoom/3607.jpg new file mode 100644 index 0000000..8f9fdd7 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3607.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/361.jpg b/other/AoWoW-master/images/maps/enus/zoom/361.jpg new file mode 100644 index 0000000..6c8c6ca Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/361.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3618.jpg b/other/AoWoW-master/images/maps/enus/zoom/3618.jpg new file mode 100644 index 0000000..6dd1f42 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3618.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3703.jpg b/other/AoWoW-master/images/maps/enus/zoom/3703.jpg new file mode 100644 index 0000000..94451af Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3703.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3713.jpg b/other/AoWoW-master/images/maps/enus/zoom/3713.jpg new file mode 100644 index 0000000..eb24075 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3713.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3714.jpg b/other/AoWoW-master/images/maps/enus/zoom/3714.jpg new file mode 100644 index 0000000..dacdd80 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3714.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3715.jpg b/other/AoWoW-master/images/maps/enus/zoom/3715.jpg new file mode 100644 index 0000000..0d1e031 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3715.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3716.jpg b/other/AoWoW-master/images/maps/enus/zoom/3716.jpg new file mode 100644 index 0000000..954b0f0 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3716.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3717.jpg b/other/AoWoW-master/images/maps/enus/zoom/3717.jpg new file mode 100644 index 0000000..3dc1a93 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3717.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3789.jpg b/other/AoWoW-master/images/maps/enus/zoom/3789.jpg new file mode 100644 index 0000000..d9d5e19 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3789.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3790.jpg b/other/AoWoW-master/images/maps/enus/zoom/3790.jpg new file mode 100644 index 0000000..3f3d67f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3790.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3791.jpg b/other/AoWoW-master/images/maps/enus/zoom/3791.jpg new file mode 100644 index 0000000..f711613 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3791.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3792.jpg b/other/AoWoW-master/images/maps/enus/zoom/3792.jpg new file mode 100644 index 0000000..b3ba342 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3792.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/38.jpg b/other/AoWoW-master/images/maps/enus/zoom/38.jpg new file mode 100644 index 0000000..757b208 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/38.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3805.jpg b/other/AoWoW-master/images/maps/enus/zoom/3805.jpg new file mode 100644 index 0000000..baf4595 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3805.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3820.jpg b/other/AoWoW-master/images/maps/enus/zoom/3820.jpg new file mode 100644 index 0000000..26277c9 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3820.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3836.jpg b/other/AoWoW-master/images/maps/enus/zoom/3836.jpg new file mode 100644 index 0000000..49d6538 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3836.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3842.jpg b/other/AoWoW-master/images/maps/enus/zoom/3842.jpg new file mode 100644 index 0000000..f020019 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3842.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3846.jpg b/other/AoWoW-master/images/maps/enus/zoom/3846.jpg new file mode 100644 index 0000000..d3a29db Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3846.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3847.jpg b/other/AoWoW-master/images/maps/enus/zoom/3847.jpg new file mode 100644 index 0000000..dd394e3 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3847.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3849.jpg b/other/AoWoW-master/images/maps/enus/zoom/3849.jpg new file mode 100644 index 0000000..9ed2055 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3849.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/3959.jpg b/other/AoWoW-master/images/maps/enus/zoom/3959.jpg new file mode 100644 index 0000000..26d2810 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/3959.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/4.jpg b/other/AoWoW-master/images/maps/enus/zoom/4.jpg new file mode 100644 index 0000000..d6c20a3 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/4.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/40.jpg b/other/AoWoW-master/images/maps/enus/zoom/40.jpg new file mode 100644 index 0000000..e18dadf Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/40.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/400.jpg b/other/AoWoW-master/images/maps/enus/zoom/400.jpg new file mode 100644 index 0000000..923253e Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/400.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/405.jpg b/other/AoWoW-master/images/maps/enus/zoom/405.jpg new file mode 100644 index 0000000..aabbff2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/405.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/406.jpg b/other/AoWoW-master/images/maps/enus/zoom/406.jpg new file mode 100644 index 0000000..46ff3ed Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/406.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/4080.jpg b/other/AoWoW-master/images/maps/enus/zoom/4080.jpg new file mode 100644 index 0000000..f4f9ce2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/4080.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/4095.jpg b/other/AoWoW-master/images/maps/enus/zoom/4095.jpg new file mode 100644 index 0000000..d27a0fa Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/4095.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/41.jpg b/other/AoWoW-master/images/maps/enus/zoom/41.jpg new file mode 100644 index 0000000..a9c518f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/41.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/44.jpg b/other/AoWoW-master/images/maps/enus/zoom/44.jpg new file mode 100644 index 0000000..6267bf4 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/44.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/440.jpg b/other/AoWoW-master/images/maps/enus/zoom/440.jpg new file mode 100644 index 0000000..5326c89 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/440.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/45.jpg b/other/AoWoW-master/images/maps/enus/zoom/45.jpg new file mode 100644 index 0000000..154da83 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/45.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/457.jpg b/other/AoWoW-master/images/maps/enus/zoom/457.jpg new file mode 100644 index 0000000..9adefbe Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/457.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/46.jpg b/other/AoWoW-master/images/maps/enus/zoom/46.jpg new file mode 100644 index 0000000..70c4a0d Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/46.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/47.jpg b/other/AoWoW-master/images/maps/enus/zoom/47.jpg new file mode 100644 index 0000000..a0063a2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/47.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/490.jpg b/other/AoWoW-master/images/maps/enus/zoom/490.jpg new file mode 100644 index 0000000..25ae870 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/490.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/491.jpg b/other/AoWoW-master/images/maps/enus/zoom/491.jpg new file mode 100644 index 0000000..14e5227 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/491.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/493.jpg b/other/AoWoW-master/images/maps/enus/zoom/493.jpg new file mode 100644 index 0000000..1299e7c Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/493.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/51.jpg b/other/AoWoW-master/images/maps/enus/zoom/51.jpg new file mode 100644 index 0000000..e6b9759 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/51.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/618.jpg b/other/AoWoW-master/images/maps/enus/zoom/618.jpg new file mode 100644 index 0000000..750210f Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/618.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/717.jpg b/other/AoWoW-master/images/maps/enus/zoom/717.jpg new file mode 100644 index 0000000..3b24840 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/717.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/718.jpg b/other/AoWoW-master/images/maps/enus/zoom/718.jpg new file mode 100644 index 0000000..034d63a Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/718.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/719.jpg b/other/AoWoW-master/images/maps/enus/zoom/719.jpg new file mode 100644 index 0000000..e998e6b Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/719.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/722.jpg b/other/AoWoW-master/images/maps/enus/zoom/722.jpg new file mode 100644 index 0000000..ca281b9 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/722.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/796.jpg b/other/AoWoW-master/images/maps/enus/zoom/796.jpg new file mode 100644 index 0000000..7bf89e1 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/796.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/796a.jpg b/other/AoWoW-master/images/maps/enus/zoom/796a.jpg new file mode 100644 index 0000000..b6e3605 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/796a.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/796b.jpg b/other/AoWoW-master/images/maps/enus/zoom/796b.jpg new file mode 100644 index 0000000..10688c6 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/796b.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/796c.jpg b/other/AoWoW-master/images/maps/enus/zoom/796c.jpg new file mode 100644 index 0000000..ae65ff2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/796c.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/796d.jpg b/other/AoWoW-master/images/maps/enus/zoom/796d.jpg new file mode 100644 index 0000000..dc40364 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/796d.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/8.jpg b/other/AoWoW-master/images/maps/enus/zoom/8.jpg new file mode 100644 index 0000000..2fe0fe2 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/8.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/85.jpg b/other/AoWoW-master/images/maps/enus/zoom/85.jpg new file mode 100644 index 0000000..7a0eeee Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/85.jpg differ diff --git a/other/AoWoW-master/images/maps/enus/zoom/978.jpg b/other/AoWoW-master/images/maps/enus/zoom/978.jpg new file mode 100644 index 0000000..058d526 Binary files /dev/null and b/other/AoWoW-master/images/maps/enus/zoom/978.jpg differ diff --git a/other/AoWoW-master/images/tmp/0.png b/other/AoWoW-master/images/tmp/0.png new file mode 100644 index 0000000..2eadf3b Binary files /dev/null and b/other/AoWoW-master/images/tmp/0.png differ diff --git a/other/AoWoW-master/images/tmp/1.png b/other/AoWoW-master/images/tmp/1.png new file mode 100644 index 0000000..0211d0f Binary files /dev/null and b/other/AoWoW-master/images/tmp/1.png differ diff --git a/other/AoWoW-master/images/tmp/10.png b/other/AoWoW-master/images/tmp/10.png new file mode 100644 index 0000000..9321fc6 Binary files /dev/null and b/other/AoWoW-master/images/tmp/10.png differ diff --git a/other/AoWoW-master/images/tmp/11.png b/other/AoWoW-master/images/tmp/11.png new file mode 100644 index 0000000..f87023e Binary files /dev/null and b/other/AoWoW-master/images/tmp/11.png differ diff --git a/other/AoWoW-master/images/tmp/12.png b/other/AoWoW-master/images/tmp/12.png new file mode 100644 index 0000000..45c4c9d Binary files /dev/null and b/other/AoWoW-master/images/tmp/12.png differ diff --git a/other/AoWoW-master/images/tmp/130.png b/other/AoWoW-master/images/tmp/130.png new file mode 100644 index 0000000..9ea5ed8 Binary files /dev/null and b/other/AoWoW-master/images/tmp/130.png differ diff --git a/other/AoWoW-master/images/tmp/1377.png b/other/AoWoW-master/images/tmp/1377.png new file mode 100644 index 0000000..b3c9de4 Binary files /dev/null and b/other/AoWoW-master/images/tmp/1377.png differ diff --git a/other/AoWoW-master/images/tmp/139.png b/other/AoWoW-master/images/tmp/139.png new file mode 100644 index 0000000..8019c5e Binary files /dev/null and b/other/AoWoW-master/images/tmp/139.png differ diff --git a/other/AoWoW-master/images/tmp/14.png b/other/AoWoW-master/images/tmp/14.png new file mode 100644 index 0000000..247a4e1 Binary files /dev/null and b/other/AoWoW-master/images/tmp/14.png differ diff --git a/other/AoWoW-master/images/tmp/141.png b/other/AoWoW-master/images/tmp/141.png new file mode 100644 index 0000000..e7019fa Binary files /dev/null and b/other/AoWoW-master/images/tmp/141.png differ diff --git a/other/AoWoW-master/images/tmp/148.png b/other/AoWoW-master/images/tmp/148.png new file mode 100644 index 0000000..b47e5a6 Binary files /dev/null and b/other/AoWoW-master/images/tmp/148.png differ diff --git a/other/AoWoW-master/images/tmp/1497.png b/other/AoWoW-master/images/tmp/1497.png new file mode 100644 index 0000000..5e3cb56 Binary files /dev/null and b/other/AoWoW-master/images/tmp/1497.png differ diff --git a/other/AoWoW-master/images/tmp/15.png b/other/AoWoW-master/images/tmp/15.png new file mode 100644 index 0000000..50c6743 Binary files /dev/null and b/other/AoWoW-master/images/tmp/15.png differ diff --git a/other/AoWoW-master/images/tmp/1519.png b/other/AoWoW-master/images/tmp/1519.png new file mode 100644 index 0000000..fdda923 Binary files /dev/null and b/other/AoWoW-master/images/tmp/1519.png differ diff --git a/other/AoWoW-master/images/tmp/1537.png b/other/AoWoW-master/images/tmp/1537.png new file mode 100644 index 0000000..fc1ec45 Binary files /dev/null and b/other/AoWoW-master/images/tmp/1537.png differ diff --git a/other/AoWoW-master/images/tmp/16.png b/other/AoWoW-master/images/tmp/16.png new file mode 100644 index 0000000..8fadbcf Binary files /dev/null and b/other/AoWoW-master/images/tmp/16.png differ diff --git a/other/AoWoW-master/images/tmp/1637.png b/other/AoWoW-master/images/tmp/1637.png new file mode 100644 index 0000000..fa1e7de Binary files /dev/null and b/other/AoWoW-master/images/tmp/1637.png differ diff --git a/other/AoWoW-master/images/tmp/17.png b/other/AoWoW-master/images/tmp/17.png new file mode 100644 index 0000000..31f6c83 Binary files /dev/null and b/other/AoWoW-master/images/tmp/17.png differ diff --git a/other/AoWoW-master/images/tmp/210.png b/other/AoWoW-master/images/tmp/210.png new file mode 100644 index 0000000..1eb57fc Binary files /dev/null and b/other/AoWoW-master/images/tmp/210.png differ diff --git a/other/AoWoW-master/images/tmp/215.png b/other/AoWoW-master/images/tmp/215.png new file mode 100644 index 0000000..2e586f5 Binary files /dev/null and b/other/AoWoW-master/images/tmp/215.png differ diff --git a/other/AoWoW-master/images/tmp/2597.png b/other/AoWoW-master/images/tmp/2597.png new file mode 100644 index 0000000..3712ca3 Binary files /dev/null and b/other/AoWoW-master/images/tmp/2597.png differ diff --git a/other/AoWoW-master/images/tmp/267.png b/other/AoWoW-master/images/tmp/267.png new file mode 100644 index 0000000..c90fb75 Binary files /dev/null and b/other/AoWoW-master/images/tmp/267.png differ diff --git a/other/AoWoW-master/images/tmp/28.png b/other/AoWoW-master/images/tmp/28.png new file mode 100644 index 0000000..f27b1bd Binary files /dev/null and b/other/AoWoW-master/images/tmp/28.png differ diff --git a/other/AoWoW-master/images/tmp/2817.png b/other/AoWoW-master/images/tmp/2817.png new file mode 100644 index 0000000..dc8b3e0 Binary files /dev/null and b/other/AoWoW-master/images/tmp/2817.png differ diff --git a/other/AoWoW-master/images/tmp/3.png b/other/AoWoW-master/images/tmp/3.png new file mode 100644 index 0000000..d38c2cd Binary files /dev/null and b/other/AoWoW-master/images/tmp/3.png differ diff --git a/other/AoWoW-master/images/tmp/33.png b/other/AoWoW-master/images/tmp/33.png new file mode 100644 index 0000000..1f6ae5d Binary files /dev/null and b/other/AoWoW-master/images/tmp/33.png differ diff --git a/other/AoWoW-master/images/tmp/331.png b/other/AoWoW-master/images/tmp/331.png new file mode 100644 index 0000000..b2e4573 Binary files /dev/null and b/other/AoWoW-master/images/tmp/331.png differ diff --git a/other/AoWoW-master/images/tmp/3430.png b/other/AoWoW-master/images/tmp/3430.png new file mode 100644 index 0000000..591dcd4 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3430.png differ diff --git a/other/AoWoW-master/images/tmp/3433.png b/other/AoWoW-master/images/tmp/3433.png new file mode 100644 index 0000000..345a44e Binary files /dev/null and b/other/AoWoW-master/images/tmp/3433.png differ diff --git a/other/AoWoW-master/images/tmp/3483.png b/other/AoWoW-master/images/tmp/3483.png new file mode 100644 index 0000000..e8899be Binary files /dev/null and b/other/AoWoW-master/images/tmp/3483.png differ diff --git a/other/AoWoW-master/images/tmp/3518.png b/other/AoWoW-master/images/tmp/3518.png new file mode 100644 index 0000000..b299688 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3518.png differ diff --git a/other/AoWoW-master/images/tmp/3519.png b/other/AoWoW-master/images/tmp/3519.png new file mode 100644 index 0000000..d3cc3e0 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3519.png differ diff --git a/other/AoWoW-master/images/tmp/3520.png b/other/AoWoW-master/images/tmp/3520.png new file mode 100644 index 0000000..e38684a Binary files /dev/null and b/other/AoWoW-master/images/tmp/3520.png differ diff --git a/other/AoWoW-master/images/tmp/3521.png b/other/AoWoW-master/images/tmp/3521.png new file mode 100644 index 0000000..fa3236a Binary files /dev/null and b/other/AoWoW-master/images/tmp/3521.png differ diff --git a/other/AoWoW-master/images/tmp/3522.png b/other/AoWoW-master/images/tmp/3522.png new file mode 100644 index 0000000..1e47448 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3522.png differ diff --git a/other/AoWoW-master/images/tmp/3523.png b/other/AoWoW-master/images/tmp/3523.png new file mode 100644 index 0000000..dc80251 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3523.png differ diff --git a/other/AoWoW-master/images/tmp/3524.png b/other/AoWoW-master/images/tmp/3524.png new file mode 100644 index 0000000..9afae78 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3524.png differ diff --git a/other/AoWoW-master/images/tmp/3525.png b/other/AoWoW-master/images/tmp/3525.png new file mode 100644 index 0000000..e7019fa Binary files /dev/null and b/other/AoWoW-master/images/tmp/3525.png differ diff --git a/other/AoWoW-master/images/tmp/3537.png b/other/AoWoW-master/images/tmp/3537.png new file mode 100644 index 0000000..bd1f372 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3537.png differ diff --git a/other/AoWoW-master/images/tmp/3557.png b/other/AoWoW-master/images/tmp/3557.png new file mode 100644 index 0000000..70cf3d3 Binary files /dev/null and b/other/AoWoW-master/images/tmp/3557.png differ diff --git a/other/AoWoW-master/images/tmp/357.png b/other/AoWoW-master/images/tmp/357.png new file mode 100644 index 0000000..19beae8 Binary files /dev/null and b/other/AoWoW-master/images/tmp/357.png differ diff --git a/other/AoWoW-master/images/tmp/36.png b/other/AoWoW-master/images/tmp/36.png new file mode 100644 index 0000000..697e0e0 Binary files /dev/null and b/other/AoWoW-master/images/tmp/36.png differ diff --git a/other/AoWoW-master/images/tmp/361.png b/other/AoWoW-master/images/tmp/361.png new file mode 100644 index 0000000..ac76ef4 Binary files /dev/null and b/other/AoWoW-master/images/tmp/361.png differ diff --git a/other/AoWoW-master/images/tmp/3703.png b/other/AoWoW-master/images/tmp/3703.png new file mode 100644 index 0000000..938bc2c Binary files /dev/null and b/other/AoWoW-master/images/tmp/3703.png differ diff --git a/other/AoWoW-master/images/tmp/3711.png b/other/AoWoW-master/images/tmp/3711.png new file mode 100644 index 0000000..597319a Binary files /dev/null and b/other/AoWoW-master/images/tmp/3711.png differ diff --git a/other/AoWoW-master/images/tmp/38.png b/other/AoWoW-master/images/tmp/38.png new file mode 100644 index 0000000..42d735c Binary files /dev/null and b/other/AoWoW-master/images/tmp/38.png differ diff --git a/other/AoWoW-master/images/tmp/394.png b/other/AoWoW-master/images/tmp/394.png new file mode 100644 index 0000000..e0d0825 Binary files /dev/null and b/other/AoWoW-master/images/tmp/394.png differ diff --git a/other/AoWoW-master/images/tmp/4.png b/other/AoWoW-master/images/tmp/4.png new file mode 100644 index 0000000..a1a5309 Binary files /dev/null and b/other/AoWoW-master/images/tmp/4.png differ diff --git a/other/AoWoW-master/images/tmp/40.png b/other/AoWoW-master/images/tmp/40.png new file mode 100644 index 0000000..7d702a7 Binary files /dev/null and b/other/AoWoW-master/images/tmp/40.png differ diff --git a/other/AoWoW-master/images/tmp/400.png b/other/AoWoW-master/images/tmp/400.png new file mode 100644 index 0000000..17279a7 Binary files /dev/null and b/other/AoWoW-master/images/tmp/400.png differ diff --git a/other/AoWoW-master/images/tmp/405.png b/other/AoWoW-master/images/tmp/405.png new file mode 100644 index 0000000..6bd6b09 Binary files /dev/null and b/other/AoWoW-master/images/tmp/405.png differ diff --git a/other/AoWoW-master/images/tmp/406.png b/other/AoWoW-master/images/tmp/406.png new file mode 100644 index 0000000..21d772e Binary files /dev/null and b/other/AoWoW-master/images/tmp/406.png differ diff --git a/other/AoWoW-master/images/tmp/4080.png b/other/AoWoW-master/images/tmp/4080.png new file mode 100644 index 0000000..e7019fa Binary files /dev/null and b/other/AoWoW-master/images/tmp/4080.png differ diff --git a/other/AoWoW-master/images/tmp/41.png b/other/AoWoW-master/images/tmp/41.png new file mode 100644 index 0000000..1460bf6 Binary files /dev/null and b/other/AoWoW-master/images/tmp/41.png differ diff --git a/other/AoWoW-master/images/tmp/4197.png b/other/AoWoW-master/images/tmp/4197.png new file mode 100644 index 0000000..4dab8d6 Binary files /dev/null and b/other/AoWoW-master/images/tmp/4197.png differ diff --git a/other/AoWoW-master/images/tmp/4265.png b/other/AoWoW-master/images/tmp/4265.png new file mode 100644 index 0000000..e7019fa Binary files /dev/null and b/other/AoWoW-master/images/tmp/4265.png differ diff --git a/other/AoWoW-master/images/tmp/4298.png b/other/AoWoW-master/images/tmp/4298.png new file mode 100644 index 0000000..e7019fa Binary files /dev/null and b/other/AoWoW-master/images/tmp/4298.png differ diff --git a/other/AoWoW-master/images/tmp/4384.png b/other/AoWoW-master/images/tmp/4384.png new file mode 100644 index 0000000..e7019fa Binary files /dev/null and b/other/AoWoW-master/images/tmp/4384.png differ diff --git a/other/AoWoW-master/images/tmp/4395.png b/other/AoWoW-master/images/tmp/4395.png new file mode 100644 index 0000000..e7019fa Binary files /dev/null and b/other/AoWoW-master/images/tmp/4395.png differ diff --git a/other/AoWoW-master/images/tmp/44.png b/other/AoWoW-master/images/tmp/44.png new file mode 100644 index 0000000..ac689cc Binary files /dev/null and b/other/AoWoW-master/images/tmp/44.png differ diff --git a/other/AoWoW-master/images/tmp/440.png b/other/AoWoW-master/images/tmp/440.png new file mode 100644 index 0000000..1c6cfa1 Binary files /dev/null and b/other/AoWoW-master/images/tmp/440.png differ diff --git a/other/AoWoW-master/images/tmp/45.png b/other/AoWoW-master/images/tmp/45.png new file mode 100644 index 0000000..4ca11d8 Binary files /dev/null and b/other/AoWoW-master/images/tmp/45.png differ diff --git a/other/AoWoW-master/images/tmp/457.png b/other/AoWoW-master/images/tmp/457.png new file mode 100644 index 0000000..2eadf3b Binary files /dev/null and b/other/AoWoW-master/images/tmp/457.png differ diff --git a/other/AoWoW-master/images/tmp/46.png b/other/AoWoW-master/images/tmp/46.png new file mode 100644 index 0000000..5f1a206 Binary files /dev/null and b/other/AoWoW-master/images/tmp/46.png differ diff --git a/other/AoWoW-master/images/tmp/47.png b/other/AoWoW-master/images/tmp/47.png new file mode 100644 index 0000000..74b5d0e Binary files /dev/null and b/other/AoWoW-master/images/tmp/47.png differ diff --git a/other/AoWoW-master/images/tmp/490.png b/other/AoWoW-master/images/tmp/490.png new file mode 100644 index 0000000..8c9cfa6 Binary files /dev/null and b/other/AoWoW-master/images/tmp/490.png differ diff --git a/other/AoWoW-master/images/tmp/493.png b/other/AoWoW-master/images/tmp/493.png new file mode 100644 index 0000000..1704b01 Binary files /dev/null and b/other/AoWoW-master/images/tmp/493.png differ diff --git a/other/AoWoW-master/images/tmp/495.png b/other/AoWoW-master/images/tmp/495.png new file mode 100644 index 0000000..ca9d13b Binary files /dev/null and b/other/AoWoW-master/images/tmp/495.png differ diff --git a/other/AoWoW-master/images/tmp/51.png b/other/AoWoW-master/images/tmp/51.png new file mode 100644 index 0000000..6aba15e Binary files /dev/null and b/other/AoWoW-master/images/tmp/51.png differ diff --git a/other/AoWoW-master/images/tmp/618.png b/other/AoWoW-master/images/tmp/618.png new file mode 100644 index 0000000..8404ec2 Binary files /dev/null and b/other/AoWoW-master/images/tmp/618.png differ diff --git a/other/AoWoW-master/images/tmp/65.png b/other/AoWoW-master/images/tmp/65.png new file mode 100644 index 0000000..721f5ab Binary files /dev/null and b/other/AoWoW-master/images/tmp/65.png differ diff --git a/other/AoWoW-master/images/tmp/66.png b/other/AoWoW-master/images/tmp/66.png new file mode 100644 index 0000000..cbbe646 Binary files /dev/null and b/other/AoWoW-master/images/tmp/66.png differ diff --git a/other/AoWoW-master/images/tmp/67.png b/other/AoWoW-master/images/tmp/67.png new file mode 100644 index 0000000..a3d2f2b Binary files /dev/null and b/other/AoWoW-master/images/tmp/67.png differ diff --git a/other/AoWoW-master/images/tmp/8.png b/other/AoWoW-master/images/tmp/8.png new file mode 100644 index 0000000..5f3e60d Binary files /dev/null and b/other/AoWoW-master/images/tmp/8.png differ diff --git a/other/AoWoW-master/images/tmp/85.png b/other/AoWoW-master/images/tmp/85.png new file mode 100644 index 0000000..ffd0cda Binary files /dev/null and b/other/AoWoW-master/images/tmp/85.png differ diff --git a/other/AoWoW-master/includes/DbSimple/CacherImpl.php b/other/AoWoW-master/includes/DbSimple/CacherImpl.php new file mode 100644 index 0000000..986cb13 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/CacherImpl.php @@ -0,0 +1,45 @@ +callback = $callback; + } else { + $this->callback = $this->callbackDummy; + } + } + + public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array()) {} + + public function remove($id) {} + + public function test($id) {} + + public function save($data, $id, $tags = array(), $specificLifetime = false) + { + return call_user_func($this->callback, $id, $data); + } + + public function load($id, $doNotTestCacheValidity = false) + { + return call_user_func($this->callback, $id); + } + + public function setDirectives($directives) {} + + protected function callbackDummy($k, $v) + { + return null; + } + +} // CacherImpl class \ No newline at end of file diff --git a/other/AoWoW-master/includes/DbSimple/Connect.php b/other/AoWoW-master/includes/DbSimple/Connect.php new file mode 100644 index 0000000..6489c89 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Connect.php @@ -0,0 +1,262 @@ +нужен для ленивой инициализации коннекта к базе + * + * @package DbSimple + * @method mixed transaction(string $mode=null) + * @method mixed commit() + * @method mixed rollback() + * @method mixed select(string $query [, $arg1] [,$arg2] ...) + * @method mixed selectRow(string $query [, $arg1] [,$arg2] ...) + * @method array selectCol(string $query [, $arg1] [,$arg2] ...) + * @method string selectCell(string $query [, $arg1] [,$arg2] ...) + * @method mixed query(string $query [, $arg1] [,$arg2] ...) + * @method string escape(mixed $s, bool $isIdent=false) + * @method DbSimple_SubQuery subquery(string $query [, $arg1] [,$arg2] ...) + * @method callback setLogger(callback $logger) + * @method callback setCacher(callback $cacher) + * @method string setIdentPrefix($prx) + * @method string setCachePrefix($prx) + */ +class DbSimple_Connect +{ + /** @var DbSimple_Generic_Database База данных */ + protected $DbSimple; + /** @var string DSN подключения */ + protected $DSN; + /** @var string Тип базы данных */ + protected $shema; + /** @var array Что выставить при коннекте */ + protected $init; + /** @var integer код ошибки */ + public $error = null; + /** @var string сообщение об ошибке */ + public $errmsg = null; + + /** + * Конструктор только запоминает переданный DSN + * создание класса и коннект происходит позже + * + * @param string $dsn DSN строка БД + */ + public function __construct($dsn) + { + $this->DbSimple = null; + $this->DSN = $dsn; + $this->init = array(); + $this->shema = ucfirst(substr($dsn, 0, strpos($dsn, ':'))); + } + + /** + * Взять базу из пула коннектов + * + * @param string $dsn DSN строка БД + * @return DbSimple_Connect + */ + public static function get($dsn) + { + static $pool = array(); + return isset($pool[$dsn]) ? $pool[$dsn] : $pool[$dsn] = new self($dsn); + } + + /** + * Возвращает тип базы данных + * + * @return string имя типа БД + */ + public function getShema() + { + return $this->shema; + } + + /** + * Коннект при первом запросе к базе данных + */ + public function __call($method, $params) + { + if ($this->DbSimple === null) + $this->connect($this->DSN); + return call_user_func_array(array(&$this->DbSimple, $method), $params); + } + + /** + * mixed selectPage(int &$total, string $query [, $arg1] [,$arg2] ...) + * Функцию нужно вызвать отдельно из-за передачи по ссылке + */ + public function selectPage(&$total, $query) + { + if ($this->DbSimple === null) + $this->connect($this->DSN); + $args = func_get_args(); + $args[0] = &$total; + return call_user_func_array(array(&$this->DbSimple, 'selectPage'), $args); + } + + /** + * Подключение к базе данных + * @param string $dsn DSN строка БД + */ + protected function connect($dsn) + { + $parsed = $this->parseDSN($dsn); + if (!$parsed) + $this->errorHandler('Ошибка разбора строки DSN', $dsn); + if (!isset($parsed['scheme'])) + $this->errorHandler('Невозможно загрузить драйвер базы данных', $parsed); + $this->shema = ucfirst($parsed['scheme']); + require_once __DIR__.'/'.$this->shema.'.php'; + $class = 'DbSimple_'.$this->shema; + $this->DbSimple = new $class($parsed); + $this->errmsg = &$this->DbSimple->errmsg; + $this->error = &$this->DbSimple->error; + $prefix = isset($parsed['prefix']) ? $parsed['prefix'] : ($this->_identPrefix ? $this->_identPrefix : false); + if ($prefix) + $this->DbSimple->setIdentPrefix($prefix); + if ($this->_cachePrefix) $this->DbSimple->setCachePrefix($this->_cachePrefix); + if ($this->_cacher) $this->DbSimple->setCacher($this->_cacher); + if ($this->_logger) $this->DbSimple->setLogger($this->_logger); + $this->DbSimple->setErrorHandler($this->errorHandler!==null ? $this->errorHandler : array(&$this, 'errorHandler')); + //выставление переменных + foreach($this->init as $query) + call_user_func_array(array(&$this->DbSimple, 'query'), $query); + $this->init = array(); + } + + /** + * Функция обработки ошибок - стандартный обработчик + * Все вызовы без @ прекращают выполнение скрипта + * + * @param string $msg Сообщение об ошибке + * @param array $info Подробная информация о контексте ошибки + */ + public function errorHandler($msg, $info) + { + // Если использовалась @, ничего не делать. + if (!error_reporting()) return; + // Выводим подробную информацию об ошибке. + echo "SQL Error: $msg
";
+		print_r($info);
+		echo "
"; + exit(); + } + + /** + * Выставляет запрос для инициализации + * + * @param string $query запрос + */ + public function addInit($query) + { + $args = func_get_args(); + if ($this->DbSimple !== null) + return call_user_func_array(array(&$this->DbSimple, 'query'), $args); + $this->init[] = $args; + } + + /** + * Устанавливает новый обработчик ошибок + * Обработчик получает 2 аргумента: + * - сообщение об ошибке + * - массив (код, сообщение, запрос, контекст) + * + * @param callback|null|false $handler обработчик ошибок + *
null - по умолчанию + *
false - отключен + * @return callback|null|false предыдущий обработчик + */ + public function setErrorHandler($handler) + { + $prev = $this->errorHandler; + $this->errorHandler = $handler; + if ($this->DbSimple) + $this->DbSimple->setErrorHandler($handler); + return $prev; + } + + /** @var callback обработчик ошибок */ + private $errorHandler = null; + private $_cachePrefix = ''; + private $_identPrefix = null; + private $_logger = null; + private $_cacher = null; + + /** + * callback setLogger(callback $logger) + * Set query logger called before each query is executed. + * Returns previous logger. + */ + public function setLogger($logger) + { + $prev = $this->_logger; + $this->_logger = $logger; + if ($this->DbSimple) + $this->DbSimple->setLogger($logger); + return $prev; + } + + /** + * callback setCacher(callback $cacher) + * Set cache mechanism called during each query if specified. + * Returns previous handler. + */ + public function setCacher(Zend_Cache_Backend_Interface $cacher=null) + { + $prev = $this->_cacher; + $this->_cacher = $cacher; + if ($this->DbSimple) + $this->DbSimple->setCacher($cacher); + return $prev; + } + + /** + * string setIdentPrefix($prx) + * Set identifier prefix used for $_ placeholder. + */ + public function setIdentPrefix($prx) + { + $old = $this->_identPrefix; + if ($prx !== null) $this->_identPrefix = $prx; + if ($this->DbSimple) + $this->DbSimple->setIdentPrefix($prx); + return $old; + } + + /** + * string setCachePrefix($prx) + * Set cache prefix used in key caclulation. + */ + public function setCachePrefix($prx) + { + $old = $this->_cachePrefix; + if ($prx !== null) $this->_cachePrefix = $prx; + if ($this->DbSimple) + $this->DbSimple->setCachePrefix($prx); + return $old; + } + + /** + * Разбирает строку DSN в массив параметров подключения к базе + * + * @param string $dsn строка DSN для разбора + * @return array Параметры коннекта + */ + protected function parseDSN($dsn) + { + return DbSimple_Generic::parseDSN($dsn); + } + +} diff --git a/other/AoWoW-master/includes/DbSimple/Database.php b/other/AoWoW-master/includes/DbSimple/Database.php new file mode 100644 index 0000000..fe394af --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Database.php @@ -0,0 +1,1421 @@ +. + * + * Contains 3 classes: + * - DbSimple_Database: common database methods + * - DbSimple_Blob: common BLOB support + * - DbSimple_LastError: error reporting and tracking + * + * Special result-set fields: + * - ARRAY_KEY* ("*" means "anything") + * - PARENT_KEY + * + * Transforms: + * - GET_ATTRIBUTES + * - CALC_TOTAL + * - GET_TOTAL + * - UNIQ_KEY + * + * Query attributes: + * - BLOB_OBJ + * - CACHE + * + * @author Dmitry Koterov, http://forum.dklab.ru/users/DmitryKoterov/ + * @author Konstantin Zhinko, http://forum.dklab.ru/users/KonstantinGinkoTit/ + * @author Ivan Borzenkov, http://forum.dklab.ru/users/Ivan1986/ + * + * @version 2.x $Id$ + */ + +/** + * Use this constant as placeholder value to skip optional SQL block [...]. + */ +if (!defined('DBSIMPLE_SKIP')) + define('DBSIMPLE_SKIP', log(0)); + +/** + * Names of special columns in result-set which is used + * as array key (or karent key in forest-based resultsets) in + * resulting hash. + */ +if (!defined('DBSIMPLE_ARRAY_KEY')) + define('DBSIMPLE_ARRAY_KEY', 'ARRAY_KEY'); // hash-based resultset support +if (!defined('DBSIMPLE_PARENT_KEY')) + define('DBSIMPLE_PARENT_KEY', 'PARENT_KEY'); // forrest-based resultset support + + +if ( !interface_exists('Zend_Cache_Backend_Interface', false) ) { + require_once __DIR__ . '/Zend/Cache.php'; + require_once __DIR__ . '/Zend/Cache/Backend/Interface.php'; +} + +require_once __DIR__ . '/CacherImpl.php'; + + +/** + * + * Base class for all databases. + * Can create transactions and new BLOBs, parse DSNs. + * + * Logger is COMMON for multiple transactions. + * Error handler is private for each transaction and database. + */ +abstract class DbSimple_Database extends DbSimple_LastError +{ + /** + * Public methods. + */ + + /** + * object blob($blob_id) + * Create new blob + */ + public function blob($blob_id = null) + { + $this->_resetLastError(); + return $this->_performNewBlob($blob_id); + } + + /** + * void transaction($mode) + * Create new transaction. + */ + public function transaction($mode=null) + { + $this->_resetLastError(); + $this->_logQuery('-- START TRANSACTION '.$mode); + return $this->_performTransaction($mode); + } + + /** + * mixed commit() + * Commit the transaction. + */ + public function commit() + { + $this->_resetLastError(); + $this->_logQuery('-- COMMIT'); + return $this->_performCommit(); + } + + /** + * mixed rollback() + * Rollback the transaction. + */ + public function rollback() + { + $this->_resetLastError(); + $this->_logQuery('-- ROLLBACK'); + return $this->_performRollback(); + } + + /** + * mixed select(string $query [, $arg1] [,$arg2] ...) + * Execute query and return the result. + */ + public function select($query) + { + $args = func_get_args(); + $total = false; + return $this->_query($args, $total); + } + + /** + * mixed selectPage(int &$total, string $query [, $arg1] [,$arg2] ...) + * Execute query and return the result. + * Total number of found rows (independent to LIMIT) is returned in $total + * (in most cases second query is performed to calculate $total). + */ + public function selectPage(&$total, $query) + { + $args = func_get_args(); + array_shift($args); + $total = true; + return $this->_query($args, $total); + } + + /** + * hash selectRow(string $query [, $arg1] [,$arg2] ...) + * Return the first row of query result. + * On errors return false and set last error. + * If no one row found, return array()! It is useful while debugging, + * because PHP DOES NOT generates notice on $row['abc'] if $row === null + * or $row === false (but, if $row is empty array, notice is generated). + */ + public function selectRow() + { + $args = func_get_args(); + $total = false; + $rows = $this->_query($args, $total); + if (!is_array($rows)) return $rows; + if (!count($rows)) return array(); + reset($rows); + return current($rows); + } + + /** + * array selectCol(string $query [, $arg1] [,$arg2] ...) + * Return the first column of query result as array. + */ + public function selectCol() + { + $args = func_get_args(); + $total = false; + $rows = $this->_query($args, $total); + if (!is_array($rows)) return $rows; + $this->_shrinkLastArrayDimensionCallback($rows); + return $rows; + } + + /** + * scalar selectCell(string $query [, $arg1] [,$arg2] ...) + * Return the first cell of the first column of query result. + * If no one row selected, return null. + */ + public function selectCell() + { + $args = func_get_args(); + $total = false; + $rows = $this->_query($args, $total); + if (!is_array($rows)) return $rows; + if (!count($rows)) return null; + reset($rows); + $row = current($rows); + if (!is_array($row)) return $row; + reset($row); + return current($row); + } + + /** + * mixed query(string $query [, $arg1] [,$arg2] ...) + * Alias for select(). May be used for INSERT or UPDATE queries. + */ + public function query() + { + $args = func_get_args(); + $total = false; + return $this->_query($args, $total); + } + + /** + * string escape(mixed $s, bool $isIdent=false) + * Enclose the string into database quotes correctly escaping + * special characters. If $isIdent is true, value quoted as identifier + * (e.g.: `value` in MySQL, "value" in Firebird, [value] in MSSQL). + */ + public function escape($s, $isIdent=false) + { + if(is_int($s)) { + // if this is a integer value - not need to escape (as for ?d placeholder) + return $s; + } elseif(is_float($s)) { + // for mysql the point "." is the separator for the decimal point + // for example, as for "?f" placeholder + return str_replace(',', '.', $s); + } + + return $this->_performEscape($s, $isIdent); + } + + + /** + * DbSimple_SubQuery subquery(string $query [, $arg1] [,$arg2] ...) + * Выполняет разворачивание плейсхолдеров без коннекта к базе + * Нужно для сложных запросов, состоящих из кусков, которые полезно сохранить + * + */ + public function subquery() + { + $args = func_get_args(); + $this->_expandPlaceholders($args,$this->_placeholderNativeArgs !== null); + return new DbSimple_SubQuery($args); + } + + + /** + * callback setLogger(callback $logger) + * Set query logger called before each query is executed. + * Returns previous logger. + */ + public function setLogger($logger) + { + $prev = $this->_logger; + $this->_logger = $logger; + return $prev; + } + + /** + * callback setCacher(callback $cacher) + * Set cache mechanism called during each query if specified. + * Returns previous handler. + */ + public function setCacher($cacher=null) + { + $prev = $this->_cacher; + + if ( is_null($cacher) ) { + return $prev; + } + + if ($cacher instanceof Zend_Cache_Backend_Interface) { + $this->_cacher = $cacher; + return $prev; + } + + if ( is_callable($cacher) ) { + $this->_cacher = new CacherImpl($cacher); + return $prev; + } + + return $prev; + } + + /** + * string setIdentPrefix($prx) + * Set identifier prefix used for $_ placeholder. + */ + public function setIdentPrefix($prx) + { + $old = $this->_identPrefix; + if ($prx !== null) $this->_identPrefix = $prx; + return $old; + } + + /** + * string setCachePrefix($prx) + * Set cache prefix used in key caclulation. + */ + public function setCachePrefix($prx) + { + $old = $this->_cachePrefix; + if ($prx !== null) $this->_cachePrefix = $prx; + return $old; + } + + /** + * Задает имя класса строки + * + *
для следующего запроса каждая строка будет + * заменена классом, конструктору которого передается + * массив поле=>значение для этой строки + * + * @param string $name имя класса + * @return DbSimple_Generic_Database указатель на себя + */ + public function setClassName($name) + { + $this->_className = $name; + return $this; + } + + /** + * array getStatistics() + * Returns various statistical information. + */ + public function getStatistics() + { + return $this->_statistics; + } + + + /** + * string _performEscape(mixed $s, bool $isIdent=false) + */ + abstract protected function _performEscape($s, $isIdent=false); + + /** + * object _performNewBlob($id) + * + * Returns new blob object. + */ + abstract protected function _performNewBlob($id=null); + + /** + * list _performGetBlobFieldNames($resultResource) + * Get list of all BLOB field names in result-set. + */ + abstract protected function _performGetBlobFieldNames($result); + + /** + * mixed _performTransformQuery(array &$query, string $how) + * + * Transform query different way specified by $how. + * May return some information about performed transform. + */ + abstract protected function _performTransformQuery(&$queryMain, $how); + + + /** + * resource _performQuery($arrayQuery) + * Must return: + * - For SELECT queries: ID of result-set (PHP resource). + * - For other queries: query status (scalar). + * - For error queries: false (and call _setLastError()). + */ + abstract protected function _performQuery($arrayQuery); + + /** + * mixed _performFetch($resultResource) + * Fetch ONE NEXT row from result-set. + * Must return: + * - For SELECT queries: all the rows of the query (2d arrray). + * - For INSERT queries: ID of inserted row. + * - For UPDATE queries: number of updated rows. + * - For other queries: query status (scalar). + * - For error queries: false (and call _setLastError()). + */ + abstract protected function _performFetch($result); + + /** + * mixed _performTransaction($mode) + * Start new transaction. + */ + abstract protected function _performTransaction($mode=null); + + /** + * mixed _performCommit() + * Commit the transaction. + */ + abstract protected function _performCommit(); + + /** + * mixed _performRollback() + * Rollback the transaction. + */ + abstract protected function _performRollback(); + + /** + * string _performGetPlaceholderIgnoreRe() + * Return regular expression which matches ignored query parts. + * This is needed to skip placeholder replacement inside comments, constants etc. + */ + protected function _performGetPlaceholderIgnoreRe() + { + return ''; + } + + /** + * Returns marker for native database placeholder. E.g. in FireBird it is '?', + * in PostgreSQL - '$1', '$2' etc. + * + * @param int $n Number of native placeholder from the beginning of the query (begins from 0!). + * @return string String representation of native placeholder marker (by default - '?'). + */ + protected function _performGetNativePlaceholderMarker($n) + { + return '?'; + } + + + /** + * array parseDSN(mixed $dsn) + * Parse a data source name. + * See parse_url() for details. + */ + protected function parseDSN($dsn) + { + if (is_array($dsn)) return $dsn; + $parsed = @parse_url($dsn); + if (!$parsed) return null; + $params = null; + if (!empty($parsed['query'])) { + parse_str($parsed['query'], $params); + $parsed += $params; + } + $parsed['dsn'] = $dsn; + return $parsed; + } + + + /** + * array _query($query, &$total) + * See _performQuery(). + */ + private function _query($query, &$total) + { + $this->_resetLastError(); + + // Fetch query attributes. + $this->attributes = $this->_transformQuery($query, 'GET_ATTRIBUTES'); + + // Modify query if needed for total counting. + if ($total) + $this->_transformQuery($query, 'CALC_TOTAL'); + + $rows = false; + $cache_it = false; + // Кешер у нас либо null либо соответствует Zend интерфейсу + if ( !empty($this->attributes['CACHE']) && ($this->_cacher instanceof Zend_Cache_Backend_Interface) ) + { + + $hash = $this->_cachePrefix . md5(serialize($query)); + // Getting data from cache if possible + $fetchTime = $firstFetchTime = 0; + $qStart = microtime(true); + $cacheData = unserialize($this->_cacher->load($hash)); + $queryTime = microtime(true) - $qStart; + + $invalCache = isset($cacheData['invalCache']) ? $cacheData['invalCache'] : null; + $result = isset($cacheData['result']) ? $cacheData['result'] : null; + $rows = isset($cacheData['rows']) ? $cacheData['rows'] : null; + + + $cache_params = $this->attributes['CACHE']; + + // Calculating cache time to live + $re = '/ + (?> + ([0-9]+) #1 - hours + h)? [ \t]* + (?> + ([0-9]+) #2 - minutes + m)? [ \t]* + (?> + ([0-9]+) #3 - seconds + s?)? (,)? + /sx'; + $m = null; + preg_match($re, $cache_params, $m); + $ttl = (isset($m[3])?$m[3]:0) + + (isset($m[2])?$m[2]:0) * 60 + + (isset($m[1])?$m[1]:0) * 3600; + // Cutting out time param - now there are just fields for uniqKey or nothing + $cache_params = trim(preg_replace($re, '', $cache_params, 1)); + + $uniq_key = null; + + // UNIQ_KEY calculation + if (!empty($cache_params)) { + $dummy = null; + // There is no need in query, cos' needle in $this->attributes['CACHE'] + $this->_transformQuery($dummy, 'UNIQ_KEY'); + $uniq_key = call_user_func(array(&$this, 'select'), $dummy); + $uniq_key = md5(serialize($uniq_key)); + } + // Check TTL? + $ok = empty($ttl) || $cacheData; + + // Invalidate cache? + if ($ok && $uniq_key == $invalCache) { + $this->_logQuery($query); + $this->_logQueryStat($queryTime, $fetchTime, $firstFetchTime, $rows); + + } + else $cache_it = true; + } + + if (false === $rows || true === $cache_it) { + $this->_logQuery($query); + + // Run the query (counting time). + $qStart = microtime(true); + $result = $this->_performQuery($query); + $fetchTime = $firstFetchTime = 0; + + if (is_resource($result) || is_object($result)) { + $rows = array(); + // Fetch result row by row. + $fStart = microtime(true); + $row = $this->_performFetch($result); + $firstFetchTime = microtime(true) - $fStart; + if (!empty($row)) { + $rows[] = $row; + while ($row=$this->_performFetch($result)) { + $rows[] = $row; + } + } + $fetchTime = microtime(true) - $fStart; + } else { + $rows = $result; + } + $queryTime = microtime(true) - $qStart; + + // Log query statistics. + $this->_logQueryStat($queryTime, $fetchTime, $firstFetchTime, $rows); + + // Prepare BLOB objects if needed. + if (is_array($rows) && !empty($this->attributes['BLOB_OBJ'])) { + $blobFieldNames = $this->_performGetBlobFieldNames($result); + foreach ($blobFieldNames as $name) { + for ($r = count($rows)-1; $r>=0; $r--) { + $rows[$r][$name] =& $this->_performNewBlob($rows[$r][$name]); + } + } + } + + // Transform resulting rows. + $result = $this->_transformResult($rows); + + // Storing data in cache + if ($cache_it && $this->_cacher) + { + $this->_cacher->save( + serialize(array( + 'invalCache' => $uniq_key, + 'result' => $result, + 'rows' => $rows + )), + $hash, + array(), + $ttl==0?false:$ttl + ); + } + + } + // Count total number of rows if needed. + if (is_array($result) && $total) { + $this->_transformQuery($query, 'GET_TOTAL'); + $total = call_user_func_array(array(&$this, 'selectCell'), $query); + } + + if ($this->_className) + { + foreach($result as $k=>$v) + $result[$k] = new $this->_className($v); + $this->_className = ''; + } + + return $result; + } + + + /** + * mixed _transformQuery(array &$query, string $how) + * + * Transform query different way specified by $how. + * May return some information about performed transform. + */ + private function _transformQuery(&$query, $how) + { + // Do overriden transformation. + $result = $this->_performTransformQuery($query, $how); + if ($result === true) return $result; + // Common transformations. + switch ($how) { + case 'GET_ATTRIBUTES': + // Extract query attributes. + $options = array(); + $q = $query[0]; + $m = null; + while (preg_match('/^ \s* -- [ \t]+ (\w+): ([^\r\n]+) [\r\n]* /sx', $q, $m)) { + $options[$m[1]] = trim($m[2]); + $q = substr($q, strlen($m[0])); + } + return $options; + case 'UNIQ_KEY': + $q = $this->attributes['CACHE']; + $query = array(); + while(preg_match('/(\w+)\.\w+/sx', $q, $m)) { + $query[] = 'SELECT MAX('.$m[0].') AS M, COUNT(*) AS C FROM '.$m[1]; + $q = substr($q, strlen($m[0])); + } + $query = " -- UNIQ_KEY\n". + join("\nUNION\n", $query); + return true; + } + // No such transform. + $this->_setLastError(-1, "No such transform type: $how", $query); + } + + + /** + * void _expandPlaceholders(array &$queryAndArgs, bool $useNative=false) + * Replace placeholders by quoted values. + * Modify $queryAndArgs. + */ + protected function _expandPlaceholders(&$queryAndArgs, $useNative=false) + { + $cacheCode = null; + if ($this->_logger) { + // Serialize is much faster than placeholder expansion. So use caching. + $cacheCode = md5(serialize($queryAndArgs) . '|' . $useNative . '|' . $this->_identPrefix); + if (isset($this->_placeholderCache[$cacheCode])) { + $queryAndArgs = $this->_placeholderCache[$cacheCode]; + return; + } + } + + if (!is_array($queryAndArgs)) { + $queryAndArgs = array($queryAndArgs); + } + + $this->_placeholderNativeArgs = $useNative? array() : null; + $this->_placeholderArgs = array_reverse($queryAndArgs); + + $query = array_pop($this->_placeholderArgs); // array_pop is faster than array_shift + + // Do all the work. + $this->_placeholderNoValueFound = false; + $query = $this->_expandPlaceholdersFlow($query); + + if ($useNative) { + array_unshift($this->_placeholderNativeArgs, $query); + $queryAndArgs = $this->_placeholderNativeArgs; + } else { + $queryAndArgs = array($query); + } + + if ($cacheCode) { + $this->_placeholderCache[$cacheCode] = $queryAndArgs; + } + } + + + /** + * Do real placeholder processing. + * Imply that all interval variables (_placeholder_*) already prepared. + * May be called recurrent! + */ + private function _expandPlaceholdersFlow($query) + { + $re = '{ + (?> + # Ignored chunks. + (?> + # Comment. + -- [^\r\n]* + ) + | + (?> + # DB-specifics. + ' . trim($this->_performGetPlaceholderIgnoreRe()) . ' + ) + ) + | + (?> + # Optional blocks + \{ + # Use "+" here, not "*"! Else nested blocks are not processed well. + ( (?> (?>(\??)[^{}]+) | (?R) )* ) #1 + \} + ) + | + (?> + # Placeholder + (\?) ( [_dsafn&|\#]? ) #2 #3 + ) + }sxS'; + $query = preg_replace_callback( + $re, + array(&$this, '_expandPlaceholdersCallback'), + $query + ); + return $query; + } + + static $join = array( + '|' => array('inner' => ' AND ', 'outer' => ') OR (',), + '&' => array('inner' => ' OR ', 'outer' => ') AND (',), + 'a' => array('inner' => ', ', 'outer' => '), (',), + ); + + /** + * string _expandPlaceholdersCallback(list $m) + * Internal function to replace placeholders (see preg_replace_callback). + */ + private function _expandPlaceholdersCallback($m) + { + // Placeholder. + if (!empty($m[3])) { + $type = $m[4]; + + // Idenifier prefix. + if ($type == '_') { + return $this->_identPrefix; + } + + // Value-based placeholder. + if (!$this->_placeholderArgs) return 'DBSIMPLE_ERROR_NO_VALUE'; + $value = array_pop($this->_placeholderArgs); + + // Skip this value? + if ($value === DBSIMPLE_SKIP) { + $this->_placeholderNoValueFound = true; + return ''; + } + + // First process guaranteed non-native placeholders. + switch ($type) { + case 's': + if (!($value instanceof DbSimple_SubQuery)) + return 'DBSIMPLE_ERROR_VALUE_NOT_SUBQUERY'; + return $value->get($this->_placeholderNativeArgs); + case '|': + case '&': + case 'a': + if (!$value) $this->_placeholderNoValueFound = true; + if (!is_array($value)) return 'DBSIMPLE_ERROR_VALUE_NOT_ARRAY'; + $parts = array(); + $multi = array(); //массив для двойной вложенности + $mult = $type!='a' || is_int(key($value)) && is_array(current($value)); + foreach ($value as $prefix => $field) { + //превращаем $value в двумерный нуменованный массив + if (!is_array($field)) { + $field = array($prefix => $field); + $prefix = 0; + } + $prefix = is_int($prefix) ? '' : + $this->escape($this->_addPrefix2Table($prefix), true) . '.'; + //для мультиинсерта очищаем ключи - их быть не может по синтаксису + if ($mult && $type=='a') + $field = array_values($field); + foreach ($field as $k => $v) + { + if ($v instanceof DbSimple_SubQuery) + $v = $v->get($this->_placeholderNativeArgs); + else + $v = $v === null? 'NULL' : $this->escape($v); + if (!is_int($k)) { + $k = $this->escape($k, true); + $parts[] = "$prefix$k=$v"; + } else { + $parts[] = $v; + } + } + if ($mult) + { + $multi[] = join(self::$join[$type]['inner'], $parts); + $parts = array(); + } + } + return $mult ? join(self::$join[$type]['outer'], $multi) : join(', ', $parts); + case '#': + // Identifier. + if (!is_array($value)) + { + if ($value instanceof DbSimple_SubQuery) + return $value->get($this->_placeholderNativeArgs); + return $this->escape($this->_addPrefix2Table($value), true); + } + $parts = array(); + foreach ($value as $table => $identifiers) + { + if (!is_array($identifiers)) + $identifiers = array($identifiers); + $prefix = ''; + if (!is_int($table)) + $prefix = $this->escape($this->_addPrefix2Table($table), true) . '.'; + foreach ($identifiers as $identifier) + if ($identifier instanceof DbSimple_SubQuery) + $parts[] = $identifier->get($this->_placeholderNativeArgs); + elseif (!is_string($identifier)) + return 'DBSIMPLE_ERROR_ARRAY_VALUE_NOT_STRING'; + else + $parts[] = $prefix . ($identifier=='*' ? '*' : + $this->escape($this->_addPrefix2Table($identifier), true)); + } + return join(', ', $parts); + case 'n': + // NULL-based placeholder. + return empty($value)? 'NULL' : intval($value); + } + + // Native arguments are not processed. + if ($this->_placeholderNativeArgs !== null) { + $this->_placeholderNativeArgs[] = $value; + return $this->_performGetNativePlaceholderMarker(count($this->_placeholderNativeArgs) - 1); + } + + // In non-native mode arguments are quoted. + if ($value === null) return 'NULL'; + switch ($type) { + case '': + if (!is_scalar($value)) return 'DBSIMPLE_ERROR_VALUE_NOT_SCALAR'; + return $this->escape($value); + case 'd': + return intval($value); + case 'f': + return str_replace(',', '.', floatval($value)); + } + // By default - escape as string. + return $this->escape($value); + } + + // Optional block. + if (isset($m[1]) && strlen($block=$m[1])) + { + $prev = $this->_placeholderNoValueFound; + if ($this->_placeholderNativeArgs !== null) + $prevPh = $this->_placeholderNativeArgs; + + // Проверка на {? } - условный блок + $skip = false; + if ($m[2]=='?') + { + $skip = array_pop($this->_placeholderArgs) === DBSIMPLE_SKIP; + $block[0] = ' '; + } + + $block = $this->_expandOptionalBlock($block); + + if ($skip) + $block = ''; + + if ($this->_placeholderNativeArgs !== null) + if ($this->_placeholderNoValueFound) + $this->_placeholderNativeArgs = $prevPh; + $this->_placeholderNoValueFound = $prev; // recurrent-safe + return $block; + } + + // Default: skipped part of the string. + return $m[0]; + } + + + /** + * Заменяет ?_ на текущий префикс + * + * @param string $table имя таблицы + * @return string имя таблицы + */ + private function _addPrefix2Table($table) + { + if (substr($table, 0, 2) == '?_') + $table = $this->_identPrefix . substr($table, 2); + return $table; + } + + + /** + * Разбирает опциональный блок - условие | + * + * @param string $block блок, который нужно разобрать + * @return string что получается в результате разбора блока + */ + private function _expandOptionalBlock($block) + { + $alts = array(); + $alt = ''; + $sub=0; + $exp = explode('|',$block); + // Оптимизация, так как в большинстве случаев | не используется + if (count($exp)==1) + $alts=$exp; + else + foreach ($exp as $v) + { + // Реализуем автоматный магазин для нахождения нужной скобки + // На суммарную парность скобок проверять нет необходимости - об этом заботится регулярка + $sub+=substr_count($v,'{'); + $sub-=substr_count($v,'}'); + if ($sub>0) + $alt.=$v.'|'; + else + { + $alts[]=$alt.$v; + $alt=''; + } + } + $r=''; + foreach ($alts as $block) + { + $this->_placeholderNoValueFound = false; + $block = $this->_expandPlaceholdersFlow($block); + // Необходимо пройти все блоки, так как если пропустить оставшиесь, + // то это нарушит порядок подставляемых значений + if ($this->_placeholderNoValueFound == false && $r=='') + $r = ' '.$block.' '; + } + return $r; + } + + + /** + * void _setLastError($code, $msg, $query) + * Set last database error context. + * Aditionally expand placeholders. + */ + protected function _setLastError($code, $msg, $query) + { + if (is_array($query)) { + $this->_expandPlaceholders($query, false); + $query = $query[0]; + } + return parent::_setLastError($code, $msg, $query); + } + + + /** + * Convert SQL field-list to COUNT(...) clause + * (e.g. 'DISTINCT a AS aa, b AS bb' -> 'COUNT(DISTINCT a, b)'). + */ + private function _fieldList2Count($fields) + { + $m = null; + if (preg_match('/^\s* DISTINCT \s* (.*)/sx', $fields, $m)) { + $fields = $m[1]; + $fields = preg_replace('/\s+ AS \s+ .*? (?=,|$)/sx', '', $fields); + return "COUNT(DISTINCT $fields)"; + } else { + return 'COUNT(*)'; + } + } + + + /** + * array _transformResult(list $rows) + * Transform resulting rows to various formats. + */ + private function _transformResult($rows) + { + // is not array + if (!is_array($rows) || !$rows) + return $rows; + + // Find ARRAY_KEY* AND PARENT_KEY fields in field list. + $pk = null; + $ak = array(); + foreach (array_keys(current($rows)) as $fieldName) + if (0 == strncasecmp($fieldName, DBSIMPLE_ARRAY_KEY, strlen(DBSIMPLE_ARRAY_KEY))) + $ak[] = $fieldName; + elseif (0 == strncasecmp($fieldName, DBSIMPLE_PARENT_KEY, strlen(DBSIMPLE_PARENT_KEY))) + $pk = $fieldName; + + if (!$ak) + return $rows; + + natsort($ak); // sort ARRAY_KEY* using natural comparision + // Tree-based array? Fields: ARRAY_KEY, PARENT_KEY + if ($pk !== null) + return $this->_transformResultToForest($rows, $ak[0], $pk); + // Key-based array? Fields: ARRAY_KEY. + return $this->_transformResultToHash($rows, $ak); + } + + + /** + * Converts rowset to key-based array. + * + * @param array $rows Two-dimensional array of resulting rows. + * @param array $ak List of ARRAY_KEY* field names. + * @return array Transformed array. + */ + private function _transformResultToHash(array $rows, array $arrayKeys) + { + $result = array(); + foreach ($rows as $row) { + // Iterate over all of ARRAY_KEY* fields and build array dimensions. + $current =& $result; + foreach ($arrayKeys as $ak) { + $key = $row[$ak]; + unset($row[$ak]); // remove ARRAY_KEY* field from result row + if ($key !== null) { + $current =& $current[$key]; + } else { + // IF ARRAY_KEY field === null, use array auto-indices. + $tmp = array(); + $current[] =& $tmp; + $current =& $tmp; + unset($tmp); // we use $tmp, because don't know the value of auto-index + } + } + $current = $row; // save the row in last dimension + } + return $result; + } + + + /** + * Converts rowset to the forest. + * + * @param array $rows Two-dimensional array of resulting rows. + * @param string $idName Name of ID field. + * @param string $pidName Name of PARENT_ID field. + * @return array Transformed array (tree). + */ + private function _transformResultToForest(array $rows, $idName, $pidName) + { + $children = array(); // children of each ID + $ids = array(); + // Collect who are children of whom. + foreach ($rows as $i=>$r) { + $row =& $rows[$i]; + $id = $row[$idName]; + if ($id === null) { + // Rows without an ID are totally invalid and makes the result tree to + // be empty (because PARENT_ID = null means "a root of the tree"). So + // skip them totally. + continue; + } + $pid = $row[$pidName]; + if ($id == $pid) $pid = null; + $children[$pid][$id] =& $row; + if (!isset($children[$id])) $children[$id] = array(); + $row['childNodes'] =& $children[$id]; + $ids[$id] = true; + } + // Root elements are elements with non-found PIDs. + $forest = array(); + foreach ($rows as $i=>$r) { + $row =& $rows[$i]; + $id = $row[$idName]; + $pid = $row[$pidName]; + if ($pid == $id) $pid = null; + if (!isset($ids[$pid])) { + $forest[$row[$idName]] =& $row; + } + unset($row[$idName]); + unset($row[$pidName]); + } + return $forest; + } + + + /** + * Replaces the last array in a multi-dimensional array $V by its first value. + * Used for selectCol(), when we need to transform (N+1)d resulting array + * to Nd array (column). + */ + private function _shrinkLastArrayDimensionCallback(&$v) + { + if (!$v) return; + reset($v); + if (!is_array($firstCell = current($v))) { + $v = $firstCell; + } else { + array_walk($v, array(&$this, '_shrinkLastArrayDimensionCallback')); + } + } + + + /** + * void _logQuery($query, $noTrace=false) + * Must be called on each query. + * If $noTrace is true, library caller is not solved (speed improvement). + */ + protected function _logQuery($query, $noTrace=false) + { + if (!$this->_logger) return; + $this->_expandPlaceholders($query, false); + $args = array(); + $args[] =& $this; + $args[] = $query[0]; + $args[] = $noTrace? null : $this->findLibraryCaller(); + return call_user_func_array($this->_logger, $args); + } + + + /** + * void _logQueryStat($queryTime, $fetchTime, $firstFetchTime, $rows) + * Log information about performed query statistics. + */ + private function _logQueryStat($queryTime, $fetchTime, $firstFetchTime, $rows) + { + // Always increment counters. + $this->_statistics['time'] += $queryTime; + $this->_statistics['count']++; + + // If no logger, economize CPU resources and actually log nothing. + if (!$this->_logger) return; + + $dt = round($queryTime * 1000); + $firstFetchTime = round($firstFetchTime*1000); + $tailFetchTime = round($fetchTime * 1000) - $firstFetchTime; + $log = " -- "; + if ($firstFetchTime + $tailFetchTime) { + $log = sprintf(" -- %d ms = %d+%d".($tailFetchTime? "+%d" : ""), $dt, $dt-$firstFetchTime-$tailFetchTime, $firstFetchTime, $tailFetchTime); + } else { + $log = sprintf(" -- %d ms", $dt); + } + $log .= "; returned "; + + if (!is_array($rows)) { + $log .= $this->escape($rows); + } else { + $detailed = null; + if (count($rows) == 1) { + $len = 0; + $values = array(); + foreach ($rows[0] as $k=>$v) { + $len += strlen($v); + if ($len > $this->MAX_LOG_ROW_LEN) { + break; + } + $values[] = $v === null? 'NULL' : $this->escape($v); + } + if ($len <= $this->MAX_LOG_ROW_LEN) { + $detailed = "(" . preg_replace("/\r?\n/", "\\n", join(', ', $values)) . ")"; + } + } + if ($detailed) { + $log .= $detailed; + } else { + $log .= count($rows). " row(s)"; + } + } + + $this->_logQuery($log, true); + } + + + // Identifiers prefix (used for ?_ placeholder). + private $_identPrefix = ''; + + // Queries statistics. + private $_statistics = array( + 'time' => 0, + 'count' => 0, + ); + + private $_cachePrefix = ''; + private $_className = ''; + + private $_logger = null; + private $_cacher = null; + private $_placeholderArgs, $_placeholderNativeArgs, $_placeholderCache=array(); + private $_placeholderNoValueFound; + + /** + * When string representation of row (in characters) is greater than this, + * row data will not be logged. + */ + private $MAX_LOG_ROW_LEN = 128; +} + + +/** + * Database BLOB. + * Can read blob chunk by chunk, write data to BLOB. + */ +interface DbSimple_Blob +{ + /** + * string read(int $length) + * Returns following $length bytes from the blob. + */ + public function read($len); + + /** + * string write($data) + * Appends data to blob. + */ + public function write($data); + + /** + * int length() + * Returns length of the blob. + */ + public function length(); + + /** + * blobid close() + * Closes the blob. Return its ID. No other way to obtain this ID! + */ + public function close(); +} + + +/** + * Класс для хранения подзапроса - результата выполнения функции + * DbSimple_Generic_Database::subquery + * + */ +class DbSimple_SubQuery +{ + private $query=array(); + + public function __construct(array $q) + { + $this->query = $q; + } + + /** + * Возвращает сам запрос и добавляет плейсхолдеры в массив переданный по ссылке + * + * @param &array|null - ссылка на массив плейсхолдеров + * @return string + */ + public function get(&$ph) + { + if ($ph !== null) + $ph = array_merge($ph, array_slice($this->query,1,null,true)); + return $this->query[0]; + } +} + + +/** + * Support for error tracking. + * Can hold error messages, error queries and build proper stacktraces. + */ +abstract class DbSimple_LastError +{ + public $error = null; + public $errmsg = null; + private $errorHandler = null; + private $ignoresInTraceRe = 'DbSimple_.*::.* | call_user_func.*'; + + /** + * abstract void _logQuery($query) + * Must be overriden in derived class. + */ + abstract protected function _logQuery($query); + + /** + * void _resetLastError() + * Reset the last error. Must be called on correct queries. + */ + protected function _resetLastError() + { + $this->error = $this->errmsg = null; + } + + /** + * void _setLastError(int $code, string $message, string $query) + * Fill $this->error property with error information. Error context + * (code initiated the query outside DbSimple) is assigned automatically. + */ + protected function _setLastError($code, $msg, $query) + { + $context = "unknown"; + if ($t = $this->findLibraryCaller()) { + $context = (isset($t['file'])? $t['file'] : '?') . ' line ' . (isset($t['line'])? $t['line'] : '?'); + } + $this->error = array( + 'code' => $code, + 'message' => rtrim($msg), + 'query' => $query, + 'context' => $context, + ); + $this->errmsg = rtrim($msg) . ($context? " at $context" : ""); + + $this->_logQuery(" -- error #".$code.": ".preg_replace('/(\r?\n)+/s', ' ', $this->errmsg)); + + if (is_callable($this->errorHandler)) { + call_user_func($this->errorHandler, $this->errmsg, $this->error); + } + + return false; + } + + + /** + * callback setErrorHandler(callback $handler) + * Set new error handler called on database errors. + * Handler gets 3 arguments: + * - error message + * - full error context information (last query etc.) + */ + public function setErrorHandler($handler) + { + $prev = $this->errorHandler; + $this->errorHandler = $handler; + // In case of setting first error handler for already existed + // error - call the handler now (usual after connect()). + if (!$prev && $this->error && $this->errorHandler) { + call_user_func($this->errorHandler, $this->errmsg, $this->error); + } + return $prev; + } + + /** + * void addIgnoreInTrace($reName) + * Add regular expression matching ClassName::functionName or functionName. + * Matched stack frames will be ignored in stack traces passed to query logger. + */ + public function addIgnoreInTrace($name) + { + $this->ignoresInTraceRe .= "|" . $name; + } + + /** + * array of array findLibraryCaller() + * Return part of stacktrace before calling first library method. + * Used in debug purposes (query logging etc.). + */ + public function findLibraryCaller() + { + $caller = call_user_func( + array(&$this, 'debug_backtrace_smart'), + $this->ignoresInTraceRe, + true + ); + return $caller; + } + + /** + * array debug_backtrace_smart($ignoresRe=null, $returnCaller=false) + * + * Return stacktrace. Correctly work with call_user_func* + * (totally skip them correcting caller references). + * If $returnCaller is true, return only first matched caller, + * not all stacktrace. + * + * @version 2.03 + */ + private function debug_backtrace_smart($ignoresRe=null, $returnCaller=false) + { + $trace = debug_backtrace(); + + if ($ignoresRe !== null) + $ignoresRe = "/^(?>{$ignoresRe})$/six"; + $smart = array(); + $framesSeen = 0; + for ($i=0, $n=count($trace); $i<$n; $i++) { + $t = $trace[$i]; + if (!$t) continue; + + // Next frame. + $next = isset($trace[$i+1])? $trace[$i+1] : null; + + // Dummy frame before call_user_func* frames. + if (!isset($t['file'])) { + $t['over_function'] = $trace[$i+1]['function']; + $t = $t + $trace[$i+1]; + $trace[$i+1] = null; // skip call_user_func on next iteration + $next = isset($trace[$i+2])? $trace[$i+2] : null; // Correct Next frame. + } + + // Skip myself frame. + if (++$framesSeen < 2) continue; + + // 'class' and 'function' field of next frame define where + // this frame function situated. Skip frames for functions + // situated in ignored places. + if ($ignoresRe && $next) { + // Name of function "inside which" frame was generated. + $frameCaller = (isset($next['class'])? $next['class'].'::' : '') . (isset($next['function'])? $next['function'] : ''); + if (preg_match($ignoresRe, $frameCaller)) continue; + } + + // On each iteration we consider ability to add PREVIOUS frame + // to $smart stack. + if ($returnCaller) return $t; + $smart[] = $t; + } + return $smart; + } + +} diff --git a/other/AoWoW-master/includes/DbSimple/Generic.php b/other/AoWoW-master/includes/DbSimple/Generic.php new file mode 100644 index 0000000..5dc2f14 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Generic.php @@ -0,0 +1,193 @@ +. + * + * Contains 3 classes: + * - DbSimple_Generic: database factory class + * - DbSimple_Generic_Database: common database methods + * - DbSimple_Generic_Blob: common BLOB support + * - DbSimple_Generic_LastError: error reporting and tracking + * + * Special result-set fields: + * - ARRAY_KEY* ("*" means "anything") + * - PARENT_KEY + * + * Transforms: + * - GET_ATTRIBUTES + * - CALC_TOTAL + * - GET_TOTAL + * - UNIQ_KEY + * + * Query attributes: + * - BLOB_OBJ + * - CACHE + * + * @author Dmitry Koterov, http://forum.dklab.ru/users/DmitryKoterov/ + * @author Konstantin Zhinko, http://forum.dklab.ru/users/KonstantinGinkoTit/ + * + * @version 2.x $Id$ + */ + +/** + * Use this constant as placeholder value to skip optional SQL block [...]. + */ +if (!defined('DBSIMPLE_SKIP')) + define('DBSIMPLE_SKIP', log(0)); + +/** + * Names of special columns in result-set which is used + * as array key (or karent key in forest-based resultsets) in + * resulting hash. + */ +if (!defined('DBSIMPLE_ARRAY_KEY')) + define('DBSIMPLE_ARRAY_KEY', 'ARRAY_KEY'); // hash-based resultset support +if (!defined('DBSIMPLE_PARENT_KEY')) + define('DBSIMPLE_PARENT_KEY', 'PARENT_KEY'); // forrest-based resultset support + + +/** + * DbSimple factory. + */ +class DbSimple_Generic +{ + /** + * DbSimple_Generic connect(mixed $dsn) + * + * Universal static function to connect ANY database using DSN syntax. + * Choose database driver according to DSN. Return new instance + * of this driver. + * + * You can connect to MySQL by socket using this new syntax (like PDO DSN): + * $dsn = 'mysqli:unix_socket=/cloudsql/app:instance;user=root;pass=;dbname=testdb'; + * $dsn = 'mypdo:unix_socket=/cloudsql/app:instance;charset=utf8;user=testuser;pass=mypassword;dbname=testdb'; + * + * Connection by host also can be made with this syntax. + * Or you can use old syntax: + * $dsn = 'mysql://testuser:mypassword@127.0.0.1/testdb'; + * + */ + public static function connect($dsn) + { + // Load database driver and create its instance. + $parsed = DbSimple_Generic::parseDSN($dsn); + if (!$parsed) { + $dummy = null; + return $dummy; + } + $class = 'DbSimple_'.ucfirst($parsed['scheme']); + if (!class_exists($class)) { + $file = __DIR__.'/'.ucfirst($parsed['scheme']). ".php"; + if (is_file($file)) { + require_once($file); + } else { + trigger_error("Error loading database driver: no file $file", E_USER_ERROR); + return null; + } + } + $object = new $class($parsed); + if (isset($parsed['ident_prefix'])) { + $object->setIdentPrefix($parsed['ident_prefix']); + } + $object->setCachePrefix(md5(serialize($parsed['dsn']))); + return $object; + } + + + /** + * array parseDSN(mixed $dsn) + * Parse a data source name. + * See parse_url() for details. + */ + public static function parseDSN($dsn) + { + if (is_array($dsn)) return $dsn; + $parsed = parse_url($dsn); + if (!$parsed) return null; + + $params = null; + if (!empty($parsed['query'])) { + parse_str($parsed['query'], $params); + $parsed += $params; + } + + if ( empty($parsed['host']) && empty($parsed['socket']) ) { + // Parse as DBO DSN string + $parsedPdo = self::parseDsnPdo($parsed['path']); + unset($parsed['path']); + $parsed = array_merge($parsed, $parsedPdo); + } + + $parsed['dsn'] = $dsn; + return $parsed; + } // parseDSN + + + /** + * Parse string as DBO DSN string. + * + * @param $str + * @return array + */ + public static function parseDsnPdo($str) { + + if (substr($str, 0, strlen('mysql:')) == 'mysql:') { + $str = substr($str, strlen('mysql:')); + } + + $arr = explode(';', $str); + + $result = array(); + foreach ($arr as $k=>$v) { + $v = explode('=', $v); + if (count($v) == 2) + $result[ $v[0] ] = $v[1]; + } + + if ( isset($result['unix_socket']) ) { + $result['socket'] = $result['unix_socket']; + unset($result['unix_socket']); + } + + if ( isset($result['dbname']) ) { + $result['path'] = $result['dbname']; + unset($result['dbname']); + } + + if ( isset($result['charset']) ) { + $result['enc'] = $result['charset']; + unset($result['charset']); + } + + return $result; + } // parseDsnPdo + +} // DbSimple_Generic class diff --git a/other/AoWoW-master/includes/DbSimple/Ibase.php b/other/AoWoW-master/includes/DbSimple/Ibase.php new file mode 100644 index 0000000..a7e6f31 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Ibase.php @@ -0,0 +1,286 @@ +_setLastError("-1", "Interbase/Firebird extension is not loaded", "ibase_connect"); + } + $ok = $this->link = ibase_connect( + $p['host'] . (empty($p['port'])? "" : ":".$p['port']) .':'.preg_replace('{^/}s', '', $p['path']), + $p['user'], + $p['pass'], + isset($p['CHARSET']) ? $p['CHARSET'] : 'win1251', + isset($p['BUFFERS']) ? $p['BUFFERS'] : 0, + isset($p['DIALECT']) ? $p['DIALECT'] : 3, + isset($p['ROLE']) ? $p['ROLE'] : '' + ); + if (isset($p['TRANSACTION'])) $this->DbSimple_Ibase_BEST_TRANSACTION = eval($p['TRANSACTION'].";"); + $this->_resetLastError(); + if (!$ok) return $this->_setDbError('ibase_connect()'); + } + + function _performEscape($s, $isIdent=false) + { + if (!$isIdent) + return "'" . str_replace("'", "''", $s) . "'"; + else + return '"' . str_replace('"', '_', $s) . '"'; + } + + function _performTransaction($parameters=null) + { + if ($parameters === null) $parameters = $this->DbSimple_Ibase_BEST_TRANSACTION; + $this->trans = @ibase_trans($parameters, $this->link); + } + + function _performNewBlob($blobid=null) + { + return new DbSimple_Ibase_Blob($this, $blobid); + } + + function _performGetBlobFieldNames($result) + { + $blobFields = array(); + for ($i=ibase_num_fields($result)-1; $i>=0; $i--) { + $info = ibase_field_info($result, $i); + if ($info['type'] === "BLOB") $blobFields[] = $info['name']; + } + return $blobFields; + } + + function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + ` (?> [^`]+ | ``)* ` | # backticks + /\* .*? \*/ # comments + '; + } + + function _performCommit() + { + if (!is_resource($this->trans)) return false; + $result = @ibase_commit($this->trans); + if (true === $result) { + $this->trans = null; + } + return $result; + } + + + function _performRollback() + { + if (!is_resource($this->trans)) return false; + $result = @ibase_rollback($this->trans); + if (true === $result) { + $this->trans = null; + } + return $result; + } + + function _performTransformQuery(&$queryMain, $how) + { + // If we also need to calculate total number of found rows... + switch ($how) { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + // Not possible + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // TODO: GROUP BY ... -> COUNT(DISTINCT ...) + $re = '/^ + (?> -- [^\r\n]* | \s+)* + (\s* SELECT \s+) #1 + ((?:FIRST \s+ \S+ \s+ (?:SKIP \s+ \S+ \s+)? )?) #2 + (.*?) #3 + (\s+ FROM \s+ .*?) #4 + ((?:\s+ ORDER \s+ BY \s+ .*)?) #5 + $/six'; + $m = null; + if (preg_match($re, $queryMain[0], $m)) { + $queryMain[0] = $m[1] . $this->_fieldList2Count($m[3]) . " AS C" . $m[4]; + $skipHead = substr_count($m[2], '?'); + if ($skipHead) array_splice($queryMain, 1, $skipHead); + $skipTail = substr_count($m[5], '?'); + if ($skipTail) array_splice($queryMain, -$skipTail); + } + return true; + } + + return false; + } + + function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $this->_expandPlaceholders($queryMain, $this->DbSimple_Ibase_USE_NATIVE_PHOLDERS); + + $hash = $queryMain[0]; + + if (!isset($this->prepareCache[$hash])) { + $this->prepareCache[$hash] = @ibase_prepare((is_resource($this->trans) ? $this->trans : $this->link), $queryMain[0]); + } else { + // Prepare cache hit! + } + + $prepared = $this->prepareCache[$hash]; + if (!$prepared) return $this->_setDbError($queryMain[0]); + $queryMain[0] = $prepared; + $result = @call_user_func_array('ibase_execute', $queryMain); + // ATTENTION!!! + // WE MUST save prepared ID (stored in $prepared variable) somewhere + // before returning $result because of ibase destructor. Now it is done + // by $this->prepareCache. When variable $prepared goes out of scope, it + // is destroyed, and memory for result also freed by PHP. Totally we + // got "Invalud statement handle" error message. + + if ($result === false) return $this->_setDbError($queryMain[0]); + if (!is_resource($result)) { + // Non-SELECT queries return number of affected rows, SELECT - resource. + return @ibase_affected_rows((is_resource($this->trans) ? $this->trans : $this->link)); + } + return $result; + } + + function _performFetch($result) + { + // Select fetch mode. + $flags = $this->fetchFlags; + if (empty($this->attributes['BLOB_OBJ'])) $flags = $flags | IBASE_TEXT; + else $flags = $flags & ~IBASE_TEXT; + + $row = @ibase_fetch_assoc($result, $flags); + if (ibase_errmsg()) return $this->_setDbError($this->_lastQuery); + return $row; + } + + + function _setDbError($query) + { + return $this->_setLastError(ibase_errcode(), ibase_errmsg(), $query); + } + +} + +class DbSimple_Ibase_Blob implements DbSimple_Blob +{ + var $blob; // resourse link + var $id; + var $database; + + function DbSimple_Ibase_Blob(&$database, $id=null) + { + $this->database =& $database; + $this->id = $id; + $this->blob = null; + } + + function read($len) + { + if ($this->id === false) return ''; // wr-only blob + if (!($e=$this->_firstUse())) return $e; + $data = @ibase_blob_get($this->blob, $len); + if ($data === false) return $this->_setDbError('read'); + return $data; + } + + function write($data) + { + if (!($e=$this->_firstUse())) return $e; + $ok = @ibase_blob_add($this->blob, $data); + if ($ok === false) return $this->_setDbError('add data to'); + return true; + } + + function close() + { + if (!($e=$this->_firstUse())) return $e; + if ($this->blob) { + $id = @ibase_blob_close($this->blob); + if ($id === false) return $this->_setDbError('close'); + $this->blob = null; + } else { + $id = null; + } + return $this->id ? $this->id : $id; + } + + function length() + { + if ($this->id === false) return 0; // wr-only blob + if (!($e=$this->_firstUse())) return $e; + $info = @ibase_blob_info($this->id); + if (!$info) return $this->_setDbError('get length of'); + return $info[0]; + } + + function _setDbError($query) + { + $hId = $this->id === null ? "null" : ($this->id === false ? "false" : $this->id); + $query = "-- $query BLOB $hId"; + $this->database->_setDbError($query); + } + + // Called on each blob use (reading or writing). + function _firstUse() + { + // BLOB is opened - nothing to do. + if (is_resource($this->blob)) return true; + // Open or create blob. + if ($this->id !== null) { + $this->blob = @ibase_blob_open($this->id); + if ($this->blob === false) return $this->_setDbError('open'); + } else { + $this->blob = @ibase_blob_create($this->database->link); + if ($this->blob === false) return $this->_setDbError('create'); + } + return true; + } +} diff --git a/other/AoWoW-master/includes/DbSimple/Litepdo.php b/other/AoWoW-master/includes/DbSimple/Litepdo.php new file mode 100644 index 0000000..30ab9f7 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Litepdo.php @@ -0,0 +1,152 @@ +_setLastError("-1", "PDO extension is not loaded", "PDO"); + + try { + $this->link = new PDO('sqlite:'.$dsn['path']); + } catch (PDOException $e) { + $this->_setLastError($e->getCode() , $e->getMessage(), 'new PDO'); + } + $this->link->exec('SET NAMES '.(isset($dsn['enc'])?$dsn['enc']:'UTF8')); + } + + public function CreateFunction($function_name, $callback, $num_args) + { return $this->link->sqliteCreateFunction($function_name, $callback, $num_args); } + public function CreateAggregate($function_name, $step_func, $finalize_func, $num_args) + { return $this->link->CreateAggregate($function_name, $step_func, $finalize_func, $num_args); } + + protected function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + ` (?> [^`]+ | ``)* ` | # backticks + /\* .*? \*/ # comments + '; + } + + protected function _performEscape($s, $isIdent=false) + { + if (!$isIdent) { + return $this->link->quote($s); + } else { + return "`" . str_replace('`', '``', $s) . "`"; + } + } + + protected function _performTransaction($parameters=null) + { + return $this->link->beginTransaction(); + } + + protected function _performCommit() + { + return $this->link->commit(); + } + + protected function _performRollback() + { + return $this->link->rollBack(); + } + + protected function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $this->_expandPlaceholders($queryMain, false); + $p = $this->link->query($queryMain[0]); + if (!$p) + return $this->_setDbError($p,$queryMain[0]); + if ($p->errorCode()!=0) + return $this->_setDbError($p,$queryMain[0]); + if (preg_match('/^\s* INSERT \s+/six', $queryMain[0])) + return $this->link->lastInsertId(); + if ($p->columnCount()==0) + return $p->rowCount(); + //Если у нас в запросе есть хотя-бы одна колонка - это по любому будет select + $p->setFetchMode(PDO::FETCH_ASSOC); + $res = $p->fetchAll(); + $p->closeCursor(); + return $res; + } + + protected function _performTransformQuery(&$queryMain, $how) + { + // If we also need to calculate total number of found rows... + switch ($how) + { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + // Not possible + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // TODO: GROUP BY ... -> COUNT(DISTINCT ...) + $re = '/^ + (?> -- [^\r\n]* | \s+)* + (\s* SELECT \s+) #1 + (.*?) #2 + (\s+ FROM \s+ .*?) #3 + ((?:\s+ ORDER \s+ BY \s+ .*?)?) #4 + ((?:\s+ LIMIT \s+ \S+ \s* (?: , \s* \S+ \s*)? )?) #5 + $/six'; + $m = null; + if (preg_match($re, $queryMain[0], $m)) { + $queryMain[0] = $m[1] . $this->_fieldList2Count($m[2]) . " AS C" . $m[3]; + $skipTail = substr_count($m[4] . $m[5], '?'); + if ($skipTail) array_splice($queryMain, -$skipTail); + } + return true; + } + + return false; + } + + protected function _setDbError($obj,$q) + { + $info=$obj?$obj->errorInfo():$this->link->errorInfo(); + return $this->_setLastError($info[1], $info[2], $q); + } + + protected function _performNewBlob($id=null) + { + } + + protected function _performGetBlobFieldNames($result) + { + return array(); + } + + protected function _performFetch($result) + { + return $result; + } + +} diff --git a/other/AoWoW-master/includes/DbSimple/Mssql.php b/other/AoWoW-master/includes/DbSimple/Mssql.php new file mode 100644 index 0000000..41b62cf --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Mssql.php @@ -0,0 +1,243 @@ +_setLastError("-1", "Mssql extension is not loaded", "mssql_connect"); + } + $ok = $this->link = @mssql_connect( + $dsn['host'] . (empty($dsn['port'])? "" : ":".$dsn['port']), + $dsn['user'], + $dsn['pass'], + true + ); + $this->_resetLastError(); + if (!$ok) return $this->_setDbError('mssql_connect()'); + $ok = @mssql_select_db(preg_replace('{^/}s', '', $dsn['path']), $this->link); + if (!$ok) return $this->_setDbError('mssql_select_db()'); + } + + + function _performEscape($s, $isIdent=false) + { + if (!$isIdent) { + return "'" . str_replace("'", "''", $s) . "'"; + } else { + return str_replace(array('[',']'), '', $s); + } + } + + + function _performTransaction($parameters=null) + { + return $this->query('BEGIN TRANSACTION'); + } + + + function _performNewBlob($blobid=null) + { + $obj = new DbSimple_Mssql_Blob($this, $blobid); + return $obj; + } + + + function _performGetBlobFieldNames($result) + { + $blobFields = array(); + for ($i=mssql_num_fields($result)-1; $i>=0; $i--) { + $type = mssql_field_type($result, $i); + if (strpos($type, "BLOB") !== false) $blobFields[] = mssql_field_name($result, $i); + } + return $blobFields; + } + + + function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + ` (?> [^`]+ | ``)* ` | # backticks + /\* .*? \*/ # comments + '; + } + + + function _performCommit() + { + return $this->query('COMMIT TRANSACTION'); + } + + + function _performRollback() + { + return $this->query('ROLLBACK TRANSACTION'); + } + + + function _performTransformQuery(&$queryMain, $how) + { + // If we also need to calculate total number of found rows... + switch ($how) { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + $m = null; + if (preg_match('/^(\s* SELECT)(.*)/six', $queryMain[0], $m)) { + if ($this->_calcFoundRowsAvailable()) { + $queryMain[0] = $m[1] . ' SQL_CALC_FOUND_ROWS' . $m[2]; + } + } + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // Built-in calculation available? + if ($this->_calcFoundRowsAvailable()) { + $queryMain = array('SELECT FOUND_ROWS()'); + } + // Else use manual calculation. + // TODO: GROUP BY ... -> COUNT(DISTINCT ...) + $re = '/^ + (?> -- [^\r\n]* | \s+)* + (\s* SELECT \s+) #1 + (.*?) #2 + (\s+ FROM \s+ .*?) #3 + ((?:\s+ ORDER \s+ BY \s+ .*?)?) #4 + ((?:\s+ LIMIT \s+ \S+ \s* (?:, \s* \S+ \s*)? )?) #5 + $/six'; + $m = null; + if (preg_match($re, $queryMain[0], $m)) { + $query[0] = $m[1] . $this->_fieldList2Count($m[2]) . " AS C" . $m[3]; + $skipTail = substr_count($m[4] . $m[5], '?'); + if ($skipTail) array_splice($query, -$skipTail); + } + return true; + } + + return false; + } + + + function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $this->_expandPlaceholders($queryMain, false); + + $result = mssql_query($queryMain[0], $this->link); + + if ($result === false) { + return $this->_setDbError($queryMain[0]); + } + + if (!is_resource($result)) { + + if (preg_match('/^\s* INSERT \s+/six', $queryMain[0])) { + // INSERT queries return generated ID. + $result = mssql_fetch_assoc(mssql_query("SELECT SCOPE_IDENTITY() AS insert_id", $this->link)); + return isset($result['insert_id']) ? $result['insert_id'] : true; + } + + // Non-SELECT queries return number of affected rows, SELECT - resource. + if (function_exists('mssql_affected_rows')) { + return mssql_affected_rows($this->link); + } elseif (function_exists('mssql_rows_affected')) { + return mssql_rows_affected($this->link); + } + } + return $result; + } + + + function _performFetch($result) + { + $row = mssql_fetch_assoc($result); + //if (mssql_error()) return $this->_setDbError($this->_lastQuery); + if ($row === false) return null; + + // mssql bugfix - replase ' ' to '' + if (is_array($row)) { + foreach ($row as $k => $v) { + if ($v === ' ') $row[$k] = ''; + } + } + return $row; + } + + + function _setDbError($query, $errors = null) + { + return $this->_setLastError('Error! ', mssql_get_last_message() . strip_tags($errors), $query); + } + + + function _calcFoundRowsAvailable() + { + return false; + } +} + + +class DbSimple_Mssql_Blob extends DbSimple_Generic_Blob +{ + // Mssql does not support separate BLOB fetching. + var $blobdata = null; + var $curSeek = 0; + + function DbSimple_Mssql_Blob(&$database, $blobdata=null) + { + $this->blobdata = $blobdata; + $this->curSeek = 0; + } + + function read($len) + { + $p = $this->curSeek; + $this->curSeek = min($this->curSeek + $len, strlen($this->blobdata)); + return substr($this->blobdata, $this->curSeek, $len); + } + + function write($data) + { + $this->blobdata .= $data; + } + + function close() + { + return $this->blobdata; + } + + function length() + { + return strlen($this->blobdata); + } +} diff --git a/other/AoWoW-master/includes/DbSimple/Mypdo.php b/other/AoWoW-master/includes/DbSimple/Mypdo.php new file mode 100644 index 0000000..490bd51 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Mypdo.php @@ -0,0 +1,184 @@ +_setLastError("-1", "PDO extension is not loaded", "PDO"); + + try { + $options = array( + PDO::ATTR_ERRMODE => PDO::ERRMODE_SILENT, + PDO::ATTR_PERSISTENT => isset($dsn['persist']) && $dsn['persist'], + PDO::ATTR_TIMEOUT => isset($dsn['timeout']) && $dsn['timeout'] ? $dsn['timeout'] : 0 + ); + + if (version_compare(PHP_VERSION, '5.3.6') < 0) { + $phpNew = false; + $options[PDO::MYSQL_ATTR_INIT_COMMAND] = 'SET NAMES ' . (!empty($dsn['enc']) ? $dsn['enc'] : 'utf8'); + } else { + $phpNew = true; + } + + if ( !empty($dsn['socket']) ) { + // Socket connection + + $dsnPdo = 'mysql:unix_socket=' . $dsn['socket'] + . ';dbname=' . $base; + + if ($phpNew) { + $dsnPdo .= ';charset=' . (!empty($dsn['enc']) ? $dsn['enc'] : 'utf8'); + } + + $this->link = new PDO( + $dsnPdo, + isset($dsn['user']) ? $dsn['user'] : 'root', + isset($dsn['pass']) ? $dsn['pass'] : '', + $options + ); + } else if ( !empty($dsn['host']) ) { + // Host connection + + $dsnPdo = 'mysql:host=' . $dsn['host'] + . (empty($dsn['port']) ? '' : ';port='.$dsn['port']) + . ';dbname=' . $base; + + if ($phpNew) { + $dsnPdo .= ';charset=' . (!empty($dsn['enc']) ? $dsn['enc'] : 'utf8'); + } + + $this->link = new PDO( + $dsnPdo, + $dsn['user'], + isset($dsn['pass']) ? $dsn['pass'] : '', + $options + ); + } else { + throw new Exception("Could not find hostname nor socket in DSN string"); + } + } catch (PDOException $e) { + return $this->_setLastError($e->getCode() , $e->getMessage(), 'new PDO'); + } + } + + protected function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + ` (?> [^`]+ | ``)* ` | # backticks + /\* .*? \*/ # comments + '; + } + + protected function _performEscape($s, $isIdent=false) + { + if (!$isIdent) { + return $this->link->quote($s); + } else { + return "`" . str_replace('`', '``', $s) . "`"; + } + } + + protected function _performTransaction($parameters=null) + { + return $this->link->beginTransaction(); + } + + protected function _performCommit() + { + return $this->link->commit(); + } + + protected function _performRollback() + { + return $this->link->rollBack(); + } + + protected function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $this->_expandPlaceholders($queryMain, false); + $p = $this->link->query($queryMain[0]); + if (!$p) + return $this->_setDbError($p,$queryMain[0]); + if ($p->errorCode()!=0) + return $this->_setDbError($p,$queryMain[0]); + if (preg_match('/^\s* INSERT \s+/six', $queryMain[0])) + return $this->link->lastInsertId(); + if ($p->columnCount()==0) + return $p->rowCount(); + //Если у нас в запросе есть хотя-бы одна колонка - это по любому будет select + $p->setFetchMode(PDO::FETCH_ASSOC); + $res = $p->fetchAll(); + $p->closeCursor(); + return $res; + } + + protected function _performTransformQuery(&$queryMain, $how) + { + // If we also need to calculate total number of found rows... + switch ($how) + { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + $m = null; + if (preg_match('/^(\s* SELECT)(.*)/six', $queryMain[0], $m)) + $queryMain[0] = $m[1] . ' SQL_CALC_FOUND_ROWS' . $m[2]; + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // Built-in calculation available? + $queryMain = array('SELECT FOUND_ROWS()'); + return true; + } + + return false; + } + + protected function _setDbError($obj,$q) + { + $info=$obj?$obj->errorInfo():$this->link->errorInfo(); + return $this->_setLastError($info[1], $info[2], $q); + } + + protected function _performNewBlob($id=null) + { + } + + protected function _performGetBlobFieldNames($result) + { + return array(); + } + + protected function _performFetch($result) + { + return $result; + } + +} diff --git a/other/AoWoW-master/includes/DbSimple/Mysql.php b/other/AoWoW-master/includes/DbSimple/Mysql.php new file mode 100644 index 0000000..45aeb07 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Mysql.php @@ -0,0 +1,217 @@ +_setLastError("-1", "MySQL extension is not loaded", $connect); + + //$mysql = mysql_connect(':/cloudsql/' . DB_HOST, DB_USER, DB_PASS); + + if ( !empty($dsn['socket']) && empty($dsn['host']) ) { + // Socket connection + $dsn['host'] = ':' . $dsn['socket']; + unset($dsn['port']); + } + + $ok = $this->link = @call_user_func($connect, + $str = $dsn['host'] . (empty($dsn['port'])? "" : ":".$dsn['port']), + $dsn['user'] = empty($dsn['user'])?'':$dsn['user'], + $dsn['pass'] = empty($dsn['pass'])?'':$dsn['pass'], + true + ); + $this->_resetLastError(); + if (!$ok) + if (!$ok) return $this->_setDbError('mysql_connect("' . $str . '", "' . $dsn['user'] . '")'); + $ok = @mysql_select_db(preg_replace('{^/}s', '', $dsn['path']), $this->link); + if (!$ok) + return $this->_setDbError('mysql_select_db()'); + mysql_query('SET NAMES '.(isset($dsn['enc'])?$dsn['enc']:'UTF8')); + } + + + protected function _performEscape($s, $isIdent=false) + { + if (!$isIdent) + return "'" . mysql_real_escape_string($s, $this->link) . "'"; + else + return "`" . str_replace('`', '``', $s) . "`"; + } + + + protected function _performNewBlob($blobid=null) + { + return new DbSimple_Mysql_Blob($this, $blobid); + } + + + protected function _performGetBlobFieldNames($result) + { + $blobFields = array(); + for ($i=mysql_num_fields($result)-1; $i>=0; $i--) + { + $type = mysql_field_type($result, $i); + if (stripos($type, "BLOB") !== false) + $blobFields[] = mysql_field_name($result, $i); + } + return $blobFields; + } + + + protected function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + ` (?> [^`]+ | ``)* ` | # backticks + /\* .*? \*/ # comments + '; + } + + + protected function _performTransaction($parameters=null) + { + return $this->query('BEGIN'); + } + + + protected function _performCommit() + { + return $this->query('COMMIT'); + } + + + protected function _performRollback() + { + return $this->query('ROLLBACK'); + } + + + protected function _performTransformQuery(&$queryMain, $how) + { + // If we also need to calculate total number of found rows... + switch ($how) + { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + $m = null; + if (preg_match('/^(\s* SELECT)(.*)/six', $queryMain[0], $m)) + $queryMain[0] = $m[1] . ' SQL_CALC_FOUND_ROWS' . $m[2]; + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // Built-in calculation available? + $queryMain = array('SELECT FOUND_ROWS()'); + return true; + } + + return false; + } + + + protected function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $this->_expandPlaceholders($queryMain, false); + $result = mysql_query($queryMain[0], $this->link); + if ($result === false) + return $this->_setDbError($queryMain[0]); + if (!is_resource($result)) { + if (preg_match('/^\s* INSERT \s+/six', $queryMain[0])) + { + // INSERT queries return generated ID. + return mysql_insert_id($this->link); + } + // Non-SELECT queries return number of affected rows, SELECT - resource. + return mysql_affected_rows($this->link); + } + return $result; + } + + + protected function _performFetch($result) + { + $row = mysql_fetch_assoc($result); + if (mysql_error()) return $this->_setDbError($this->_lastQuery); + if ($row === false) return null; + return $row; + } + + + protected function _setDbError($query) + { + if ($this->link) { + return $this->_setLastError(mysql_errno($this->link), mysql_error($this->link), $query); + } else { + return $this->_setLastError(mysql_errno(), mysql_error(), $query); + } + } +} + + +class DbSimple_Mysql_Blob implements DbSimple_Blob +{ + // MySQL does not support separate BLOB fetching. + private $blobdata = null; + private $curSeek = 0; + + public function __construct(&$database, $blobdata=null) + { + $this->blobdata = $blobdata; + $this->curSeek = 0; + } + + public function read($len) + { + $p = $this->curSeek; + $this->curSeek = min($this->curSeek + $len, strlen($this->blobdata)); + return substr($this->blobdata, $p, $len); + } + + public function write($data) + { + $this->blobdata .= $data; + } + + public function close() + { + return $this->blobdata; + } + + public function length() + { + return strlen($this->blobdata); + } +} +?> \ No newline at end of file diff --git a/other/AoWoW-master/includes/DbSimple/Mysqli.php b/other/AoWoW-master/includes/DbSimple/Mysqli.php new file mode 100644 index 0000000..5fa2307 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Mysqli.php @@ -0,0 +1,235 @@ +_setLastError("-1", "MySQLi extension is not loaded", "mysqli_connect"); + + if (!empty($dsn["persist"])) { + if (version_compare(PHP_VERSION, '5.3') < 0) { + return $this->_setLastError("-1", "Persistent connections in MySQLi is allowable since PHP 5.3", "mysqli_connect"); + } else { + $dsn["host"] = "p:".$dsn["host"]; + } + } + + if ( isset($dsn['socket']) ) { + // Socket connection + $this->link = mysqli_connect( + null // host + ,empty($dsn['user']) ? 'root' : $dsn['user'] // user + ,empty($dsn['pass']) ? '' : $dsn['pass'] // password + ,preg_replace('{^/}s', '', $dsn['path']) // schema + ,null // port + ,$dsn['socket'] // socket + ); + } else if (isset($dsn['host']) ) { + // Host connection + $this->link = mysqli_connect( + $dsn['host'] + ,empty($dsn['user']) ? 'root' : $dsn['user'] + ,empty($dsn['pass']) ? '' : $dsn['pass'] + ,preg_replace('{^/}s', '', $dsn['path']) + ,empty($dsn['port']) ? null : $dsn['port'] + ); + } else { + return $this->_setDbError('mysqli_connect()'); + } + $this->_resetLastError(); + if (!$this->link) return $this->_setDbError('mysqli_connect()'); + + mysqli_set_charset($this->link, isset($dsn['enc']) ? $dsn['enc'] : 'UTF8'); + } + + + protected function _performEscape($s, $isIdent=false) + { + if (!$isIdent) + return "'" . mysqli_real_escape_string($this->link, $s) . "'"; + else + return "`" . str_replace('`', '``', $s) . "`"; + } + + + protected function _performNewBlob($blobid=null) + { + return new DbSimple_Mysqli_Blob($this, $blobid); + } + + + protected function _performGetBlobFieldNames($result) + { + $allFields = mysqli_fetch_fields($result); + $blobFields = array(); + + if (!empty($allFields)) + { + foreach ($allFields as $field) + if (stripos($field["type"], "BLOB") !== false) + $blobFields[] = $field["name"]; + } + return $blobFields; + } + + + protected function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + ` (?> [^`]+ | ``)* ` | # backticks + /\* .*? \*/ # comments + '; + } + + + protected function _performTransaction($parameters=null) + { + if( function_exists('mysqli_begin_transaction') ) { + return mysqli_begin_transaction($this->link); + } else { + return mysqli_autocommit($this->link, false); + } + } + + + protected function _performCommit() + { + return mysqli_commit($this->link); + } + + + protected function _performRollback() + { + return mysqli_rollback($this->link); + } + + + protected function _performTransformQuery(&$queryMain, $how) + { + // If we also need to calculate total number of found rows... + switch ($how) + { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + $m = null; + if (preg_match('/^(\s* SELECT)(.*)/six', $queryMain[0], $m)) + $queryMain[0] = $m[1] . ' SQL_CALC_FOUND_ROWS' . $m[2]; + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // Built-in calculation available? + $queryMain = array('SELECT FOUND_ROWS()'); + return true; + } + + return false; + } + + + protected function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $this->_expandPlaceholders($queryMain, false); + $result = mysqli_query($this->link, $queryMain[0]); + if ($result === false) + return $this->_setDbError($queryMain[0]); + if (!is_object($result)) { + if (preg_match('/^\s* INSERT \s+/six', $queryMain[0])) + { + // INSERT queries return generated ID. + return mysqli_insert_id($this->link); + } + // Non-SELECT queries return number of affected rows, SELECT - resource. + return mysqli_affected_rows($this->link); + } + return $result; + } + + + protected function _performFetch($result) + { + $row = mysqli_fetch_assoc($result); + if (mysqli_error($this->link)) return $this->_setDbError($this->_lastQuery); + if ($row === false) return null; + return $row; + } + + + protected function _setDbError($query) + { + if ($this->link) { + return $this->_setLastError(mysqli_errno($this->link), mysqli_error($this->link), $query); + } else { + return $this->_setLastError(mysqli_connect_errno(), mysqli_connect_error(), $query); + } + } +} + + +class DbSimple_Mysqli_Blob implements DbSimple_Blob +{ + // MySQL does not support separate BLOB fetching. + private $blobdata = null; + private $curSeek = 0; + + public function __construct(&$database, $blobdata=null) + { + $this->blobdata = $blobdata; + $this->curSeek = 0; + } + + public function read($len) + { + $p = $this->curSeek; + $this->curSeek = min($this->curSeek + $len, strlen($this->blobdata)); + return substr($this->blobdata, $p, $len); + } + + public function write($data) + { + $this->blobdata .= $data; + } + + public function close() + { + return $this->blobdata; + } + + public function length() + { + return strlen($this->blobdata); + } +} diff --git a/other/AoWoW-master/includes/DbSimple/Postgresql.php b/other/AoWoW-master/includes/DbSimple/Postgresql.php new file mode 100644 index 0000000..7fe4daf --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Postgresql.php @@ -0,0 +1,319 @@ +_setLastError("-1", "PostgreSQL extension is not loaded", "pg_connect"); + } + + // Prepare+execute works only in PHP 5.1+. + $this->DbSimple_Postgresql_USE_NATIVE_PHOLDERS = function_exists('pg_prepare'); + + $dsnWithoutPass = + (!empty($p['host']) ? 'host='.$p['host'].' ' : '') . + (!empty($p['port']) ? 'port=' . $p['port'] . ' ' : '') . + 'dbname=' . preg_replace('{^/}s', '', $p['path']) .' '. + (!empty($p['user']) ? 'user='. $p['user'] : ''); + + $ok = $this->link = @pg_connect( + $dsnWithoutPass . " " . (!empty($p['pass']) ? 'password=' . $p['pass'] . ' ' : ''), + PGSQL_CONNECT_FORCE_NEW + ); + // We use PGSQL_CONNECT_FORCE_NEW, because in PHP 5.3 & PHPUnit + // $this->prepareCache may be cleaned, but $this->link is still + // not closed. So the next creation of DbSimple_Postgresql() + // would use exactly the same connection as the previous, but with + // empty $this->prepareCache, and it will generate "prepared statement + // xxx already exists" error each time we execute the same statement + // as in the previous calls. + $this->_resetLastError(); + if (!$ok) return $this->_setDbError('pg_connect("' . $dsnWithoutPass . '") error'); + } + + + function _performEscape($s, $isIdent=false) + { + if (!$isIdent) + return "E'" . pg_escape_string($this->link, $s) . "'"; + else + return '"' . str_replace('"', '_', $s) . '"'; + } + + + function _performTransaction($parameters=null) + { + return $this->query('BEGIN'); + } + + + function& _performNewBlob($blobid=null) + { + return new DbSimple_Postgresql_Blob($this, $blobid); + } + + + function _performGetBlobFieldNames($result) + { + $blobFields = array(); + for ($i=pg_num_fields($result)-1; $i>=0; $i--) { + $type = pg_field_type($result, $i); + if (strpos($type, "BLOB") !== false) $blobFields[] = pg_field_name($result, $i); + } + return $blobFields; + } + + // TODO: Real PostgreSQL escape + function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + /\* .*? \*/ # comments + '; + } + + function _performGetNativePlaceholderMarker($n) + { + // PostgreSQL uses specific placeholders such as $1, $2, etc. + return '$' . ($n + 1); + } + + function _performCommit() + { + return $this->query('COMMIT'); + } + + + function _performRollback() + { + return $this->query('ROLLBACK'); + } + + + function _performTransformQuery(&$queryMain, $how) + { + + // If we also need to calculate total number of found rows... + switch ($how) { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + // Not possible + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // TODO: GROUP BY ... -> COUNT(DISTINCT ...) + $re = '/^ + (?> -- [^\r\n]* | \s+)* + (\s* SELECT \s+) #1 + (.*?) #2 + (\s+ FROM \s+ .*?) #3 + ((?:\s+ ORDER \s+ BY \s+ .*?)?) #4 + ((?:\s+ LIMIT \s+ \S+ \s* (?: OFFSET \s* \S+ \s*)? )?) #5 + $/six'; + $m = null; + if (preg_match($re, $queryMain[0], $m)) { + $queryMain[0] = $m[1] . $this->_fieldList2Count($m[2]) . " AS C" . $m[3]; + $skipTail = substr_count($m[4] . $m[5], '?'); + if ($skipTail) array_splice($queryMain, -$skipTail); + } + return true; + } + + return false; + } + + + function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $isInsert = preg_match('/^\s* INSERT \s+/six', $queryMain[0]); + + // + // Note that in case of INSERT query we CANNOT work with prepare...execute + // cache, because RULEs do not work after pg_execute(). This is a very strange + // bug... To reproduce: + // $DB->query("CREATE TABLE test(id SERIAL, str VARCHAR(10)) WITH OIDS"); + // $DB->query("CREATE RULE test_r AS ON INSERT TO test DO (SELECT 111 AS id)"); + // print_r($DB->query("INSERT INTO test(str) VALUES ('test')")); + // In case INSERT + pg_execute() it returns new row OID (numeric) instead + // of result of RULE query. Strange, very strange... + // + + if ($this->DbSimple_Postgresql_USE_NATIVE_PHOLDERS && !$isInsert) { + // Use native placeholders only if PG supports them. + $this->_expandPlaceholders($queryMain, true); + $hash = md5($queryMain[0]); + if (!isset($this->prepareCache[$hash])) { + $prepared = @pg_prepare($this->link, $hash, $queryMain[0]); + if ($prepared === false) return $this->_setDbError($queryMain[0]); + else $this->prepareCache[$hash] = true; + } else { + // Prepare cache hit! + } + $result = pg_execute($this->link, $hash, array_slice($queryMain, 1)); + } else { + // No support for native placeholders on INSERT query. + $this->_expandPlaceholders($queryMain, false); + $result = @pg_query($this->link, $queryMain[0]); + } + + if ($result === false) return $this->_setDbError($queryMain); + if (!pg_num_fields($result)) { + if ($isInsert) { + // INSERT queries return generated OID (if table is WITH OIDs). + // + // Please note that unfortunately we cannot use lastval() PostgreSQL + // stored function because it generates fatal error if INSERT query + // does not contain sequence-based field at all. This error terminates + // the current transaction, and we cannot continue to work nor know + // if table contains sequence-updateable field or not. + // + // To use auto-increment functionality you must invoke + // $insertedId = $DB->query("SELECT lastval()") + // manually where it is really needed. + // + return @pg_last_oid($result); + } + // Non-SELECT queries return number of affected rows, SELECT - resource. + return @pg_affected_rows($result); + } + return $result; + } + + + function _performFetch($result) + { + $row = @pg_fetch_assoc($result); + if (pg_last_error($this->link)) return $this->_setDbError($this->_lastQuery); + return $row; + } + + + function _setDbError($query) + { + return $this->_setLastError(null, $this->link? pg_last_error($this->link) : (is_array($query)? "Connection is not established" : $query), $query); + } + + function _getVersion() + { + } +} + + +class DbSimple_Postgresql_Blob implements DbSimple_Blob +{ + var $blob; // resourse link + var $id; + var $database; + + function DbSimple_Postgresql_Blob(&$database, $id=null) + { + $this->database =& $database; + $this->database->transaction(); + $this->id = $id; + $this->blob = null; + } + + function read($len) + { + if ($this->id === false) return ''; // wr-only blob + if (!($e=$this->_firstUse())) return $e; + $data = @pg_lo_read($this->blob, $len); + if ($data === false) return $this->_setDbError('read'); + return $data; + } + + function write($data) + { + if (!($e=$this->_firstUse())) return $e; + $ok = @pg_lo_write($this->blob, $data); + if ($ok === false) return $this->_setDbError('add data to'); + return true; + } + + function close() + { + if (!($e=$this->_firstUse())) return $e; + if ($this->blob) { + $id = @pg_lo_close($this->blob); + if ($id === false) return $this->_setDbError('close'); + $this->blob = null; + } else { + $id = null; + } + $this->database->commit(); + return $this->id? $this->id : $id; + } + + function length() + { + if (!($e=$this->_firstUse())) return $e; + + @pg_lo_seek($this->blob, 0, PGSQL_SEEK_END); + $len = @pg_lo_tell($this->blob); + @pg_lo_seek($this->blob, 0, PGSQL_SEEK_SET); + + if (!$len) return $this->_setDbError('get length of'); + return $len; + } + + function _setDbError($query) + { + $hId = $this->id === null? "null" : ($this->id === false? "false" : $this->id); + $query = "-- $query BLOB $hId"; + $this->database->_setDbError($query); + } + + // Called on each blob use (reading or writing). + function _firstUse() + { + // BLOB opened - do nothing. + if (is_resource($this->blob)) return true; + + // Open or create blob. + if ($this->id !== null) { + $this->blob = @pg_lo_open($this->database->link, $this->id, 'rw'); + if ($this->blob === false) return $this->_setDbError('open'); + } else { + $this->id = @pg_lo_create($this->database->link); + $this->blob = @pg_lo_open($this->database->link, $this->id, 'w'); + if ($this->blob === false) return $this->_setDbError('create'); + } + return true; + } +} diff --git a/other/AoWoW-master/includes/DbSimple/Sqlite.php b/other/AoWoW-master/includes/DbSimple/Sqlite.php new file mode 100644 index 0000000..f9d7d96 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Sqlite.php @@ -0,0 +1,149 @@ +_setLastError("-1", "SQLite extension is not loaded", $connect); + $err = ''; + try + { + $this->link = sqlite_factory($dsn['path'], 0666, $err); + } + catch (Exception $e) + { + $this->_setLastError($e->getCode() , $e->getMessage(), 'sqlite_factory'); + } + } + + public function CreateFunction($function_name, $callback, $num_args) + { return $this->link->createFunction($function_name, $callback, $num_args); } + public function CreateAggregate($function_name, $step_func, $finalize_func, $num_args) + { return $this->link->createAggregate($function_name, $step_func, $finalize_func, $num_args); } + + protected function _performGetPlaceholderIgnoreRe() + { + return ' + " (?> [^"\\\\]+|\\\\"|\\\\)* " | + \' (?> [^\'\\\\]+|\\\\\'|\\\\)* \' | + ` (?> [^`]+ | ``)* ` | # backticks + /\* .*? \*/ # comments + /*'; + } + + protected function _performEscape($s, $isIdent=false) + { + if (!$isIdent) { + return '\''.sqlite_escape_string($s).'\''; + } else { + return "`" . str_replace('`', '``', $s) . "`"; + } + } + + protected function _performTransaction($parameters=null) + { + return $this->link->query('BEGIN TRANSACTION'); + } + + protected function _performCommit() + { + return $this->link->query('COMMIT TRANSACTION'); + } + + protected function _performRollback() + { + return $this->link->query('ROLLBACK TRANSACTION'); + } + + protected function _performQuery($queryMain) + { + $this->_lastQuery = $queryMain; + $this->_expandPlaceholders($queryMain, false); + $error_msg = ''; + $p = $this->link->query($queryMain[0], SQLITE_ASSOC, $error_msg); + if (!$p || $error_msg) + return $this->_setDbError($queryMain[0]); + if (preg_match('/^\s* INSERT \s+/six', $queryMain[0])) + return $this->link->lastInsertRowid(); + if ($p->numFields()==0) + return $this->link->changes(); + //Если у нас в запросе есть хотя-бы одна колонка - это по любому будет select + return $p->fetchAll(SQLITE_ASSOC); + } + + protected function _performTransformQuery(&$queryMain, $how) + { + // If we also need to calculate total number of found rows... + switch ($how) + { + // Prepare total calculation (if possible) + case 'CALC_TOTAL': + // Not possible + return true; + + // Perform total calculation. + case 'GET_TOTAL': + // TODO: GROUP BY ... -> COUNT(DISTINCT ...) + $re = '/^ + (?> -- [^\r\n]* | \s+)* + (\s* SELECT \s+) #1 + (.*?) #2 + (\s+ FROM \s+ .*?) #3 + ((?:\s+ ORDER \s+ BY \s+ .*?)?) #4 + ((?:\s+ LIMIT \s+ \S+ \s* (?: , \s* \S+ \s*)? )?) #5 + $/six'; + $m = null; + if (preg_match($re, $queryMain[0], $m)) { + $queryMain[0] = $m[1] . $this->_fieldList2Count($m[2]) . " AS C" . $m[3]; + $skipTail = substr_count($m[4] . $m[5], '?'); + if ($skipTail) array_splice($queryMain, -$skipTail); + } + return true; + } + + return false; + } + + protected function _setDbError($query) + { + return $this->_setLastError($this->link->lastError(), sqlite_error_string($this->link->lastError()), $query); + } + + protected function _performNewBlob($id=null) + { + } + + protected function _performGetBlobFieldNames($result) + { + return array(); + } + + protected function _performFetch($result) + { + return $result; + } + +} + diff --git a/other/AoWoW-master/includes/DbSimple/Zend/Cache.php b/other/AoWoW-master/includes/DbSimple/Zend/Cache.php new file mode 100644 index 0000000..aff2e65 --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Zend/Cache.php @@ -0,0 +1,250 @@ +setBackend($backendObject); + return $frontendObject; + } + + /** + * Backend Constructor + * + * @param string $backend + * @param array $backendOptions + * @param boolean $customBackendNaming + * @param boolean $autoload + * @return Zend_Cache_Backend + */ + public static function _makeBackend($backend, $backendOptions, $customBackendNaming = false, $autoload = false) + { + if (!$customBackendNaming) { + $backend = self::_normalizeName($backend); + } + if (in_array($backend, Zend_Cache::$standardBackends)) { + // we use a standard backend + $backendClass = 'Zend_Cache_Backend_' . $backend; + // security controls are explicit + require_once str_replace('_', DIRECTORY_SEPARATOR, $backendClass) . '.php'; + } else { + // we use a custom backend + if (!preg_match('~^[\w\\\\]+$~D', $backend)) { + Zend_Cache::throwException("Invalid backend name [$backend]"); + } + if (!$customBackendNaming) { + // we use this boolean to avoid an API break + $backendClass = 'Zend_Cache_Backend_' . $backend; + } else { + $backendClass = $backend; + } + if (!$autoload) { + $file = str_replace('_', DIRECTORY_SEPARATOR, $backendClass) . '.php'; + if (!(self::_isReadable($file))) { + self::throwException("file $file not found in include_path"); + } + require_once $file; + } + } + return new $backendClass($backendOptions); + } + + /** + * Frontend Constructor + * + * @param string $frontend + * @param array $frontendOptions + * @param boolean $customFrontendNaming + * @param boolean $autoload + * @return Zend_Cache_Core|Zend_Cache_Frontend + */ + public static function _makeFrontend($frontend, $frontendOptions = array(), $customFrontendNaming = false, $autoload = false) + { + if (!$customFrontendNaming) { + $frontend = self::_normalizeName($frontend); + } + if (in_array($frontend, self::$standardFrontends)) { + // we use a standard frontend + // For perfs reasons, with frontend == 'Core', we can interact with the Core itself + $frontendClass = 'Zend_Cache_' . ($frontend != 'Core' ? 'Frontend_' : '') . $frontend; + // security controls are explicit + require_once str_replace('_', DIRECTORY_SEPARATOR, $frontendClass) . '.php'; + } else { + // we use a custom frontend + if (!preg_match('~^[\w\\\\]+$~D', $frontend)) { + Zend_Cache::throwException("Invalid frontend name [$frontend]"); + } + if (!$customFrontendNaming) { + // we use this boolean to avoid an API break + $frontendClass = 'Zend_Cache_Frontend_' . $frontend; + } else { + $frontendClass = $frontend; + } + if (!$autoload) { + $file = str_replace('_', DIRECTORY_SEPARATOR, $frontendClass) . '.php'; + if (!(self::_isReadable($file))) { + self::throwException("file $file not found in include_path"); + } + require_once $file; + } + } + return new $frontendClass($frontendOptions); + } + + /** + * Throw an exception + * + * Note : for perf reasons, the "load" of Zend/Cache/Exception is dynamic + * @param string $msg Message for the exception + * @throws Zend_Cache_Exception + */ + public static function throwException($msg, Exception $e = null) + { + // For perfs reasons, we use this dynamic inclusion + require_once 'Zend/Cache/Exception.php'; + throw new Zend_Cache_Exception($msg, 0, $e); + } + + /** + * Normalize frontend and backend names to allow multiple words TitleCased + * + * @param string $name Name to normalize + * @return string + */ + protected static function _normalizeName($name) + { + $name = ucfirst(strtolower($name)); + $name = str_replace(array('-', '_', '.'), ' ', $name); + $name = ucwords($name); + $name = str_replace(' ', '', $name); + if (stripos($name, 'ZendServer') === 0) { + $name = 'ZendServer_' . substr($name, strlen('ZendServer')); + } + + return $name; + } + + /** + * Returns TRUE if the $filename is readable, or FALSE otherwise. + * This function uses the PHP include_path, where PHP's is_readable() + * does not. + * + * Note : this method comes from Zend_Loader (see #ZF-2891 for details) + * + * @param string $filename + * @return boolean + */ + private static function _isReadable($filename) + { + if (!$fh = @fopen($filename, 'r', true)) { + return false; + } + @fclose($fh); + return true; + } + +} diff --git a/other/AoWoW-master/includes/DbSimple/Zend/Cache/Backend/Interface.php b/other/AoWoW-master/includes/DbSimple/Zend/Cache/Backend/Interface.php new file mode 100644 index 0000000..3f44e2e --- /dev/null +++ b/other/AoWoW-master/includes/DbSimple/Zend/Cache/Backend/Interface.php @@ -0,0 +1,99 @@ + infinite lifetime) + * @return boolean true if no problem + */ + public function save($data, $id, $tags = array(), $specificLifetime = false); + + /** + * Remove a cache record + * + * @param string $id Cache id + * @return boolean True if no problem + */ + public function remove($id); + + /** + * Clean some cache records + * + * Available modes are : + * Zend_Cache::CLEANING_MODE_ALL (default) => remove all cache entries ($tags is not used) + * Zend_Cache::CLEANING_MODE_OLD => remove too old cache entries ($tags is not used) + * Zend_Cache::CLEANING_MODE_MATCHING_TAG => remove cache entries matching all given tags + * ($tags can be an array of strings or a single string) + * Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG => remove cache entries not {matching one of the given tags} + * ($tags can be an array of strings or a single string) + * Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG => remove cache entries matching any given tags + * ($tags can be an array of strings or a single string) + * + * @param string $mode Clean mode + * @param array $tags Array of tags + * @return boolean true if no problem + */ + public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array()); + +} diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/Config_File.class.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/Config_File.class.php new file mode 100644 index 0000000..e3c3ca2 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/Config_File.class.php @@ -0,0 +1,389 @@ + + * @access public + * @package Smarty + */ + +/* $Id: Config_File.class.php 2702 2007-03-08 19:11:22Z mohrt $ */ + +/** + * Config file reading class + * @package Smarty + */ +class Config_File { + /**#@+ + * Options + * @var boolean + */ + /** + * Controls whether variables with the same name overwrite each other. + */ + var $overwrite = true; + + /** + * Controls whether config values of on/true/yes and off/false/no get + * converted to boolean values automatically. + */ + var $booleanize = true; + + /** + * Controls whether hidden config sections/vars are read from the file. + */ + var $read_hidden = true; + + /** + * Controls whether or not to fix mac or dos formatted newlines. + * If set to true, \r or \r\n will be changed to \n. + */ + var $fix_newlines = true; + /**#@-*/ + + /** @access private */ + var $_config_path = ""; + var $_config_data = array(); + /**#@-*/ + + /** + * Constructs a new config file class. + * + * @param string $config_path (optional) path to the config files + */ + function Config_File($config_path = NULL) + { + if (isset($config_path)) + $this->set_path($config_path); + } + + + /** + * Set the path where configuration files can be found. + * + * @param string $config_path path to the config files + */ + function set_path($config_path) + { + if (!empty($config_path)) { + if (!is_string($config_path) || !file_exists($config_path) || !is_dir($config_path)) { + $this->_trigger_error_msg("Bad config file path '$config_path'"); + return; + } + if(substr($config_path, -1) != DIRECTORY_SEPARATOR) { + $config_path .= DIRECTORY_SEPARATOR; + } + + $this->_config_path = $config_path; + } + } + + + /** + * Retrieves config info based on the file, section, and variable name. + * + * @param string $file_name config file to get info for + * @param string $section_name (optional) section to get info for + * @param string $var_name (optional) variable to get info for + * @return string|array a value or array of values + */ + function get($file_name, $section_name = NULL, $var_name = NULL) + { + if (empty($file_name)) { + $this->_trigger_error_msg('Empty config file name'); + return; + } else { + $file_name = $this->_config_path . $file_name; + if (!isset($this->_config_data[$file_name])) + $this->load_file($file_name, false); + } + + if (!empty($var_name)) { + if (empty($section_name)) { + return $this->_config_data[$file_name]["vars"][$var_name]; + } else { + if(isset($this->_config_data[$file_name]["sections"][$section_name]["vars"][$var_name])) + return $this->_config_data[$file_name]["sections"][$section_name]["vars"][$var_name]; + else + return array(); + } + } else { + if (empty($section_name)) { + return (array)$this->_config_data[$file_name]["vars"]; + } else { + if(isset($this->_config_data[$file_name]["sections"][$section_name]["vars"])) + return (array)$this->_config_data[$file_name]["sections"][$section_name]["vars"]; + else + return array(); + } + } + } + + + /** + * Retrieves config info based on the key. + * + * @param $file_name string config key (filename/section/var) + * @return string|array same as get() + * @uses get() retrieves information from config file and returns it + */ + function &get_key($config_key) + { + list($file_name, $section_name, $var_name) = explode('/', $config_key, 3); + $result = &$this->get($file_name, $section_name, $var_name); + return $result; + } + + /** + * Get all loaded config file names. + * + * @return array an array of loaded config file names + */ + function get_file_names() + { + return array_keys($this->_config_data); + } + + + /** + * Get all section names from a loaded file. + * + * @param string $file_name config file to get section names from + * @return array an array of section names from the specified file + */ + function get_section_names($file_name) + { + $file_name = $this->_config_path . $file_name; + if (!isset($this->_config_data[$file_name])) { + $this->_trigger_error_msg("Unknown config file '$file_name'"); + return; + } + + return array_keys($this->_config_data[$file_name]["sections"]); + } + + + /** + * Get all global or section variable names. + * + * @param string $file_name config file to get info for + * @param string $section_name (optional) section to get info for + * @return array an array of variables names from the specified file/section + */ + function get_var_names($file_name, $section = NULL) + { + if (empty($file_name)) { + $this->_trigger_error_msg('Empty config file name'); + return; + } else if (!isset($this->_config_data[$file_name])) { + $this->_trigger_error_msg("Unknown config file '$file_name'"); + return; + } + + if (empty($section)) + return array_keys($this->_config_data[$file_name]["vars"]); + else + return array_keys($this->_config_data[$file_name]["sections"][$section]["vars"]); + } + + + /** + * Clear loaded config data for a certain file or all files. + * + * @param string $file_name file to clear config data for + */ + function clear($file_name = NULL) + { + if ($file_name === NULL) + $this->_config_data = array(); + else if (isset($this->_config_data[$file_name])) + $this->_config_data[$file_name] = array(); + } + + + /** + * Load a configuration file manually. + * + * @param string $file_name file name to load + * @param boolean $prepend_path whether current config path should be + * prepended to the filename + */ + function load_file($file_name, $prepend_path = true) + { + if ($prepend_path && $this->_config_path != "") + $config_file = $this->_config_path . $file_name; + else + $config_file = $file_name; + + ini_set('track_errors', true); + $fp = @fopen($config_file, "r"); + if (!is_resource($fp)) { + $this->_trigger_error_msg("Could not open config file '$config_file'"); + return false; + } + + $contents = ($size = filesize($config_file)) ? fread($fp, $size) : ''; + fclose($fp); + + $this->_config_data[$config_file] = $this->parse_contents($contents); + return true; + } + + /** + * Store the contents of a file manually. + * + * @param string $config_file file name of the related contents + * @param string $contents the file-contents to parse + */ + function set_file_contents($config_file, $contents) + { + $this->_config_data[$config_file] = $this->parse_contents($contents); + return true; + } + + /** + * parse the source of a configuration file manually. + * + * @param string $contents the file-contents to parse + */ + function parse_contents($contents) + { + if($this->fix_newlines) { + // fix mac/dos formatted newlines + $contents = preg_replace('!\r\n?!', "\n", $contents); + } + + $config_data = array(); + $config_data['sections'] = array(); + $config_data['vars'] = array(); + + /* reference to fill with data */ + $vars =& $config_data['vars']; + + /* parse file line by line */ + preg_match_all('!^.*\r?\n?!m', $contents, $match); + $lines = $match[0]; + for ($i=0, $count=count($lines); $i<$count; $i++) { + $line = $lines[$i]; + if (empty($line)) continue; + + if ( substr($line, 0, 1) == '[' && preg_match('!^\[(.*?)\]!', $line, $match) ) { + /* section found */ + if (substr($match[1], 0, 1) == '.') { + /* hidden section */ + if ($this->read_hidden) { + $section_name = substr($match[1], 1); + } else { + /* break reference to $vars to ignore hidden section */ + unset($vars); + $vars = array(); + continue; + } + } else { + $section_name = $match[1]; + } + if (!isset($config_data['sections'][$section_name])) + $config_data['sections'][$section_name] = array('vars' => array()); + $vars =& $config_data['sections'][$section_name]['vars']; + continue; + } + + if (preg_match('/^\s*(\.?\w+)\s*=\s*(.*)/s', $line, $match)) { + /* variable found */ + $var_name = rtrim($match[1]); + if (strpos($match[2], '"""') === 0) { + /* handle multiline-value */ + $lines[$i] = substr($match[2], 3); + $var_value = ''; + while ($i<$count) { + if (($pos = strpos($lines[$i], '"""')) === false) { + $var_value .= $lines[$i++]; + } else { + /* end of multiline-value */ + $var_value .= substr($lines[$i], 0, $pos); + break; + } + } + $booleanize = false; + + } else { + /* handle simple value */ + $var_value = preg_replace('/^([\'"])(.*)\1$/', '\2', rtrim($match[2])); + $booleanize = $this->booleanize; + + } + $this->_set_config_var($vars, $var_name, $var_value, $booleanize); + } + /* else unparsable line / means it is a comment / means ignore it */ + } + return $config_data; + } + + /**#@+ @access private */ + /** + * @param array &$container + * @param string $var_name + * @param mixed $var_value + * @param boolean $booleanize determines whether $var_value is converted to + * to true/false + */ + function _set_config_var(&$container, $var_name, $var_value, $booleanize) + { + if (substr($var_name, 0, 1) == '.') { + if (!$this->read_hidden) + return; + else + $var_name = substr($var_name, 1); + } + + if (!preg_match("/^[a-zA-Z_]\w*$/", $var_name)) { + $this->_trigger_error_msg("Bad variable name '$var_name'"); + return; + } + + if ($booleanize) { + if (preg_match("/^(on|true|yes)$/i", $var_value)) + $var_value = true; + else if (preg_match("/^(off|false|no)$/i", $var_value)) + $var_value = false; + } + + if (!isset($container[$var_name]) || $this->overwrite) + $container[$var_name] = $var_value; + else { + settype($container[$var_name], 'array'); + $container[$var_name][] = $var_value; + } + } + + /** + * @uses trigger_error() creates a PHP warning/error + * @param string $error_msg + * @param integer $error_type one of + */ + function _trigger_error_msg($error_msg, $error_type = E_USER_WARNING) + { + trigger_error("Config_File error: $error_msg", $error_type); + } + /**#@-*/ +} + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/Smarty.class.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/Smarty.class.php new file mode 100644 index 0000000..5eda787 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/Smarty.class.php @@ -0,0 +1,1960 @@ + + * @author Andrei Zmievski + * @package Smarty + * @version 2.6.19 + */ + +/* $Id: Smarty.class.php 2722 2007-06-18 14:29:00Z danilo $ */ + +/** + * DIR_SEP isn't used anymore, but third party apps might + */ +if(!defined('DIR_SEP')) { + define('DIR_SEP', DIRECTORY_SEPARATOR); +} + +/** + * set SMARTY_DIR to absolute path to Smarty library files. + * if not defined, include_path will be used. Sets SMARTY_DIR only if user + * application has not already defined it. + */ + +if (!defined('SMARTY_DIR')) { + define('SMARTY_DIR', dirname(__FILE__) . DIRECTORY_SEPARATOR); +} + +if (!defined('SMARTY_CORE_DIR')) { + define('SMARTY_CORE_DIR', SMARTY_DIR . 'internals' . DIRECTORY_SEPARATOR); +} + +define('SMARTY_PHP_PASSTHRU', 0); +define('SMARTY_PHP_QUOTE', 1); +define('SMARTY_PHP_REMOVE', 2); +define('SMARTY_PHP_ALLOW', 3); + +/** + * @package Smarty + */ +class Smarty +{ + /**#@+ + * Smarty Configuration Section + */ + + /** + * The name of the directory where templates are located. + * + * @var string + */ + var $template_dir = 'templates'; + + /** + * The directory where compiled templates are located. + * + * @var string + */ + var $compile_dir = 'templates_c'; + + /** + * The directory where config files are located. + * + * @var string + */ + var $config_dir = 'configs'; + + /** + * An array of directories searched for plugins. + * + * @var array + */ + var $plugins_dir = array('plugins'); + + /** + * If debugging is enabled, a debug console window will display + * when the page loads (make sure your browser allows unrequested + * popup windows) + * + * @var boolean + */ + var $debugging = false; + + /** + * When set, smarty does uses this value as error_reporting-level. + * + * @var boolean + */ + var $error_reporting = null; + + /** + * This is the path to the debug console template. If not set, + * the default one will be used. + * + * @var string + */ + var $debug_tpl = ''; + + /** + * This determines if debugging is enable-able from the browser. + * + * @link http://www.foo.dom/index.php?SMARTY_DEBUG + * @var string + */ + var $debugging_ctrl = 'NONE'; + + /** + * This tells Smarty whether to check for recompiling or not. Recompiling + * does not need to happen unless a template or config file is changed. + * Typically you enable this during development, and disable for + * production. + * + * @var boolean + */ + var $compile_check = true; + + /** + * This forces templates to compile every time. Useful for development + * or debugging. + * + * @var boolean + */ + var $force_compile = false; + + /** + * This enables template caching. + * + * @var integer + */ + var $caching = 0; + + /** + * The name of the directory for cache files. + * + * @var string + */ + var $cache_dir = 'cache'; + + /** + * This is the number of seconds cached content will persist. + * + * + * @var integer + */ + var $cache_lifetime = 3600; + + /** + * Only used when $caching is enabled. If true, then If-Modified-Since headers + * are respected with cached content, and appropriate HTTP headers are sent. + * This way repeated hits to a cached page do not send the entire page to the + * client every time. + * + * @var boolean + */ + var $cache_modified_check = false; + + /** + * This determines how Smarty handles "" tags in templates. + * possible values: + * + * + * @var integer + */ + var $php_handling = SMARTY_PHP_PASSTHRU; + + /** + * This enables template security. When enabled, many things are restricted + * in the templates that normally would go unchecked. This is useful when + * untrusted parties are editing templates and you want a reasonable level + * of security. (no direct execution of PHP in templates for example) + * + * @var boolean + */ + var $security = false; + + /** + * This is the list of template directories that are considered secure. This + * is used only if {@link $security} is enabled. One directory per array + * element. {@link $template_dir} is in this list implicitly. + * + * @var array + */ + var $secure_dir = array(); + + /** + * These are the security settings for Smarty. They are used only when + * {@link $security} is enabled. + * + * @var array + */ + var $security_settings = array( + 'PHP_HANDLING' => false, + 'IF_FUNCS' => array('array', 'list', + 'isset', 'empty', + 'count', 'sizeof', + 'in_array', 'is_array', + 'true', 'false', 'null'), + 'INCLUDE_ANY' => false, + 'PHP_TAGS' => false, + 'MODIFIER_FUNCS' => array('count'), + 'ALLOW_CONSTANTS' => false + ); + + /** + * This is an array of directories where trusted php scripts reside. + * {@link $security} is disabled during their inclusion/execution. + * + * @var array + */ + var $trusted_dir = array(); + + /** + * The left delimiter used for the template tags. + * + * @var string + */ + var $left_delimiter = '{'; + + /** + * The right delimiter used for the template tags. + * + * @var string + */ + var $right_delimiter = '}'; + + /** + * The order in which request variables are registered, similar to + * variables_order in php.ini E = Environment, G = GET, P = POST, + * C = Cookies, S = Server + * + * @var string + */ + var $request_vars_order = 'EGPCS'; + + /** + * Indicates wether $HTTP_*_VARS[] (request_use_auto_globals=false) + * are uses as request-vars or $_*[]-vars. note: if + * request_use_auto_globals is true, then $request_vars_order has + * no effect, but the php-ini-value "gpc_order" + * + * @var boolean + */ + var $request_use_auto_globals = true; + + /** + * Set this if you want different sets of compiled files for the same + * templates. This is useful for things like different languages. + * Instead of creating separate sets of templates per language, you + * set different compile_ids like 'en' and 'de'. + * + * @var string + */ + var $compile_id = null; + + /** + * This tells Smarty whether or not to use sub dirs in the cache/ and + * templates_c/ directories. sub directories better organized, but + * may not work well with PHP safe mode enabled. + * + * @var boolean + * + */ + var $use_sub_dirs = false; + + /** + * This is a list of the modifiers to apply to all template variables. + * Put each modifier in a separate array element in the order you want + * them applied. example: array('escape:"htmlall"'); + * + * @var array + */ + var $default_modifiers = array(); + + /** + * This is the resource type to be used when not specified + * at the beginning of the resource path. examples: + * $smarty->display('file:index.tpl'); + * $smarty->display('db:index.tpl'); + * $smarty->display('index.tpl'); // will use default resource type + * {include file="file:index.tpl"} + * {include file="db:index.tpl"} + * {include file="index.tpl"} {* will use default resource type *} + * + * @var array + */ + var $default_resource_type = 'file'; + + /** + * The function used for cache file handling. If not set, built-in caching is used. + * + * @var null|string function name + */ + var $cache_handler_func = null; + + /** + * This indicates which filters are automatically loaded into Smarty. + * + * @var array array of filter names + */ + var $autoload_filters = array(); + + /**#@+ + * @var boolean + */ + /** + * This tells if config file vars of the same name overwrite each other or not. + * if disabled, same name variables are accumulated in an array. + */ + var $config_overwrite = true; + + /** + * This tells whether or not to automatically booleanize config file variables. + * If enabled, then the strings "on", "true", and "yes" are treated as boolean + * true, and "off", "false" and "no" are treated as boolean false. + */ + var $config_booleanize = true; + + /** + * This tells whether hidden sections [.foobar] are readable from the + * tempalates or not. Normally you would never allow this since that is + * the point behind hidden sections: the application can access them, but + * the templates cannot. + */ + var $config_read_hidden = false; + + /** + * This tells whether or not automatically fix newlines in config files. + * It basically converts \r (mac) or \r\n (dos) to \n + */ + var $config_fix_newlines = true; + /**#@-*/ + + /** + * If a template cannot be found, this PHP function will be executed. + * Useful for creating templates on-the-fly or other special action. + * + * @var string function name + */ + var $default_template_handler_func = ''; + + /** + * The file that contains the compiler class. This can a full + * pathname, or relative to the php_include path. + * + * @var string + */ + var $compiler_file = 'Smarty_Compiler.class.php'; + + /** + * The class used for compiling templates. + * + * @var string + */ + var $compiler_class = 'Smarty_Compiler'; + + /** + * The class used to load config vars. + * + * @var string + */ + var $config_class = 'Config_File'; + +/**#@+ + * END Smarty Configuration Section + * There should be no need to touch anything below this line. + * @access private + */ + /** + * where assigned template vars are kept + * + * @var array + */ + var $_tpl_vars = array(); + + /** + * stores run-time $smarty.* vars + * + * @var null|array + */ + var $_smarty_vars = null; + + /** + * keeps track of sections + * + * @var array + */ + var $_sections = array(); + + /** + * keeps track of foreach blocks + * + * @var array + */ + var $_foreach = array(); + + /** + * keeps track of tag hierarchy + * + * @var array + */ + var $_tag_stack = array(); + + /** + * configuration object + * + * @var Config_file + */ + var $_conf_obj = null; + + /** + * loaded configuration settings + * + * @var array + */ + var $_config = array(array('vars' => array(), 'files' => array())); + + /** + * md5 checksum of the string 'Smarty' + * + * @var string + */ + var $_smarty_md5 = 'f8d698aea36fcbead2b9d5359ffca76f'; + + /** + * Smarty version number + * + * @var string + */ + var $_version = '2.6.19'; + + /** + * current template inclusion depth + * + * @var integer + */ + var $_inclusion_depth = 0; + + /** + * for different compiled templates + * + * @var string + */ + var $_compile_id = null; + + /** + * text in URL to enable debug mode + * + * @var string + */ + var $_smarty_debug_id = 'SMARTY_DEBUG'; + + /** + * debugging information for debug console + * + * @var array + */ + var $_smarty_debug_info = array(); + + /** + * info that makes up a cache file + * + * @var array + */ + var $_cache_info = array(); + + /** + * default file permissions + * + * @var integer + */ + var $_file_perms = 0644; + + /** + * default dir permissions + * + * @var integer + */ + var $_dir_perms = 0771; + + /** + * registered objects + * + * @var array + */ + var $_reg_objects = array(); + + /** + * table keeping track of plugins + * + * @var array + */ + var $_plugins = array( + 'modifier' => array(), + 'function' => array(), + 'block' => array(), + 'compiler' => array(), + 'prefilter' => array(), + 'postfilter' => array(), + 'outputfilter' => array(), + 'resource' => array(), + 'insert' => array()); + + + /** + * cache serials + * + * @var array + */ + var $_cache_serials = array(); + + /** + * name of optional cache include file + * + * @var string + */ + var $_cache_include = null; + + /** + * indicate if the current code is used in a compiled + * include + * + * @var string + */ + var $_cache_including = false; + + /**#@-*/ + /** + * The class constructor. + */ + function Smarty() + { + $this->assign('SCRIPT_NAME', isset($_SERVER['SCRIPT_NAME']) ? $_SERVER['SCRIPT_NAME'] + : @$GLOBALS['HTTP_SERVER_VARS']['SCRIPT_NAME']); + } + + /** + * assigns values to template variables + * + * @param array|string $tpl_var the template variable name(s) + * @param mixed $value the value to assign + */ + function assign($tpl_var, $value = null) + { + if (is_array($tpl_var)){ + foreach ($tpl_var as $key => $val) { + if ($key != '') { + $this->_tpl_vars[$key] = $val; + } + } + } else { + if ($tpl_var != '') + $this->_tpl_vars[$tpl_var] = $value; + } + } + + /** + * assigns values to template variables by reference + * + * @param string $tpl_var the template variable name + * @param mixed $value the referenced value to assign + */ + function assign_by_ref($tpl_var, &$value) + { + if ($tpl_var != '') + $this->_tpl_vars[$tpl_var] = &$value; + } + + /** + * appends values to template variables + * + * @param array|string $tpl_var the template variable name(s) + * @param mixed $value the value to append + */ + function append($tpl_var, $value=null, $merge=false) + { + if (is_array($tpl_var)) { + // $tpl_var is an array, ignore $value + foreach ($tpl_var as $_key => $_val) { + if ($_key != '') { + if(!@is_array($this->_tpl_vars[$_key])) { + settype($this->_tpl_vars[$_key],'array'); + } + if($merge && is_array($_val)) { + foreach($_val as $_mkey => $_mval) { + $this->_tpl_vars[$_key][$_mkey] = $_mval; + } + } else { + $this->_tpl_vars[$_key][] = $_val; + } + } + } + } else { + if ($tpl_var != '' && isset($value)) { + if(!@is_array($this->_tpl_vars[$tpl_var])) { + settype($this->_tpl_vars[$tpl_var],'array'); + } + if($merge && is_array($value)) { + foreach($value as $_mkey => $_mval) { + $this->_tpl_vars[$tpl_var][$_mkey] = $_mval; + } + } else { + $this->_tpl_vars[$tpl_var][] = $value; + } + } + } + } + + /** + * appends values to template variables by reference + * + * @param string $tpl_var the template variable name + * @param mixed $value the referenced value to append + */ + function append_by_ref($tpl_var, &$value, $merge=false) + { + if ($tpl_var != '' && isset($value)) { + if(!@is_array($this->_tpl_vars[$tpl_var])) { + settype($this->_tpl_vars[$tpl_var],'array'); + } + if ($merge && is_array($value)) { + foreach($value as $_key => $_val) { + $this->_tpl_vars[$tpl_var][$_key] = &$value[$_key]; + } + } else { + $this->_tpl_vars[$tpl_var][] = &$value; + } + } + } + + + /** + * clear the given assigned template variable. + * + * @param string $tpl_var the template variable to clear + */ + function clear_assign($tpl_var) + { + if (is_array($tpl_var)) + foreach ($tpl_var as $curr_var) + unset($this->_tpl_vars[$curr_var]); + else + unset($this->_tpl_vars[$tpl_var]); + } + + + /** + * Registers custom function to be used in templates + * + * @param string $function the name of the template function + * @param string $function_impl the name of the PHP function to register + */ + function register_function($function, $function_impl, $cacheable=true, $cache_attrs=null) + { + $this->_plugins['function'][$function] = + array($function_impl, null, null, false, $cacheable, $cache_attrs); + + } + + /** + * Unregisters custom function + * + * @param string $function name of template function + */ + function unregister_function($function) + { + unset($this->_plugins['function'][$function]); + } + + /** + * Registers object to be used in templates + * + * @param string $object name of template object + * @param object &$object_impl the referenced PHP object to register + * @param null|array $allowed list of allowed methods (empty = all) + * @param boolean $smarty_args smarty argument format, else traditional + * @param null|array $block_functs list of methods that are block format + */ + function register_object($object, &$object_impl, $allowed = array(), $smarty_args = true, $block_methods = array()) + { + settype($allowed, 'array'); + settype($smarty_args, 'boolean'); + $this->_reg_objects[$object] = + array(&$object_impl, $allowed, $smarty_args, $block_methods); + } + + /** + * Unregisters object + * + * @param string $object name of template object + */ + function unregister_object($object) + { + unset($this->_reg_objects[$object]); + } + + + /** + * Registers block function to be used in templates + * + * @param string $block name of template block + * @param string $block_impl PHP function to register + */ + function register_block($block, $block_impl, $cacheable=true, $cache_attrs=null) + { + $this->_plugins['block'][$block] = + array($block_impl, null, null, false, $cacheable, $cache_attrs); + } + + /** + * Unregisters block function + * + * @param string $block name of template function + */ + function unregister_block($block) + { + unset($this->_plugins['block'][$block]); + } + + /** + * Registers compiler function + * + * @param string $function name of template function + * @param string $function_impl name of PHP function to register + */ + function register_compiler_function($function, $function_impl, $cacheable=true) + { + $this->_plugins['compiler'][$function] = + array($function_impl, null, null, false, $cacheable); + } + + /** + * Unregisters compiler function + * + * @param string $function name of template function + */ + function unregister_compiler_function($function) + { + unset($this->_plugins['compiler'][$function]); + } + + /** + * Registers modifier to be used in templates + * + * @param string $modifier name of template modifier + * @param string $modifier_impl name of PHP function to register + */ + function register_modifier($modifier, $modifier_impl) + { + $this->_plugins['modifier'][$modifier] = + array($modifier_impl, null, null, false); + } + + /** + * Unregisters modifier + * + * @param string $modifier name of template modifier + */ + function unregister_modifier($modifier) + { + unset($this->_plugins['modifier'][$modifier]); + } + + /** + * Registers a resource to fetch a template + * + * @param string $type name of resource + * @param array $functions array of functions to handle resource + */ + function register_resource($type, $functions) + { + if (count($functions)==4) { + $this->_plugins['resource'][$type] = + array($functions, false); + + } elseif (count($functions)==5) { + $this->_plugins['resource'][$type] = + array(array(array(&$functions[0], $functions[1]) + ,array(&$functions[0], $functions[2]) + ,array(&$functions[0], $functions[3]) + ,array(&$functions[0], $functions[4])) + ,false); + + } else { + $this->trigger_error("malformed function-list for '$type' in register_resource"); + + } + } + + /** + * Unregisters a resource + * + * @param string $type name of resource + */ + function unregister_resource($type) + { + unset($this->_plugins['resource'][$type]); + } + + /** + * Registers a prefilter function to apply + * to a template before compiling + * + * @param callback $function + */ + function register_prefilter($function) + { + $this->_plugins['prefilter'][$this->_get_filter_name($function)] + = array($function, null, null, false); + } + + /** + * Unregisters a prefilter function + * + * @param callback $function + */ + function unregister_prefilter($function) + { + unset($this->_plugins['prefilter'][$this->_get_filter_name($function)]); + } + + /** + * Registers a postfilter function to apply + * to a compiled template after compilation + * + * @param callback $function + */ + function register_postfilter($function) + { + $this->_plugins['postfilter'][$this->_get_filter_name($function)] + = array($function, null, null, false); + } + + /** + * Unregisters a postfilter function + * + * @param callback $function + */ + function unregister_postfilter($function) + { + unset($this->_plugins['postfilter'][$this->_get_filter_name($function)]); + } + + /** + * Registers an output filter function to apply + * to a template output + * + * @param callback $function + */ + function register_outputfilter($function) + { + $this->_plugins['outputfilter'][$this->_get_filter_name($function)] + = array($function, null, null, false); + } + + /** + * Unregisters an outputfilter function + * + * @param callback $function + */ + function unregister_outputfilter($function) + { + unset($this->_plugins['outputfilter'][$this->_get_filter_name($function)]); + } + + /** + * load a filter of specified type and name + * + * @param string $type filter type + * @param string $name filter name + */ + function load_filter($type, $name) + { + switch ($type) { + case 'output': + $_params = array('plugins' => array(array($type . 'filter', $name, null, null, false))); + require_once(SMARTY_CORE_DIR . 'core.load_plugins.php'); + smarty_core_load_plugins($_params, $this); + break; + + case 'pre': + case 'post': + if (!isset($this->_plugins[$type . 'filter'][$name])) + $this->_plugins[$type . 'filter'][$name] = false; + break; + } + } + + /** + * clear cached content for the given template and cache id + * + * @param string $tpl_file name of template file + * @param string $cache_id name of cache_id + * @param string $compile_id name of compile_id + * @param string $exp_time expiration time + * @return boolean + */ + function clear_cache($tpl_file = null, $cache_id = null, $compile_id = null, $exp_time = null) + { + + if (!isset($compile_id)) + $compile_id = $this->compile_id; + + if (!isset($tpl_file)) + $compile_id = null; + + $_auto_id = $this->_get_auto_id($cache_id, $compile_id); + + if (!empty($this->cache_handler_func)) { + return call_user_func_array($this->cache_handler_func, + array('clear', &$this, &$dummy, $tpl_file, $cache_id, $compile_id, $exp_time)); + } else { + $_params = array('auto_base' => $this->cache_dir, + 'auto_source' => $tpl_file, + 'auto_id' => $_auto_id, + 'exp_time' => $exp_time); + require_once(SMARTY_CORE_DIR . 'core.rm_auto.php'); + return smarty_core_rm_auto($_params, $this); + } + + } + + + /** + * clear the entire contents of cache (all templates) + * + * @param string $exp_time expire time + * @return boolean results of {@link smarty_core_rm_auto()} + */ + function clear_all_cache($exp_time = null) + { + return $this->clear_cache(null, null, null, $exp_time); + } + + + /** + * test to see if valid cache exists for this template + * + * @param string $tpl_file name of template file + * @param string $cache_id + * @param string $compile_id + * @return string|false results of {@link _read_cache_file()} + */ + function is_cached($tpl_file, $cache_id = null, $compile_id = null) + { + if (!$this->caching) + return false; + + if (!isset($compile_id)) + $compile_id = $this->compile_id; + + $_params = array( + 'tpl_file' => $tpl_file, + 'cache_id' => $cache_id, + 'compile_id' => $compile_id + ); + require_once(SMARTY_CORE_DIR . 'core.read_cache_file.php'); + return smarty_core_read_cache_file($_params, $this); + } + + + /** + * clear all the assigned template variables. + * + */ + function clear_all_assign() + { + $this->_tpl_vars = array(); + } + + /** + * clears compiled version of specified template resource, + * or all compiled template files if one is not specified. + * This function is for advanced use only, not normally needed. + * + * @param string $tpl_file + * @param string $compile_id + * @param string $exp_time + * @return boolean results of {@link smarty_core_rm_auto()} + */ + function clear_compiled_tpl($tpl_file = null, $compile_id = null, $exp_time = null) + { + if (!isset($compile_id)) { + $compile_id = $this->compile_id; + } + $_params = array('auto_base' => $this->compile_dir, + 'auto_source' => $tpl_file, + 'auto_id' => $compile_id, + 'exp_time' => $exp_time, + 'extensions' => array('.inc', '.php')); + require_once(SMARTY_CORE_DIR . 'core.rm_auto.php'); + return smarty_core_rm_auto($_params, $this); + } + + /** + * Checks whether requested template exists. + * + * @param string $tpl_file + * @return boolean + */ + function template_exists($tpl_file) + { + $_params = array('resource_name' => $tpl_file, 'quiet'=>true, 'get_source'=>false); + return $this->_fetch_resource_info($_params); + } + + /** + * Returns an array containing template variables + * + * @param string $name + * @param string $type + * @return array + */ + function &get_template_vars($name=null) + { + if(!isset($name)) { + return $this->_tpl_vars; + } elseif(isset($this->_tpl_vars[$name])) { + return $this->_tpl_vars[$name]; + } else { + // var non-existant, return valid reference + $_tmp = null; + return $_tmp; + } + } + + /** + * Returns an array containing config variables + * + * @param string $name + * @param string $type + * @return array + */ + function &get_config_vars($name=null) + { + if(!isset($name) && is_array($this->_config[0])) { + return $this->_config[0]['vars']; + } else if(isset($this->_config[0]['vars'][$name])) { + return $this->_config[0]['vars'][$name]; + } else { + // var non-existant, return valid reference + $_tmp = null; + return $_tmp; + } + } + + /** + * trigger Smarty error + * + * @param string $error_msg + * @param integer $error_type + */ + function trigger_error($error_msg, $error_type = E_USER_WARNING) + { + trigger_error("Smarty error: $error_msg", $error_type); + } + + + /** + * executes & displays the template results + * + * @param string $resource_name + * @param string $cache_id + * @param string $compile_id + */ + function display($resource_name, $cache_id = null, $compile_id = null) + { + $this->fetch($resource_name, $cache_id, $compile_id, true); + } + + /** + * executes & returns or displays the template results + * + * @param string $resource_name + * @param string $cache_id + * @param string $compile_id + * @param boolean $display + */ + function fetch($resource_name, $cache_id = null, $compile_id = null, $display = false) + { + static $_cache_info = array(); + + $_smarty_old_error_level = $this->debugging ? error_reporting() : error_reporting(isset($this->error_reporting) + ? $this->error_reporting : error_reporting() & ~E_NOTICE); + + if (!$this->debugging && $this->debugging_ctrl == 'URL') { + $_query_string = $this->request_use_auto_globals ? $_SERVER['QUERY_STRING'] : $GLOBALS['HTTP_SERVER_VARS']['QUERY_STRING']; + if (@strstr($_query_string, $this->_smarty_debug_id)) { + if (@strstr($_query_string, $this->_smarty_debug_id . '=on')) { + // enable debugging for this browser session + @setcookie('SMARTY_DEBUG', true); + $this->debugging = true; + } elseif (@strstr($_query_string, $this->_smarty_debug_id . '=off')) { + // disable debugging for this browser session + @setcookie('SMARTY_DEBUG', false); + $this->debugging = false; + } else { + // enable debugging for this page + $this->debugging = true; + } + } else { + $this->debugging = (bool)($this->request_use_auto_globals ? @$_COOKIE['SMARTY_DEBUG'] : @$GLOBALS['HTTP_COOKIE_VARS']['SMARTY_DEBUG']); + } + } + + if ($this->debugging) { + // capture time for debugging info + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $_debug_start_time = smarty_core_get_microtime($_params, $this); + $this->_smarty_debug_info[] = array('type' => 'template', + 'filename' => $resource_name, + 'depth' => 0); + $_included_tpls_idx = count($this->_smarty_debug_info) - 1; + } + + if (!isset($compile_id)) { + $compile_id = $this->compile_id; + } + + $this->_compile_id = $compile_id; + $this->_inclusion_depth = 0; + + if ($this->caching) { + // save old cache_info, initialize cache_info + array_push($_cache_info, $this->_cache_info); + $this->_cache_info = array(); + $_params = array( + 'tpl_file' => $resource_name, + 'cache_id' => $cache_id, + 'compile_id' => $compile_id, + 'results' => null + ); + require_once(SMARTY_CORE_DIR . 'core.read_cache_file.php'); + if (smarty_core_read_cache_file($_params, $this)) { + $_smarty_results = $_params['results']; + if (!empty($this->_cache_info['insert_tags'])) { + $_params = array('plugins' => $this->_cache_info['insert_tags']); + require_once(SMARTY_CORE_DIR . 'core.load_plugins.php'); + smarty_core_load_plugins($_params, $this); + $_params = array('results' => $_smarty_results); + require_once(SMARTY_CORE_DIR . 'core.process_cached_inserts.php'); + $_smarty_results = smarty_core_process_cached_inserts($_params, $this); + } + if (!empty($this->_cache_info['cache_serials'])) { + $_params = array('results' => $_smarty_results); + require_once(SMARTY_CORE_DIR . 'core.process_compiled_include.php'); + $_smarty_results = smarty_core_process_compiled_include($_params, $this); + } + + + if ($display) { + if ($this->debugging) + { + // capture time for debugging info + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $this->_smarty_debug_info[$_included_tpls_idx]['exec_time'] = smarty_core_get_microtime($_params, $this) - $_debug_start_time; + require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php'); + $_smarty_results .= smarty_core_display_debug_console($_params, $this); + } + if ($this->cache_modified_check) { + $_server_vars = ($this->request_use_auto_globals) ? $_SERVER : $GLOBALS['HTTP_SERVER_VARS']; + $_last_modified_date = @substr($_server_vars['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_server_vars['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3); + $_gmt_mtime = gmdate('D, d M Y H:i:s', $this->_cache_info['timestamp']).' GMT'; + if (@count($this->_cache_info['insert_tags']) == 0 + && !$this->_cache_serials + && $_gmt_mtime == $_last_modified_date) { + if (php_sapi_name()=='cgi') + header('Status: 304 Not Modified'); + else + header('HTTP/1.1 304 Not Modified'); + + } else { + header('Last-Modified: '.$_gmt_mtime); + echo $_smarty_results; + } + } else { + echo $_smarty_results; + } + error_reporting($_smarty_old_error_level); + // restore initial cache_info + $this->_cache_info = array_pop($_cache_info); + return true; + } else { + error_reporting($_smarty_old_error_level); + // restore initial cache_info + $this->_cache_info = array_pop($_cache_info); + return $_smarty_results; + } + } else { + $this->_cache_info['template'][$resource_name] = true; + if ($this->cache_modified_check && $display) { + header('Last-Modified: '.gmdate('D, d M Y H:i:s', time()).' GMT'); + } + } + } + + // load filters that are marked as autoload + if (count($this->autoload_filters)) { + foreach ($this->autoload_filters as $_filter_type => $_filters) { + foreach ($_filters as $_filter) { + $this->load_filter($_filter_type, $_filter); + } + } + } + + $_smarty_compile_path = $this->_get_compile_path($resource_name); + + // if we just need to display the results, don't perform output + // buffering - for speed + $_cache_including = $this->_cache_including; + $this->_cache_including = false; + if ($display && !$this->caching && count($this->_plugins['outputfilter']) == 0) { + if ($this->_is_compiled($resource_name, $_smarty_compile_path) + || $this->_compile_resource($resource_name, $_smarty_compile_path)) + { + include($_smarty_compile_path); + } + } else { + ob_start(); + if ($this->_is_compiled($resource_name, $_smarty_compile_path) + || $this->_compile_resource($resource_name, $_smarty_compile_path)) + { + include($_smarty_compile_path); + } + $_smarty_results = ob_get_contents(); + ob_end_clean(); + + foreach ((array)$this->_plugins['outputfilter'] as $_output_filter) { + $_smarty_results = call_user_func_array($_output_filter[0], array($_smarty_results, &$this)); + } + } + + if ($this->caching) { + $_params = array('tpl_file' => $resource_name, + 'cache_id' => $cache_id, + 'compile_id' => $compile_id, + 'results' => $_smarty_results); + require_once(SMARTY_CORE_DIR . 'core.write_cache_file.php'); + smarty_core_write_cache_file($_params, $this); + require_once(SMARTY_CORE_DIR . 'core.process_cached_inserts.php'); + $_smarty_results = smarty_core_process_cached_inserts($_params, $this); + + if ($this->_cache_serials) { + // strip nocache-tags from output + $_smarty_results = preg_replace('!(\{/?nocache\:[0-9a-f]{32}#\d+\})!s' + ,'' + ,$_smarty_results); + } + // restore initial cache_info + $this->_cache_info = array_pop($_cache_info); + } + $this->_cache_including = $_cache_including; + + if ($display) { + if (isset($_smarty_results)) { echo $_smarty_results; } + if ($this->debugging) { + // capture time for debugging info + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $this->_smarty_debug_info[$_included_tpls_idx]['exec_time'] = (smarty_core_get_microtime($_params, $this) - $_debug_start_time); + require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php'); + echo smarty_core_display_debug_console($_params, $this); + } + error_reporting($_smarty_old_error_level); + return; + } else { + error_reporting($_smarty_old_error_level); + if (isset($_smarty_results)) { return $_smarty_results; } + } + } + + /** + * load configuration values + * + * @param string $file + * @param string $section + * @param string $scope + */ + function config_load($file, $section = null, $scope = 'global') + { + require_once($this->_get_plugin_filepath('function', 'config_load')); + smarty_function_config_load(array('file' => $file, 'section' => $section, 'scope' => $scope), $this); + } + + /** + * return a reference to a registered object + * + * @param string $name + * @return object + */ + function &get_registered_object($name) { + if (!isset($this->_reg_objects[$name])) + $this->_trigger_fatal_error("'$name' is not a registered object"); + + if (!is_object($this->_reg_objects[$name][0])) + $this->_trigger_fatal_error("registered '$name' is not an object"); + + return $this->_reg_objects[$name][0]; + } + + /** + * clear configuration values + * + * @param string $var + */ + function clear_config($var = null) + { + if(!isset($var)) { + // clear all values + $this->_config = array(array('vars' => array(), + 'files' => array())); + } else { + unset($this->_config[0]['vars'][$var]); + } + } + + /** + * get filepath of requested plugin + * + * @param string $type + * @param string $name + * @return string|false + */ + function _get_plugin_filepath($type, $name) + { + $_params = array('type' => $type, 'name' => $name); + require_once(SMARTY_CORE_DIR . 'core.assemble_plugin_filepath.php'); + return smarty_core_assemble_plugin_filepath($_params, $this); + } + + /** + * test if resource needs compiling + * + * @param string $resource_name + * @param string $compile_path + * @return boolean + */ + function _is_compiled($resource_name, $compile_path) + { + if (!$this->force_compile && file_exists($compile_path)) { + if (!$this->compile_check) { + // no need to check compiled file + return true; + } else { + // get file source and timestamp + $_params = array('resource_name' => $resource_name, 'get_source'=>false); + if (!$this->_fetch_resource_info($_params)) { + return false; + } + if ($_params['resource_timestamp'] <= filemtime($compile_path)) { + // template not expired, no recompile + return true; + } else { + // compile template + return false; + } + } + } else { + // compiled template does not exist, or forced compile + return false; + } + } + + /** + * compile the template + * + * @param string $resource_name + * @param string $compile_path + * @return boolean + */ + function _compile_resource($resource_name, $compile_path) + { + + $_params = array('resource_name' => $resource_name); + if (!$this->_fetch_resource_info($_params)) { + return false; + } + + $_source_content = $_params['source_content']; + $_cache_include = substr($compile_path, 0, -4).'.inc'; + + if ($this->_compile_source($resource_name, $_source_content, $_compiled_content, $_cache_include)) { + // if a _cache_serial was set, we also have to write an include-file: + if ($this->_cache_include_info) { + require_once(SMARTY_CORE_DIR . 'core.write_compiled_include.php'); + smarty_core_write_compiled_include(array_merge($this->_cache_include_info, array('compiled_content'=>$_compiled_content, 'resource_name'=>$resource_name)), $this); + } + + $_params = array('compile_path'=>$compile_path, 'compiled_content' => $_compiled_content); + require_once(SMARTY_CORE_DIR . 'core.write_compiled_resource.php'); + smarty_core_write_compiled_resource($_params, $this); + + return true; + } else { + return false; + } + + } + + /** + * compile the given source + * + * @param string $resource_name + * @param string $source_content + * @param string $compiled_content + * @return boolean + */ + function _compile_source($resource_name, &$source_content, &$compiled_content, $cache_include_path=null) + { + if (file_exists(SMARTY_DIR . $this->compiler_file)) { + require_once(SMARTY_DIR . $this->compiler_file); + } else { + // use include_path + require_once($this->compiler_file); + } + + + $smarty_compiler = new $this->compiler_class; + + $smarty_compiler->template_dir = $this->template_dir; + $smarty_compiler->compile_dir = $this->compile_dir; + $smarty_compiler->plugins_dir = $this->plugins_dir; + $smarty_compiler->config_dir = $this->config_dir; + $smarty_compiler->force_compile = $this->force_compile; + $smarty_compiler->caching = $this->caching; + $smarty_compiler->php_handling = $this->php_handling; + $smarty_compiler->left_delimiter = $this->left_delimiter; + $smarty_compiler->right_delimiter = $this->right_delimiter; + $smarty_compiler->_version = $this->_version; + $smarty_compiler->security = $this->security; + $smarty_compiler->secure_dir = $this->secure_dir; + $smarty_compiler->security_settings = $this->security_settings; + $smarty_compiler->trusted_dir = $this->trusted_dir; + $smarty_compiler->use_sub_dirs = $this->use_sub_dirs; + $smarty_compiler->_reg_objects = &$this->_reg_objects; + $smarty_compiler->_plugins = &$this->_plugins; + $smarty_compiler->_tpl_vars = &$this->_tpl_vars; + $smarty_compiler->default_modifiers = $this->default_modifiers; + $smarty_compiler->compile_id = $this->_compile_id; + $smarty_compiler->_config = $this->_config; + $smarty_compiler->request_use_auto_globals = $this->request_use_auto_globals; + + if (isset($cache_include_path) && isset($this->_cache_serials[$cache_include_path])) { + $smarty_compiler->_cache_serial = $this->_cache_serials[$cache_include_path]; + } + $smarty_compiler->_cache_include = $cache_include_path; + + + $_results = $smarty_compiler->_compile_file($resource_name, $source_content, $compiled_content); + + if ($smarty_compiler->_cache_serial) { + $this->_cache_include_info = array( + 'cache_serial'=>$smarty_compiler->_cache_serial + ,'plugins_code'=>$smarty_compiler->_plugins_code + ,'include_file_path' => $cache_include_path); + + } else { + $this->_cache_include_info = null; + + } + + return $_results; + } + + /** + * Get the compile path for this resource + * + * @param string $resource_name + * @return string results of {@link _get_auto_filename()} + */ + function _get_compile_path($resource_name) + { + return $this->_get_auto_filename($this->compile_dir, $resource_name, + $this->_compile_id) . '.php'; + } + + /** + * fetch the template info. Gets timestamp, and source + * if get_source is true + * + * sets $source_content to the source of the template, and + * $resource_timestamp to its time stamp + * @param string $resource_name + * @param string $source_content + * @param integer $resource_timestamp + * @param boolean $get_source + * @param boolean $quiet + * @return boolean + */ + + function _fetch_resource_info(&$params) + { + if(!isset($params['get_source'])) { $params['get_source'] = true; } + if(!isset($params['quiet'])) { $params['quiet'] = false; } + + $_return = false; + $_params = array('resource_name' => $params['resource_name']) ; + if (isset($params['resource_base_path'])) + $_params['resource_base_path'] = $params['resource_base_path']; + else + $_params['resource_base_path'] = $this->template_dir; + + if ($this->_parse_resource_name($_params)) { + $_resource_type = $_params['resource_type']; + $_resource_name = $_params['resource_name']; + switch ($_resource_type) { + case 'file': + if ($params['get_source']) { + $params['source_content'] = $this->_read_file($_resource_name); + } + $params['resource_timestamp'] = filemtime($_resource_name); + $_return = is_file($_resource_name); + break; + + default: + // call resource functions to fetch the template source and timestamp + if ($params['get_source']) { + $_source_return = isset($this->_plugins['resource'][$_resource_type]) && + call_user_func_array($this->_plugins['resource'][$_resource_type][0][0], + array($_resource_name, &$params['source_content'], &$this)); + } else { + $_source_return = true; + } + + $_timestamp_return = isset($this->_plugins['resource'][$_resource_type]) && + call_user_func_array($this->_plugins['resource'][$_resource_type][0][1], + array($_resource_name, &$params['resource_timestamp'], &$this)); + + $_return = $_source_return && $_timestamp_return; + break; + } + } + + if (!$_return) { + // see if we can get a template with the default template handler + if (!empty($this->default_template_handler_func)) { + if (!is_callable($this->default_template_handler_func)) { + $this->trigger_error("default template handler function \"$this->default_template_handler_func\" doesn't exist."); + } else { + $_return = call_user_func_array( + $this->default_template_handler_func, + array($_params['resource_type'], $_params['resource_name'], &$params['source_content'], &$params['resource_timestamp'], &$this)); + } + } + } + + if (!$_return) { + if (!$params['quiet']) { + $this->trigger_error('unable to read resource: "' . $params['resource_name'] . '"'); + } + } else if ($_return && $this->security) { + require_once(SMARTY_CORE_DIR . 'core.is_secure.php'); + if (!smarty_core_is_secure($_params, $this)) { + if (!$params['quiet']) + $this->trigger_error('(secure mode) accessing "' . $params['resource_name'] . '" is not allowed'); + $params['source_content'] = null; + $params['resource_timestamp'] = null; + return false; + } + } + return $_return; + } + + + /** + * parse out the type and name from the resource + * + * @param string $resource_base_path + * @param string $resource_name + * @param string $resource_type + * @param string $resource_name + * @return boolean + */ + + function _parse_resource_name(&$params) + { + + // split tpl_path by the first colon + $_resource_name_parts = explode(':', $params['resource_name'], 2); + + if (count($_resource_name_parts) == 1) { + // no resource type given + $params['resource_type'] = $this->default_resource_type; + $params['resource_name'] = $_resource_name_parts[0]; + } else { + if(strlen($_resource_name_parts[0]) == 1) { + // 1 char is not resource type, but part of filepath + $params['resource_type'] = $this->default_resource_type; + $params['resource_name'] = $params['resource_name']; + } else { + $params['resource_type'] = $_resource_name_parts[0]; + $params['resource_name'] = $_resource_name_parts[1]; + } + } + + if ($params['resource_type'] == 'file') { + if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $params['resource_name'])) { + // relative pathname to $params['resource_base_path'] + // use the first directory where the file is found + foreach ((array)$params['resource_base_path'] as $_curr_path) { + $_fullpath = $_curr_path . DIRECTORY_SEPARATOR . $params['resource_name']; + if (file_exists($_fullpath) && is_file($_fullpath)) { + $params['resource_name'] = $_fullpath; + return true; + } + // didn't find the file, try include_path + $_params = array('file_path' => $_fullpath); + require_once(SMARTY_CORE_DIR . 'core.get_include_path.php'); + if(smarty_core_get_include_path($_params, $this)) { + $params['resource_name'] = $_params['new_file_path']; + return true; + } + } + return false; + } else { + /* absolute path */ + return file_exists($params['resource_name']); + } + } elseif (empty($this->_plugins['resource'][$params['resource_type']])) { + $_params = array('type' => $params['resource_type']); + require_once(SMARTY_CORE_DIR . 'core.load_resource_plugin.php'); + smarty_core_load_resource_plugin($_params, $this); + } + + return true; + } + + + /** + * Handle modifiers + * + * @param string|null $modifier_name + * @param array|null $map_array + * @return string result of modifiers + */ + function _run_mod_handler() + { + $_args = func_get_args(); + list($_modifier_name, $_map_array) = array_splice($_args, 0, 2); + list($_func_name, $_tpl_file, $_tpl_line) = + $this->_plugins['modifier'][$_modifier_name]; + + $_var = $_args[0]; + foreach ($_var as $_key => $_val) { + $_args[0] = $_val; + $_var[$_key] = call_user_func_array($_func_name, $_args); + } + return $_var; + } + + /** + * Remove starting and ending quotes from the string + * + * @param string $string + * @return string + */ + function _dequote($string) + { + if ((substr($string, 0, 1) == "'" || substr($string, 0, 1) == '"') && + substr($string, -1) == substr($string, 0, 1)) + return substr($string, 1, -1); + else + return $string; + } + + + /** + * read in a file + * + * @param string $filename + * @return string + */ + function _read_file($filename) + { + if ( file_exists($filename) && ($fd = @fopen($filename, 'rb')) ) { + $contents = ''; + while (!feof($fd)) { + $contents .= fread($fd, 8192); + } + fclose($fd); + return $contents; + } else { + return false; + } + } + + /** + * get a concrete filename for automagically created content + * + * @param string $auto_base + * @param string $auto_source + * @param string $auto_id + * @return string + * @staticvar string|null + * @staticvar string|null + */ + function _get_auto_filename($auto_base, $auto_source = null, $auto_id = null) + { + $_compile_dir_sep = $this->use_sub_dirs ? DIRECTORY_SEPARATOR : '^'; + $_return = $auto_base . DIRECTORY_SEPARATOR; + + if(isset($auto_id)) { + // make auto_id safe for directory names + $auto_id = str_replace('%7C',$_compile_dir_sep,(urlencode($auto_id))); + // split into separate directories + $_return .= $auto_id . $_compile_dir_sep; + } + + if(isset($auto_source)) { + // make source name safe for filename + $_filename = urlencode(basename($auto_source)); + $_crc32 = sprintf('%08X', crc32($auto_source)); + // prepend %% to avoid name conflicts with + // with $params['auto_id'] names + $_crc32 = substr($_crc32, 0, 2) . $_compile_dir_sep . + substr($_crc32, 0, 3) . $_compile_dir_sep . $_crc32; + $_return .= '%%' . $_crc32 . '%%' . $_filename; + } + + return $_return; + } + + /** + * unlink a file, possibly using expiration time + * + * @param string $resource + * @param integer $exp_time + */ + function _unlink($resource, $exp_time = null) + { + if(isset($exp_time)) { + if(time() - @filemtime($resource) >= $exp_time) { + return @unlink($resource); + } + } else { + return @unlink($resource); + } + } + + /** + * returns an auto_id for auto-file-functions + * + * @param string $cache_id + * @param string $compile_id + * @return string|null + */ + function _get_auto_id($cache_id=null, $compile_id=null) { + if (isset($cache_id)) + return (isset($compile_id)) ? $cache_id . '|' . $compile_id : $cache_id; + elseif(isset($compile_id)) + return $compile_id; + else + return null; + } + + /** + * trigger Smarty plugin error + * + * @param string $error_msg + * @param string $tpl_file + * @param integer $tpl_line + * @param string $file + * @param integer $line + * @param integer $error_type + */ + function _trigger_fatal_error($error_msg, $tpl_file = null, $tpl_line = null, + $file = null, $line = null, $error_type = E_USER_ERROR) + { + if(isset($file) && isset($line)) { + $info = ' ('.basename($file).", line $line)"; + } else { + $info = ''; + } + if (isset($tpl_line) && isset($tpl_file)) { + $this->trigger_error('[in ' . $tpl_file . ' line ' . $tpl_line . "]: $error_msg$info", $error_type); + } else { + $this->trigger_error($error_msg . $info, $error_type); + } + } + + + /** + * callback function for preg_replace, to call a non-cacheable block + * @return string + */ + function _process_compiled_include_callback($match) { + $_func = '_smarty_tplfunc_'.$match[2].'_'.$match[3]; + ob_start(); + $_func($this); + $_ret = ob_get_contents(); + ob_end_clean(); + return $_ret; + } + + + /** + * called for included templates + * + * @param string $_smarty_include_tpl_file + * @param string $_smarty_include_vars + */ + + // $_smarty_include_tpl_file, $_smarty_include_vars + + function _smarty_include($params) + { + if ($this->debugging) { + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $debug_start_time = smarty_core_get_microtime($_params, $this); + $this->_smarty_debug_info[] = array('type' => 'template', + 'filename' => $params['smarty_include_tpl_file'], + 'depth' => ++$this->_inclusion_depth); + $included_tpls_idx = count($this->_smarty_debug_info) - 1; + } + + $this->_tpl_vars = array_merge($this->_tpl_vars, $params['smarty_include_vars']); + + // config vars are treated as local, so push a copy of the + // current ones onto the front of the stack + array_unshift($this->_config, $this->_config[0]); + + $_smarty_compile_path = $this->_get_compile_path($params['smarty_include_tpl_file']); + + + if ($this->_is_compiled($params['smarty_include_tpl_file'], $_smarty_compile_path) + || $this->_compile_resource($params['smarty_include_tpl_file'], $_smarty_compile_path)) + { + include($_smarty_compile_path); + } + + // pop the local vars off the front of the stack + array_shift($this->_config); + + $this->_inclusion_depth--; + + if ($this->debugging) { + // capture time for debugging info + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $this->_smarty_debug_info[$included_tpls_idx]['exec_time'] = smarty_core_get_microtime($_params, $this) - $debug_start_time; + } + + if ($this->caching) { + $this->_cache_info['template'][$params['smarty_include_tpl_file']] = true; + } + } + + + /** + * get or set an array of cached attributes for function that is + * not cacheable + * @return array + */ + function &_smarty_cache_attrs($cache_serial, $count) { + $_cache_attrs =& $this->_cache_info['cache_attrs'][$cache_serial][$count]; + + if ($this->_cache_including) { + /* return next set of cache_attrs */ + $_return = current($_cache_attrs); + next($_cache_attrs); + return $_return; + + } else { + /* add a reference to a new set of cache_attrs */ + $_cache_attrs[] = array(); + return $_cache_attrs[count($_cache_attrs)-1]; + + } + + } + + + /** + * wrapper for include() retaining $this + * @return mixed + */ + function _include($filename, $once=false, $params=null) + { + if ($once) { + return include_once($filename); + } else { + return include($filename); + } + } + + + /** + * wrapper for eval() retaining $this + * @return mixed + */ + function _eval($code, $params=null) + { + return eval($code); + } + + /** + * Extracts the filter name from the given callback + * + * @param callback $function + * @return string + */ + function _get_filter_name($function) + { + if (is_array($function)) { + $_class_name = (is_object($function[0]) ? + get_class($function[0]) : $function[0]); + return $_class_name . '_' . $function[1]; + } + else { + return $function; + } + } + + /**#@-*/ + +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/Smarty_Compiler.class.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/Smarty_Compiler.class.php new file mode 100644 index 0000000..52466d3 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/Smarty_Compiler.class.php @@ -0,0 +1,2325 @@ + + * @author Andrei Zmievski + * @version 2.6.19 + * @copyright 2001-2005 New Digital Group, Inc. + * @package Smarty + */ + +/* $Id: Smarty_Compiler.class.php 2736 2007-09-16 14:47:53Z mohrt $ */ + +/** + * Template compiling class + * @package Smarty + */ +class Smarty_Compiler extends Smarty { + + // internal vars + /**#@+ + * @access private + */ + var $_folded_blocks = array(); // keeps folded template blocks + var $_current_file = null; // the current template being compiled + var $_current_line_no = 1; // line number for error messages + var $_capture_stack = array(); // keeps track of nested capture buffers + var $_plugin_info = array(); // keeps track of plugins to load + var $_init_smarty_vars = false; + var $_permitted_tokens = array('true','false','yes','no','on','off','null'); + var $_db_qstr_regexp = null; // regexps are setup in the constructor + var $_si_qstr_regexp = null; + var $_qstr_regexp = null; + var $_func_regexp = null; + var $_reg_obj_regexp = null; + var $_var_bracket_regexp = null; + var $_num_const_regexp = null; + var $_dvar_guts_regexp = null; + var $_dvar_regexp = null; + var $_cvar_regexp = null; + var $_svar_regexp = null; + var $_avar_regexp = null; + var $_mod_regexp = null; + var $_var_regexp = null; + var $_parenth_param_regexp = null; + var $_func_call_regexp = null; + var $_obj_ext_regexp = null; + var $_obj_start_regexp = null; + var $_obj_params_regexp = null; + var $_obj_call_regexp = null; + var $_cacheable_state = 0; + var $_cache_attrs_count = 0; + var $_nocache_count = 0; + var $_cache_serial = null; + var $_cache_include = null; + + var $_strip_depth = 0; + var $_additional_newline = "\n"; + + /**#@-*/ + /** + * The class constructor. + */ + function Smarty_Compiler() + { + // matches double quoted strings: + // "foobar" + // "foo\"bar" + $this->_db_qstr_regexp = '"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"'; + + // matches single quoted strings: + // 'foobar' + // 'foo\'bar' + $this->_si_qstr_regexp = '\'[^\'\\\\]*(?:\\\\.[^\'\\\\]*)*\''; + + // matches single or double quoted strings + $this->_qstr_regexp = '(?:' . $this->_db_qstr_regexp . '|' . $this->_si_qstr_regexp . ')'; + + // matches bracket portion of vars + // [0] + // [foo] + // [$bar] + $this->_var_bracket_regexp = '\[\$?[\w\.]+\]'; + + // matches numerical constants + // 30 + // -12 + // 13.22 + $this->_num_const_regexp = '(?:\-?\d+(?:\.\d+)?)'; + + // matches $ vars (not objects): + // $foo + // $foo.bar + // $foo.bar.foobar + // $foo[0] + // $foo[$bar] + // $foo[5][blah] + // $foo[5].bar[$foobar][4] + $this->_dvar_math_regexp = '(?:[\+\*\/\%]|(?:-(?!>)))'; + $this->_dvar_math_var_regexp = '[\$\w\.\+\-\*\/\%\d\>\[\]]'; + $this->_dvar_guts_regexp = '\w+(?:' . $this->_var_bracket_regexp + . ')*(?:\.\$?\w+(?:' . $this->_var_bracket_regexp . ')*)*(?:' . $this->_dvar_math_regexp . '(?:' . $this->_num_const_regexp . '|' . $this->_dvar_math_var_regexp . ')*)?'; + $this->_dvar_regexp = '\$' . $this->_dvar_guts_regexp; + + // matches config vars: + // #foo# + // #foobar123_foo# + $this->_cvar_regexp = '\#\w+\#'; + + // matches section vars: + // %foo.bar% + $this->_svar_regexp = '\%\w+\.\w+\%'; + + // matches all valid variables (no quotes, no modifiers) + $this->_avar_regexp = '(?:' . $this->_dvar_regexp . '|' + . $this->_cvar_regexp . '|' . $this->_svar_regexp . ')'; + + // matches valid variable syntax: + // $foo + // $foo + // #foo# + // #foo# + // "text" + // "text" + $this->_var_regexp = '(?:' . $this->_avar_regexp . '|' . $this->_qstr_regexp . ')'; + + // matches valid object call (one level of object nesting allowed in parameters): + // $foo->bar + // $foo->bar() + // $foo->bar("text") + // $foo->bar($foo, $bar, "text") + // $foo->bar($foo, "foo") + // $foo->bar->foo() + // $foo->bar->foo->bar() + // $foo->bar($foo->bar) + // $foo->bar($foo->bar()) + // $foo->bar($foo->bar($blah,$foo,44,"foo",$foo[0].bar)) + $this->_obj_ext_regexp = '\->(?:\$?' . $this->_dvar_guts_regexp . ')'; + $this->_obj_restricted_param_regexp = '(?:' + . '(?:' . $this->_var_regexp . '|' . $this->_num_const_regexp . ')(?:' . $this->_obj_ext_regexp . '(?:\((?:(?:' . $this->_var_regexp . '|' . $this->_num_const_regexp . ')' + . '(?:\s*,\s*(?:' . $this->_var_regexp . '|' . $this->_num_const_regexp . '))*)?\))?)*)'; + $this->_obj_single_param_regexp = '(?:\w+|' . $this->_obj_restricted_param_regexp . '(?:\s*,\s*(?:(?:\w+|' + . $this->_var_regexp . $this->_obj_restricted_param_regexp . ')))*)'; + $this->_obj_params_regexp = '\((?:' . $this->_obj_single_param_regexp + . '(?:\s*,\s*' . $this->_obj_single_param_regexp . ')*)?\)'; + $this->_obj_start_regexp = '(?:' . $this->_dvar_regexp . '(?:' . $this->_obj_ext_regexp . ')+)'; + $this->_obj_call_regexp = '(?:' . $this->_obj_start_regexp . '(?:' . $this->_obj_params_regexp . ')?(?:' . $this->_dvar_math_regexp . '(?:' . $this->_num_const_regexp . '|' . $this->_dvar_math_var_regexp . ')*)?)'; + + // matches valid modifier syntax: + // |foo + // |@foo + // |foo:"bar" + // |foo:$bar + // |foo:"bar":$foobar + // |foo|bar + // |foo:$foo->bar + $this->_mod_regexp = '(?:\|@?\w+(?::(?:\w+|' . $this->_num_const_regexp . '|' + . $this->_obj_call_regexp . '|' . $this->_avar_regexp . '|' . $this->_qstr_regexp .'))*)'; + + // matches valid function name: + // foo123 + // _foo_bar + $this->_func_regexp = '[a-zA-Z_]\w*'; + + // matches valid registered object: + // foo->bar + $this->_reg_obj_regexp = '[a-zA-Z_]\w*->[a-zA-Z_]\w*'; + + // matches valid parameter values: + // true + // $foo + // $foo|bar + // #foo# + // #foo#|bar + // "text" + // "text"|bar + // $foo->bar + $this->_param_regexp = '(?:\s*(?:' . $this->_obj_call_regexp . '|' + . $this->_var_regexp . '|' . $this->_num_const_regexp . '|\w+)(?>' . $this->_mod_regexp . '*)\s*)'; + + // matches valid parenthesised function parameters: + // + // "text" + // $foo, $bar, "text" + // $foo|bar, "foo"|bar, $foo->bar($foo)|bar + $this->_parenth_param_regexp = '(?:\((?:\w+|' + . $this->_param_regexp . '(?:\s*,\s*(?:(?:\w+|' + . $this->_param_regexp . ')))*)?\))'; + + // matches valid function call: + // foo() + // foo_bar($foo) + // _foo_bar($foo,"bar") + // foo123($foo,$foo->bar(),"foo") + $this->_func_call_regexp = '(?:' . $this->_func_regexp . '\s*(?:' + . $this->_parenth_param_regexp . '))'; + } + + /** + * compile a resource + * + * sets $compiled_content to the compiled source + * @param string $resource_name + * @param string $source_content + * @param string $compiled_content + * @return true + */ + function _compile_file($resource_name, $source_content, &$compiled_content) + { + + if ($this->security) { + // do not allow php syntax to be executed unless specified + if ($this->php_handling == SMARTY_PHP_ALLOW && + !$this->security_settings['PHP_HANDLING']) { + $this->php_handling = SMARTY_PHP_PASSTHRU; + } + } + + $this->_load_filters(); + + $this->_current_file = $resource_name; + $this->_current_line_no = 1; + $ldq = preg_quote($this->left_delimiter, '~'); + $rdq = preg_quote($this->right_delimiter, '~'); + + // run template source through prefilter functions + if (count($this->_plugins['prefilter']) > 0) { + foreach ($this->_plugins['prefilter'] as $filter_name => $prefilter) { + if ($prefilter === false) continue; + if ($prefilter[3] || is_callable($prefilter[0])) { + $source_content = call_user_func_array($prefilter[0], + array($source_content, &$this)); + $this->_plugins['prefilter'][$filter_name][3] = true; + } else { + $this->_trigger_fatal_error("[plugin] prefilter '$filter_name' is not implemented"); + } + } + } + + /* fetch all special blocks */ + $search = "~{$ldq}\*(.*?)\*{$rdq}|{$ldq}\s*literal\s*{$rdq}(.*?){$ldq}\s*/literal\s*{$rdq}|{$ldq}\s*php\s*{$rdq}(.*?){$ldq}\s*/php\s*{$rdq}~s"; + + preg_match_all($search, $source_content, $match, PREG_SET_ORDER); + $this->_folded_blocks = $match; + reset($this->_folded_blocks); + + /* replace special blocks by "{php}" */ + $source_content = preg_replace($search.'e', "'" + . $this->_quote_replace($this->left_delimiter) . 'php' + . "' . str_repeat(\"\n\", substr_count('\\0', \"\n\")) .'" + . $this->_quote_replace($this->right_delimiter) + . "'" + , $source_content); + + /* Gather all template tags. */ + preg_match_all("~{$ldq}\s*(.*?)\s*{$rdq}~s", $source_content, $_match); + $template_tags = $_match[1]; + /* Split content by template tags to obtain non-template content. */ + $text_blocks = preg_split("~{$ldq}.*?{$rdq}~s", $source_content); + + /* loop through text blocks */ + for ($curr_tb = 0, $for_max = count($text_blocks); $curr_tb < $for_max; $curr_tb++) { + /* match anything resembling php tags */ + if (preg_match_all('~(<\?(?:\w+|=)?|\?>|language\s*=\s*[\"\']?\s*php\s*[\"\']?)~is', $text_blocks[$curr_tb], $sp_match)) { + /* replace tags with placeholders to prevent recursive replacements */ + $sp_match[1] = array_unique($sp_match[1]); + usort($sp_match[1], '_smarty_sort_length'); + for ($curr_sp = 0, $for_max2 = count($sp_match[1]); $curr_sp < $for_max2; $curr_sp++) { + $text_blocks[$curr_tb] = str_replace($sp_match[1][$curr_sp],'%%%SMARTYSP'.$curr_sp.'%%%',$text_blocks[$curr_tb]); + } + /* process each one */ + for ($curr_sp = 0, $for_max2 = count($sp_match[1]); $curr_sp < $for_max2; $curr_sp++) { + if ($this->php_handling == SMARTY_PHP_PASSTHRU) { + /* echo php contents */ + $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', ''."\n", $text_blocks[$curr_tb]); + } else if ($this->php_handling == SMARTY_PHP_QUOTE) { + /* quote php tags */ + $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', htmlspecialchars($sp_match[1][$curr_sp]), $text_blocks[$curr_tb]); + } else if ($this->php_handling == SMARTY_PHP_REMOVE) { + /* remove php tags */ + $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', '', $text_blocks[$curr_tb]); + } else { + /* SMARTY_PHP_ALLOW, but echo non php starting tags */ + $sp_match[1][$curr_sp] = preg_replace('~(<\?(?!php|=|$))~i', ''."\n", $sp_match[1][$curr_sp]); + $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', $sp_match[1][$curr_sp], $text_blocks[$curr_tb]); + } + } + } + } + + /* Compile the template tags into PHP code. */ + $compiled_tags = array(); + for ($i = 0, $for_max = count($template_tags); $i < $for_max; $i++) { + $this->_current_line_no += substr_count($text_blocks[$i], "\n"); + $compiled_tags[] = $this->_compile_tag($template_tags[$i]); + $this->_current_line_no += substr_count($template_tags[$i], "\n"); + } + if (count($this->_tag_stack)>0) { + list($_open_tag, $_line_no) = end($this->_tag_stack); + $this->_syntax_error("unclosed tag \{$_open_tag} (opened line $_line_no).", E_USER_ERROR, __FILE__, __LINE__); + return; + } + + /* Reformat $text_blocks between 'strip' and '/strip' tags, + removing spaces, tabs and newlines. */ + $strip = false; + for ($i = 0, $for_max = count($compiled_tags); $i < $for_max; $i++) { + if ($compiled_tags[$i] == '{strip}') { + $compiled_tags[$i] = ''; + $strip = true; + /* remove leading whitespaces */ + $text_blocks[$i + 1] = ltrim($text_blocks[$i + 1]); + } + if ($strip) { + /* strip all $text_blocks before the next '/strip' */ + for ($j = $i + 1; $j < $for_max; $j++) { + /* remove leading and trailing whitespaces of each line */ + $text_blocks[$j] = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $text_blocks[$j]); + if ($compiled_tags[$j] == '{/strip}') { + /* remove trailing whitespaces from the last text_block */ + $text_blocks[$j] = rtrim($text_blocks[$j]); + } + $text_blocks[$j] = ""\'", "\\"=>"\\\\")) . "'; ?>"; + if ($compiled_tags[$j] == '{/strip}') { + $compiled_tags[$j] = "\n"; /* slurped by php, but necessary + if a newline is following the closing strip-tag */ + $strip = false; + $i = $j; + break; + } + } + } + } + $compiled_content = ''; + + $tag_guard = '%%%SMARTYOTG' . md5(uniqid(rand(), true)) . '%%%'; + + /* Interleave the compiled contents and text blocks to get the final result. */ + for ($i = 0, $for_max = count($compiled_tags); $i < $for_max; $i++) { + if ($compiled_tags[$i] == '') { + // tag result empty, remove first newline from following text block + $text_blocks[$i+1] = preg_replace('~^(\r\n|\r|\n)~', '', $text_blocks[$i+1]); + } + // replace legit PHP tags with placeholder + $text_blocks[$i] = str_replace('\n", $compiled_content); + $compiled_content = preg_replace("~(?\n", $compiled_content); + + // recover legit tags + $compiled_content = str_replace($tag_guard, '_cache_serial)) { + $compiled_content = "_cache_serials['".$this->_cache_include."'] = '".$this->_cache_serial."'; ?>" . $compiled_content; + } + + // run compiled template through postfilter functions + if (count($this->_plugins['postfilter']) > 0) { + foreach ($this->_plugins['postfilter'] as $filter_name => $postfilter) { + if ($postfilter === false) continue; + if ($postfilter[3] || is_callable($postfilter[0])) { + $compiled_content = call_user_func_array($postfilter[0], + array($compiled_content, &$this)); + $this->_plugins['postfilter'][$filter_name][3] = true; + } else { + $this->_trigger_fatal_error("Smarty plugin error: postfilter '$filter_name' is not implemented"); + } + } + } + + // put header at the top of the compiled template + $template_header = "_version.", created on ".strftime("%Y-%m-%d %H:%M:%S")."\n"; + $template_header .= " compiled from ".strtr(urlencode($resource_name), array('%2F'=>'/', '%3A'=>':'))." */ ?>\n"; + + /* Emit code to load needed plugins. */ + $this->_plugins_code = ''; + if (count($this->_plugin_info)) { + $_plugins_params = "array('plugins' => array("; + foreach ($this->_plugin_info as $plugin_type => $plugins) { + foreach ($plugins as $plugin_name => $plugin_info) { + $_plugins_params .= "array('$plugin_type', '$plugin_name', '" . strtr($plugin_info[0], array("'" => "\\'", "\\" => "\\\\")) . "', $plugin_info[1], "; + $_plugins_params .= $plugin_info[2] ? 'true),' : 'false),'; + } + } + $_plugins_params .= '))'; + $plugins_code = "\n"; + $template_header .= $plugins_code; + $this->_plugin_info = array(); + $this->_plugins_code = $plugins_code; + } + + if ($this->_init_smarty_vars) { + $template_header .= "\n"; + $this->_init_smarty_vars = false; + } + + $compiled_content = $template_header . $compiled_content; + return true; + } + + /** + * Compile a template tag + * + * @param string $template_tag + * @return string + */ + function _compile_tag($template_tag) + { + /* Matched comment. */ + if (substr($template_tag, 0, 1) == '*' && substr($template_tag, -1) == '*') + return ''; + + /* Split tag into two three parts: command, command modifiers and the arguments. */ + if(! preg_match('~^(?:(' . $this->_num_const_regexp . '|' . $this->_obj_call_regexp . '|' . $this->_var_regexp + . '|\/?' . $this->_reg_obj_regexp . '|\/?' . $this->_func_regexp . ')(' . $this->_mod_regexp . '*)) + (?:\s+(.*))?$ + ~xs', $template_tag, $match)) { + $this->_syntax_error("unrecognized tag: $template_tag", E_USER_ERROR, __FILE__, __LINE__); + } + + $tag_command = $match[1]; + $tag_modifier = isset($match[2]) ? $match[2] : null; + $tag_args = isset($match[3]) ? $match[3] : null; + + if (preg_match('~^' . $this->_num_const_regexp . '|' . $this->_obj_call_regexp . '|' . $this->_var_regexp . '$~', $tag_command)) { + /* tag name is a variable or object */ + $_return = $this->_parse_var_props($tag_command . $tag_modifier); + return "" . $this->_additional_newline; + } + + /* If the tag name is a registered object, we process it. */ + if (preg_match('~^\/?' . $this->_reg_obj_regexp . '$~', $tag_command)) { + return $this->_compile_registered_object_tag($tag_command, $this->_parse_attrs($tag_args), $tag_modifier); + } + + switch ($tag_command) { + case 'include': + return $this->_compile_include_tag($tag_args); + + case 'include_php': + return $this->_compile_include_php_tag($tag_args); + + case 'if': + $this->_push_tag('if'); + return $this->_compile_if_tag($tag_args); + + case 'else': + list($_open_tag) = end($this->_tag_stack); + if ($_open_tag != 'if' && $_open_tag != 'elseif') + $this->_syntax_error('unexpected {else}', E_USER_ERROR, __FILE__, __LINE__); + else + $this->_push_tag('else'); + return ''; + + case 'elseif': + list($_open_tag) = end($this->_tag_stack); + if ($_open_tag != 'if' && $_open_tag != 'elseif') + $this->_syntax_error('unexpected {elseif}', E_USER_ERROR, __FILE__, __LINE__); + if ($_open_tag == 'if') + $this->_push_tag('elseif'); + return $this->_compile_if_tag($tag_args, true); + + case '/if': + $this->_pop_tag('if'); + return ''; + + case 'capture': + return $this->_compile_capture_tag(true, $tag_args); + + case '/capture': + return $this->_compile_capture_tag(false); + + case 'ldelim': + return $this->left_delimiter; + + case 'rdelim': + return $this->right_delimiter; + + case 'section': + $this->_push_tag('section'); + return $this->_compile_section_start($tag_args); + + case 'sectionelse': + $this->_push_tag('sectionelse'); + return ""; + break; + + case '/section': + $_open_tag = $this->_pop_tag('section'); + if ($_open_tag == 'sectionelse') + return ""; + else + return ""; + + case 'foreach': + $this->_push_tag('foreach'); + return $this->_compile_foreach_start($tag_args); + break; + + case 'foreachelse': + $this->_push_tag('foreachelse'); + return ""; + + case '/foreach': + $_open_tag = $this->_pop_tag('foreach'); + if ($_open_tag == 'foreachelse') + return ""; + else + return ""; + break; + + case 'strip': + case '/strip': + if (substr($tag_command, 0, 1)=='/') { + $this->_pop_tag('strip'); + if (--$this->_strip_depth==0) { /* outermost closing {/strip} */ + $this->_additional_newline = "\n"; + return '{' . $tag_command . '}'; + } + } else { + $this->_push_tag('strip'); + if ($this->_strip_depth++==0) { /* outermost opening {strip} */ + $this->_additional_newline = ""; + return '{' . $tag_command . '}'; + } + } + return ''; + + case 'php': + /* handle folded tags replaced by {php} */ + list(, $block) = each($this->_folded_blocks); + $this->_current_line_no += substr_count($block[0], "\n"); + /* the number of matched elements in the regexp in _compile_file() + determins the type of folded tag that was found */ + switch (count($block)) { + case 2: /* comment */ + return ''; + + case 3: /* literal */ + return ""\'", "\\"=>"\\\\")) . "'; ?>" . $this->_additional_newline; + + case 4: /* php */ + if ($this->security && !$this->security_settings['PHP_TAGS']) { + $this->_syntax_error("(secure mode) php tags not permitted", E_USER_WARNING, __FILE__, __LINE__); + return; + } + return ''; + } + break; + + case 'insert': + return $this->_compile_insert_tag($tag_args); + + default: + if ($this->_compile_compiler_tag($tag_command, $tag_args, $output)) { + return $output; + } else if ($this->_compile_block_tag($tag_command, $tag_args, $tag_modifier, $output)) { + return $output; + } else if ($this->_compile_custom_tag($tag_command, $tag_args, $tag_modifier, $output)) { + return $output; + } else { + $this->_syntax_error("unrecognized tag '$tag_command'", E_USER_ERROR, __FILE__, __LINE__); + } + + } + } + + + /** + * compile the custom compiler tag + * + * sets $output to the compiled custom compiler tag + * @param string $tag_command + * @param string $tag_args + * @param string $output + * @return boolean + */ + function _compile_compiler_tag($tag_command, $tag_args, &$output) + { + $found = false; + $have_function = true; + + /* + * First we check if the compiler function has already been registered + * or loaded from a plugin file. + */ + if (isset($this->_plugins['compiler'][$tag_command])) { + $found = true; + $plugin_func = $this->_plugins['compiler'][$tag_command][0]; + if (!is_callable($plugin_func)) { + $message = "compiler function '$tag_command' is not implemented"; + $have_function = false; + } + } + /* + * Otherwise we need to load plugin file and look for the function + * inside it. + */ + else if ($plugin_file = $this->_get_plugin_filepath('compiler', $tag_command)) { + $found = true; + + include_once $plugin_file; + + $plugin_func = 'smarty_compiler_' . $tag_command; + if (!is_callable($plugin_func)) { + $message = "plugin function $plugin_func() not found in $plugin_file\n"; + $have_function = false; + } else { + $this->_plugins['compiler'][$tag_command] = array($plugin_func, null, null, null, true); + } + } + + /* + * True return value means that we either found a plugin or a + * dynamically registered function. False means that we didn't and the + * compiler should now emit code to load custom function plugin for this + * tag. + */ + if ($found) { + if ($have_function) { + $output = call_user_func_array($plugin_func, array($tag_args, &$this)); + if($output != '') { + $output = '_push_cacheable_state('compiler', $tag_command) + . $output + . $this->_pop_cacheable_state('compiler', $tag_command) . ' ?>'; + } + } else { + $this->_syntax_error($message, E_USER_WARNING, __FILE__, __LINE__); + } + return true; + } else { + return false; + } + } + + + /** + * compile block function tag + * + * sets $output to compiled block function tag + * @param string $tag_command + * @param string $tag_args + * @param string $tag_modifier + * @param string $output + * @return boolean + */ + function _compile_block_tag($tag_command, $tag_args, $tag_modifier, &$output) + { + if (substr($tag_command, 0, 1) == '/') { + $start_tag = false; + $tag_command = substr($tag_command, 1); + } else + $start_tag = true; + + $found = false; + $have_function = true; + + /* + * First we check if the block function has already been registered + * or loaded from a plugin file. + */ + if (isset($this->_plugins['block'][$tag_command])) { + $found = true; + $plugin_func = $this->_plugins['block'][$tag_command][0]; + if (!is_callable($plugin_func)) { + $message = "block function '$tag_command' is not implemented"; + $have_function = false; + } + } + /* + * Otherwise we need to load plugin file and look for the function + * inside it. + */ + else if ($plugin_file = $this->_get_plugin_filepath('block', $tag_command)) { + $found = true; + + include_once $plugin_file; + + $plugin_func = 'smarty_block_' . $tag_command; + if (!function_exists($plugin_func)) { + $message = "plugin function $plugin_func() not found in $plugin_file\n"; + $have_function = false; + } else { + $this->_plugins['block'][$tag_command] = array($plugin_func, null, null, null, true); + + } + } + + if (!$found) { + return false; + } else if (!$have_function) { + $this->_syntax_error($message, E_USER_WARNING, __FILE__, __LINE__); + return true; + } + + /* + * Even though we've located the plugin function, compilation + * happens only once, so the plugin will still need to be loaded + * at runtime for future requests. + */ + $this->_add_plugin('block', $tag_command); + + if ($start_tag) + $this->_push_tag($tag_command); + else + $this->_pop_tag($tag_command); + + if ($start_tag) { + $output = '_push_cacheable_state('block', $tag_command); + $attrs = $this->_parse_attrs($tag_args); + $_cache_attrs=''; + $arg_list = $this->_compile_arg_list('block', $tag_command, $attrs, $_cache_attrs); + $output .= "$_cache_attrs\$this->_tag_stack[] = array('$tag_command', array(".implode(',', $arg_list).')); '; + $output .= '$_block_repeat=true;' . $this->_compile_plugin_call('block', $tag_command).'($this->_tag_stack[count($this->_tag_stack)-1][1], null, $this, $_block_repeat);'; + $output .= 'while ($_block_repeat) { ob_start(); ?>'; + } else { + $output = '_compile_plugin_call('block', $tag_command).'($this->_tag_stack[count($this->_tag_stack)-1][1], $_block_content, $this, $_block_repeat)'; + if ($tag_modifier != '') { + $this->_parse_modifiers($_out_tag_text, $tag_modifier); + } + $output .= '$_block_repeat=false;echo ' . $_out_tag_text . '; } '; + $output .= " array_pop(\$this->_tag_stack); " . $this->_pop_cacheable_state('block', $tag_command) . '?>'; + } + + return true; + } + + + /** + * compile custom function tag + * + * @param string $tag_command + * @param string $tag_args + * @param string $tag_modifier + * @return string + */ + function _compile_custom_tag($tag_command, $tag_args, $tag_modifier, &$output) + { + $found = false; + $have_function = true; + + /* + * First we check if the custom function has already been registered + * or loaded from a plugin file. + */ + if (isset($this->_plugins['function'][$tag_command])) { + $found = true; + $plugin_func = $this->_plugins['function'][$tag_command][0]; + if (!is_callable($plugin_func)) { + $message = "custom function '$tag_command' is not implemented"; + $have_function = false; + } + } + /* + * Otherwise we need to load plugin file and look for the function + * inside it. + */ + else if ($plugin_file = $this->_get_plugin_filepath('function', $tag_command)) { + $found = true; + + include_once $plugin_file; + + $plugin_func = 'smarty_function_' . $tag_command; + if (!function_exists($plugin_func)) { + $message = "plugin function $plugin_func() not found in $plugin_file\n"; + $have_function = false; + } else { + $this->_plugins['function'][$tag_command] = array($plugin_func, null, null, null, true); + + } + } + + if (!$found) { + return false; + } else if (!$have_function) { + $this->_syntax_error($message, E_USER_WARNING, __FILE__, __LINE__); + return true; + } + + /* declare plugin to be loaded on display of the template that + we compile right now */ + $this->_add_plugin('function', $tag_command); + + $_cacheable_state = $this->_push_cacheable_state('function', $tag_command); + $attrs = $this->_parse_attrs($tag_args); + $_cache_attrs = ''; + $arg_list = $this->_compile_arg_list('function', $tag_command, $attrs, $_cache_attrs); + + $output = $this->_compile_plugin_call('function', $tag_command).'(array('.implode(',', $arg_list)."), \$this)"; + if($tag_modifier != '') { + $this->_parse_modifiers($output, $tag_modifier); + } + + if($output != '') { + $output = '_pop_cacheable_state('function', $tag_command) . "?>" . $this->_additional_newline; + } + + return true; + } + + /** + * compile a registered object tag + * + * @param string $tag_command + * @param array $attrs + * @param string $tag_modifier + * @return string + */ + function _compile_registered_object_tag($tag_command, $attrs, $tag_modifier) + { + if (substr($tag_command, 0, 1) == '/') { + $start_tag = false; + $tag_command = substr($tag_command, 1); + } else { + $start_tag = true; + } + + list($object, $obj_comp) = explode('->', $tag_command); + + $arg_list = array(); + if(count($attrs)) { + $_assign_var = false; + foreach ($attrs as $arg_name => $arg_value) { + if($arg_name == 'assign') { + $_assign_var = $arg_value; + unset($attrs['assign']); + continue; + } + if (is_bool($arg_value)) + $arg_value = $arg_value ? 'true' : 'false'; + $arg_list[] = "'$arg_name' => $arg_value"; + } + } + + if($this->_reg_objects[$object][2]) { + // smarty object argument format + $args = "array(".implode(',', (array)$arg_list)."), \$this"; + } else { + // traditional argument format + $args = implode(',', array_values($attrs)); + if (empty($args)) { + $args = ''; + } + } + + $prefix = ''; + $postfix = ''; + $newline = ''; + if(!is_object($this->_reg_objects[$object][0])) { + $this->_trigger_fatal_error("registered '$object' is not an object" , $this->_current_file, $this->_current_line_no, __FILE__, __LINE__); + } elseif(!empty($this->_reg_objects[$object][1]) && !in_array($obj_comp, $this->_reg_objects[$object][1])) { + $this->_trigger_fatal_error("'$obj_comp' is not a registered component of object '$object'", $this->_current_file, $this->_current_line_no, __FILE__, __LINE__); + } elseif(method_exists($this->_reg_objects[$object][0], $obj_comp)) { + // method + if(in_array($obj_comp, $this->_reg_objects[$object][3])) { + // block method + if ($start_tag) { + $prefix = "\$this->_tag_stack[] = array('$obj_comp', $args); "; + $prefix .= "\$_block_repeat=true; \$this->_reg_objects['$object'][0]->$obj_comp(\$this->_tag_stack[count(\$this->_tag_stack)-1][1], null, \$this, \$_block_repeat); "; + $prefix .= "while (\$_block_repeat) { ob_start();"; + $return = null; + $postfix = ''; + } else { + $prefix = "\$_obj_block_content = ob_get_contents(); ob_end_clean(); \$_block_repeat=false;"; + $return = "\$this->_reg_objects['$object'][0]->$obj_comp(\$this->_tag_stack[count(\$this->_tag_stack)-1][1], \$_obj_block_content, \$this, \$_block_repeat)"; + $postfix = "} array_pop(\$this->_tag_stack);"; + } + } else { + // non-block method + $return = "\$this->_reg_objects['$object'][0]->$obj_comp($args)"; + } + } else { + // property + $return = "\$this->_reg_objects['$object'][0]->$obj_comp"; + } + + if($return != null) { + if($tag_modifier != '') { + $this->_parse_modifiers($return, $tag_modifier); + } + + if(!empty($_assign_var)) { + $output = "\$this->assign('" . $this->_dequote($_assign_var) ."', $return);"; + } else { + $output = 'echo ' . $return . ';'; + $newline = $this->_additional_newline; + } + } else { + $output = ''; + } + + return '" . $newline; + } + + /** + * Compile {insert ...} tag + * + * @param string $tag_args + * @return string + */ + function _compile_insert_tag($tag_args) + { + $attrs = $this->_parse_attrs($tag_args); + $name = $this->_dequote($attrs['name']); + + if (empty($name)) { + return $this->_syntax_error("missing insert name", E_USER_ERROR, __FILE__, __LINE__); + } + + if (!preg_match('~^\w+$~', $name)) { + return $this->_syntax_error("'insert: 'name' must be an insert function name", E_USER_ERROR, __FILE__, __LINE__); + } + + if (!empty($attrs['script'])) { + $delayed_loading = true; + } else { + $delayed_loading = false; + } + + foreach ($attrs as $arg_name => $arg_value) { + if (is_bool($arg_value)) + $arg_value = $arg_value ? 'true' : 'false'; + $arg_list[] = "'$arg_name' => $arg_value"; + } + + $this->_add_plugin('insert', $name, $delayed_loading); + + $_params = "array('args' => array(".implode(', ', (array)$arg_list)."))"; + + return "" . $this->_additional_newline; + } + + /** + * Compile {include ...} tag + * + * @param string $tag_args + * @return string + */ + function _compile_include_tag($tag_args) + { + $attrs = $this->_parse_attrs($tag_args); + $arg_list = array(); + + if (empty($attrs['file'])) { + $this->_syntax_error("missing 'file' attribute in include tag", E_USER_ERROR, __FILE__, __LINE__); + } + + foreach ($attrs as $arg_name => $arg_value) { + if ($arg_name == 'file') { + $include_file = $arg_value; + continue; + } else if ($arg_name == 'assign') { + $assign_var = $arg_value; + continue; + } + if (is_bool($arg_value)) + $arg_value = $arg_value ? 'true' : 'false'; + $arg_list[] = "'$arg_name' => $arg_value"; + } + + $output = '_tpl_vars;\n"; + + + $_params = "array('smarty_include_tpl_file' => " . $include_file . ", 'smarty_include_vars' => array(".implode(',', (array)$arg_list)."))"; + $output .= "\$this->_smarty_include($_params);\n" . + "\$this->_tpl_vars = \$_smarty_tpl_vars;\n" . + "unset(\$_smarty_tpl_vars);\n"; + + if (isset($assign_var)) { + $output .= "\$this->assign(" . $assign_var . ", ob_get_contents()); ob_end_clean();\n"; + } + + $output .= ' ?>'; + + return $output; + + } + + /** + * Compile {include ...} tag + * + * @param string $tag_args + * @return string + */ + function _compile_include_php_tag($tag_args) + { + $attrs = $this->_parse_attrs($tag_args); + + if (empty($attrs['file'])) { + $this->_syntax_error("missing 'file' attribute in include_php tag", E_USER_ERROR, __FILE__, __LINE__); + } + + $assign_var = (empty($attrs['assign'])) ? '' : $this->_dequote($attrs['assign']); + $once_var = (empty($attrs['once']) || $attrs['once']=='false') ? 'false' : 'true'; + + $arg_list = array(); + foreach($attrs as $arg_name => $arg_value) { + if($arg_name != 'file' AND $arg_name != 'once' AND $arg_name != 'assign') { + if(is_bool($arg_value)) + $arg_value = $arg_value ? 'true' : 'false'; + $arg_list[] = "'$arg_name' => $arg_value"; + } + } + + $_params = "array('smarty_file' => " . $attrs['file'] . ", 'smarty_assign' => '$assign_var', 'smarty_once' => $once_var, 'smarty_include_vars' => array(".implode(',', $arg_list)."))"; + + return "" . $this->_additional_newline; + } + + + /** + * Compile {section ...} tag + * + * @param string $tag_args + * @return string + */ + function _compile_section_start($tag_args) + { + $attrs = $this->_parse_attrs($tag_args); + $arg_list = array(); + + $output = '_syntax_error("missing section name", E_USER_ERROR, __FILE__, __LINE__); + } + + $output .= "unset(\$this->_sections[$section_name]);\n"; + $section_props = "\$this->_sections[$section_name]"; + + foreach ($attrs as $attr_name => $attr_value) { + switch ($attr_name) { + case 'loop': + $output .= "{$section_props}['loop'] = is_array(\$_loop=$attr_value) ? count(\$_loop) : max(0, (int)\$_loop); unset(\$_loop);\n"; + break; + + case 'show': + if (is_bool($attr_value)) + $show_attr_value = $attr_value ? 'true' : 'false'; + else + $show_attr_value = "(bool)$attr_value"; + $output .= "{$section_props}['show'] = $show_attr_value;\n"; + break; + + case 'name': + $output .= "{$section_props}['$attr_name'] = $attr_value;\n"; + break; + + case 'max': + case 'start': + $output .= "{$section_props}['$attr_name'] = (int)$attr_value;\n"; + break; + + case 'step': + $output .= "{$section_props}['$attr_name'] = ((int)$attr_value) == 0 ? 1 : (int)$attr_value;\n"; + break; + + default: + $this->_syntax_error("unknown section attribute - '$attr_name'", E_USER_ERROR, __FILE__, __LINE__); + break; + } + } + + if (!isset($attrs['show'])) + $output .= "{$section_props}['show'] = true;\n"; + + if (!isset($attrs['loop'])) + $output .= "{$section_props}['loop'] = 1;\n"; + + if (!isset($attrs['max'])) + $output .= "{$section_props}['max'] = {$section_props}['loop'];\n"; + else + $output .= "if ({$section_props}['max'] < 0)\n" . + " {$section_props}['max'] = {$section_props}['loop'];\n"; + + if (!isset($attrs['step'])) + $output .= "{$section_props}['step'] = 1;\n"; + + if (!isset($attrs['start'])) + $output .= "{$section_props}['start'] = {$section_props}['step'] > 0 ? 0 : {$section_props}['loop']-1;\n"; + else { + $output .= "if ({$section_props}['start'] < 0)\n" . + " {$section_props}['start'] = max({$section_props}['step'] > 0 ? 0 : -1, {$section_props}['loop'] + {$section_props}['start']);\n" . + "else\n" . + " {$section_props}['start'] = min({$section_props}['start'], {$section_props}['step'] > 0 ? {$section_props}['loop'] : {$section_props}['loop']-1);\n"; + } + + $output .= "if ({$section_props}['show']) {\n"; + if (!isset($attrs['start']) && !isset($attrs['step']) && !isset($attrs['max'])) { + $output .= " {$section_props}['total'] = {$section_props}['loop'];\n"; + } else { + $output .= " {$section_props}['total'] = min(ceil(({$section_props}['step'] > 0 ? {$section_props}['loop'] - {$section_props}['start'] : {$section_props}['start']+1)/abs({$section_props}['step'])), {$section_props}['max']);\n"; + } + $output .= " if ({$section_props}['total'] == 0)\n" . + " {$section_props}['show'] = false;\n" . + "} else\n" . + " {$section_props}['total'] = 0;\n"; + + $output .= "if ({$section_props}['show']):\n"; + $output .= " + for ({$section_props}['index'] = {$section_props}['start'], {$section_props}['iteration'] = 1; + {$section_props}['iteration'] <= {$section_props}['total']; + {$section_props}['index'] += {$section_props}['step'], {$section_props}['iteration']++):\n"; + $output .= "{$section_props}['rownum'] = {$section_props}['iteration'];\n"; + $output .= "{$section_props}['index_prev'] = {$section_props}['index'] - {$section_props}['step'];\n"; + $output .= "{$section_props}['index_next'] = {$section_props}['index'] + {$section_props}['step'];\n"; + $output .= "{$section_props}['first'] = ({$section_props}['iteration'] == 1);\n"; + $output .= "{$section_props}['last'] = ({$section_props}['iteration'] == {$section_props}['total']);\n"; + + $output .= "?>"; + + return $output; + } + + + /** + * Compile {foreach ...} tag. + * + * @param string $tag_args + * @return string + */ + function _compile_foreach_start($tag_args) + { + $attrs = $this->_parse_attrs($tag_args); + $arg_list = array(); + + if (empty($attrs['from'])) { + return $this->_syntax_error("foreach: missing 'from' attribute", E_USER_ERROR, __FILE__, __LINE__); + } + $from = $attrs['from']; + + if (empty($attrs['item'])) { + return $this->_syntax_error("foreach: missing 'item' attribute", E_USER_ERROR, __FILE__, __LINE__); + } + $item = $this->_dequote($attrs['item']); + if (!preg_match('~^\w+$~', $item)) { + return $this->_syntax_error("foreach: 'item' must be a variable name (literal string)", E_USER_ERROR, __FILE__, __LINE__); + } + + if (isset($attrs['key'])) { + $key = $this->_dequote($attrs['key']); + if (!preg_match('~^\w+$~', $key)) { + return $this->_syntax_error("foreach: 'key' must to be a variable name (literal string)", E_USER_ERROR, __FILE__, __LINE__); + } + $key_part = "\$this->_tpl_vars['$key'] => "; + } else { + $key = null; + $key_part = ''; + } + + if (isset($attrs['name'])) { + $name = $attrs['name']; + } else { + $name = null; + } + + $output = '_foreach[$name]"; + $output .= "{$foreach_props} = array('total' => count(\$_from), 'iteration' => 0);\n"; + $output .= "if ({$foreach_props}['total'] > 0):\n"; + $output .= " foreach (\$_from as $key_part\$this->_tpl_vars['$item']):\n"; + $output .= " {$foreach_props}['iteration']++;\n"; + } else { + $output .= "if (count(\$_from)):\n"; + $output .= " foreach (\$_from as $key_part\$this->_tpl_vars['$item']):\n"; + } + $output .= '?>'; + + return $output; + } + + + /** + * Compile {capture} .. {/capture} tags + * + * @param boolean $start true if this is the {capture} tag + * @param string $tag_args + * @return string + */ + + function _compile_capture_tag($start, $tag_args = '') + { + $attrs = $this->_parse_attrs($tag_args); + + if ($start) { + $buffer = isset($attrs['name']) ? $attrs['name'] : "'default'"; + $assign = isset($attrs['assign']) ? $attrs['assign'] : null; + $append = isset($attrs['append']) ? $attrs['append'] : null; + + $output = ""; + $this->_capture_stack[] = array($buffer, $assign, $append); + } else { + list($buffer, $assign, $append) = array_pop($this->_capture_stack); + $output = "_smarty_vars['capture'][$buffer] = ob_get_contents(); "; + if (isset($assign)) { + $output .= " \$this->assign($assign, ob_get_contents());"; + } + if (isset($append)) { + $output .= " \$this->append($append, ob_get_contents());"; + } + $output .= "ob_end_clean(); ?>"; + } + + return $output; + } + + /** + * Compile {if ...} tag + * + * @param string $tag_args + * @param boolean $elseif if true, uses elseif instead of if + * @return string + */ + function _compile_if_tag($tag_args, $elseif = false) + { + + /* Tokenize args for 'if' tag. */ + preg_match_all('~(?> + ' . $this->_obj_call_regexp . '(?:' . $this->_mod_regexp . '*)? | # valid object call + ' . $this->_var_regexp . '(?:' . $this->_mod_regexp . '*)? | # var or quoted string + \-?0[xX][0-9a-fA-F]+|\-?\d+(?:\.\d+)?|\.\d+|!==|===|==|!=|<>|<<|>>|<=|>=|\&\&|\|\||\(|\)|,|\!|\^|=|\&|\~|<|>|\||\%|\+|\-|\/|\*|\@ | # valid non-word token + \b\w+\b | # valid word token + \S+ # anything else + )~x', $tag_args, $match); + + $tokens = $match[0]; + + if(empty($tokens)) { + $_error_msg = $elseif ? "'elseif'" : "'if'"; + $_error_msg .= ' statement requires arguments'; + $this->_syntax_error($_error_msg, E_USER_ERROR, __FILE__, __LINE__); + } + + + // make sure we have balanced parenthesis + $token_count = array_count_values($tokens); + if(isset($token_count['(']) && $token_count['('] != $token_count[')']) { + $this->_syntax_error("unbalanced parenthesis in if statement", E_USER_ERROR, __FILE__, __LINE__); + } + + $is_arg_stack = array(); + + for ($i = 0; $i < count($tokens); $i++) { + + $token = &$tokens[$i]; + + switch (strtolower($token)) { + case '!': + case '%': + case '!==': + case '==': + case '===': + case '>': + case '<': + case '!=': + case '<>': + case '<<': + case '>>': + case '<=': + case '>=': + case '&&': + case '||': + case '|': + case '^': + case '&': + case '~': + case ')': + case ',': + case '+': + case '-': + case '*': + case '/': + case '@': + break; + + case 'eq': + $token = '=='; + break; + + case 'ne': + case 'neq': + $token = '!='; + break; + + case 'lt': + $token = '<'; + break; + + case 'le': + case 'lte': + $token = '<='; + break; + + case 'gt': + $token = '>'; + break; + + case 'ge': + case 'gte': + $token = '>='; + break; + + case 'and': + $token = '&&'; + break; + + case 'or': + $token = '||'; + break; + + case 'not': + $token = '!'; + break; + + case 'mod': + $token = '%'; + break; + + case '(': + array_push($is_arg_stack, $i); + break; + + case 'is': + /* If last token was a ')', we operate on the parenthesized + expression. The start of the expression is on the stack. + Otherwise, we operate on the last encountered token. */ + if ($tokens[$i-1] == ')') + $is_arg_start = array_pop($is_arg_stack); + else + $is_arg_start = $i-1; + /* Construct the argument for 'is' expression, so it knows + what to operate on. */ + $is_arg = implode(' ', array_slice($tokens, $is_arg_start, $i - $is_arg_start)); + + /* Pass all tokens from next one until the end to the + 'is' expression parsing function. The function will + return modified tokens, where the first one is the result + of the 'is' expression and the rest are the tokens it + didn't touch. */ + $new_tokens = $this->_parse_is_expr($is_arg, array_slice($tokens, $i+1)); + + /* Replace the old tokens with the new ones. */ + array_splice($tokens, $is_arg_start, count($tokens), $new_tokens); + + /* Adjust argument start so that it won't change from the + current position for the next iteration. */ + $i = $is_arg_start; + break; + + default: + if(preg_match('~^' . $this->_func_regexp . '$~', $token) ) { + // function call + if($this->security && + !in_array($token, $this->security_settings['IF_FUNCS'])) { + $this->_syntax_error("(secure mode) '$token' not allowed in if statement", E_USER_ERROR, __FILE__, __LINE__); + } + } elseif(preg_match('~^' . $this->_var_regexp . '$~', $token) && (strpos('+-*/^%&|', substr($token, -1)) === false) && isset($tokens[$i+1]) && $tokens[$i+1] == '(') { + // variable function call + $this->_syntax_error("variable function call '$token' not allowed in if statement", E_USER_ERROR, __FILE__, __LINE__); + } elseif(preg_match('~^' . $this->_obj_call_regexp . '|' . $this->_var_regexp . '(?:' . $this->_mod_regexp . '*)$~', $token)) { + // object or variable + $token = $this->_parse_var_props($token); + } elseif(is_numeric($token)) { + // number, skip it + } else { + $this->_syntax_error("unidentified token '$token'", E_USER_ERROR, __FILE__, __LINE__); + } + break; + } + } + + if ($elseif) + return ''; + else + return ''; + } + + + function _compile_arg_list($type, $name, $attrs, &$cache_code) { + $arg_list = array(); + + if (isset($type) && isset($name) + && isset($this->_plugins[$type]) + && isset($this->_plugins[$type][$name]) + && empty($this->_plugins[$type][$name][4]) + && is_array($this->_plugins[$type][$name][5]) + ) { + /* we have a list of parameters that should be cached */ + $_cache_attrs = $this->_plugins[$type][$name][5]; + $_count = $this->_cache_attrs_count++; + $cache_code = "\$_cache_attrs =& \$this->_smarty_cache_attrs('$this->_cache_serial','$_count');"; + + } else { + /* no parameters are cached */ + $_cache_attrs = null; + } + + foreach ($attrs as $arg_name => $arg_value) { + if (is_bool($arg_value)) + $arg_value = $arg_value ? 'true' : 'false'; + if (is_null($arg_value)) + $arg_value = 'null'; + if ($_cache_attrs && in_array($arg_name, $_cache_attrs)) { + $arg_list[] = "'$arg_name' => (\$this->_cache_including) ? \$_cache_attrs['$arg_name'] : (\$_cache_attrs['$arg_name']=$arg_value)"; + } else { + $arg_list[] = "'$arg_name' => $arg_value"; + } + } + return $arg_list; + } + + /** + * Parse is expression + * + * @param string $is_arg + * @param array $tokens + * @return array + */ + function _parse_is_expr($is_arg, $tokens) + { + $expr_end = 0; + $negate_expr = false; + + if (($first_token = array_shift($tokens)) == 'not') { + $negate_expr = true; + $expr_type = array_shift($tokens); + } else + $expr_type = $first_token; + + switch ($expr_type) { + case 'even': + if (isset($tokens[$expr_end]) && $tokens[$expr_end] == 'by') { + $expr_end++; + $expr_arg = $tokens[$expr_end++]; + $expr = "!(1 & ($is_arg / " . $this->_parse_var_props($expr_arg) . "))"; + } else + $expr = "!(1 & $is_arg)"; + break; + + case 'odd': + if (isset($tokens[$expr_end]) && $tokens[$expr_end] == 'by') { + $expr_end++; + $expr_arg = $tokens[$expr_end++]; + $expr = "(1 & ($is_arg / " . $this->_parse_var_props($expr_arg) . "))"; + } else + $expr = "(1 & $is_arg)"; + break; + + case 'div': + if (@$tokens[$expr_end] == 'by') { + $expr_end++; + $expr_arg = $tokens[$expr_end++]; + $expr = "!($is_arg % " . $this->_parse_var_props($expr_arg) . ")"; + } else { + $this->_syntax_error("expecting 'by' after 'div'", E_USER_ERROR, __FILE__, __LINE__); + } + break; + + default: + $this->_syntax_error("unknown 'is' expression - '$expr_type'", E_USER_ERROR, __FILE__, __LINE__); + break; + } + + if ($negate_expr) { + $expr = "!($expr)"; + } + + array_splice($tokens, 0, $expr_end, $expr); + + return $tokens; + } + + + /** + * Parse attribute string + * + * @param string $tag_args + * @return array + */ + function _parse_attrs($tag_args) + { + + /* Tokenize tag attributes. */ + preg_match_all('~(?:' . $this->_obj_call_regexp . '|' . $this->_qstr_regexp . ' | (?>[^"\'=\s]+) + )+ | + [=] + ~x', $tag_args, $match); + $tokens = $match[0]; + + $attrs = array(); + /* Parse state: + 0 - expecting attribute name + 1 - expecting '=' + 2 - expecting attribute value (not '=') */ + $state = 0; + + foreach ($tokens as $token) { + switch ($state) { + case 0: + /* If the token is a valid identifier, we set attribute name + and go to state 1. */ + if (preg_match('~^\w+$~', $token)) { + $attr_name = $token; + $state = 1; + } else + $this->_syntax_error("invalid attribute name: '$token'", E_USER_ERROR, __FILE__, __LINE__); + break; + + case 1: + /* If the token is '=', then we go to state 2. */ + if ($token == '=') { + $state = 2; + } else + $this->_syntax_error("expecting '=' after attribute name '$last_token'", E_USER_ERROR, __FILE__, __LINE__); + break; + + case 2: + /* If token is not '=', we set the attribute value and go to + state 0. */ + if ($token != '=') { + /* We booleanize the token if it's a non-quoted possible + boolean value. */ + if (preg_match('~^(on|yes|true)$~', $token)) { + $token = 'true'; + } else if (preg_match('~^(off|no|false)$~', $token)) { + $token = 'false'; + } else if ($token == 'null') { + $token = 'null'; + } else if (preg_match('~^' . $this->_num_const_regexp . '|0[xX][0-9a-fA-F]+$~', $token)) { + /* treat integer literally */ + } else if (!preg_match('~^' . $this->_obj_call_regexp . '|' . $this->_var_regexp . '(?:' . $this->_mod_regexp . ')*$~', $token)) { + /* treat as a string, double-quote it escaping quotes */ + $token = '"'.addslashes($token).'"'; + } + + $attrs[$attr_name] = $token; + $state = 0; + } else + $this->_syntax_error("'=' cannot be an attribute value", E_USER_ERROR, __FILE__, __LINE__); + break; + } + $last_token = $token; + } + + if($state != 0) { + if($state == 1) { + $this->_syntax_error("expecting '=' after attribute name '$last_token'", E_USER_ERROR, __FILE__, __LINE__); + } else { + $this->_syntax_error("missing attribute value", E_USER_ERROR, __FILE__, __LINE__); + } + } + + $this->_parse_vars_props($attrs); + + return $attrs; + } + + /** + * compile multiple variables and section properties tokens into + * PHP code + * + * @param array $tokens + */ + function _parse_vars_props(&$tokens) + { + foreach($tokens as $key => $val) { + $tokens[$key] = $this->_parse_var_props($val); + } + } + + /** + * compile single variable and section properties token into + * PHP code + * + * @param string $val + * @param string $tag_attrs + * @return string + */ + function _parse_var_props($val) + { + $val = trim($val); + + if(preg_match('~^(' . $this->_obj_call_regexp . '|' . $this->_dvar_regexp . ')(' . $this->_mod_regexp . '*)$~', $val, $match)) { + // $ variable or object + $return = $this->_parse_var($match[1]); + $modifiers = $match[2]; + if (!empty($this->default_modifiers) && !preg_match('~(^|\|)smarty:nodefaults($|\|)~',$modifiers)) { + $_default_mod_string = implode('|',(array)$this->default_modifiers); + $modifiers = empty($modifiers) ? $_default_mod_string : $_default_mod_string . '|' . $modifiers; + } + $this->_parse_modifiers($return, $modifiers); + return $return; + } elseif (preg_match('~^' . $this->_db_qstr_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) { + // double quoted text + preg_match('~^(' . $this->_db_qstr_regexp . ')('. $this->_mod_regexp . '*)$~', $val, $match); + $return = $this->_expand_quoted_text($match[1]); + if($match[2] != '') { + $this->_parse_modifiers($return, $match[2]); + } + return $return; + } + elseif(preg_match('~^' . $this->_num_const_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) { + // numerical constant + preg_match('~^(' . $this->_num_const_regexp . ')('. $this->_mod_regexp . '*)$~', $val, $match); + if($match[2] != '') { + $this->_parse_modifiers($match[1], $match[2]); + return $match[1]; + } + } + elseif(preg_match('~^' . $this->_si_qstr_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) { + // single quoted text + preg_match('~^(' . $this->_si_qstr_regexp . ')('. $this->_mod_regexp . '*)$~', $val, $match); + if($match[2] != '') { + $this->_parse_modifiers($match[1], $match[2]); + return $match[1]; + } + } + elseif(preg_match('~^' . $this->_cvar_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) { + // config var + return $this->_parse_conf_var($val); + } + elseif(preg_match('~^' . $this->_svar_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) { + // section var + return $this->_parse_section_prop($val); + } + elseif(!in_array($val, $this->_permitted_tokens) && !is_numeric($val)) { + // literal string + return $this->_expand_quoted_text('"' . strtr($val, array('\\' => '\\\\', '"' => '\\"')) .'"'); + } + return $val; + } + + /** + * expand quoted text with embedded variables + * + * @param string $var_expr + * @return string + */ + function _expand_quoted_text($var_expr) + { + // if contains unescaped $, expand it + if(preg_match_all('~(?:\`(?_dvar_guts_regexp . '(?:' . $this->_obj_ext_regexp . ')*\`)|(?:(?_parse_var(str_replace('`','',$_var)) . ')."'; + } + $var_expr = strtr($var_expr, $_replace); + $_return = preg_replace('~\.""|(?_dvar_math_regexp.'|'.$this->_qstr_regexp.')~', $var_expr, -1, PREG_SPLIT_DELIM_CAPTURE); + + if(count($_math_vars) > 1) { + $_first_var = ""; + $_complete_var = ""; + $_output = ""; + // simple check if there is any math, to stop recursion (due to modifiers with "xx % yy" as parameter) + foreach($_math_vars as $_k => $_math_var) { + $_math_var = $_math_vars[$_k]; + + if(!empty($_math_var) || is_numeric($_math_var)) { + // hit a math operator, so process the stuff which came before it + if(preg_match('~^' . $this->_dvar_math_regexp . '$~', $_math_var)) { + $_has_math = true; + if(!empty($_complete_var) || is_numeric($_complete_var)) { + $_output .= $this->_parse_var($_complete_var); + } + + // just output the math operator to php + $_output .= $_math_var; + + if(empty($_first_var)) + $_first_var = $_complete_var; + + $_complete_var = ""; + } else { + $_complete_var .= $_math_var; + } + } + } + if($_has_math) { + if(!empty($_complete_var) || is_numeric($_complete_var)) + $_output .= $this->_parse_var($_complete_var); + + // get the modifiers working (only the last var from math + modifier is left) + $var_expr = $_complete_var; + } + } + + // prevent cutting of first digit in the number (we _definitly_ got a number if the first char is a digit) + if(is_numeric(substr($var_expr, 0, 1))) + $_var_ref = $var_expr; + else + $_var_ref = substr($var_expr, 1); + + if(!$_has_math) { + + // get [foo] and .foo and ->foo and (...) pieces + preg_match_all('~(?:^\w+)|' . $this->_obj_params_regexp . '|(?:' . $this->_var_bracket_regexp . ')|->\$?\w+|\.\$?\w+|\S+~', $_var_ref, $match); + + $_indexes = $match[0]; + $_var_name = array_shift($_indexes); + + /* Handle $smarty.* variable references as a special case. */ + if ($_var_name == 'smarty') { + /* + * If the reference could be compiled, use the compiled output; + * otherwise, fall back on the $smarty variable generated at + * run-time. + */ + if (($smarty_ref = $this->_compile_smarty_ref($_indexes)) !== null) { + $_output = $smarty_ref; + } else { + $_var_name = substr(array_shift($_indexes), 1); + $_output = "\$this->_smarty_vars['$_var_name']"; + } + } elseif(is_numeric($_var_name) && is_numeric(substr($var_expr, 0, 1))) { + // because . is the operator for accessing arrays thru inidizes we need to put it together again for floating point numbers + if(count($_indexes) > 0) + { + $_var_name .= implode("", $_indexes); + $_indexes = array(); + } + $_output = $_var_name; + } else { + $_output = "\$this->_tpl_vars['$_var_name']"; + } + + foreach ($_indexes as $_index) { + if (substr($_index, 0, 1) == '[') { + $_index = substr($_index, 1, -1); + if (is_numeric($_index)) { + $_output .= "[$_index]"; + } elseif (substr($_index, 0, 1) == '$') { + if (strpos($_index, '.') !== false) { + $_output .= '[' . $this->_parse_var($_index) . ']'; + } else { + $_output .= "[\$this->_tpl_vars['" . substr($_index, 1) . "']]"; + } + } else { + $_var_parts = explode('.', $_index); + $_var_section = $_var_parts[0]; + $_var_section_prop = isset($_var_parts[1]) ? $_var_parts[1] : 'index'; + $_output .= "[\$this->_sections['$_var_section']['$_var_section_prop']]"; + } + } else if (substr($_index, 0, 1) == '.') { + if (substr($_index, 1, 1) == '$') + $_output .= "[\$this->_tpl_vars['" . substr($_index, 2) . "']]"; + else + $_output .= "['" . substr($_index, 1) . "']"; + } else if (substr($_index,0,2) == '->') { + if(substr($_index,2,2) == '__') { + $this->_syntax_error('call to internal object members is not allowed', E_USER_ERROR, __FILE__, __LINE__); + } elseif($this->security && substr($_index, 2, 1) == '_') { + $this->_syntax_error('(secure) call to private object member is not allowed', E_USER_ERROR, __FILE__, __LINE__); + } elseif (substr($_index, 2, 1) == '$') { + if ($this->security) { + $this->_syntax_error('(secure) call to dynamic object member is not allowed', E_USER_ERROR, __FILE__, __LINE__); + } else { + $_output .= '->{(($_var=$this->_tpl_vars[\''.substr($_index,3).'\']) && substr($_var,0,2)!=\'__\') ? $_var : $this->trigger_error("cannot access property \\"$_var\\"")}'; + } + } else { + $_output .= $_index; + } + } elseif (substr($_index, 0, 1) == '(') { + $_index = $this->_parse_parenth_args($_index); + $_output .= $_index; + } else { + $_output .= $_index; + } + } + } + + return $_output; + } + + /** + * parse arguments in function call parenthesis + * + * @param string $parenth_args + * @return string + */ + function _parse_parenth_args($parenth_args) + { + preg_match_all('~' . $this->_param_regexp . '~',$parenth_args, $match); + $orig_vals = $match = $match[0]; + $this->_parse_vars_props($match); + $replace = array(); + for ($i = 0, $count = count($match); $i < $count; $i++) { + $replace[$orig_vals[$i]] = $match[$i]; + } + return strtr($parenth_args, $replace); + } + + /** + * parse configuration variable expression into PHP code + * + * @param string $conf_var_expr + */ + function _parse_conf_var($conf_var_expr) + { + $parts = explode('|', $conf_var_expr, 2); + $var_ref = $parts[0]; + $modifiers = isset($parts[1]) ? $parts[1] : ''; + + $var_name = substr($var_ref, 1, -1); + + $output = "\$this->_config[0]['vars']['$var_name']"; + + $this->_parse_modifiers($output, $modifiers); + + return $output; + } + + /** + * parse section property expression into PHP code + * + * @param string $section_prop_expr + * @return string + */ + function _parse_section_prop($section_prop_expr) + { + $parts = explode('|', $section_prop_expr, 2); + $var_ref = $parts[0]; + $modifiers = isset($parts[1]) ? $parts[1] : ''; + + preg_match('!%(\w+)\.(\w+)%!', $var_ref, $match); + $section_name = $match[1]; + $prop_name = $match[2]; + + $output = "\$this->_sections['$section_name']['$prop_name']"; + + $this->_parse_modifiers($output, $modifiers); + + return $output; + } + + + /** + * parse modifier chain into PHP code + * + * sets $output to parsed modified chain + * @param string $output + * @param string $modifier_string + */ + function _parse_modifiers(&$output, $modifier_string) + { + preg_match_all('~\|(@?\w+)((?>:(?:'. $this->_qstr_regexp . '|[^|]+))*)~', '|' . $modifier_string, $_match); + list(, $_modifiers, $modifier_arg_strings) = $_match; + + for ($_i = 0, $_for_max = count($_modifiers); $_i < $_for_max; $_i++) { + $_modifier_name = $_modifiers[$_i]; + + if($_modifier_name == 'smarty') { + // skip smarty modifier + continue; + } + + preg_match_all('~:(' . $this->_qstr_regexp . '|[^:]+)~', $modifier_arg_strings[$_i], $_match); + $_modifier_args = $_match[1]; + + if (substr($_modifier_name, 0, 1) == '@') { + $_map_array = false; + $_modifier_name = substr($_modifier_name, 1); + } else { + $_map_array = true; + } + + if (empty($this->_plugins['modifier'][$_modifier_name]) + && !$this->_get_plugin_filepath('modifier', $_modifier_name) + && function_exists($_modifier_name)) { + if ($this->security && !in_array($_modifier_name, $this->security_settings['MODIFIER_FUNCS'])) { + $this->_trigger_fatal_error("[plugin] (secure mode) modifier '$_modifier_name' is not allowed" , $this->_current_file, $this->_current_line_no, __FILE__, __LINE__); + } else { + $this->_plugins['modifier'][$_modifier_name] = array($_modifier_name, null, null, false); + } + } + $this->_add_plugin('modifier', $_modifier_name); + + $this->_parse_vars_props($_modifier_args); + + if($_modifier_name == 'default') { + // supress notifications of default modifier vars and args + if(substr($output, 0, 1) == '$') { + $output = '@' . $output; + } + if(isset($_modifier_args[0]) && substr($_modifier_args[0], 0, 1) == '$') { + $_modifier_args[0] = '@' . $_modifier_args[0]; + } + } + if (count($_modifier_args) > 0) + $_modifier_args = ', '.implode(', ', $_modifier_args); + else + $_modifier_args = ''; + + if ($_map_array) { + $output = "((is_array(\$_tmp=$output)) ? \$this->_run_mod_handler('$_modifier_name', true, \$_tmp$_modifier_args) : " . $this->_compile_plugin_call('modifier', $_modifier_name) . "(\$_tmp$_modifier_args))"; + + } else { + + $output = $this->_compile_plugin_call('modifier', $_modifier_name)."($output$_modifier_args)"; + + } + } + } + + + /** + * add plugin + * + * @param string $type + * @param string $name + * @param boolean? $delayed_loading + */ + function _add_plugin($type, $name, $delayed_loading = null) + { + if (!isset($this->_plugin_info[$type])) { + $this->_plugin_info[$type] = array(); + } + if (!isset($this->_plugin_info[$type][$name])) { + $this->_plugin_info[$type][$name] = array($this->_current_file, + $this->_current_line_no, + $delayed_loading); + } + } + + + /** + * Compiles references of type $smarty.foo + * + * @param string $indexes + * @return string + */ + function _compile_smarty_ref(&$indexes) + { + /* Extract the reference name. */ + $_ref = substr($indexes[0], 1); + foreach($indexes as $_index_no=>$_index) { + if (substr($_index, 0, 1) != '.' && $_index_no<2 || !preg_match('~^(\.|\[|->)~', $_index)) { + $this->_syntax_error('$smarty' . implode('', array_slice($indexes, 0, 2)) . ' is an invalid reference', E_USER_ERROR, __FILE__, __LINE__); + } + } + + switch ($_ref) { + case 'now': + $compiled_ref = 'time()'; + $_max_index = 1; + break; + + case 'foreach': + array_shift($indexes); + $_var = $this->_parse_var_props(substr($indexes[0], 1)); + $_propname = substr($indexes[1], 1); + $_max_index = 1; + switch ($_propname) { + case 'index': + array_shift($indexes); + $compiled_ref = "(\$this->_foreach[$_var]['iteration']-1)"; + break; + + case 'first': + array_shift($indexes); + $compiled_ref = "(\$this->_foreach[$_var]['iteration'] <= 1)"; + break; + + case 'last': + array_shift($indexes); + $compiled_ref = "(\$this->_foreach[$_var]['iteration'] == \$this->_foreach[$_var]['total'])"; + break; + + case 'show': + array_shift($indexes); + $compiled_ref = "(\$this->_foreach[$_var]['total'] > 0)"; + break; + + default: + unset($_max_index); + $compiled_ref = "\$this->_foreach[$_var]"; + } + break; + + case 'section': + array_shift($indexes); + $_var = $this->_parse_var_props(substr($indexes[0], 1)); + $compiled_ref = "\$this->_sections[$_var]"; + break; + + case 'get': + $compiled_ref = ($this->request_use_auto_globals) ? '$_GET' : "\$GLOBALS['HTTP_GET_VARS']"; + break; + + case 'post': + $compiled_ref = ($this->request_use_auto_globals) ? '$_POST' : "\$GLOBALS['HTTP_POST_VARS']"; + break; + + case 'cookies': + $compiled_ref = ($this->request_use_auto_globals) ? '$_COOKIE' : "\$GLOBALS['HTTP_COOKIE_VARS']"; + break; + + case 'env': + $compiled_ref = ($this->request_use_auto_globals) ? '$_ENV' : "\$GLOBALS['HTTP_ENV_VARS']"; + break; + + case 'server': + $compiled_ref = ($this->request_use_auto_globals) ? '$_SERVER' : "\$GLOBALS['HTTP_SERVER_VARS']"; + break; + + case 'session': + $compiled_ref = ($this->request_use_auto_globals) ? '$_SESSION' : "\$GLOBALS['HTTP_SESSION_VARS']"; + break; + + /* + * These cases are handled either at run-time or elsewhere in the + * compiler. + */ + case 'request': + if ($this->request_use_auto_globals) { + $compiled_ref = '$_REQUEST'; + break; + } else { + $this->_init_smarty_vars = true; + } + return null; + + case 'capture': + return null; + + case 'template': + $compiled_ref = "'$this->_current_file'"; + $_max_index = 1; + break; + + case 'version': + $compiled_ref = "'$this->_version'"; + $_max_index = 1; + break; + + case 'const': + if ($this->security && !$this->security_settings['ALLOW_CONSTANTS']) { + $this->_syntax_error("(secure mode) constants not permitted", + E_USER_WARNING, __FILE__, __LINE__); + return; + } + array_shift($indexes); + if (preg_match('!^\.\w+$!', $indexes[0])) { + $compiled_ref = '@' . substr($indexes[0], 1); + } else { + $_val = $this->_parse_var_props(substr($indexes[0], 1)); + $compiled_ref = '@constant(' . $_val . ')'; + } + $_max_index = 1; + break; + + case 'config': + $compiled_ref = "\$this->_config[0]['vars']"; + $_max_index = 3; + break; + + case 'ldelim': + $compiled_ref = "'$this->left_delimiter'"; + break; + + case 'rdelim': + $compiled_ref = "'$this->right_delimiter'"; + break; + + default: + $this->_syntax_error('$smarty.' . $_ref . ' is an unknown reference', E_USER_ERROR, __FILE__, __LINE__); + break; + } + + if (isset($_max_index) && count($indexes) > $_max_index) { + $this->_syntax_error('$smarty' . implode('', $indexes) .' is an invalid reference', E_USER_ERROR, __FILE__, __LINE__); + } + + array_shift($indexes); + return $compiled_ref; + } + + /** + * compiles call to plugin of type $type with name $name + * returns a string containing the function-name or method call + * without the paramter-list that would have follow to make the + * call valid php-syntax + * + * @param string $type + * @param string $name + * @return string + */ + function _compile_plugin_call($type, $name) { + if (isset($this->_plugins[$type][$name])) { + /* plugin loaded */ + if (is_array($this->_plugins[$type][$name][0])) { + return ((is_object($this->_plugins[$type][$name][0][0])) ? + "\$this->_plugins['$type']['$name'][0][0]->" /* method callback */ + : (string)($this->_plugins[$type][$name][0][0]).'::' /* class callback */ + ). $this->_plugins[$type][$name][0][1]; + + } else { + /* function callback */ + return $this->_plugins[$type][$name][0]; + + } + } else { + /* plugin not loaded -> auto-loadable-plugin */ + return 'smarty_'.$type.'_'.$name; + + } + } + + /** + * load pre- and post-filters + */ + function _load_filters() + { + if (count($this->_plugins['prefilter']) > 0) { + foreach ($this->_plugins['prefilter'] as $filter_name => $prefilter) { + if ($prefilter === false) { + unset($this->_plugins['prefilter'][$filter_name]); + $_params = array('plugins' => array(array('prefilter', $filter_name, null, null, false))); + require_once(SMARTY_CORE_DIR . 'core.load_plugins.php'); + smarty_core_load_plugins($_params, $this); + } + } + } + if (count($this->_plugins['postfilter']) > 0) { + foreach ($this->_plugins['postfilter'] as $filter_name => $postfilter) { + if ($postfilter === false) { + unset($this->_plugins['postfilter'][$filter_name]); + $_params = array('plugins' => array(array('postfilter', $filter_name, null, null, false))); + require_once(SMARTY_CORE_DIR . 'core.load_plugins.php'); + smarty_core_load_plugins($_params, $this); + } + } + } + } + + + /** + * Quote subpattern references + * + * @param string $string + * @return string + */ + function _quote_replace($string) + { + return strtr($string, array('\\' => '\\\\', '$' => '\\$')); + } + + /** + * display Smarty syntax error + * + * @param string $error_msg + * @param integer $error_type + * @param string $file + * @param integer $line + */ + function _syntax_error($error_msg, $error_type = E_USER_ERROR, $file=null, $line=null) + { + $this->_trigger_fatal_error("syntax error: $error_msg", $this->_current_file, $this->_current_line_no, $file, $line, $error_type); + } + + + /** + * check if the compilation changes from cacheable to + * non-cacheable state with the beginning of the current + * plugin. return php-code to reflect the transition. + * @return string + */ + function _push_cacheable_state($type, $name) { + $_cacheable = !isset($this->_plugins[$type][$name]) || $this->_plugins[$type][$name][4]; + if ($_cacheable + || 0<$this->_cacheable_state++) return ''; + if (!isset($this->_cache_serial)) $this->_cache_serial = md5(uniqid('Smarty')); + $_ret = 'if ($this->caching && !$this->_cache_including): echo \'{nocache:' + . $this->_cache_serial . '#' . $this->_nocache_count + . '}\'; endif;'; + return $_ret; + } + + + /** + * check if the compilation changes from non-cacheable to + * cacheable state with the end of the current plugin return + * php-code to reflect the transition. + * @return string + */ + function _pop_cacheable_state($type, $name) { + $_cacheable = !isset($this->_plugins[$type][$name]) || $this->_plugins[$type][$name][4]; + if ($_cacheable + || --$this->_cacheable_state>0) return ''; + return 'if ($this->caching && !$this->_cache_including): echo \'{/nocache:' + . $this->_cache_serial . '#' . ($this->_nocache_count++) + . '}\'; endif;'; + } + + + /** + * push opening tag-name, file-name and line-number on the tag-stack + * @param string the opening tag's name + */ + function _push_tag($open_tag) + { + array_push($this->_tag_stack, array($open_tag, $this->_current_line_no)); + } + + /** + * pop closing tag-name + * raise an error if this stack-top doesn't match with the closing tag + * @param string the closing tag's name + * @return string the opening tag's name + */ + function _pop_tag($close_tag) + { + $message = ''; + if (count($this->_tag_stack)>0) { + list($_open_tag, $_line_no) = array_pop($this->_tag_stack); + if ($close_tag == $_open_tag) { + return $_open_tag; + } + if ($close_tag == 'if' && ($_open_tag == 'else' || $_open_tag == 'elseif' )) { + return $this->_pop_tag($close_tag); + } + if ($close_tag == 'section' && $_open_tag == 'sectionelse') { + $this->_pop_tag($close_tag); + return $_open_tag; + } + if ($close_tag == 'foreach' && $_open_tag == 'foreachelse') { + $this->_pop_tag($close_tag); + return $_open_tag; + } + if ($_open_tag == 'else' || $_open_tag == 'elseif') { + $_open_tag = 'if'; + } elseif ($_open_tag == 'sectionelse') { + $_open_tag = 'section'; + } elseif ($_open_tag == 'foreachelse') { + $_open_tag = 'foreach'; + } + $message = " expected {/$_open_tag} (opened line $_line_no)."; + } + $this->_syntax_error("mismatched tag {/$close_tag}.$message", + E_USER_ERROR, __FILE__, __LINE__); + } + +} + +/** + * compare to values by their string length + * + * @access private + * @param string $a + * @param string $b + * @return 0|-1|1 + */ +function _smarty_sort_length($a, $b) +{ + if($a == $b) + return 0; + + if(strlen($a) == strlen($b)) + return ($a > $b) ? -1 : 1; + + return (strlen($a) > strlen($b)) ? -1 : 1; +} + + +/* vim: set et: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/debug.tpl b/other/AoWoW-master/includes/Smarty-2.6.19/libs/debug.tpl new file mode 100644 index 0000000..06c88e7 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/debug.tpl @@ -0,0 +1,157 @@ +{* Smarty *} +{* debug.tpl, last updated version 2.1.0 *} +{assign_debug_info} +{capture assign=debug_output} + + + + Smarty Debug Console +{literal} + +{/literal} + + + +

Smarty Debug Console

+ +

included templates & config files (load time in seconds)

+ +
+{section name=templates loop=$_debug_tpls} + {section name=indent loop=$_debug_tpls[templates].depth}   {/section} + + {$_debug_tpls[templates].filename|escape:html} + {if isset($_debug_tpls[templates].exec_time)} + + ({$_debug_tpls[templates].exec_time|string_format:"%.5f"}) + {if %templates.index% eq 0}(total){/if} + + {/if} +
+{sectionelse} +

no templates included

+{/section} +
+ +

assigned template variables

+ + + {section name=vars loop=$_debug_keys} + + + + {sectionelse} + + {/section} +
{ldelim}${$_debug_keys[vars]|escape:'html'}{rdelim}{$_debug_vals[vars]|@debug_print_var}

no template variables assigned

+ +

assigned config file variables (outer template scope)

+ + + {section name=config_vars loop=$_debug_config_keys} + + + + {sectionelse} + + {/section} +
{ldelim}#{$_debug_config_keys[config_vars]|escape:'html'}#{rdelim}{$_debug_config_vals[config_vars]|@debug_print_var}

no config vars assigned

+ + +{/capture} +{if isset($_smarty_debug_output) and $_smarty_debug_output eq "html"} + {$debug_output} +{else} + +{/if} diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.assemble_plugin_filepath.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.assemble_plugin_filepath.php new file mode 100644 index 0000000..690d3dd --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.assemble_plugin_filepath.php @@ -0,0 +1,67 @@ +plugins_dir as $_plugin_dir) { + + $_plugin_filepath = $_plugin_dir . DIRECTORY_SEPARATOR . $_plugin_filename; + + // see if path is relative + if (!preg_match("/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/", $_plugin_dir)) { + $_relative_paths[] = $_plugin_dir; + // relative path, see if it is in the SMARTY_DIR + if (@is_readable(SMARTY_DIR . $_plugin_filepath)) { + $_return = SMARTY_DIR . $_plugin_filepath; + break; + } + } + // try relative to cwd (or absolute) + if (@is_readable($_plugin_filepath)) { + $_return = $_plugin_filepath; + break; + } + } + + if($_return === false) { + // still not found, try PHP include_path + if(isset($_relative_paths)) { + foreach ((array)$_relative_paths as $_plugin_dir) { + + $_plugin_filepath = $_plugin_dir . DIRECTORY_SEPARATOR . $_plugin_filename; + + $_params = array('file_path' => $_plugin_filepath); + require_once(SMARTY_CORE_DIR . 'core.get_include_path.php'); + if(smarty_core_get_include_path($_params, $smarty)) { + $_return = $_params['new_file_path']; + break; + } + } + } + } + $_filepaths_cache[$_plugin_filename] = $_return; + return $_return; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.assign_smarty_interface.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.assign_smarty_interface.php new file mode 100644 index 0000000..7e65a73 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.assign_smarty_interface.php @@ -0,0 +1,43 @@ + + * Name: assign_smarty_interface
+ * Purpose: assign the $smarty interface variable + * @param array Format: null + * @param Smarty + */ +function smarty_core_assign_smarty_interface($params, &$smarty) +{ + if (isset($smarty->_smarty_vars) && isset($smarty->_smarty_vars['request'])) { + return; + } + + $_globals_map = array('g' => 'HTTP_GET_VARS', + 'p' => 'HTTP_POST_VARS', + 'c' => 'HTTP_COOKIE_VARS', + 's' => 'HTTP_SERVER_VARS', + 'e' => 'HTTP_ENV_VARS'); + + $_smarty_vars_request = array(); + + foreach (preg_split('!!', strtolower($smarty->request_vars_order)) as $_c) { + if (isset($_globals_map[$_c])) { + $_smarty_vars_request = array_merge($_smarty_vars_request, $GLOBALS[$_globals_map[$_c]]); + } + } + $_smarty_vars_request = @array_merge($_smarty_vars_request, $GLOBALS['HTTP_SESSION_VARS']); + + $smarty->_smarty_vars['request'] = $_smarty_vars_request; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.create_dir_structure.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.create_dir_structure.php new file mode 100644 index 0000000..3eecc49 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.create_dir_structure.php @@ -0,0 +1,79 @@ +_dir_perms) && !is_dir($_new_dir)) { + $smarty->trigger_error("problem creating directory '" . $_new_dir . "'"); + return false; + } + $_new_dir .= '/'; + } + } +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.display_debug_console.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.display_debug_console.php new file mode 100644 index 0000000..1a80f39 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.display_debug_console.php @@ -0,0 +1,61 @@ + + * Name: display_debug_console
+ * Purpose: display the javascript debug console window + * @param array Format: null + * @param Smarty + */ +function smarty_core_display_debug_console($params, &$smarty) +{ + // we must force compile the debug template in case the environment + // changed between separate applications. + + if(empty($smarty->debug_tpl)) { + // set path to debug template from SMARTY_DIR + $smarty->debug_tpl = SMARTY_DIR . 'debug.tpl'; + if($smarty->security && is_file($smarty->debug_tpl)) { + $smarty->secure_dir[] = realpath($smarty->debug_tpl); + } + $smarty->debug_tpl = 'file:' . SMARTY_DIR . 'debug.tpl'; + } + + $_ldelim_orig = $smarty->left_delimiter; + $_rdelim_orig = $smarty->right_delimiter; + + $smarty->left_delimiter = '{'; + $smarty->right_delimiter = '}'; + + $_compile_id_orig = $smarty->_compile_id; + $smarty->_compile_id = null; + + $_compile_path = $smarty->_get_compile_path($smarty->debug_tpl); + if ($smarty->_compile_resource($smarty->debug_tpl, $_compile_path)) + { + ob_start(); + $smarty->_include($_compile_path); + $_results = ob_get_contents(); + ob_end_clean(); + } else { + $_results = ''; + } + + $smarty->_compile_id = $_compile_id_orig; + + $smarty->left_delimiter = $_ldelim_orig; + $smarty->right_delimiter = $_rdelim_orig; + + return $_results; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_include_path.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_include_path.php new file mode 100644 index 0000000..4343241 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_include_path.php @@ -0,0 +1,44 @@ + diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_microtime.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_microtime.php new file mode 100644 index 0000000..f1a28e0 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_microtime.php @@ -0,0 +1,23 @@ + diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_php_resource.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_php_resource.php new file mode 100644 index 0000000..786d4e7 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.get_php_resource.php @@ -0,0 +1,80 @@ +trusted_dir; + $smarty->_parse_resource_name($params, $smarty); + + /* + * Find out if the resource exists. + */ + + if ($params['resource_type'] == 'file') { + $_readable = false; + if(file_exists($params['resource_name']) && is_readable($params['resource_name'])) { + $_readable = true; + } else { + // test for file in include_path + $_params = array('file_path' => $params['resource_name']); + require_once(SMARTY_CORE_DIR . 'core.get_include_path.php'); + if(smarty_core_get_include_path($_params, $smarty)) { + $_include_path = $_params['new_file_path']; + $_readable = true; + } + } + } else if ($params['resource_type'] != 'file') { + $_template_source = null; + $_readable = is_callable($smarty->_plugins['resource'][$params['resource_type']][0][0]) + && call_user_func_array($smarty->_plugins['resource'][$params['resource_type']][0][0], + array($params['resource_name'], &$_template_source, &$smarty)); + } + + /* + * Set the error function, depending on which class calls us. + */ + if (method_exists($smarty, '_syntax_error')) { + $_error_funcc = '_syntax_error'; + } else { + $_error_funcc = 'trigger_error'; + } + + if ($_readable) { + if ($smarty->security) { + require_once(SMARTY_CORE_DIR . 'core.is_trusted.php'); + if (!smarty_core_is_trusted($params, $smarty)) { + $smarty->$_error_funcc('(secure mode) ' . $params['resource_type'] . ':' . $params['resource_name'] . ' is not trusted'); + return false; + } + } + } else { + $smarty->$_error_funcc($params['resource_type'] . ':' . $params['resource_name'] . ' is not readable'); + return false; + } + + if ($params['resource_type'] == 'file') { + $params['php_resource'] = $params['resource_name']; + } else { + $params['php_resource'] = $_template_source; + } + return true; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.is_secure.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.is_secure.php new file mode 100644 index 0000000..d54abd4 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.is_secure.php @@ -0,0 +1,59 @@ +security || $smarty->security_settings['INCLUDE_ANY']) { + return true; + } + + if ($params['resource_type'] == 'file') { + $_rp = realpath($params['resource_name']); + if (isset($params['resource_base_path'])) { + foreach ((array)$params['resource_base_path'] as $curr_dir) { + if ( ($_cd = realpath($curr_dir)) !== false && + strncmp($_rp, $_cd, strlen($_cd)) == 0 && + substr($_rp, strlen($_cd), 1) == DIRECTORY_SEPARATOR ) { + return true; + } + } + } + if (!empty($smarty->secure_dir)) { + foreach ((array)$smarty->secure_dir as $curr_dir) { + if ( ($_cd = realpath($curr_dir)) !== false) { + if($_cd == $_rp) { + return true; + } elseif (strncmp($_rp, $_cd, strlen($_cd)) == 0 && + substr($_rp, strlen($_cd), 1) == DIRECTORY_SEPARATOR) { + return true; + } + } + } + } + } else { + // resource is not on local file system + return call_user_func_array( + $smarty->_plugins['resource'][$params['resource_type']][0][2], + array($params['resource_name'], &$smarty)); + } + + return false; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.is_trusted.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.is_trusted.php new file mode 100644 index 0000000..4299731 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.is_trusted.php @@ -0,0 +1,47 @@ +trusted_dir)) { + $_rp = realpath($params['resource_name']); + foreach ((array)$smarty->trusted_dir as $curr_dir) { + if (!empty($curr_dir) && is_readable ($curr_dir)) { + $_cd = realpath($curr_dir); + if (strncmp($_rp, $_cd, strlen($_cd)) == 0 + && substr($_rp, strlen($_cd), 1) == DIRECTORY_SEPARATOR ) { + $_smarty_trusted = true; + break; + } + } + } + } + + } else { + // resource is not on local file system + $_smarty_trusted = call_user_func_array($smarty->_plugins['resource'][$params['resource_type']][0][3], + array($params['resource_name'], $smarty)); + } + + return $_smarty_trusted; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.load_plugins.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.load_plugins.php new file mode 100644 index 0000000..6db1dc5 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.load_plugins.php @@ -0,0 +1,125 @@ +_plugins[$_type][$_name]; + + /* + * We do not load plugin more than once for each instance of Smarty. + * The following code checks for that. The plugin can also be + * registered dynamically at runtime, in which case template file + * and line number will be unknown, so we fill them in. + * + * The final element of the info array is a flag that indicates + * whether the dynamically registered plugin function has been + * checked for existence yet or not. + */ + if (isset($_plugin)) { + if (empty($_plugin[3])) { + if (!is_callable($_plugin[0])) { + $smarty->_trigger_fatal_error("[plugin] $_type '$_name' is not implemented", $_tpl_file, $_tpl_line, __FILE__, __LINE__); + } else { + $_plugin[1] = $_tpl_file; + $_plugin[2] = $_tpl_line; + $_plugin[3] = true; + if (!isset($_plugin[4])) $_plugin[4] = true; /* cacheable */ + } + } + continue; + } else if ($_type == 'insert') { + /* + * For backwards compatibility, we check for insert functions in + * the symbol table before trying to load them as a plugin. + */ + $_plugin_func = 'insert_' . $_name; + if (function_exists($_plugin_func)) { + $_plugin = array($_plugin_func, $_tpl_file, $_tpl_line, true, false); + continue; + } + } + + $_plugin_file = $smarty->_get_plugin_filepath($_type, $_name); + + if (! $_found = ($_plugin_file != false)) { + $_message = "could not load plugin file '$_type.$_name.php'\n"; + } + + /* + * If plugin file is found, it -must- provide the properly named + * plugin function. In case it doesn't, simply output the error and + * do not fall back on any other method. + */ + if ($_found) { + include_once $_plugin_file; + + $_plugin_func = 'smarty_' . $_type . '_' . $_name; + if (!function_exists($_plugin_func)) { + $smarty->_trigger_fatal_error("[plugin] function $_plugin_func() not found in $_plugin_file", $_tpl_file, $_tpl_line, __FILE__, __LINE__); + continue; + } + } + /* + * In case of insert plugins, their code may be loaded later via + * 'script' attribute. + */ + else if ($_type == 'insert' && $_delayed_loading) { + $_plugin_func = 'smarty_' . $_type . '_' . $_name; + $_found = true; + } + + /* + * Plugin specific processing and error checking. + */ + if (!$_found) { + if ($_type == 'modifier') { + /* + * In case modifier falls back on using PHP functions + * directly, we only allow those specified in the security + * context. + */ + if ($smarty->security && !in_array($_name, $smarty->security_settings['MODIFIER_FUNCS'])) { + $_message = "(secure mode) modifier '$_name' is not allowed"; + } else { + if (!function_exists($_name)) { + $_message = "modifier '$_name' is not implemented"; + } else { + $_plugin_func = $_name; + $_found = true; + } + } + } else if ($_type == 'function') { + /* + * This is a catch-all situation. + */ + $_message = "unknown tag - '$_name'"; + } + } + + if ($_found) { + $smarty->_plugins[$_type][$_name] = array($_plugin_func, $_tpl_file, $_tpl_line, true, true); + } else { + // output error + $smarty->_trigger_fatal_error('[plugin] ' . $_message, $_tpl_file, $_tpl_line, __FILE__, __LINE__); + } + } +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.load_resource_plugin.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.load_resource_plugin.php new file mode 100644 index 0000000..a7d37d1 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.load_resource_plugin.php @@ -0,0 +1,74 @@ +_plugins['resource'][$params['type']]; + if (isset($_plugin)) { + if (!$_plugin[1] && count($_plugin[0])) { + $_plugin[1] = true; + foreach ($_plugin[0] as $_plugin_func) { + if (!is_callable($_plugin_func)) { + $_plugin[1] = false; + break; + } + } + } + + if (!$_plugin[1]) { + $smarty->_trigger_fatal_error("[plugin] resource '" . $params['type'] . "' is not implemented", null, null, __FILE__, __LINE__); + } + + return; + } + + $_plugin_file = $smarty->_get_plugin_filepath('resource', $params['type']); + $_found = ($_plugin_file != false); + + if ($_found) { /* + * If the plugin file is found, it -must- provide the properly named + * plugin functions. + */ + include_once($_plugin_file); + + /* + * Locate functions that we require the plugin to provide. + */ + $_resource_ops = array('source', 'timestamp', 'secure', 'trusted'); + $_resource_funcs = array(); + foreach ($_resource_ops as $_op) { + $_plugin_func = 'smarty_resource_' . $params['type'] . '_' . $_op; + if (!function_exists($_plugin_func)) { + $smarty->_trigger_fatal_error("[plugin] function $_plugin_func() not found in $_plugin_file", null, null, __FILE__, __LINE__); + return; + } else { + $_resource_funcs[] = $_plugin_func; + } + } + + $smarty->_plugins['resource'][$params['type']] = array($_resource_funcs, true); + } +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.process_cached_inserts.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.process_cached_inserts.php new file mode 100644 index 0000000..1d78edd --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.process_cached_inserts.php @@ -0,0 +1,71 @@ +_smarty_md5.'{insert_cache (.*)}'.$smarty->_smarty_md5.'!Uis', + $params['results'], $match); + list($cached_inserts, $insert_args) = $match; + + for ($i = 0, $for_max = count($cached_inserts); $i < $for_max; $i++) { + if ($smarty->debugging) { + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $debug_start_time = smarty_core_get_microtime($_params, $smarty); + } + + $args = unserialize($insert_args[$i]); + $name = $args['name']; + + if (isset($args['script'])) { + $_params = array('resource_name' => $smarty->_dequote($args['script'])); + require_once(SMARTY_CORE_DIR . 'core.get_php_resource.php'); + if(!smarty_core_get_php_resource($_params, $smarty)) { + return false; + } + $resource_type = $_params['resource_type']; + $php_resource = $_params['php_resource']; + + + if ($resource_type == 'file') { + $smarty->_include($php_resource, true); + } else { + $smarty->_eval($php_resource); + } + } + + $function_name = $smarty->_plugins['insert'][$name][0]; + if (empty($args['assign'])) { + $replace = $function_name($args, $smarty); + } else { + $smarty->assign($args['assign'], $function_name($args, $smarty)); + $replace = ''; + } + + $params['results'] = substr_replace($params['results'], $replace, strpos($params['results'], $cached_inserts[$i]), strlen($cached_inserts[$i])); + if ($smarty->debugging) { + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $smarty->_smarty_debug_info[] = array('type' => 'insert', + 'filename' => 'insert_'.$name, + 'depth' => $smarty->_inclusion_depth, + 'exec_time' => smarty_core_get_microtime($_params, $smarty) - $debug_start_time); + } + } + + return $params['results']; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.process_compiled_include.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.process_compiled_include.php new file mode 100644 index 0000000..d539423 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.process_compiled_include.php @@ -0,0 +1,37 @@ +_cache_including; + $smarty->_cache_including = true; + + $_return = $params['results']; + + foreach ($smarty->_cache_info['cache_serials'] as $_include_file_path=>$_cache_serial) { + $smarty->_include($_include_file_path, true); + } + + foreach ($smarty->_cache_serials as $_include_file_path=>$_cache_serial) { + $_return = preg_replace_callback('!(\{nocache\:('.$_cache_serial.')#(\d+)\})!s', + array(&$smarty, '_process_compiled_include_callback'), + $_return); + } + $smarty->_cache_including = $_cache_including; + return $_return; +} + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.read_cache_file.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.read_cache_file.php new file mode 100644 index 0000000..c60e113 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.read_cache_file.php @@ -0,0 +1,101 @@ +force_compile) { + // force compile enabled, always regenerate + return false; + } + + if (isset($content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']])) { + list($params['results'], $smarty->_cache_info) = $content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']]; + return true; + } + + if (!empty($smarty->cache_handler_func)) { + // use cache_handler function + call_user_func_array($smarty->cache_handler_func, + array('read', &$smarty, &$params['results'], $params['tpl_file'], $params['cache_id'], $params['compile_id'], null)); + } else { + // use local cache file + $_auto_id = $smarty->_get_auto_id($params['cache_id'], $params['compile_id']); + $_cache_file = $smarty->_get_auto_filename($smarty->cache_dir, $params['tpl_file'], $_auto_id); + $params['results'] = $smarty->_read_file($_cache_file); + } + + if (empty($params['results'])) { + // nothing to parse (error?), regenerate cache + return false; + } + + $_contents = $params['results']; + $_info_start = strpos($_contents, "\n") + 1; + $_info_len = (int)substr($_contents, 0, $_info_start - 1); + $_cache_info = unserialize(substr($_contents, $_info_start, $_info_len)); + $params['results'] = substr($_contents, $_info_start + $_info_len); + + if ($smarty->caching == 2 && isset ($_cache_info['expires'])){ + // caching by expiration time + if ($_cache_info['expires'] > -1 && (time() > $_cache_info['expires'])) { + // cache expired, regenerate + return false; + } + } else { + // caching by lifetime + if ($smarty->cache_lifetime > -1 && (time() - $_cache_info['timestamp'] > $smarty->cache_lifetime)) { + // cache expired, regenerate + return false; + } + } + + if ($smarty->compile_check) { + $_params = array('get_source' => false, 'quiet'=>true); + foreach (array_keys($_cache_info['template']) as $_template_dep) { + $_params['resource_name'] = $_template_dep; + if (!$smarty->_fetch_resource_info($_params) || $_cache_info['timestamp'] < $_params['resource_timestamp']) { + // template file has changed, regenerate cache + return false; + } + } + + if (isset($_cache_info['config'])) { + $_params = array('resource_base_path' => $smarty->config_dir, 'get_source' => false, 'quiet'=>true); + foreach (array_keys($_cache_info['config']) as $_config_dep) { + $_params['resource_name'] = $_config_dep; + if (!$smarty->_fetch_resource_info($_params) || $_cache_info['timestamp'] < $_params['resource_timestamp']) { + // config file has changed, regenerate cache + return false; + } + } + } + } + + $content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']] = array($params['results'], $_cache_info); + + $smarty->_cache_info = $_cache_info; + return true; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.rm_auto.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.rm_auto.php new file mode 100644 index 0000000..b251f64 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.rm_auto.php @@ -0,0 +1,71 @@ + $params['auto_base'], + 'level' => 0, + 'exp_time' => $params['exp_time'] + ); + require_once(SMARTY_CORE_DIR . 'core.rmdir.php'); + $_res = smarty_core_rmdir($_params, $smarty); + } else { + $_tname = $smarty->_get_auto_filename($params['auto_base'], $params['auto_source'], $params['auto_id']); + + if(isset($params['auto_source'])) { + if (isset($params['extensions'])) { + $_res = false; + foreach ((array)$params['extensions'] as $_extension) + $_res |= $smarty->_unlink($_tname.$_extension, $params['exp_time']); + } else { + $_res = $smarty->_unlink($_tname, $params['exp_time']); + } + } elseif ($smarty->use_sub_dirs) { + $_params = array( + 'dirname' => $_tname, + 'level' => 1, + 'exp_time' => $params['exp_time'] + ); + require_once(SMARTY_CORE_DIR . 'core.rmdir.php'); + $_res = smarty_core_rmdir($_params, $smarty); + } else { + // remove matching file names + $_handle = opendir($params['auto_base']); + $_res = true; + while (false !== ($_filename = readdir($_handle))) { + if($_filename == '.' || $_filename == '..') { + continue; + } elseif (substr($params['auto_base'] . DIRECTORY_SEPARATOR . $_filename, 0, strlen($_tname)) == $_tname) { + $_res &= (bool)$smarty->_unlink($params['auto_base'] . DIRECTORY_SEPARATOR . $_filename, $params['exp_time']); + } + } + } + } + + return $_res; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.rmdir.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.rmdir.php new file mode 100644 index 0000000..2166c44 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.rmdir.php @@ -0,0 +1,54 @@ + keep root) + * WARNING: no tests, it will try to remove what you tell it! + * + * @param string $dirname + * @param integer $level + * @param integer $exp_time + * @return boolean + */ + +// $dirname, $level = 1, $exp_time = null + +function smarty_core_rmdir($params, &$smarty) +{ + if(!isset($params['level'])) { $params['level'] = 1; } + if(!isset($params['exp_time'])) { $params['exp_time'] = null; } + + if($_handle = @opendir($params['dirname'])) { + + while (false !== ($_entry = readdir($_handle))) { + if ($_entry != '.' && $_entry != '..') { + if (@is_dir($params['dirname'] . DIRECTORY_SEPARATOR . $_entry)) { + $_params = array( + 'dirname' => $params['dirname'] . DIRECTORY_SEPARATOR . $_entry, + 'level' => $params['level'] + 1, + 'exp_time' => $params['exp_time'] + ); + smarty_core_rmdir($_params, $smarty); + } + else { + $smarty->_unlink($params['dirname'] . DIRECTORY_SEPARATOR . $_entry, $params['exp_time']); + } + } + } + closedir($_handle); + } + + if ($params['level']) { + return @rmdir($params['dirname']); + } + return (bool)$_handle; + +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.run_insert_handler.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.run_insert_handler.php new file mode 100644 index 0000000..71c3845 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.run_insert_handler.php @@ -0,0 +1,71 @@ +debugging) { + $_params = array(); + $_debug_start_time = smarty_core_get_microtime($_params, $smarty); + } + + if ($smarty->caching) { + $_arg_string = serialize($params['args']); + $_name = $params['args']['name']; + if (!isset($smarty->_cache_info['insert_tags'][$_name])) { + $smarty->_cache_info['insert_tags'][$_name] = array('insert', + $_name, + $smarty->_plugins['insert'][$_name][1], + $smarty->_plugins['insert'][$_name][2], + !empty($params['args']['script']) ? true : false); + } + return $smarty->_smarty_md5."{insert_cache $_arg_string}".$smarty->_smarty_md5; + } else { + if (isset($params['args']['script'])) { + $_params = array('resource_name' => $smarty->_dequote($params['args']['script'])); + require_once(SMARTY_CORE_DIR . 'core.get_php_resource.php'); + if(!smarty_core_get_php_resource($_params, $smarty)) { + return false; + } + + if ($_params['resource_type'] == 'file') { + $smarty->_include($_params['php_resource'], true); + } else { + $smarty->_eval($_params['php_resource']); + } + unset($params['args']['script']); + } + + $_funcname = $smarty->_plugins['insert'][$params['args']['name']][0]; + $_content = $_funcname($params['args'], $smarty); + if ($smarty->debugging) { + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $smarty->_smarty_debug_info[] = array('type' => 'insert', + 'filename' => 'insert_'.$params['args']['name'], + 'depth' => $smarty->_inclusion_depth, + 'exec_time' => smarty_core_get_microtime($_params, $smarty) - $_debug_start_time); + } + + if (!empty($params['args']["assign"])) { + $smarty->assign($params['args']["assign"], $_content); + } else { + return $_content; + } + } +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.smarty_include_php.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.smarty_include_php.php new file mode 100644 index 0000000..30c6e76 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.smarty_include_php.php @@ -0,0 +1,50 @@ + $params['smarty_file']); + require_once(SMARTY_CORE_DIR . 'core.get_php_resource.php'); + smarty_core_get_php_resource($_params, $smarty); + $_smarty_resource_type = $_params['resource_type']; + $_smarty_php_resource = $_params['php_resource']; + + if (!empty($params['smarty_assign'])) { + ob_start(); + if ($_smarty_resource_type == 'file') { + $smarty->_include($_smarty_php_resource, $params['smarty_once'], $params['smarty_include_vars']); + } else { + $smarty->_eval($_smarty_php_resource, $params['smarty_include_vars']); + } + $smarty->assign($params['smarty_assign'], ob_get_contents()); + ob_end_clean(); + } else { + if ($_smarty_resource_type == 'file') { + $smarty->_include($_smarty_php_resource, $params['smarty_once'], $params['smarty_include_vars']); + } else { + $smarty->_eval($_smarty_php_resource, $params['smarty_include_vars']); + } + } +} + + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_cache_file.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_cache_file.php new file mode 100644 index 0000000..72f785b --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_cache_file.php @@ -0,0 +1,96 @@ +_cache_info['timestamp'] = time(); + if ($smarty->cache_lifetime > -1){ + // expiration set + $smarty->_cache_info['expires'] = $smarty->_cache_info['timestamp'] + $smarty->cache_lifetime; + } else { + // cache will never expire + $smarty->_cache_info['expires'] = -1; + } + + // collapse nocache.../nocache-tags + if (preg_match_all('!\{(/?)nocache\:[0-9a-f]{32}#\d+\}!', $params['results'], $match, PREG_PATTERN_ORDER)) { + // remove everything between every pair of outermost noache.../nocache-tags + // and replace it by a single nocache-tag + // this new nocache-tag will be replaced by dynamic contents in + // smarty_core_process_compiled_includes() on a cache-read + + $match_count = count($match[0]); + $results = preg_split('!(\{/?nocache\:[0-9a-f]{32}#\d+\})!', $params['results'], -1, PREG_SPLIT_DELIM_CAPTURE); + + $level = 0; + $j = 0; + for ($i=0, $results_count = count($results); $i < $results_count && $j < $match_count; $i++) { + if ($results[$i] == $match[0][$j]) { + // nocache tag + if ($match[1][$j]) { // closing tag + $level--; + unset($results[$i]); + } else { // opening tag + if ($level++ > 0) unset($results[$i]); + } + $j++; + } elseif ($level > 0) { + unset($results[$i]); + } + } + $params['results'] = implode('', $results); + } + $smarty->_cache_info['cache_serials'] = $smarty->_cache_serials; + + // prepend the cache header info into cache file + $_cache_info = serialize($smarty->_cache_info); + $params['results'] = strlen($_cache_info) . "\n" . $_cache_info . $params['results']; + + if (!empty($smarty->cache_handler_func)) { + // use cache_handler function + call_user_func_array($smarty->cache_handler_func, + array('write', &$smarty, &$params['results'], $params['tpl_file'], $params['cache_id'], $params['compile_id'], null)); + } else { + // use local cache file + + if(!@is_writable($smarty->cache_dir)) { + // cache_dir not writable, see if it exists + if(!@is_dir($smarty->cache_dir)) { + $smarty->trigger_error('the $cache_dir \'' . $smarty->cache_dir . '\' does not exist, or is not a directory.', E_USER_ERROR); + return false; + } + $smarty->trigger_error('unable to write to $cache_dir \'' . realpath($smarty->cache_dir) . '\'. Be sure $cache_dir is writable by the web server user.', E_USER_ERROR); + return false; + } + + $_auto_id = $smarty->_get_auto_id($params['cache_id'], $params['compile_id']); + $_cache_file = $smarty->_get_auto_filename($smarty->cache_dir, $params['tpl_file'], $_auto_id); + $_params = array('filename' => $_cache_file, 'contents' => $params['results'], 'create_dirs' => true); + require_once(SMARTY_CORE_DIR . 'core.write_file.php'); + smarty_core_write_file($_params, $smarty); + return true; + } +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_compiled_include.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_compiled_include.php new file mode 100644 index 0000000..c14adb5 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_compiled_include.php @@ -0,0 +1,91 @@ +caching && \!\$this->_cache_including\)\: echo \'\{nocache\:('.$params['cache_serial'].')#(\d+)\}\'; endif;'; + $_tag_end = 'if \(\$this->caching && \!\$this->_cache_including\)\: echo \'\{/nocache\:(\\2)#(\\3)\}\'; endif;'; + + preg_match_all('!('.$_tag_start.'(.*)'.$_tag_end.')!Us', + $params['compiled_content'], $_match_source, PREG_SET_ORDER); + + // no nocache-parts found: done + if (count($_match_source)==0) return; + + // convert the matched php-code to functions + $_include_compiled = "_version.", created on ".strftime("%Y-%m-%d %H:%M:%S")."\n"; + $_include_compiled .= " compiled from " . strtr(urlencode($params['resource_name']), array('%2F'=>'/', '%3A'=>':')) . " */\n\n"; + + $_compile_path = $params['include_file_path']; + + $smarty->_cache_serials[$_compile_path] = $params['cache_serial']; + $_include_compiled .= "\$this->_cache_serials['".$_compile_path."'] = '".$params['cache_serial']."';\n\n?>"; + + $_include_compiled .= $params['plugins_code']; + $_include_compiled .= "= 5.0) ? '_smarty' : 'this'; + for ($_i = 0, $_for_max = count($_match_source); $_i < $_for_max; $_i++) { + $_match =& $_match_source[$_i]; + $source = $_match[4]; + if ($this_varname == '_smarty') { + /* rename $this to $_smarty in the sourcecode */ + $tokens = token_get_all('\n"; + + $_params = array('filename' => $_compile_path, + 'contents' => $_include_compiled, 'create_dirs' => true); + + require_once(SMARTY_CORE_DIR . 'core.write_file.php'); + smarty_core_write_file($_params, $smarty); + return true; +} + + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_compiled_resource.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_compiled_resource.php new file mode 100644 index 0000000..b902eff --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_compiled_resource.php @@ -0,0 +1,35 @@ +compile_dir)) { + // compile_dir not writable, see if it exists + if(!@is_dir($smarty->compile_dir)) { + $smarty->trigger_error('the $compile_dir \'' . $smarty->compile_dir . '\' does not exist, or is not a directory.', E_USER_ERROR); + return false; + } + $smarty->trigger_error('unable to write to $compile_dir \'' . realpath($smarty->compile_dir) . '\'. Be sure $compile_dir is writable by the web server user.', E_USER_ERROR); + return false; + } + + $_params = array('filename' => $params['compile_path'], 'contents' => $params['compiled_content'], 'create_dirs' => true); + require_once(SMARTY_CORE_DIR . 'core.write_file.php'); + smarty_core_write_file($_params, $smarty); + return true; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_file.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_file.php new file mode 100644 index 0000000..8a3a3b3 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/internals/core.write_file.php @@ -0,0 +1,54 @@ + $_dirname); + require_once(SMARTY_CORE_DIR . 'core.create_dir_structure.php'); + smarty_core_create_dir_structure($_params, $smarty); + } + + // write to tmp file, then rename it to avoid file locking race condition + $_tmp_file = tempnam($_dirname, 'wrt'); + + if (!($fd = @fopen($_tmp_file, 'wb'))) { + $_tmp_file = $_dirname . DIRECTORY_SEPARATOR . uniqid('wrt'); + if (!($fd = @fopen($_tmp_file, 'wb'))) { + $smarty->trigger_error("problem writing temporary file '$_tmp_file'"); + return false; + } + } + + fwrite($fd, $params['contents']); + fclose($fd); + + if (DIRECTORY_SEPARATOR == '\\' || !@rename($_tmp_file, $params['filename'])) { + // On platforms and filesystems that cannot overwrite with rename() + // delete the file before renaming it -- because windows always suffers + // this, it is short-circuited to avoid the initial rename() attempt + @unlink($params['filename']); + @rename($_tmp_file, $params['filename']); + } + @chmod($params['filename'], $smarty->_file_perms); + + return true; +} + +/* vim: set expandtab: */ + +?> \ No newline at end of file diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/block.textformat.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/block.textformat.php new file mode 100644 index 0000000..8cd010a --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/block.textformat.php @@ -0,0 +1,103 @@ + + * Name: textformat
+ * Purpose: format text a certain way with preset styles + * or custom wrap/indent settings
+ * @link http://smarty.php.net/manual/en/language.function.textformat.php {textformat} + * (Smarty online manual) + * @param array + *
+ * Params:   style: string (email)
+ *           indent: integer (0)
+ *           wrap: integer (80)
+ *           wrap_char string ("\n")
+ *           indent_char: string (" ")
+ *           wrap_boundary: boolean (true)
+ * 
+ * @author Monte Ohrt + * @param string contents of the block + * @param Smarty clever simulation of a method + * @return string string $content re-formatted + */ +function smarty_block_textformat($params, $content, &$smarty) +{ + if (is_null($content)) { + return; + } + + $style = null; + $indent = 0; + $indent_first = 0; + $indent_char = ' '; + $wrap = 80; + $wrap_char = "\n"; + $wrap_cut = false; + $assign = null; + + foreach ($params as $_key => $_val) { + switch ($_key) { + case 'style': + case 'indent_char': + case 'wrap_char': + case 'assign': + $$_key = (string)$_val; + break; + + case 'indent': + case 'indent_first': + case 'wrap': + $$_key = (int)$_val; + break; + + case 'wrap_cut': + $$_key = (bool)$_val; + break; + + default: + $smarty->trigger_error("textformat: unknown attribute '$_key'"); + } + } + + if ($style == 'email') { + $wrap = 72; + } + + // split into paragraphs + $_paragraphs = preg_split('![\r\n][\r\n]!',$content); + $_output = ''; + + for($_x = 0, $_y = count($_paragraphs); $_x < $_y; $_x++) { + if ($_paragraphs[$_x] == '') { + continue; + } + // convert mult. spaces & special chars to single space + $_paragraphs[$_x] = preg_replace(array('!\s+!','!(^\s+)|(\s+$)!'), array(' ',''), $_paragraphs[$_x]); + // indent first line + if($indent_first > 0) { + $_paragraphs[$_x] = str_repeat($indent_char, $indent_first) . $_paragraphs[$_x]; + } + // wordwrap sentences + $_paragraphs[$_x] = wordwrap($_paragraphs[$_x], $wrap - $indent, $wrap_char, $wrap_cut); + // indent lines + if($indent > 0) { + $_paragraphs[$_x] = preg_replace('!^!m', str_repeat($indent_char, $indent), $_paragraphs[$_x]); + } + } + $_output = implode($wrap_char . $wrap_char, $_paragraphs); + + return $assign ? $smarty->assign($assign, $_output) : $_output; + +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/compiler.assign.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/compiler.assign.php new file mode 100644 index 0000000..abef377 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/compiler.assign.php @@ -0,0 +1,40 @@ + + * Name: assign
+ * Purpose: assign a value to a template variable + * @link http://smarty.php.net/manual/en/language.custom.functions.php#LANGUAGE.FUNCTION.ASSIGN {assign} + * (Smarty online manual) + * @author Monte Ohrt (initial author) + * @author messju mohr (conversion to compiler function) + * @param string containing var-attribute and value-attribute + * @param Smarty_Compiler + */ +function smarty_compiler_assign($tag_attrs, &$compiler) +{ + $_params = $compiler->_parse_attrs($tag_attrs); + + if (!isset($_params['var'])) { + $compiler->_syntax_error("assign: missing 'var' parameter", E_USER_WARNING); + return; + } + + if (!isset($_params['value'])) { + $compiler->_syntax_error("assign: missing 'value' parameter", E_USER_WARNING); + return; + } + + return "\$this->assign({$_params['var']}, {$_params['value']});"; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.assign_debug_info.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.assign_debug_info.php new file mode 100644 index 0000000..6540498 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.assign_debug_info.php @@ -0,0 +1,40 @@ + + * Name: assign_debug_info
+ * Purpose: assign debug info to the template
+ * @author Monte Ohrt + * @param array unused in this plugin, this plugin uses {@link Smarty::$_config}, + * {@link Smarty::$_tpl_vars} and {@link Smarty::$_smarty_debug_info} + * @param Smarty + */ +function smarty_function_assign_debug_info($params, &$smarty) +{ + $assigned_vars = $smarty->_tpl_vars; + ksort($assigned_vars); + if (@is_array($smarty->_config[0])) { + $config_vars = $smarty->_config[0]; + ksort($config_vars); + $smarty->assign("_debug_config_keys", array_keys($config_vars)); + $smarty->assign("_debug_config_vals", array_values($config_vars)); + } + + $included_templates = $smarty->_smarty_debug_info; + + $smarty->assign("_debug_keys", array_keys($assigned_vars)); + $smarty->assign("_debug_vals", array_values($assigned_vars)); + + $smarty->assign("_debug_tpls", $included_templates); +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.config_load.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.config_load.php new file mode 100644 index 0000000..db89f63 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.config_load.php @@ -0,0 +1,142 @@ + + * Name: config_load
+ * Purpose: load config file vars + * @link http://smarty.php.net/manual/en/language.function.config.load.php {config_load} + * (Smarty online manual) + * @author Monte Ohrt + * @author messju mohr (added use of resources) + * @param array Format: + *
+ * array('file' => required config file name,
+ *       'section' => optional config file section to load
+ *       'scope' => local/parent/global
+ *       'global' => overrides scope, setting to parent if true)
+ * 
+ * @param Smarty + */ +function smarty_function_config_load($params, &$smarty) +{ + if ($smarty->debugging) { + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $_debug_start_time = smarty_core_get_microtime($_params, $smarty); + } + + $_file = isset($params['file']) ? $smarty->_dequote($params['file']) : null; + $_section = isset($params['section']) ? $smarty->_dequote($params['section']) : null; + $_scope = isset($params['scope']) ? $smarty->_dequote($params['scope']) : 'global'; + $_global = isset($params['global']) ? $smarty->_dequote($params['global']) : false; + + if (!isset($_file) || strlen($_file) == 0) { + $smarty->trigger_error("missing 'file' attribute in config_load tag", E_USER_ERROR, __FILE__, __LINE__); + } + + if (isset($_scope)) { + if ($_scope != 'local' && + $_scope != 'parent' && + $_scope != 'global') { + $smarty->trigger_error("invalid 'scope' attribute value", E_USER_ERROR, __FILE__, __LINE__); + } + } else { + if ($_global) { + $_scope = 'parent'; + } else { + $_scope = 'local'; + } + } + + $_params = array('resource_name' => $_file, + 'resource_base_path' => $smarty->config_dir, + 'get_source' => false); + $smarty->_parse_resource_name($_params); + $_file_path = $_params['resource_type'] . ':' . $_params['resource_name']; + if (isset($_section)) + $_compile_file = $smarty->_get_compile_path($_file_path.'|'.$_section); + else + $_compile_file = $smarty->_get_compile_path($_file_path); + + if($smarty->force_compile || !file_exists($_compile_file)) { + $_compile = true; + } elseif ($smarty->compile_check) { + $_params = array('resource_name' => $_file, + 'resource_base_path' => $smarty->config_dir, + 'get_source' => false); + $_compile = $smarty->_fetch_resource_info($_params) && + $_params['resource_timestamp'] > filemtime($_compile_file); + } else { + $_compile = false; + } + + if($_compile) { + // compile config file + if(!is_object($smarty->_conf_obj)) { + require_once SMARTY_DIR . $smarty->config_class . '.class.php'; + $smarty->_conf_obj = new $smarty->config_class(); + $smarty->_conf_obj->overwrite = $smarty->config_overwrite; + $smarty->_conf_obj->booleanize = $smarty->config_booleanize; + $smarty->_conf_obj->read_hidden = $smarty->config_read_hidden; + $smarty->_conf_obj->fix_newlines = $smarty->config_fix_newlines; + } + + $_params = array('resource_name' => $_file, + 'resource_base_path' => $smarty->config_dir, + $_params['get_source'] = true); + if (!$smarty->_fetch_resource_info($_params)) { + return; + } + $smarty->_conf_obj->set_file_contents($_file, $_params['source_content']); + $_config_vars = array_merge($smarty->_conf_obj->get($_file), + $smarty->_conf_obj->get($_file, $_section)); + if(function_exists('var_export')) { + $_output = ''; + } else { + $_output = ''\\\'', '\\'=>'\\\\')) . '\'); ?>'; + } + $_params = (array('compile_path' => $_compile_file, 'compiled_content' => $_output, 'resource_timestamp' => $_params['resource_timestamp'])); + require_once(SMARTY_CORE_DIR . 'core.write_compiled_resource.php'); + smarty_core_write_compiled_resource($_params, $smarty); + } else { + include($_compile_file); + } + + if ($smarty->caching) { + $smarty->_cache_info['config'][$_file] = true; + } + + $smarty->_config[0]['vars'] = @array_merge($smarty->_config[0]['vars'], $_config_vars); + $smarty->_config[0]['files'][$_file] = true; + + if ($_scope == 'parent') { + $smarty->_config[1]['vars'] = @array_merge($smarty->_config[1]['vars'], $_config_vars); + $smarty->_config[1]['files'][$_file] = true; + } else if ($_scope == 'global') { + for ($i = 1, $for_max = count($smarty->_config); $i < $for_max; $i++) { + $smarty->_config[$i]['vars'] = @array_merge($smarty->_config[$i]['vars'], $_config_vars); + $smarty->_config[$i]['files'][$_file] = true; + } + } + + if ($smarty->debugging) { + $_params = array(); + require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); + $smarty->_smarty_debug_info[] = array('type' => 'config', + 'filename' => $_file.' ['.$_section.'] '.$_scope, + 'depth' => $smarty->_inclusion_depth, + 'exec_time' => smarty_core_get_microtime($_params, $smarty) - $_debug_start_time); + } + +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.counter.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.counter.php new file mode 100644 index 0000000..1f26db5 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.counter.php @@ -0,0 +1,80 @@ + + * Name: counter
+ * Purpose: print out a counter value + * @author Monte Ohrt + * @link http://smarty.php.net/manual/en/language.function.counter.php {counter} + * (Smarty online manual) + * @param array parameters + * @param Smarty + * @return string|null + */ +function smarty_function_counter($params, &$smarty) +{ + static $counters = array(); + + $name = (isset($params['name'])) ? $params['name'] : 'default'; + if (!isset($counters[$name])) { + $counters[$name] = array( + 'start'=>1, + 'skip'=>1, + 'direction'=>'up', + 'count'=>1 + ); + } + $counter =& $counters[$name]; + + if (isset($params['start'])) { + $counter['start'] = $counter['count'] = (int)$params['start']; + } + + if (!empty($params['assign'])) { + $counter['assign'] = $params['assign']; + } + + if (isset($counter['assign'])) { + $smarty->assign($counter['assign'], $counter['count']); + } + + if (isset($params['print'])) { + $print = (bool)$params['print']; + } else { + $print = empty($counter['assign']); + } + + if ($print) { + $retval = $counter['count']; + } else { + $retval = null; + } + + if (isset($params['skip'])) { + $counter['skip'] = $params['skip']; + } + + if (isset($params['direction'])) { + $counter['direction'] = $params['direction']; + } + + if ($counter['direction'] == "down") + $counter['count'] -= $counter['skip']; + else + $counter['count'] += $counter['skip']; + + return $retval; + +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.cycle.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.cycle.php new file mode 100644 index 0000000..fe78bb8 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.cycle.php @@ -0,0 +1,102 @@ + + * Name: cycle
+ * Date: May 3, 2002
+ * Purpose: cycle through given values
+ * Input: + * - name = name of cycle (optional) + * - values = comma separated list of values to cycle, + * or an array of values to cycle + * (this can be left out for subsequent calls) + * - reset = boolean - resets given var to true + * - print = boolean - print var or not. default is true + * - advance = boolean - whether or not to advance the cycle + * - delimiter = the value delimiter, default is "," + * - assign = boolean, assigns to template var instead of + * printed. + * + * Examples:
+ *
+ * {cycle values="#eeeeee,#d0d0d0d"}
+ * {cycle name=row values="one,two,three" reset=true}
+ * {cycle name=row}
+ * 
+ * @link http://smarty.php.net/manual/en/language.function.cycle.php {cycle} + * (Smarty online manual) + * @author Monte Ohrt + * @author credit to Mark Priatel + * @author credit to Gerard + * @author credit to Jason Sweat + * @version 1.3 + * @param array + * @param Smarty + * @return string|null + */ +function smarty_function_cycle($params, &$smarty) +{ + static $cycle_vars; + + $name = (empty($params['name'])) ? 'default' : $params['name']; + $print = (isset($params['print'])) ? (bool)$params['print'] : true; + $advance = (isset($params['advance'])) ? (bool)$params['advance'] : true; + $reset = (isset($params['reset'])) ? (bool)$params['reset'] : false; + + if (!in_array('values', array_keys($params))) { + if(!isset($cycle_vars[$name]['values'])) { + $smarty->trigger_error("cycle: missing 'values' parameter"); + return; + } + } else { + if(isset($cycle_vars[$name]['values']) + && $cycle_vars[$name]['values'] != $params['values'] ) { + $cycle_vars[$name]['index'] = 0; + } + $cycle_vars[$name]['values'] = $params['values']; + } + + $cycle_vars[$name]['delimiter'] = (isset($params['delimiter'])) ? $params['delimiter'] : ','; + + if(is_array($cycle_vars[$name]['values'])) { + $cycle_array = $cycle_vars[$name]['values']; + } else { + $cycle_array = explode($cycle_vars[$name]['delimiter'],$cycle_vars[$name]['values']); + } + + if(!isset($cycle_vars[$name]['index']) || $reset ) { + $cycle_vars[$name]['index'] = 0; + } + + if (isset($params['assign'])) { + $print = false; + $smarty->assign($params['assign'], $cycle_array[$cycle_vars[$name]['index']]); + } + + if($print) { + $retval = $cycle_array[$cycle_vars[$name]['index']]; + } else { + $retval = null; + } + + if($advance) { + if ( $cycle_vars[$name]['index'] >= count($cycle_array) -1 ) { + $cycle_vars[$name]['index'] = 0; + } else { + $cycle_vars[$name]['index']++; + } + } + + return $retval; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.debug.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.debug.php new file mode 100644 index 0000000..4345230 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.debug.php @@ -0,0 +1,35 @@ + + * Name: debug
+ * Date: July 1, 2002
+ * Purpose: popup debug window + * @link http://smarty.php.net/manual/en/language.function.debug.php {debug} + * (Smarty online manual) + * @author Monte Ohrt + * @version 1.0 + * @param array + * @param Smarty + * @return string output from {@link Smarty::_generate_debug_output()} + */ +function smarty_function_debug($params, &$smarty) +{ + if (isset($params['output'])) { + $smarty->assign('_smarty_debug_output', $params['output']); + } + require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php'); + return smarty_core_display_debug_console(null, $smarty); +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.eval.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.eval.php new file mode 100644 index 0000000..ff0472d --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.eval.php @@ -0,0 +1,49 @@ + + * Name: eval
+ * Purpose: evaluate a template variable as a template
+ * @link http://smarty.php.net/manual/en/language.function.eval.php {eval} + * (Smarty online manual) + * @author Monte Ohrt + * @param array + * @param Smarty + */ +function smarty_function_eval($params, &$smarty) +{ + + if (!isset($params['var'])) { + $smarty->trigger_error("eval: missing 'var' parameter"); + return; + } + + if($params['var'] == '') { + return; + } + + $smarty->_compile_source('evaluated template', $params['var'], $_var_compiled); + + ob_start(); + $smarty->_eval('?>' . $_var_compiled); + $_contents = ob_get_contents(); + ob_end_clean(); + + if (!empty($params['assign'])) { + $smarty->assign($params['assign'], $_contents); + } else { + return $_contents; + } +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.fetch.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.fetch.php new file mode 100644 index 0000000..81b1bfc --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.fetch.php @@ -0,0 +1,221 @@ + + * Name: fetch
+ * Purpose: fetch file, web or ftp data and display results + * @link http://smarty.php.net/manual/en/language.function.fetch.php {fetch} + * (Smarty online manual) + * @author Monte Ohrt + * @param array + * @param Smarty + * @return string|null if the assign parameter is passed, Smarty assigns the + * result to a template variable + */ +function smarty_function_fetch($params, &$smarty) +{ + if (empty($params['file'])) { + $smarty->_trigger_fatal_error("[plugin] parameter 'file' cannot be empty"); + return; + } + + $content = ''; + if ($smarty->security && !preg_match('!^(http|ftp)://!i', $params['file'])) { + $_params = array('resource_type' => 'file', 'resource_name' => $params['file']); + require_once(SMARTY_CORE_DIR . 'core.is_secure.php'); + if(!smarty_core_is_secure($_params, $smarty)) { + $smarty->_trigger_fatal_error('[plugin] (secure mode) fetch \'' . $params['file'] . '\' is not allowed'); + return; + } + + // fetch the file + if($fp = @fopen($params['file'],'r')) { + while(!feof($fp)) { + $content .= fgets ($fp,4096); + } + fclose($fp); + } else { + $smarty->_trigger_fatal_error('[plugin] fetch cannot read file \'' . $params['file'] . '\''); + return; + } + } else { + // not a local file + if(preg_match('!^http://!i',$params['file'])) { + // http fetch + if($uri_parts = parse_url($params['file'])) { + // set defaults + $host = $server_name = $uri_parts['host']; + $timeout = 30; + $accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*"; + $agent = "Smarty Template Engine ".$smarty->_version; + $referer = ""; + $uri = !empty($uri_parts['path']) ? $uri_parts['path'] : '/'; + $uri .= !empty($uri_parts['query']) ? '?' . $uri_parts['query'] : ''; + $_is_proxy = false; + if(empty($uri_parts['port'])) { + $port = 80; + } else { + $port = $uri_parts['port']; + } + if(!empty($uri_parts['user'])) { + $user = $uri_parts['user']; + } + if(!empty($uri_parts['pass'])) { + $pass = $uri_parts['pass']; + } + // loop through parameters, setup headers + foreach($params as $param_key => $param_value) { + switch($param_key) { + case "file": + case "assign": + case "assign_headers": + break; + case "user": + if(!empty($param_value)) { + $user = $param_value; + } + break; + case "pass": + if(!empty($param_value)) { + $pass = $param_value; + } + break; + case "accept": + if(!empty($param_value)) { + $accept = $param_value; + } + break; + case "header": + if(!empty($param_value)) { + if(!preg_match('![\w\d-]+: .+!',$param_value)) { + $smarty->_trigger_fatal_error("[plugin] invalid header format '".$param_value."'"); + return; + } else { + $extra_headers[] = $param_value; + } + } + break; + case "proxy_host": + if(!empty($param_value)) { + $proxy_host = $param_value; + } + break; + case "proxy_port": + if(!preg_match('!\D!', $param_value)) { + $proxy_port = (int) $param_value; + } else { + $smarty->_trigger_fatal_error("[plugin] invalid value for attribute '".$param_key."'"); + return; + } + break; + case "agent": + if(!empty($param_value)) { + $agent = $param_value; + } + break; + case "referer": + if(!empty($param_value)) { + $referer = $param_value; + } + break; + case "timeout": + if(!preg_match('!\D!', $param_value)) { + $timeout = (int) $param_value; + } else { + $smarty->_trigger_fatal_error("[plugin] invalid value for attribute '".$param_key."'"); + return; + } + break; + default: + $smarty->_trigger_fatal_error("[plugin] unrecognized attribute '".$param_key."'"); + return; + } + } + if(!empty($proxy_host) && !empty($proxy_port)) { + $_is_proxy = true; + $fp = fsockopen($proxy_host,$proxy_port,$errno,$errstr,$timeout); + } else { + $fp = fsockopen($server_name,$port,$errno,$errstr,$timeout); + } + + if(!$fp) { + $smarty->_trigger_fatal_error("[plugin] unable to fetch: $errstr ($errno)"); + return; + } else { + if($_is_proxy) { + fputs($fp, 'GET ' . $params['file'] . " HTTP/1.0\r\n"); + } else { + fputs($fp, "GET $uri HTTP/1.0\r\n"); + } + if(!empty($host)) { + fputs($fp, "Host: $host\r\n"); + } + if(!empty($accept)) { + fputs($fp, "Accept: $accept\r\n"); + } + if(!empty($agent)) { + fputs($fp, "User-Agent: $agent\r\n"); + } + if(!empty($referer)) { + fputs($fp, "Referer: $referer\r\n"); + } + if(isset($extra_headers) && is_array($extra_headers)) { + foreach($extra_headers as $curr_header) { + fputs($fp, $curr_header."\r\n"); + } + } + if(!empty($user) && !empty($pass)) { + fputs($fp, "Authorization: BASIC ".base64_encode("$user:$pass")."\r\n"); + } + + fputs($fp, "\r\n"); + while(!feof($fp)) { + $content .= fgets($fp,4096); + } + fclose($fp); + $csplit = split("\r\n\r\n",$content,2); + + $content = $csplit[1]; + + if(!empty($params['assign_headers'])) { + $smarty->assign($params['assign_headers'],split("\r\n",$csplit[0])); + } + } + } else { + $smarty->_trigger_fatal_error("[plugin] unable to parse URL, check syntax"); + return; + } + } else { + // ftp fetch + if($fp = @fopen($params['file'],'r')) { + while(!feof($fp)) { + $content .= fgets ($fp,4096); + } + fclose($fp); + } else { + $smarty->_trigger_fatal_error('[plugin] fetch cannot read file \'' . $params['file'] .'\''); + return; + } + } + + } + + + if (!empty($params['assign'])) { + $smarty->assign($params['assign'],$content); + } else { + return $content; + } +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_checkboxes.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_checkboxes.php new file mode 100644 index 0000000..ed8ad7f --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_checkboxes.php @@ -0,0 +1,143 @@ + + * Type: function
+ * Name: html_checkboxes
+ * Date: 24.Feb.2003
+ * Purpose: Prints out a list of checkbox input types
+ * Input:
+ * - name (optional) - string default "checkbox" + * - values (required) - array + * - options (optional) - associative array + * - checked (optional) - array default not set + * - separator (optional) - ie
or   + * - output (optional) - the output next to each checkbox + * - assign (optional) - assign the output as an array to this variable + * Examples: + *
+ * {html_checkboxes values=$ids output=$names}
+ * {html_checkboxes values=$ids name='box' separator='
' output=$names} + * {html_checkboxes values=$ids checked=$checked separator='
' output=$names} + *
+ * @link http://smarty.php.net/manual/en/language.function.html.checkboxes.php {html_checkboxes} + * (Smarty online manual) + * @author Christopher Kvarme + * @author credits to Monte Ohrt + * @version 1.0 + * @param array + * @param Smarty + * @return string + * @uses smarty_function_escape_special_chars() + */ +function smarty_function_html_checkboxes($params, &$smarty) +{ + require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); + + $name = 'checkbox'; + $values = null; + $options = null; + $selected = null; + $separator = ''; + $labels = true; + $output = null; + + $extra = ''; + + foreach($params as $_key => $_val) { + switch($_key) { + case 'name': + case 'separator': + $$_key = $_val; + break; + + case 'labels': + $$_key = (bool)$_val; + break; + + case 'options': + $$_key = (array)$_val; + break; + + case 'values': + case 'output': + $$_key = array_values((array)$_val); + break; + + case 'checked': + case 'selected': + $selected = array_map('strval', array_values((array)$_val)); + break; + + case 'checkboxes': + $smarty->trigger_error('html_checkboxes: the use of the "checkboxes" attribute is deprecated, use "options" instead', E_USER_WARNING); + $options = (array)$_val; + break; + + case 'assign': + break; + + default: + if(!is_array($_val)) { + $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"'; + } else { + $smarty->trigger_error("html_checkboxes: extra attribute '$_key' cannot be an array", E_USER_NOTICE); + } + break; + } + } + + if (!isset($options) && !isset($values)) + return ''; /* raise error here? */ + + settype($selected, 'array'); + $_html_result = array(); + + if (isset($options)) { + + foreach ($options as $_key=>$_val) + $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels); + + + } else { + foreach ($values as $_i=>$_key) { + $_val = isset($output[$_i]) ? $output[$_i] : ''; + $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels); + } + + } + + if(!empty($params['assign'])) { + $smarty->assign($params['assign'], $_html_result); + } else { + return implode("\n",$_html_result); + } + +} + +function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels) { + $_output = ''; + if ($labels) $_output .= ''; + $_output .= $separator; + + return $_output; +} + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_image.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_image.php new file mode 100644 index 0000000..9abae72 --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_image.php @@ -0,0 +1,142 @@ + + * Name: html_image
+ * Date: Feb 24, 2003
+ * Purpose: format HTML tags for the image
+ * Input:
+ * - file = file (and path) of image (required) + * - height = image height (optional, default actual height) + * - width = image width (optional, default actual width) + * - basedir = base directory for absolute paths, default + * is environment variable DOCUMENT_ROOT + * - path_prefix = prefix for path output (optional, default empty) + * + * Examples: {html_image file="/images/masthead.gif"} + * Output: + * @link http://smarty.php.net/manual/en/language.function.html.image.php {html_image} + * (Smarty online manual) + * @author Monte Ohrt + * @author credits to Duda - wrote first image function + * in repository, helped with lots of functionality + * @version 1.0 + * @param array + * @param Smarty + * @return string + * @uses smarty_function_escape_special_chars() + */ +function smarty_function_html_image($params, &$smarty) +{ + require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); + + $alt = ''; + $file = ''; + $height = ''; + $width = ''; + $extra = ''; + $prefix = ''; + $suffix = ''; + $path_prefix = ''; + $server_vars = ($smarty->request_use_auto_globals) ? $_SERVER : $GLOBALS['HTTP_SERVER_VARS']; + $basedir = isset($server_vars['DOCUMENT_ROOT']) ? $server_vars['DOCUMENT_ROOT'] : ''; + foreach($params as $_key => $_val) { + switch($_key) { + case 'file': + case 'height': + case 'width': + case 'dpi': + case 'path_prefix': + case 'basedir': + $$_key = $_val; + break; + + case 'alt': + if(!is_array($_val)) { + $$_key = smarty_function_escape_special_chars($_val); + } else { + $smarty->trigger_error("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); + } + break; + + case 'link': + case 'href': + $prefix = ''; + $suffix = ''; + break; + + default: + if(!is_array($_val)) { + $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"'; + } else { + $smarty->trigger_error("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); + } + break; + } + } + + if (empty($file)) { + $smarty->trigger_error("html_image: missing 'file' parameter", E_USER_NOTICE); + return; + } + + if (substr($file,0,1) == '/') { + $_image_path = $basedir . $file; + } else { + $_image_path = $file; + } + + if(!isset($params['width']) || !isset($params['height'])) { + if(!$_image_data = @getimagesize($_image_path)) { + if(!file_exists($_image_path)) { + $smarty->trigger_error("html_image: unable to find '$_image_path'", E_USER_NOTICE); + return; + } else if(!is_readable($_image_path)) { + $smarty->trigger_error("html_image: unable to read '$_image_path'", E_USER_NOTICE); + return; + } else { + $smarty->trigger_error("html_image: '$_image_path' is not a valid image file", E_USER_NOTICE); + return; + } + } + if ($smarty->security && + ($_params = array('resource_type' => 'file', 'resource_name' => $_image_path)) && + (require_once(SMARTY_CORE_DIR . 'core.is_secure.php')) && + (!smarty_core_is_secure($_params, $smarty)) ) { + $smarty->trigger_error("html_image: (secure) '$_image_path' not in secure directory", E_USER_NOTICE); + } + + if(!isset($params['width'])) { + $width = $_image_data[0]; + } + if(!isset($params['height'])) { + $height = $_image_data[1]; + } + + } + + if(isset($params['dpi'])) { + if(strstr($server_vars['HTTP_USER_AGENT'], 'Mac')) { + $dpi_default = 72; + } else { + $dpi_default = 96; + } + $_resize = $dpi_default/$params['dpi']; + $width = round($width * $_resize); + $height = round($height * $_resize); + } + + return $prefix . ''.$alt.'' . $suffix; +} + +/* vim: set expandtab: */ + +?> diff --git a/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_options.php b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_options.php new file mode 100644 index 0000000..cebadde --- /dev/null +++ b/other/AoWoW-master/includes/Smarty-2.6.19/libs/plugins/function.html_options.php @@ -0,0 +1,122 @@ + + * Name: html_options
+ * Input:
+ * - name (optional) - string default "select" + * - values (required if no options supplied) - array + * - options (required if no values supplied) - associative array + * - selected (optional) - string default not set + * - output (required if not options supplied) - array + * Purpose: Prints the list of