diff --git a/eos/db/__init__.py b/eos/db/__init__.py index 5341e84ae..09e89cdcb 100644 --- a/eos/db/__init__.py +++ b/eos/db/__init__.py @@ -78,7 +78,7 @@ sd_lock = threading.RLock() # Import all the definitions for all our database stuff # noinspection PyPep8 -from eos.db.gamedata import alphaClones, attribute, category, effect, group, icon, item, marketGroup, metaData, metaGroup, queries, traits, unit +from eos.db.gamedata import alphaClones, attribute, category, effect, group, item, marketGroup, metaData, metaGroup, queries, traits, unit # noinspection PyPep8 from eos.db.saveddata import booster, cargo, character, damagePattern, databaseRepair, drone, fighter, fit, implant, implantSet, loadDefaultDatabaseValues, \ miscData, module, override, price, queries, skill, targetResists, user diff --git a/eos/db/gamedata/__init__.py b/eos/db/gamedata/__init__.py index eabfd7f1b..6ce34f61e 100644 --- a/eos/db/gamedata/__init__.py +++ b/eos/db/gamedata/__init__.py @@ -1,2 +1,2 @@ __all__ = ["attribute", "category", "effect", "group", "metaData", - "icon", "item", "marketGroup", "metaGroup", "unit", "alphaClones"] + "item", "marketGroup", "metaGroup", "unit", "alphaClones"] diff --git a/eos/db/gamedata/attribute.py b/eos/db/gamedata/attribute.py index 20de4d1a9..727037421 100644 --- a/eos/db/gamedata/attribute.py +++ b/eos/db/gamedata/attribute.py @@ -22,7 +22,7 @@ from sqlalchemy.ext.associationproxy import association_proxy from sqlalchemy.orm import relation, mapper, synonym, deferred from eos.db import gamedata_meta -from eos.gamedata import Attribute, AttributeInfo, Unit, Icon +from eos.gamedata import Attribute, AttributeInfo, Unit typeattributes_table = Table("dgmtypeattribs", gamedata_meta, Column("value", Float), @@ -38,7 +38,7 @@ attributes_table = Table("dgmattribs", gamedata_meta, Column("published", Boolean), Column("displayName", String), Column("highIsGood", Boolean), - Column("iconID", Integer, ForeignKey("icons.iconID")), + Column("iconID", Integer), Column("unitID", Integer, ForeignKey("dgmunits.unitID"))) mapper(Attribute, typeattributes_table, @@ -46,7 +46,6 @@ mapper(Attribute, typeattributes_table, mapper(AttributeInfo, attributes_table, properties={ - "icon" : relation(Icon), "unit" : relation(Unit), "ID" : synonym("attributeID"), "name" : synonym("attributeName"), diff --git a/eos/db/gamedata/category.py b/eos/db/gamedata/category.py index 0fd84da79..c167cf1df 100644 --- a/eos/db/gamedata/category.py +++ b/eos/db/gamedata/category.py @@ -21,18 +21,17 @@ from sqlalchemy import Column, String, Integer, ForeignKey, Boolean, Table from sqlalchemy.orm import relation, mapper, synonym, deferred from eos.db import gamedata_meta -from eos.gamedata import Category, Icon +from eos.gamedata import Category categories_table = Table("invcategories", gamedata_meta, Column("categoryID", Integer, primary_key=True), Column("categoryName", String), Column("description", String), Column("published", Boolean), - Column("iconID", Integer, ForeignKey("icons.iconID"))) + Column("iconID", Integer)) mapper(Category, categories_table, properties={ - "icon" : relation(Icon), "ID" : synonym("categoryID"), "name" : synonym("categoryName"), "description": deferred(categories_table.c.description) diff --git a/eos/db/gamedata/group.py b/eos/db/gamedata/group.py index 4373b2ca5..53a8723bd 100644 --- a/eos/db/gamedata/group.py +++ b/eos/db/gamedata/group.py @@ -21,7 +21,7 @@ from sqlalchemy import Column, String, Integer, Boolean, ForeignKey, Table from sqlalchemy.orm import relation, mapper, synonym, deferred from eos.db import gamedata_meta -from eos.gamedata import Category, Group, Icon +from eos.gamedata import Category, Group groups_table = Table("invgroups", gamedata_meta, Column("groupID", Integer, primary_key=True), @@ -29,12 +29,11 @@ groups_table = Table("invgroups", gamedata_meta, Column("description", String), Column("published", Boolean), Column("categoryID", Integer, ForeignKey("invcategories.categoryID")), - Column("iconID", Integer, ForeignKey("icons.iconID"))) + Column("iconID", Integer)) mapper(Group, groups_table, properties={ "category" : relation(Category, backref="groups"), - "icon" : relation(Icon), "ID" : synonym("groupID"), "name" : synonym("groupName"), "description": deferred(groups_table.c.description) diff --git a/eos/db/gamedata/icon.py b/eos/db/gamedata/icon.py deleted file mode 100644 index 9fd41605a..000000000 --- a/eos/db/gamedata/icon.py +++ /dev/null @@ -1,35 +0,0 @@ -# =============================================================================== -# Copyright (C) 2010 Diego Duclos -# -# This file is part of eos. -# -# eos is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 2 of the License, or -# (at your option) any later version. -# -# eos is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with eos. If not, see . -# =============================================================================== - -from sqlalchemy import Column, String, Integer, Table -from sqlalchemy.orm import mapper, synonym, deferred - -from eos.db import gamedata_meta -from eos.gamedata import Icon - -icons_table = Table("icons", gamedata_meta, - Column("iconID", Integer, primary_key=True), - Column("description", String), - Column("iconFile", String)) - -mapper(Icon, icons_table, - properties={ - "ID" : synonym("iconID"), - "description": deferred(icons_table.c.description) - }) diff --git a/eos/db/gamedata/item.py b/eos/db/gamedata/item.py index 1760f9157..f8fc7a04b 100644 --- a/eos/db/gamedata/item.py +++ b/eos/db/gamedata/item.py @@ -24,7 +24,7 @@ from sqlalchemy.orm.collections import attribute_mapped_collection from eos.db.gamedata.effect import typeeffects_table from eos.db import gamedata_meta -from eos.gamedata import Attribute, Effect, Group, Icon, Item, MetaType, Traits +from eos.gamedata import Attribute, Effect, Group, Item, MetaType, Traits items_table = Table("invtypes", gamedata_meta, Column("typeID", Integer, primary_key=True), @@ -37,7 +37,7 @@ items_table = Table("invtypes", gamedata_meta, Column("capacity", Float), Column("published", Boolean), Column("marketGroupID", Integer, ForeignKey("invmarketgroups.marketGroupID")), - Column("iconID", Integer, ForeignKey("icons.iconID")), + Column("iconID", Integer), Column("groupID", Integer, ForeignKey("invgroups.groupID"), index=True)) from .metaGroup import metatypes_table # noqa @@ -46,7 +46,6 @@ from .traits import traits_table # noqa mapper(Item, items_table, properties={ "group" : relation(Group, backref="items"), - "icon" : relation(Icon), "_Item__attributes": relation(Attribute, cascade='all, delete, delete-orphan', collection_class=attribute_mapped_collection('name')), "effects": relation(Effect, secondary=typeeffects_table, collection_class=attribute_mapped_collection('name')), "metaGroup" : relation(MetaType, diff --git a/eos/db/gamedata/marketGroup.py b/eos/db/gamedata/marketGroup.py index faf88780b..8bd04f401 100644 --- a/eos/db/gamedata/marketGroup.py +++ b/eos/db/gamedata/marketGroup.py @@ -21,7 +21,7 @@ from sqlalchemy import Column, String, Integer, Boolean, ForeignKey, Table from sqlalchemy.orm import relation, mapper, synonym, deferred from eos.db import gamedata_meta -from eos.gamedata import Icon, Item, MarketGroup +from eos.gamedata import Item, MarketGroup marketgroups_table = Table("invmarketgroups", gamedata_meta, Column("marketGroupID", Integer, primary_key=True), @@ -30,14 +30,13 @@ marketgroups_table = Table("invmarketgroups", gamedata_meta, Column("hasTypes", Boolean), Column("parentGroupID", Integer, ForeignKey("invmarketgroups.marketGroupID", initially="DEFERRED", deferrable=True)), - Column("iconID", Integer, ForeignKey("icons.iconID"))) + Column("iconID", Integer)) mapper(MarketGroup, marketgroups_table, properties={ "items" : relation(Item, backref="marketGroup"), "parent" : relation(MarketGroup, backref="children", remote_side=[marketgroups_table.c.marketGroupID]), - "icon" : relation(Icon), "ID" : synonym("marketGroupID"), "name" : synonym("marketGroupName"), "description": deferred(marketgroups_table.c.description) diff --git a/eos/gamedata.py b/eos/gamedata.py index 7949361b9..5b4bcddf7 100644 --- a/eos/gamedata.py +++ b/eos/gamedata.py @@ -512,10 +512,6 @@ class Group(EqBase): pass -class Icon(EqBase): - pass - - class MarketGroup(EqBase): def __repr__(self): return "MarketGroup(ID={}, name={}, parent={}) at {}".format( diff --git a/gui/builtinAdditionPanes/commandView.py b/gui/builtinAdditionPanes/commandView.py index 5ee0d1872..2bfa700c9 100644 --- a/gui/builtinAdditionPanes/commandView.py +++ b/gui/builtinAdditionPanes/commandView.py @@ -35,7 +35,7 @@ from service.fit import Fit class DummyItem(object): def __init__(self, txt): self.name = txt - self.icon = None + self.iconID = None class DummyEntry(object): diff --git a/gui/builtinAdditionPanes/projectedView.py b/gui/builtinAdditionPanes/projectedView.py index a5654d1a4..6857adb78 100644 --- a/gui/builtinAdditionPanes/projectedView.py +++ b/gui/builtinAdditionPanes/projectedView.py @@ -39,7 +39,7 @@ pyfalog = Logger(__name__) class DummyItem(object): def __init__(self, txt): self.name = txt - self.icon = None + self.iconID = None class DummyEntry(object): diff --git a/gui/builtinContextMenus/moduleAmmoPicker.py b/gui/builtinContextMenus/moduleAmmoPicker.py index 81c02eab0..44729e6cc 100644 --- a/gui/builtinContextMenus/moduleAmmoPicker.py +++ b/gui/builtinContextMenus/moduleAmmoPicker.py @@ -118,7 +118,7 @@ class ModuleAmmoPicker(ContextMenu): menu.Bind(wx.EVT_MENU, self.handleAmmoSwitch, item) item.charge = charge if charge is not None and charge.icon is not None: - bitmap = BitmapLoader.getBitmap(charge.icon.iconFile, "icons") + bitmap = BitmapLoader.getBitmap(charge.iconID, "icons") if bitmap is not None: item.SetBitmap(bitmap) diff --git a/gui/builtinGraphs/fitDps.py b/gui/builtinGraphs/fitDps.py index d848d3f9c..183bc9ac8 100644 --- a/gui/builtinGraphs/fitDps.py +++ b/gui/builtinGraphs/fitDps.py @@ -55,7 +55,7 @@ class FitDpsGraph(Graph): icons = {} sAttr = Attribute.getInstance() for key, attrName in self.propertyAttributeMap.items(): - iconFile = sAttr.getAttributeInfo(attrName).icon.iconFile + iconFile = sAttr.getAttributeInfo(attrName).iconID bitmap = BitmapLoader.getBitmap(iconFile, "icons") if bitmap: icons[key] = bitmap diff --git a/gui/builtinItemStatsViews/itemAffectedBy.py b/gui/builtinItemStatsViews/itemAffectedBy.py index ed4280045..bb300acf4 100644 --- a/gui/builtinItemStatsViews/itemAffectedBy.py +++ b/gui/builtinItemStatsViews/itemAffectedBy.py @@ -238,15 +238,15 @@ class ItemAffectedBy(wx.Panel): if attrInfo: if attrInfo.icon is not None: - iconFile = attrInfo.icon.iconFile + iconFile = attrInfo.iconID icon = BitmapLoader.getBitmap(iconFile, "icons") if icon is None: icon = BitmapLoader.getBitmap("transparent16x16", "gui") attrIcon = self.imageList.Add(icon) else: - attrIcon = self.imageList.Add(BitmapLoader.getBitmap("7_15", "icons")) + attrIcon = self.imageList.Add(BitmapLoader.getBitmap("0", "icons")) else: - attrIcon = self.imageList.Add(BitmapLoader.getBitmap("7_15", "icons")) + attrIcon = self.imageList.Add(BitmapLoader.getBitmap("0", "icons")) if self.showRealNames: display = attrName @@ -268,7 +268,7 @@ class ItemAffectedBy(wx.Panel): if afflictorType == Ship: itemIcon = self.imageList.Add(BitmapLoader.getBitmap("ship_small", "gui")) elif item.icon: - bitmap = BitmapLoader.getBitmap(item.icon.iconFile, "icons") + bitmap = BitmapLoader.getBitmap(item.iconID, "icons") itemIcon = self.imageList.Add(bitmap) if bitmap else -1 else: itemIcon = -1 @@ -373,8 +373,8 @@ class ItemAffectedBy(wx.Panel): counter = len(afflictors) if afflictorType == Ship: itemIcon = self.imageList.Add(BitmapLoader.getBitmap("ship_small", "gui")) - elif item.icon: - bitmap = BitmapLoader.getBitmap(item.icon.iconFile, "icons") + elif item.iconID: + bitmap = BitmapLoader.getBitmap(item.iconID, "icons") itemIcon = self.imageList.Add(bitmap) if bitmap else -1 else: itemIcon = -1 @@ -398,17 +398,17 @@ class ItemAffectedBy(wx.Panel): displayName = attrInfo.displayName if attrInfo else "" if attrInfo: - if attrInfo.icon is not None: - iconFile = attrInfo.icon.iconFile + if attrInfo.iconID is not None: + iconFile = attrInfo.iconID icon = BitmapLoader.getBitmap(iconFile, "icons") if icon is None: icon = BitmapLoader.getBitmap("transparent16x16", "gui") attrIcon = self.imageList.Add(icon) else: - attrIcon = self.imageList.Add(BitmapLoader.getBitmap("7_15", "icons")) + attrIcon = self.imageList.Add(BitmapLoader.getBitmap("0", "icons")) else: - attrIcon = self.imageList.Add(BitmapLoader.getBitmap("7_15", "icons")) + attrIcon = self.imageList.Add(BitmapLoader.getBitmap("0", "icons")) penalized = "" if '*' in attrModifier: diff --git a/gui/builtinItemStatsViews/itemAttributes.py b/gui/builtinItemStatsViews/itemAttributes.py index 18432a96d..12cd15b6f 100644 --- a/gui/builtinItemStatsViews/itemAttributes.py +++ b/gui/builtinItemStatsViews/itemAttributes.py @@ -189,8 +189,8 @@ class ItemParams(wx.Panel): attrName += " ({})".format(info.ID) if info: - if info.icon is not None: - iconFile = info.icon.iconFile + if info.iconID is not None: + iconFile = info.iconID icon = BitmapLoader.getBitmap(iconFile, "icons") if icon is None: @@ -198,9 +198,9 @@ class ItemParams(wx.Panel): attrIcon = self.imageList.Add(icon) else: - attrIcon = self.imageList.Add(BitmapLoader.getBitmap("7_15", "icons")) + attrIcon = self.imageList.Add(BitmapLoader.getBitmap("0", "icons")) else: - attrIcon = self.imageList.Add(BitmapLoader.getBitmap("7_15", "icons")) + attrIcon = self.imageList.Add(BitmapLoader.getBitmap("0", "icons")) index = self.paramList.InsertItem(self.paramList.GetItemCount(), attrName, attrIcon) idNameMap[idCount] = attrName diff --git a/gui/builtinItemStatsViews/itemDependants.py b/gui/builtinItemStatsViews/itemDependants.py index 9f7e459c9..72571bf3d 100644 --- a/gui/builtinItemStatsViews/itemDependants.py +++ b/gui/builtinItemStatsViews/itemDependants.py @@ -45,7 +45,7 @@ class ItemDependents(wx.Panel): for item in items: if item.icon: - bitmap = BitmapLoader.getBitmap(item.icon.iconFile, "icons") + bitmap = BitmapLoader.getBitmap(item.iconID, "icons") itemIcon = self.imageList.Add(bitmap) if bitmap else -1 else: itemIcon = -1 diff --git a/gui/builtinViewColumns/ammoIcon.py b/gui/builtinViewColumns/ammoIcon.py index 7459db6a4..be9617598 100644 --- a/gui/builtinViewColumns/ammoIcon.py +++ b/gui/builtinViewColumns/ammoIcon.py @@ -43,7 +43,7 @@ class AmmoIcon(ViewColumn): if stuff.charge is None: return -1 else: - iconFile = stuff.charge.icon.iconFile if stuff.charge.icon else "" + iconFile = stuff.charge.iconID if stuff.charge.icon else "" if iconFile: return self.fittingView.imageList.GetImageIndex(iconFile, "icons") else: diff --git a/gui/builtinViewColumns/attributeDisplay.py b/gui/builtinViewColumns/attributeDisplay.py index 7ad8743d7..b36cf7132 100644 --- a/gui/builtinViewColumns/attributeDisplay.py +++ b/gui/builtinViewColumns/attributeDisplay.py @@ -41,7 +41,7 @@ class AttributeDisplay(ViewColumn): iconFile = "pg_small" iconType = "gui" else: - iconFile = info.icon.iconFile if info.icon else None + iconFile = info.iconID iconType = "icons" if iconFile: self.imageId = fittingView.imageList.GetImageIndex(iconFile, iconType) diff --git a/gui/builtinViewColumns/baseIcon.py b/gui/builtinViewColumns/baseIcon.py index 8c09a9fa3..207d639c5 100644 --- a/gui/builtinViewColumns/baseIcon.py +++ b/gui/builtinViewColumns/baseIcon.py @@ -35,10 +35,10 @@ class BaseIcon(ViewColumn): return self.fittingView.imageList.GetImageIndex("slot_%s_small" % Slot.getName(stuff.slot).lower(), "gui") else: - return self.loadIconFile(stuff.item.icon.iconFile if stuff.item.icon else "") + return self.loadIconFile(stuff.item.iconID or "") item = getattr(stuff, "item", stuff) - return self.loadIconFile(item.icon.iconFile if item.icon else "") + return self.loadIconFile(item.iconID) def loadIconFile(self, iconFile): if iconFile: diff --git a/gui/builtinViewColumns/maxRange.py b/gui/builtinViewColumns/maxRange.py index 7fcd6cd44..24f72b3a1 100644 --- a/gui/builtinViewColumns/maxRange.py +++ b/gui/builtinViewColumns/maxRange.py @@ -40,7 +40,7 @@ class MaxRange(ViewColumn): info = sAttr.getAttributeInfo("maxRange") self.info = info if params["showIcon"]: - iconFile = info.icon.iconFile if info.icon else None + iconFile = info.iconID if iconFile: self.imageId = fittingView.imageList.GetImageIndex(iconFile, "icons") self.bitmap = BitmapLoader.getBitmap(iconFile, "icons") diff --git a/gui/builtinViewColumns/propertyDisplay.py b/gui/builtinViewColumns/propertyDisplay.py index b4faa177a..abd91f730 100644 --- a/gui/builtinViewColumns/propertyDisplay.py +++ b/gui/builtinViewColumns/propertyDisplay.py @@ -41,7 +41,7 @@ class PropertyDisplay(ViewColumn): iconFile = "pg_small" iconType = "gui" else: - iconFile = info.icon.iconFile if info.icon else None + iconFile = info.iconID if info.icon else None iconType = "icons" if iconFile: self.imageId = fittingView.imageList.GetImageIndex(iconFile, iconType) diff --git a/gui/builtinViews/implantEditor.py b/gui/builtinViews/implantEditor.py index b391c1812..d33ff9779 100644 --- a/gui/builtinViews/implantEditor.py +++ b/gui/builtinViews/implantEditor.py @@ -156,7 +156,7 @@ class BaseImplantEditorView(wx.Panel): currentMktGrp = sMkt.getMarketGroup(tree.GetItemData(parent)) items = sMkt.getItemsByMarketGroup(currentMktGrp) for item in items: - iconId = self.addMarketViewImage(item.icon.iconFile) + iconId = self.addMarketViewImage(item.iconID) tree.AppendItem(parent, item.name, iconId, data=item) tree.SortChildren(parent) diff --git a/gui/itemStats.py b/gui/itemStats.py index 3440fb322..bc717a6b9 100644 --- a/gui/itemStats.py +++ b/gui/itemStats.py @@ -79,10 +79,8 @@ class ItemStatsDialog(wx.Dialog): item = sMkt.getItem(victim.ID) victim = None self.context = itmContext - if item.icon is not None: - before, sep, after = item.icon.iconFile.rpartition("_") - iconFile = "%s%s%s" % (before, sep, "0%s" % after if len(after) < 2 else after) - itemImg = BitmapLoader.getBitmap(iconFile, "icons") + if item.iconID is not None: + itemImg = BitmapLoader.getBitmap(item.iconID, "icons") if itemImg is not None: self.SetIcon(wx.Icon(itemImg)) self.SetTitle("%s: %s%s" % ("%s Stats" % itmContext if itmContext is not None else "Stats", item.name, diff --git a/imgs/icons/7_15.png b/imgs/icons/0.png similarity index 100% rename from imgs/icons/7_15.png rename to imgs/icons/0.png diff --git a/imgs/icons/10012.png b/imgs/icons/10012.png new file mode 100644 index 000000000..0e783e20b Binary files /dev/null and b/imgs/icons/10012.png differ diff --git a/imgs/icons/10013.png b/imgs/icons/10013.png new file mode 100644 index 000000000..53b4edb66 Binary files /dev/null and b/imgs/icons/10013.png differ diff --git a/imgs/icons/10014.png b/imgs/icons/10014.png new file mode 100644 index 000000000..78c8a2e44 Binary files /dev/null and b/imgs/icons/10014.png differ diff --git a/imgs/icons/10015.png b/imgs/icons/10015.png new file mode 100644 index 000000000..d8b049e09 Binary files /dev/null and b/imgs/icons/10015.png differ diff --git a/imgs/icons/10016.png b/imgs/icons/10016.png new file mode 100644 index 000000000..c4c521404 Binary files /dev/null and b/imgs/icons/10016.png differ diff --git a/imgs/icons/10017.png b/imgs/icons/10017.png new file mode 100644 index 000000000..d778f8b25 Binary files /dev/null and b/imgs/icons/10017.png differ diff --git a/imgs/icons/10018.png b/imgs/icons/10018.png new file mode 100644 index 000000000..afd16989c Binary files /dev/null and b/imgs/icons/10018.png differ diff --git a/imgs/icons/10019.png b/imgs/icons/10019.png new file mode 100644 index 000000000..9533229c5 Binary files /dev/null and b/imgs/icons/10019.png differ diff --git a/imgs/icons/10020.png b/imgs/icons/10020.png new file mode 100644 index 000000000..325cc1ce5 Binary files /dev/null and b/imgs/icons/10020.png differ diff --git a/imgs/icons/10021.png b/imgs/icons/10021.png new file mode 100644 index 000000000..6abe3ba34 Binary files /dev/null and b/imgs/icons/10021.png differ diff --git a/imgs/icons/10022.png b/imgs/icons/10022.png new file mode 100644 index 000000000..1cfe15d81 Binary files /dev/null and b/imgs/icons/10022.png differ diff --git a/imgs/icons/10023.png b/imgs/icons/10023.png new file mode 100644 index 000000000..ba105fbd1 Binary files /dev/null and b/imgs/icons/10023.png differ diff --git a/imgs/icons/10024.png b/imgs/icons/10024.png new file mode 100644 index 000000000..1257cd16a Binary files /dev/null and b/imgs/icons/10024.png differ diff --git a/imgs/icons/10025.png b/imgs/icons/10025.png new file mode 100644 index 000000000..a13132bc5 Binary files /dev/null and b/imgs/icons/10025.png differ diff --git a/imgs/icons/10026.png b/imgs/icons/10026.png new file mode 100644 index 000000000..b2d8a3dda Binary files /dev/null and b/imgs/icons/10026.png differ diff --git a/imgs/icons/10027.png b/imgs/icons/10027.png new file mode 100644 index 000000000..e458b9e29 Binary files /dev/null and b/imgs/icons/10027.png differ diff --git a/imgs/icons/10028.png b/imgs/icons/10028.png new file mode 100644 index 000000000..56fc8d1bc Binary files /dev/null and b/imgs/icons/10028.png differ diff --git a/imgs/icons/10029.png b/imgs/icons/10029.png new file mode 100644 index 000000000..bbd67d9e9 Binary files /dev/null and b/imgs/icons/10029.png differ diff --git a/imgs/icons/10030.png b/imgs/icons/10030.png new file mode 100644 index 000000000..21dd0c830 Binary files /dev/null and b/imgs/icons/10030.png differ diff --git a/imgs/icons/10031.png b/imgs/icons/10031.png new file mode 100644 index 000000000..f11233461 Binary files /dev/null and b/imgs/icons/10031.png differ diff --git a/imgs/icons/10032.png b/imgs/icons/10032.png new file mode 100644 index 000000000..8ad901443 Binary files /dev/null and b/imgs/icons/10032.png differ diff --git a/imgs/icons/10033.png b/imgs/icons/10033.png new file mode 100644 index 000000000..19a96f277 Binary files /dev/null and b/imgs/icons/10033.png differ diff --git a/imgs/icons/10034.png b/imgs/icons/10034.png new file mode 100644 index 000000000..21bf81de9 Binary files /dev/null and b/imgs/icons/10034.png differ diff --git a/imgs/icons/10035.png b/imgs/icons/10035.png new file mode 100644 index 000000000..70fcf56ed Binary files /dev/null and b/imgs/icons/10035.png differ diff --git a/imgs/icons/10036.png b/imgs/icons/10036.png new file mode 100644 index 000000000..5d6f14328 Binary files /dev/null and b/imgs/icons/10036.png differ diff --git a/imgs/icons/10037.png b/imgs/icons/10037.png new file mode 100644 index 000000000..96799c5ab Binary files /dev/null and b/imgs/icons/10037.png differ diff --git a/imgs/icons/10038.png b/imgs/icons/10038.png new file mode 100644 index 000000000..1888a2db6 Binary files /dev/null and b/imgs/icons/10038.png differ diff --git a/imgs/icons/10039.png b/imgs/icons/10039.png new file mode 100644 index 000000000..7a2b7ce59 Binary files /dev/null and b/imgs/icons/10039.png differ diff --git a/imgs/icons/14_1.png b/imgs/icons/1004.png similarity index 100% rename from imgs/icons/14_1.png rename to imgs/icons/1004.png diff --git a/imgs/icons/10040.png b/imgs/icons/10040.png new file mode 100644 index 000000000..dd88f053f Binary files /dev/null and b/imgs/icons/10040.png differ diff --git a/imgs/icons/10041.png b/imgs/icons/10041.png new file mode 100644 index 000000000..a7ef3955b Binary files /dev/null and b/imgs/icons/10041.png differ diff --git a/imgs/icons/10042.png b/imgs/icons/10042.png new file mode 100644 index 000000000..e7e662111 Binary files /dev/null and b/imgs/icons/10042.png differ diff --git a/imgs/icons/10043.png b/imgs/icons/10043.png new file mode 100644 index 000000000..7e461517d Binary files /dev/null and b/imgs/icons/10043.png differ diff --git a/imgs/icons/10044.png b/imgs/icons/10044.png new file mode 100644 index 000000000..7f15a8191 Binary files /dev/null and b/imgs/icons/10044.png differ diff --git a/imgs/icons/10045.png b/imgs/icons/10045.png new file mode 100644 index 000000000..1af2c1788 Binary files /dev/null and b/imgs/icons/10045.png differ diff --git a/imgs/icons/10046.png b/imgs/icons/10046.png new file mode 100644 index 000000000..a3f807919 Binary files /dev/null and b/imgs/icons/10046.png differ diff --git a/imgs/icons/10047.png b/imgs/icons/10047.png new file mode 100644 index 000000000..675933463 Binary files /dev/null and b/imgs/icons/10047.png differ diff --git a/imgs/icons/10048.png b/imgs/icons/10048.png new file mode 100644 index 000000000..034d5d66f Binary files /dev/null and b/imgs/icons/10048.png differ diff --git a/imgs/icons/10049.png b/imgs/icons/10049.png new file mode 100644 index 000000000..3dfe71a0c Binary files /dev/null and b/imgs/icons/10049.png differ diff --git a/imgs/icons/10050.png b/imgs/icons/10050.png new file mode 100644 index 000000000..fd546101e Binary files /dev/null and b/imgs/icons/10050.png differ diff --git a/imgs/icons/10051.png b/imgs/icons/10051.png new file mode 100644 index 000000000..84bc787f9 Binary files /dev/null and b/imgs/icons/10051.png differ diff --git a/imgs/icons/10052.png b/imgs/icons/10052.png new file mode 100644 index 000000000..448243088 Binary files /dev/null and b/imgs/icons/10052.png differ diff --git a/imgs/icons/10053.png b/imgs/icons/10053.png new file mode 100644 index 000000000..c8ae676d7 Binary files /dev/null and b/imgs/icons/10053.png differ diff --git a/imgs/icons/10054.png b/imgs/icons/10054.png new file mode 100644 index 000000000..71ea09614 Binary files /dev/null and b/imgs/icons/10054.png differ diff --git a/imgs/icons/10055.png b/imgs/icons/10055.png new file mode 100644 index 000000000..35e3f9507 Binary files /dev/null and b/imgs/icons/10055.png differ diff --git a/imgs/icons/10056.png b/imgs/icons/10056.png new file mode 100644 index 000000000..c8ed67a64 Binary files /dev/null and b/imgs/icons/10056.png differ diff --git a/imgs/icons/10057.png b/imgs/icons/10057.png new file mode 100644 index 000000000..1e14c6784 Binary files /dev/null and b/imgs/icons/10057.png differ diff --git a/imgs/icons/10058.png b/imgs/icons/10058.png new file mode 100644 index 000000000..eb89cf09a Binary files /dev/null and b/imgs/icons/10058.png differ diff --git a/imgs/icons/1007.png b/imgs/icons/1007.png new file mode 100644 index 000000000..238437da8 Binary files /dev/null and b/imgs/icons/1007.png differ diff --git a/imgs/icons/10071.png b/imgs/icons/10071.png new file mode 100644 index 000000000..ff27fb97f Binary files /dev/null and b/imgs/icons/10071.png differ diff --git a/imgs/icons/10073.png b/imgs/icons/10073.png new file mode 100644 index 000000000..d7fc98f29 Binary files /dev/null and b/imgs/icons/10073.png differ diff --git a/imgs/icons/10074.png b/imgs/icons/10074.png new file mode 100644 index 000000000..f3d02a2c5 Binary files /dev/null and b/imgs/icons/10074.png differ diff --git a/imgs/icons/10075.png b/imgs/icons/10075.png new file mode 100644 index 000000000..8f75eb1ba Binary files /dev/null and b/imgs/icons/10075.png differ diff --git a/imgs/icons/10076.png b/imgs/icons/10076.png new file mode 100644 index 000000000..1b0c12d40 Binary files /dev/null and b/imgs/icons/10076.png differ diff --git a/imgs/icons/10077.png b/imgs/icons/10077.png new file mode 100644 index 000000000..1fda39280 Binary files /dev/null and b/imgs/icons/10077.png differ diff --git a/imgs/icons/10078.png b/imgs/icons/10078.png new file mode 100644 index 000000000..07216643f Binary files /dev/null and b/imgs/icons/10078.png differ diff --git a/imgs/icons/10079.png b/imgs/icons/10079.png new file mode 100644 index 000000000..2b3f825d2 Binary files /dev/null and b/imgs/icons/10079.png differ diff --git a/imgs/icons/10132.png b/imgs/icons/10132.png new file mode 100644 index 000000000..fb59bf1cb Binary files /dev/null and b/imgs/icons/10132.png differ diff --git a/imgs/icons/99_9.png b/imgs/icons/10144.png similarity index 100% rename from imgs/icons/99_9.png rename to imgs/icons/10144.png diff --git a/imgs/icons/79_9.png b/imgs/icons/10149.png similarity index 100% rename from imgs/icons/79_9.png rename to imgs/icons/10149.png diff --git a/imgs/icons/10151.png b/imgs/icons/10151.png new file mode 100644 index 000000000..f28075644 Binary files /dev/null and b/imgs/icons/10151.png differ diff --git a/imgs/icons/10153.png b/imgs/icons/10153.png new file mode 100644 index 000000000..57abc8770 Binary files /dev/null and b/imgs/icons/10153.png differ diff --git a/imgs/icons/101_4.png b/imgs/icons/10158.png similarity index 100% rename from imgs/icons/101_4.png rename to imgs/icons/10158.png diff --git a/imgs/icons/10159.png b/imgs/icons/10159.png new file mode 100644 index 000000000..e7d5f4b07 Binary files /dev/null and b/imgs/icons/10159.png differ diff --git a/imgs/icons/10162.png b/imgs/icons/10162.png new file mode 100644 index 000000000..e3513820b Binary files /dev/null and b/imgs/icons/10162.png differ diff --git a/imgs/icons/10176.png b/imgs/icons/10176.png new file mode 100644 index 000000000..fa95d4998 Binary files /dev/null and b/imgs/icons/10176.png differ diff --git a/imgs/icons/10190.png b/imgs/icons/10190.png new file mode 100644 index 000000000..fa6e1ad9c Binary files /dev/null and b/imgs/icons/10190.png differ diff --git a/imgs/icons/10256.png b/imgs/icons/10256.png new file mode 100644 index 000000000..d537be9bb Binary files /dev/null and b/imgs/icons/10256.png differ diff --git a/imgs/icons/1_3.png b/imgs/icons/1029.png similarity index 100% rename from imgs/icons/1_3.png rename to imgs/icons/1029.png diff --git a/imgs/icons/1_8.png b/imgs/icons/1030.png similarity index 100% rename from imgs/icons/1_8.png rename to imgs/icons/1030.png diff --git a/imgs/icons/1_6.png b/imgs/icons/1031.png similarity index 100% rename from imgs/icons/1_6.png rename to imgs/icons/1031.png diff --git a/imgs/icons/1_7.png b/imgs/icons/1033.png similarity index 100% rename from imgs/icons/1_7.png rename to imgs/icons/1033.png diff --git a/imgs/icons/1_2.png b/imgs/icons/1035.png similarity index 100% rename from imgs/icons/1_2.png rename to imgs/icons/1035.png diff --git a/imgs/icons/4_10.png b/imgs/icons/104.png similarity index 100% rename from imgs/icons/4_10.png rename to imgs/icons/104.png diff --git a/imgs/icons/3_6.png b/imgs/icons/1041.png similarity index 100% rename from imgs/icons/3_6.png rename to imgs/icons/1041.png diff --git a/imgs/icons/2_12.png b/imgs/icons/1042.png similarity index 100% rename from imgs/icons/2_12.png rename to imgs/icons/1042.png diff --git a/imgs/icons/2_5.png b/imgs/icons/1044.png similarity index 100% rename from imgs/icons/2_5.png rename to imgs/icons/1044.png diff --git a/imgs/icons/5_12.png b/imgs/icons/1046.png similarity index 100% rename from imgs/icons/5_12.png rename to imgs/icons/1046.png diff --git a/imgs/icons/15_9.png b/imgs/icons/1047.png similarity index 100% rename from imgs/icons/15_9.png rename to imgs/icons/1047.png diff --git a/imgs/icons/4_11.png b/imgs/icons/105.png similarity index 100% rename from imgs/icons/4_11.png rename to imgs/icons/105.png diff --git a/imgs/icons/3_11.png b/imgs/icons/106.png similarity index 100% rename from imgs/icons/3_11.png rename to imgs/icons/106.png diff --git a/imgs/icons/12_8.png b/imgs/icons/1061.png similarity index 100% rename from imgs/icons/12_8.png rename to imgs/icons/1061.png diff --git a/imgs/icons/3_10.png b/imgs/icons/107.png similarity index 100% rename from imgs/icons/3_10.png rename to imgs/icons/107.png diff --git a/imgs/icons/107_4.png b/imgs/icons/107_4.png deleted file mode 100644 index e37ca2e9f..000000000 Binary files a/imgs/icons/107_4.png and /dev/null differ diff --git a/imgs/icons/11_16.png b/imgs/icons/1084.png similarity index 100% rename from imgs/icons/11_16.png rename to imgs/icons/1084.png diff --git a/imgs/icons/108_22.png b/imgs/icons/108_22.png deleted file mode 100644 index d3cfa6aed..000000000 Binary files a/imgs/icons/108_22.png and /dev/null differ diff --git a/imgs/icons/4_12.png b/imgs/icons/109.png similarity index 100% rename from imgs/icons/4_12.png rename to imgs/icons/109.png diff --git a/imgs/icons/105_46.png b/imgs/icons/10932.png similarity index 100% rename from imgs/icons/105_46.png rename to imgs/icons/10932.png diff --git a/imgs/icons/105_47.png b/imgs/icons/10933.png similarity index 100% rename from imgs/icons/105_47.png rename to imgs/icons/10933.png diff --git a/imgs/icons/105_48.png b/imgs/icons/10934.png similarity index 100% rename from imgs/icons/105_48.png rename to imgs/icons/10934.png diff --git a/imgs/icons/105_49.png b/imgs/icons/10935.png similarity index 100% rename from imgs/icons/105_49.png rename to imgs/icons/10935.png diff --git a/imgs/icons/107_1.png b/imgs/icons/10940.png similarity index 100% rename from imgs/icons/107_1.png rename to imgs/icons/10940.png diff --git a/imgs/icons/107_2.png b/imgs/icons/10941.png similarity index 100% rename from imgs/icons/107_2.png rename to imgs/icons/10941.png diff --git a/imgs/icons/107_3.png b/imgs/icons/10942.png similarity index 100% rename from imgs/icons/107_3.png rename to imgs/icons/10942.png diff --git a/imgs/icons/5_1.png b/imgs/icons/110.png similarity index 100% rename from imgs/icons/5_1.png rename to imgs/icons/110.png diff --git a/imgs/icons/4_9.png b/imgs/icons/111.png similarity index 100% rename from imgs/icons/4_9.png rename to imgs/icons/111.png diff --git a/imgs/icons/3_4.png b/imgs/icons/112.png similarity index 100% rename from imgs/icons/3_4.png rename to imgs/icons/112.png diff --git a/imgs/icons/8_1.png b/imgs/icons/1131.png similarity index 100% rename from imgs/icons/8_1.png rename to imgs/icons/1131.png diff --git a/imgs/icons/8_2.png b/imgs/icons/1139.png similarity index 100% rename from imgs/icons/8_2.png rename to imgs/icons/1139.png diff --git a/imgs/icons/113_1.png b/imgs/icons/113_1.png deleted file mode 100644 index f2def6839..000000000 Binary files a/imgs/icons/113_1.png and /dev/null differ diff --git a/imgs/icons/113_2.png b/imgs/icons/113_2.png deleted file mode 100644 index 6cfcead58..000000000 Binary files a/imgs/icons/113_2.png and /dev/null differ diff --git a/imgs/icons/113_3.png b/imgs/icons/113_3.png deleted file mode 100644 index e91832585..000000000 Binary files a/imgs/icons/113_3.png and /dev/null differ diff --git a/imgs/icons/8_3.png b/imgs/icons/1140.png similarity index 100% rename from imgs/icons/8_3.png rename to imgs/icons/1140.png diff --git a/imgs/icons/8_4.png b/imgs/icons/1141.png similarity index 100% rename from imgs/icons/8_4.png rename to imgs/icons/1141.png diff --git a/imgs/icons/8_5.png b/imgs/icons/1142.png similarity index 100% rename from imgs/icons/8_5.png rename to imgs/icons/1142.png diff --git a/imgs/icons/8_6.png b/imgs/icons/1143.png similarity index 100% rename from imgs/icons/8_6.png rename to imgs/icons/1143.png diff --git a/imgs/icons/8_7.png b/imgs/icons/1144.png similarity index 100% rename from imgs/icons/8_7.png rename to imgs/icons/1144.png diff --git a/imgs/icons/8_8.png b/imgs/icons/1145.png similarity index 100% rename from imgs/icons/8_8.png rename to imgs/icons/1145.png diff --git a/imgs/icons/1159.png b/imgs/icons/1159.png new file mode 100644 index 000000000..b7e6d33b6 Binary files /dev/null and b/imgs/icons/1159.png differ diff --git a/imgs/icons/1162.png b/imgs/icons/1162.png new file mode 100644 index 000000000..ed4e2b79a Binary files /dev/null and b/imgs/icons/1162.png differ diff --git a/imgs/icons/27_5.png b/imgs/icons/1171.png similarity index 100% rename from imgs/icons/27_5.png rename to imgs/icons/1171.png diff --git a/imgs/icons/26_16.png b/imgs/icons/1172.png similarity index 100% rename from imgs/icons/26_16.png rename to imgs/icons/1172.png diff --git a/imgs/icons/26_15.png b/imgs/icons/1173.png similarity index 100% rename from imgs/icons/26_15.png rename to imgs/icons/1173.png diff --git a/imgs/icons/26_13.png b/imgs/icons/1174.png similarity index 100% rename from imgs/icons/26_13.png rename to imgs/icons/1174.png diff --git a/imgs/icons/26_12.png b/imgs/icons/1175.png similarity index 100% rename from imgs/icons/26_12.png rename to imgs/icons/1175.png diff --git a/imgs/icons/1177.png b/imgs/icons/1177.png new file mode 100644 index 000000000..b734ec22e Binary files /dev/null and b/imgs/icons/1177.png differ diff --git a/imgs/icons/1178.png b/imgs/icons/1178.png new file mode 100644 index 000000000..f6063e58e Binary files /dev/null and b/imgs/icons/1178.png differ diff --git a/imgs/icons/1179.png b/imgs/icons/1179.png new file mode 100644 index 000000000..cd760a976 Binary files /dev/null and b/imgs/icons/1179.png differ diff --git a/imgs/icons/1180.png b/imgs/icons/1180.png new file mode 100644 index 000000000..a77d421e0 Binary files /dev/null and b/imgs/icons/1180.png differ diff --git a/imgs/icons/1181.png b/imgs/icons/1181.png new file mode 100644 index 000000000..5d2f6be89 Binary files /dev/null and b/imgs/icons/1181.png differ diff --git a/imgs/icons/1182.png b/imgs/icons/1182.png new file mode 100644 index 000000000..e336ec855 Binary files /dev/null and b/imgs/icons/1182.png differ diff --git a/imgs/icons/1183.png b/imgs/icons/1183.png new file mode 100644 index 000000000..77c48aff0 Binary files /dev/null and b/imgs/icons/1183.png differ diff --git a/imgs/icons/1184.png b/imgs/icons/1184.png new file mode 100644 index 000000000..9a2c59ba3 Binary files /dev/null and b/imgs/icons/1184.png differ diff --git a/imgs/icons/1185.png b/imgs/icons/1185.png new file mode 100644 index 000000000..613c03444 Binary files /dev/null and b/imgs/icons/1185.png differ diff --git a/imgs/icons/1186.png b/imgs/icons/1186.png new file mode 100644 index 000000000..eb43e69e0 Binary files /dev/null and b/imgs/icons/1186.png differ diff --git a/imgs/icons/1187.png b/imgs/icons/1187.png new file mode 100644 index 000000000..caba34554 Binary files /dev/null and b/imgs/icons/1187.png differ diff --git a/imgs/icons/1188.png b/imgs/icons/1188.png new file mode 100644 index 000000000..cbefa460f Binary files /dev/null and b/imgs/icons/1188.png differ diff --git a/imgs/icons/1189.png b/imgs/icons/1189.png new file mode 100644 index 000000000..67f9a96e5 Binary files /dev/null and b/imgs/icons/1189.png differ diff --git a/imgs/icons/118_7.png b/imgs/icons/118_7.png deleted file mode 100644 index 42ef21230..000000000 Binary files a/imgs/icons/118_7.png and /dev/null differ diff --git a/imgs/icons/1190.png b/imgs/icons/1190.png new file mode 100644 index 000000000..d7f7c9085 Binary files /dev/null and b/imgs/icons/1190.png differ diff --git a/imgs/icons/10_15.png b/imgs/icons/1191.png similarity index 100% rename from imgs/icons/10_15.png rename to imgs/icons/1191.png diff --git a/imgs/icons/1192.png b/imgs/icons/1192.png new file mode 100644 index 000000000..3a580d066 Binary files /dev/null and b/imgs/icons/1192.png differ diff --git a/imgs/icons/1193.png b/imgs/icons/1193.png new file mode 100644 index 000000000..59d035b67 Binary files /dev/null and b/imgs/icons/1193.png differ diff --git a/imgs/icons/1194.png b/imgs/icons/1194.png new file mode 100644 index 000000000..2c3a4ede9 Binary files /dev/null and b/imgs/icons/1194.png differ diff --git a/imgs/icons/1195.png b/imgs/icons/1195.png new file mode 100644 index 000000000..fc70016fc Binary files /dev/null and b/imgs/icons/1195.png differ diff --git a/imgs/icons/11_4.png b/imgs/icons/1196.png similarity index 100% rename from imgs/icons/11_4.png rename to imgs/icons/1196.png diff --git a/imgs/icons/1198.png b/imgs/icons/1198.png new file mode 100644 index 000000000..407fd23e1 Binary files /dev/null and b/imgs/icons/1198.png differ diff --git a/imgs/icons/1199.png b/imgs/icons/1199.png new file mode 100644 index 000000000..3a623a37d Binary files /dev/null and b/imgs/icons/1199.png differ diff --git a/imgs/icons/1200.png b/imgs/icons/1200.png new file mode 100644 index 000000000..eaf3e3537 Binary files /dev/null and b/imgs/icons/1200.png differ diff --git a/imgs/icons/1201.png b/imgs/icons/1201.png new file mode 100644 index 000000000..54c7278ef Binary files /dev/null and b/imgs/icons/1201.png differ diff --git a/imgs/icons/1204.png b/imgs/icons/1204.png new file mode 100644 index 000000000..7227ba715 Binary files /dev/null and b/imgs/icons/1204.png differ diff --git a/imgs/icons/1205.png b/imgs/icons/1205.png new file mode 100644 index 000000000..14ebe35d6 Binary files /dev/null and b/imgs/icons/1205.png differ diff --git a/imgs/icons/1206.png b/imgs/icons/1206.png new file mode 100644 index 000000000..9f7512912 Binary files /dev/null and b/imgs/icons/1206.png differ diff --git a/imgs/icons/1207.png b/imgs/icons/1207.png new file mode 100644 index 000000000..c71e21d99 Binary files /dev/null and b/imgs/icons/1207.png differ diff --git a/imgs/icons/1209.png b/imgs/icons/1209.png new file mode 100644 index 000000000..28f6399e6 Binary files /dev/null and b/imgs/icons/1209.png differ diff --git a/imgs/icons/123_5.png b/imgs/icons/123_5.png deleted file mode 100644 index c360369ca..000000000 Binary files a/imgs/icons/123_5.png and /dev/null differ diff --git a/imgs/icons/123_8.png b/imgs/icons/123_8.png deleted file mode 100644 index 4bf986d3d..000000000 Binary files a/imgs/icons/123_8.png and /dev/null differ diff --git a/imgs/icons/124_11.png b/imgs/icons/124_11.png deleted file mode 100644 index 12e664125..000000000 Binary files a/imgs/icons/124_11.png and /dev/null differ diff --git a/imgs/icons/125_1.png b/imgs/icons/125_1.png deleted file mode 100644 index 4d4a263e7..000000000 Binary files a/imgs/icons/125_1.png and /dev/null differ diff --git a/imgs/icons/1269.png b/imgs/icons/1269.png new file mode 100644 index 000000000..ca928c60f Binary files /dev/null and b/imgs/icons/1269.png differ diff --git a/imgs/icons/126_1.png b/imgs/icons/126_1.png deleted file mode 100644 index 0a4c4b489..000000000 Binary files a/imgs/icons/126_1.png and /dev/null differ diff --git a/imgs/icons/1270.png b/imgs/icons/1270.png new file mode 100644 index 000000000..36e521c6e Binary files /dev/null and b/imgs/icons/1270.png differ diff --git a/imgs/icons/1271.png b/imgs/icons/1271.png new file mode 100644 index 000000000..aa1364e90 Binary files /dev/null and b/imgs/icons/1271.png differ diff --git a/imgs/icons/1272.png b/imgs/icons/1272.png new file mode 100644 index 000000000..1987c069e Binary files /dev/null and b/imgs/icons/1272.png differ diff --git a/imgs/icons/1273.png b/imgs/icons/1273.png new file mode 100644 index 000000000..306ce2d9f Binary files /dev/null and b/imgs/icons/1273.png differ diff --git a/imgs/icons/1274.png b/imgs/icons/1274.png new file mode 100644 index 000000000..1f93e4ffe Binary files /dev/null and b/imgs/icons/1274.png differ diff --git a/imgs/icons/1275.png b/imgs/icons/1275.png new file mode 100644 index 000000000..3371be4af Binary files /dev/null and b/imgs/icons/1275.png differ diff --git a/imgs/icons/1277.png b/imgs/icons/1277.png new file mode 100644 index 000000000..ace445b30 Binary files /dev/null and b/imgs/icons/1277.png differ diff --git a/imgs/icons/1279.png b/imgs/icons/1279.png new file mode 100644 index 000000000..43eec2b28 Binary files /dev/null and b/imgs/icons/1279.png differ diff --git a/imgs/icons/1282.png b/imgs/icons/1282.png new file mode 100644 index 000000000..3aa3c5619 Binary files /dev/null and b/imgs/icons/1282.png differ diff --git a/imgs/icons/12_4.png b/imgs/icons/1283.png similarity index 100% rename from imgs/icons/12_4.png rename to imgs/icons/1283.png diff --git a/imgs/icons/12_6.png b/imgs/icons/1284.png similarity index 100% rename from imgs/icons/12_6.png rename to imgs/icons/1284.png diff --git a/imgs/icons/14_2.png b/imgs/icons/1285.png similarity index 100% rename from imgs/icons/14_2.png rename to imgs/icons/1285.png diff --git a/imgs/icons/14_3.png b/imgs/icons/1286.png similarity index 100% rename from imgs/icons/14_3.png rename to imgs/icons/1286.png diff --git a/imgs/icons/14_4.png b/imgs/icons/1287.png similarity index 100% rename from imgs/icons/14_4.png rename to imgs/icons/1287.png diff --git a/imgs/icons/14_5.png b/imgs/icons/1288.png similarity index 100% rename from imgs/icons/14_5.png rename to imgs/icons/1288.png diff --git a/imgs/icons/14_6.png b/imgs/icons/1289.png similarity index 100% rename from imgs/icons/14_6.png rename to imgs/icons/1289.png diff --git a/imgs/icons/128_1.png b/imgs/icons/128_1.png deleted file mode 100644 index 6375f6644..000000000 Binary files a/imgs/icons/128_1.png and /dev/null differ diff --git a/imgs/icons/14_7.png b/imgs/icons/1290.png similarity index 100% rename from imgs/icons/14_7.png rename to imgs/icons/1290.png diff --git a/imgs/icons/14_8.png b/imgs/icons/1291.png similarity index 100% rename from imgs/icons/14_8.png rename to imgs/icons/1291.png diff --git a/imgs/icons/14_9.png b/imgs/icons/1292.png similarity index 100% rename from imgs/icons/14_9.png rename to imgs/icons/1292.png diff --git a/imgs/icons/14_10.png b/imgs/icons/1293.png similarity index 100% rename from imgs/icons/14_10.png rename to imgs/icons/1293.png diff --git a/imgs/icons/14_11.png b/imgs/icons/1294.png similarity index 100% rename from imgs/icons/14_11.png rename to imgs/icons/1294.png diff --git a/imgs/icons/14_12.png b/imgs/icons/1295.png similarity index 100% rename from imgs/icons/14_12.png rename to imgs/icons/1295.png diff --git a/imgs/icons/14_13.png b/imgs/icons/1296.png similarity index 100% rename from imgs/icons/14_13.png rename to imgs/icons/1296.png diff --git a/imgs/icons/14_14.png b/imgs/icons/1297.png similarity index 100% rename from imgs/icons/14_14.png rename to imgs/icons/1297.png diff --git a/imgs/icons/14_15.png b/imgs/icons/1298.png similarity index 100% rename from imgs/icons/14_15.png rename to imgs/icons/1298.png diff --git a/imgs/icons/14_16.png b/imgs/icons/1299.png similarity index 100% rename from imgs/icons/14_16.png rename to imgs/icons/1299.png diff --git a/imgs/icons/15_1.png b/imgs/icons/1300.png similarity index 100% rename from imgs/icons/15_1.png rename to imgs/icons/1300.png diff --git a/imgs/icons/15_2.png b/imgs/icons/1301.png similarity index 100% rename from imgs/icons/15_2.png rename to imgs/icons/1301.png diff --git a/imgs/icons/15_3.png b/imgs/icons/1302.png similarity index 100% rename from imgs/icons/15_3.png rename to imgs/icons/1302.png diff --git a/imgs/icons/15_4.png b/imgs/icons/1303.png similarity index 100% rename from imgs/icons/15_4.png rename to imgs/icons/1303.png diff --git a/imgs/icons/15_5.png b/imgs/icons/1304.png similarity index 100% rename from imgs/icons/15_5.png rename to imgs/icons/1304.png diff --git a/imgs/icons/15_6.png b/imgs/icons/1305.png similarity index 100% rename from imgs/icons/15_6.png rename to imgs/icons/1305.png diff --git a/imgs/icons/15_7.png b/imgs/icons/1306.png similarity index 100% rename from imgs/icons/15_7.png rename to imgs/icons/1306.png diff --git a/imgs/icons/15_8.png b/imgs/icons/1307.png similarity index 100% rename from imgs/icons/15_8.png rename to imgs/icons/1307.png diff --git a/imgs/icons/15_10.png b/imgs/icons/1310.png similarity index 100% rename from imgs/icons/15_10.png rename to imgs/icons/1310.png diff --git a/imgs/icons/15_11.png b/imgs/icons/1311.png similarity index 100% rename from imgs/icons/15_11.png rename to imgs/icons/1311.png diff --git a/imgs/icons/15_12.png b/imgs/icons/1312.png similarity index 100% rename from imgs/icons/15_12.png rename to imgs/icons/1312.png diff --git a/imgs/icons/15_13.png b/imgs/icons/1313.png similarity index 100% rename from imgs/icons/15_13.png rename to imgs/icons/1313.png diff --git a/imgs/icons/15_14.png b/imgs/icons/1314.png similarity index 100% rename from imgs/icons/15_14.png rename to imgs/icons/1314.png diff --git a/imgs/icons/15_15.png b/imgs/icons/1315.png similarity index 100% rename from imgs/icons/15_15.png rename to imgs/icons/1315.png diff --git a/imgs/icons/15_16.png b/imgs/icons/1316.png similarity index 100% rename from imgs/icons/15_16.png rename to imgs/icons/1316.png diff --git a/imgs/icons/16_1.png b/imgs/icons/1317.png similarity index 100% rename from imgs/icons/16_1.png rename to imgs/icons/1317.png diff --git a/imgs/icons/16_2.png b/imgs/icons/1318.png similarity index 100% rename from imgs/icons/16_2.png rename to imgs/icons/1318.png diff --git a/imgs/icons/16_3.png b/imgs/icons/1319.png similarity index 100% rename from imgs/icons/16_3.png rename to imgs/icons/1319.png diff --git a/imgs/icons/16_4.png b/imgs/icons/1320.png similarity index 100% rename from imgs/icons/16_4.png rename to imgs/icons/1320.png diff --git a/imgs/icons/16_5.png b/imgs/icons/1321.png similarity index 100% rename from imgs/icons/16_5.png rename to imgs/icons/1321.png diff --git a/imgs/icons/16_6.png b/imgs/icons/1322.png similarity index 100% rename from imgs/icons/16_6.png rename to imgs/icons/1322.png diff --git a/imgs/icons/16_7.png b/imgs/icons/1323.png similarity index 100% rename from imgs/icons/16_7.png rename to imgs/icons/1323.png diff --git a/imgs/icons/16_8.png b/imgs/icons/1324.png similarity index 100% rename from imgs/icons/16_8.png rename to imgs/icons/1324.png diff --git a/imgs/icons/16_9.png b/imgs/icons/1325.png similarity index 100% rename from imgs/icons/16_9.png rename to imgs/icons/1325.png diff --git a/imgs/icons/16_10.png b/imgs/icons/1326.png similarity index 100% rename from imgs/icons/16_10.png rename to imgs/icons/1326.png diff --git a/imgs/icons/16_11.png b/imgs/icons/1327.png similarity index 100% rename from imgs/icons/16_11.png rename to imgs/icons/1327.png diff --git a/imgs/icons/16_12.png b/imgs/icons/1328.png similarity index 100% rename from imgs/icons/16_12.png rename to imgs/icons/1328.png diff --git a/imgs/icons/16_13.png b/imgs/icons/1329.png similarity index 100% rename from imgs/icons/16_13.png rename to imgs/icons/1329.png diff --git a/imgs/icons/16_14.png b/imgs/icons/1330.png similarity index 100% rename from imgs/icons/16_14.png rename to imgs/icons/1330.png diff --git a/imgs/icons/16_15.png b/imgs/icons/1331.png similarity index 100% rename from imgs/icons/16_15.png rename to imgs/icons/1331.png diff --git a/imgs/icons/16_16.png b/imgs/icons/1332.png similarity index 100% rename from imgs/icons/16_16.png rename to imgs/icons/1332.png diff --git a/imgs/icons/20_1.png b/imgs/icons/1333.png similarity index 100% rename from imgs/icons/20_1.png rename to imgs/icons/1333.png diff --git a/imgs/icons/20_5.png b/imgs/icons/1334.png similarity index 100% rename from imgs/icons/20_5.png rename to imgs/icons/1334.png diff --git a/imgs/icons/20_9.png b/imgs/icons/1335.png similarity index 100% rename from imgs/icons/20_9.png rename to imgs/icons/1335.png diff --git a/imgs/icons/20_13.png b/imgs/icons/1336.png similarity index 100% rename from imgs/icons/20_13.png rename to imgs/icons/1336.png diff --git a/imgs/icons/20_7.png b/imgs/icons/1337.png similarity index 100% rename from imgs/icons/20_7.png rename to imgs/icons/1337.png diff --git a/imgs/icons/20_11.png b/imgs/icons/1338.png similarity index 100% rename from imgs/icons/20_11.png rename to imgs/icons/1338.png diff --git a/imgs/icons/20_15.png b/imgs/icons/1339.png similarity index 100% rename from imgs/icons/20_15.png rename to imgs/icons/1339.png diff --git a/imgs/icons/20_3.png b/imgs/icons/1340.png similarity index 100% rename from imgs/icons/20_3.png rename to imgs/icons/1340.png diff --git a/imgs/icons/21_1.png b/imgs/icons/1341.png similarity index 100% rename from imgs/icons/21_1.png rename to imgs/icons/1341.png diff --git a/imgs/icons/21_5.png b/imgs/icons/1342.png similarity index 100% rename from imgs/icons/21_5.png rename to imgs/icons/1342.png diff --git a/imgs/icons/21_9.png b/imgs/icons/1343.png similarity index 100% rename from imgs/icons/21_9.png rename to imgs/icons/1343.png diff --git a/imgs/icons/21_13.png b/imgs/icons/1344.png similarity index 100% rename from imgs/icons/21_13.png rename to imgs/icons/1344.png diff --git a/imgs/icons/12_16.png b/imgs/icons/1345.png similarity index 100% rename from imgs/icons/12_16.png rename to imgs/icons/1345.png diff --git a/imgs/icons/21_2.png b/imgs/icons/1346.png similarity index 100% rename from imgs/icons/21_2.png rename to imgs/icons/1346.png diff --git a/imgs/icons/21_6.png b/imgs/icons/1347.png similarity index 100% rename from imgs/icons/21_6.png rename to imgs/icons/1347.png diff --git a/imgs/icons/21_10.png b/imgs/icons/1348.png similarity index 100% rename from imgs/icons/21_10.png rename to imgs/icons/1348.png diff --git a/imgs/icons/21_14.png b/imgs/icons/1349.png similarity index 100% rename from imgs/icons/21_14.png rename to imgs/icons/1349.png diff --git a/imgs/icons/21_3.png b/imgs/icons/1350.png similarity index 100% rename from imgs/icons/21_3.png rename to imgs/icons/1350.png diff --git a/imgs/icons/21_7.png b/imgs/icons/1351.png similarity index 100% rename from imgs/icons/21_7.png rename to imgs/icons/1351.png diff --git a/imgs/icons/21_15.png b/imgs/icons/1352.png similarity index 100% rename from imgs/icons/21_15.png rename to imgs/icons/1352.png diff --git a/imgs/icons/21_11.png b/imgs/icons/1353.png similarity index 100% rename from imgs/icons/21_11.png rename to imgs/icons/1353.png diff --git a/imgs/icons/1356.png b/imgs/icons/1356.png new file mode 100644 index 000000000..618f22de3 Binary files /dev/null and b/imgs/icons/1356.png differ diff --git a/imgs/icons/1357.png b/imgs/icons/1357.png new file mode 100644 index 000000000..56cf482e1 Binary files /dev/null and b/imgs/icons/1357.png differ diff --git a/imgs/icons/1358.png b/imgs/icons/1358.png new file mode 100644 index 000000000..d8a707c42 Binary files /dev/null and b/imgs/icons/1358.png differ diff --git a/imgs/icons/1359.png b/imgs/icons/1359.png new file mode 100644 index 000000000..88e0c091e Binary files /dev/null and b/imgs/icons/1359.png differ diff --git a/imgs/icons/1360.png b/imgs/icons/1360.png new file mode 100644 index 000000000..d0871e331 Binary files /dev/null and b/imgs/icons/1360.png differ diff --git a/imgs/icons/1361.png b/imgs/icons/1361.png new file mode 100644 index 000000000..261269a80 Binary files /dev/null and b/imgs/icons/1361.png differ diff --git a/imgs/icons/1362.png b/imgs/icons/1362.png new file mode 100644 index 000000000..131ee25e4 Binary files /dev/null and b/imgs/icons/1362.png differ diff --git a/imgs/icons/1363.png b/imgs/icons/1363.png new file mode 100644 index 000000000..38facca0b Binary files /dev/null and b/imgs/icons/1363.png differ diff --git a/imgs/icons/1364.png b/imgs/icons/1364.png new file mode 100644 index 000000000..57afddfad Binary files /dev/null and b/imgs/icons/1364.png differ diff --git a/imgs/icons/1365.png b/imgs/icons/1365.png new file mode 100644 index 000000000..9379e8cc3 Binary files /dev/null and b/imgs/icons/1365.png differ diff --git a/imgs/icons/1366.png b/imgs/icons/1366.png new file mode 100644 index 000000000..019139ab7 Binary files /dev/null and b/imgs/icons/1366.png differ diff --git a/imgs/icons/1367.png b/imgs/icons/1367.png new file mode 100644 index 000000000..94dea16c0 Binary files /dev/null and b/imgs/icons/1367.png differ diff --git a/imgs/icons/1368.png b/imgs/icons/1368.png new file mode 100644 index 000000000..1860ff5f0 Binary files /dev/null and b/imgs/icons/1368.png differ diff --git a/imgs/icons/1369.png b/imgs/icons/1369.png new file mode 100644 index 000000000..b2062d26b Binary files /dev/null and b/imgs/icons/1369.png differ diff --git a/imgs/icons/1370.png b/imgs/icons/1370.png new file mode 100644 index 000000000..4fbcaebe5 Binary files /dev/null and b/imgs/icons/1370.png differ diff --git a/imgs/icons/1377.png b/imgs/icons/1377.png new file mode 100644 index 000000000..03d9f3ac8 Binary files /dev/null and b/imgs/icons/1377.png differ diff --git a/imgs/icons/22_1.png b/imgs/icons/1378.png similarity index 100% rename from imgs/icons/22_1.png rename to imgs/icons/1378.png diff --git a/imgs/icons/22_2.png b/imgs/icons/1379.png similarity index 100% rename from imgs/icons/22_2.png rename to imgs/icons/1379.png diff --git a/imgs/icons/4_1.png b/imgs/icons/138.png similarity index 100% rename from imgs/icons/4_1.png rename to imgs/icons/138.png diff --git a/imgs/icons/22_3.png b/imgs/icons/1380.png similarity index 100% rename from imgs/icons/22_3.png rename to imgs/icons/1380.png diff --git a/imgs/icons/22_4.png b/imgs/icons/1381.png similarity index 100% rename from imgs/icons/22_4.png rename to imgs/icons/1381.png diff --git a/imgs/icons/22_5.png b/imgs/icons/1382.png similarity index 100% rename from imgs/icons/22_5.png rename to imgs/icons/1382.png diff --git a/imgs/icons/22_6.png b/imgs/icons/1383.png similarity index 100% rename from imgs/icons/22_6.png rename to imgs/icons/1383.png diff --git a/imgs/icons/22_7.png b/imgs/icons/1384.png similarity index 100% rename from imgs/icons/22_7.png rename to imgs/icons/1384.png diff --git a/imgs/icons/22_9.png b/imgs/icons/1385.png similarity index 100% rename from imgs/icons/22_9.png rename to imgs/icons/1385.png diff --git a/imgs/icons/22_10.png b/imgs/icons/1386.png similarity index 100% rename from imgs/icons/22_10.png rename to imgs/icons/1386.png diff --git a/imgs/icons/22_11.png b/imgs/icons/1387.png similarity index 100% rename from imgs/icons/22_11.png rename to imgs/icons/1387.png diff --git a/imgs/icons/22_12.png b/imgs/icons/1388.png similarity index 100% rename from imgs/icons/22_12.png rename to imgs/icons/1388.png diff --git a/imgs/icons/22_13.png b/imgs/icons/1389.png similarity index 100% rename from imgs/icons/22_13.png rename to imgs/icons/1389.png diff --git a/imgs/icons/22_14.png b/imgs/icons/1390.png similarity index 100% rename from imgs/icons/22_14.png rename to imgs/icons/1390.png diff --git a/imgs/icons/22_15.png b/imgs/icons/1391.png similarity index 100% rename from imgs/icons/22_15.png rename to imgs/icons/1391.png diff --git a/imgs/icons/22_16.png b/imgs/icons/1392.png similarity index 100% rename from imgs/icons/22_16.png rename to imgs/icons/1392.png diff --git a/imgs/icons/22_17.png b/imgs/icons/1393.png similarity index 100% rename from imgs/icons/22_17.png rename to imgs/icons/1393.png diff --git a/imgs/icons/22_18.png b/imgs/icons/1394.png similarity index 100% rename from imgs/icons/22_18.png rename to imgs/icons/1394.png diff --git a/imgs/icons/22_19.png b/imgs/icons/1395.png similarity index 100% rename from imgs/icons/22_19.png rename to imgs/icons/1395.png diff --git a/imgs/icons/22_20.png b/imgs/icons/1396.png similarity index 100% rename from imgs/icons/22_20.png rename to imgs/icons/1396.png diff --git a/imgs/icons/22_21.png b/imgs/icons/1397.png similarity index 100% rename from imgs/icons/22_21.png rename to imgs/icons/1397.png diff --git a/imgs/icons/22_22.png b/imgs/icons/1398.png similarity index 100% rename from imgs/icons/22_22.png rename to imgs/icons/1398.png diff --git a/imgs/icons/22_23.png b/imgs/icons/1399.png similarity index 100% rename from imgs/icons/22_23.png rename to imgs/icons/1399.png diff --git a/imgs/icons/2_7.png b/imgs/icons/1400.png similarity index 100% rename from imgs/icons/2_7.png rename to imgs/icons/1400.png diff --git a/imgs/icons/22_24.png b/imgs/icons/1401.png similarity index 100% rename from imgs/icons/22_24.png rename to imgs/icons/1401.png diff --git a/imgs/icons/12_7.png b/imgs/icons/1405.png similarity index 100% rename from imgs/icons/12_7.png rename to imgs/icons/1405.png diff --git a/imgs/icons/1406.png b/imgs/icons/1406.png new file mode 100644 index 000000000..f5e4c43e8 Binary files /dev/null and b/imgs/icons/1406.png differ diff --git a/imgs/icons/26_1.png b/imgs/icons/1432.png similarity index 100% rename from imgs/icons/26_1.png rename to imgs/icons/1432.png diff --git a/imgs/icons/1435.png b/imgs/icons/1435.png new file mode 100644 index 000000000..a1c638b75 Binary files /dev/null and b/imgs/icons/1435.png differ diff --git a/imgs/icons/1436.png b/imgs/icons/1436.png new file mode 100644 index 000000000..b9df93b2a Binary files /dev/null and b/imgs/icons/1436.png differ diff --git a/imgs/icons/9_5.png b/imgs/icons/1443.png similarity index 100% rename from imgs/icons/9_5.png rename to imgs/icons/1443.png diff --git a/imgs/icons/25_4.png b/imgs/icons/1444.png similarity index 100% rename from imgs/icons/25_4.png rename to imgs/icons/1444.png diff --git a/imgs/icons/9_16.png b/imgs/icons/1446.png similarity index 100% rename from imgs/icons/9_16.png rename to imgs/icons/1446.png diff --git a/imgs/icons/5_11.png b/imgs/icons/15.png similarity index 100% rename from imgs/icons/5_11.png rename to imgs/icons/15.png diff --git a/imgs/icons/26_11.png b/imgs/icons/16.png similarity index 100% rename from imgs/icons/26_11.png rename to imgs/icons/16.png diff --git a/imgs/icons/5_7.png b/imgs/icons/1639.png similarity index 100% rename from imgs/icons/5_7.png rename to imgs/icons/1639.png diff --git a/imgs/icons/5_14.png b/imgs/icons/1640.png similarity index 100% rename from imgs/icons/5_14.png rename to imgs/icons/1640.png diff --git a/imgs/icons/1641.png b/imgs/icons/1641.png new file mode 100644 index 000000000..81d1024d4 Binary files /dev/null and b/imgs/icons/1641.png differ diff --git a/imgs/icons/1656.png b/imgs/icons/1656.png new file mode 100644 index 000000000..51cafb419 Binary files /dev/null and b/imgs/icons/1656.png differ diff --git a/imgs/icons/5_2.png b/imgs/icons/1666.png similarity index 100% rename from imgs/icons/5_2.png rename to imgs/icons/1666.png diff --git a/imgs/icons/1_5.png b/imgs/icons/1668.png similarity index 100% rename from imgs/icons/1_5.png rename to imgs/icons/1668.png diff --git a/imgs/icons/12_12.png b/imgs/icons/168.png similarity index 100% rename from imgs/icons/12_12.png rename to imgs/icons/168.png diff --git a/imgs/icons/21_12.png b/imgs/icons/169.png similarity index 100% rename from imgs/icons/21_12.png rename to imgs/icons/169.png diff --git a/imgs/icons/21_16.png b/imgs/icons/170.png similarity index 100% rename from imgs/icons/21_16.png rename to imgs/icons/170.png diff --git a/imgs/icons/34_1.png b/imgs/icons/1721.png similarity index 100% rename from imgs/icons/34_1.png rename to imgs/icons/1721.png diff --git a/imgs/icons/34_2.png b/imgs/icons/1722.png similarity index 100% rename from imgs/icons/34_2.png rename to imgs/icons/1722.png diff --git a/imgs/icons/27_9.png b/imgs/icons/1723.png similarity index 100% rename from imgs/icons/27_9.png rename to imgs/icons/1723.png diff --git a/imgs/icons/20_16.png b/imgs/icons/182.png similarity index 100% rename from imgs/icons/20_16.png rename to imgs/icons/182.png diff --git a/imgs/icons/20_4.png b/imgs/icons/183.png similarity index 100% rename from imgs/icons/20_4.png rename to imgs/icons/183.png diff --git a/imgs/icons/20_8.png b/imgs/icons/184.png similarity index 100% rename from imgs/icons/20_8.png rename to imgs/icons/184.png diff --git a/imgs/icons/20_12.png b/imgs/icons/185.png similarity index 100% rename from imgs/icons/20_12.png rename to imgs/icons/185.png diff --git a/imgs/icons/20_10.png b/imgs/icons/186.png similarity index 100% rename from imgs/icons/20_10.png rename to imgs/icons/186.png diff --git a/imgs/icons/20_14.png b/imgs/icons/187.png similarity index 100% rename from imgs/icons/20_14.png rename to imgs/icons/187.png diff --git a/imgs/icons/20_6.png b/imgs/icons/188.png similarity index 100% rename from imgs/icons/20_6.png rename to imgs/icons/188.png diff --git a/imgs/icons/20_2.png b/imgs/icons/189.png similarity index 100% rename from imgs/icons/20_2.png rename to imgs/icons/189.png diff --git a/imgs/icons/13_4.png b/imgs/icons/190.png similarity index 100% rename from imgs/icons/13_4.png rename to imgs/icons/190.png diff --git a/imgs/icons/13_8.png b/imgs/icons/191.png similarity index 100% rename from imgs/icons/13_8.png rename to imgs/icons/191.png diff --git a/imgs/icons/13_16.png b/imgs/icons/192.png similarity index 100% rename from imgs/icons/13_16.png rename to imgs/icons/192.png diff --git a/imgs/icons/13_12.png b/imgs/icons/193.png similarity index 100% rename from imgs/icons/13_12.png rename to imgs/icons/193.png diff --git a/imgs/icons/22_25.png b/imgs/icons/2028.png similarity index 100% rename from imgs/icons/22_25.png rename to imgs/icons/2028.png diff --git a/imgs/icons/22_26.png b/imgs/icons/2029.png similarity index 100% rename from imgs/icons/22_26.png rename to imgs/icons/2029.png diff --git a/imgs/icons/22_27.png b/imgs/icons/2030.png similarity index 100% rename from imgs/icons/22_27.png rename to imgs/icons/2030.png diff --git a/imgs/icons/22_28.png b/imgs/icons/2031.png similarity index 100% rename from imgs/icons/22_28.png rename to imgs/icons/2031.png diff --git a/imgs/icons/2037.png b/imgs/icons/2037.png new file mode 100644 index 000000000..ac8b6a90b Binary files /dev/null and b/imgs/icons/2037.png differ diff --git a/imgs/icons/2038.png b/imgs/icons/2038.png new file mode 100644 index 000000000..eff79fdc0 Binary files /dev/null and b/imgs/icons/2038.png differ diff --git a/imgs/icons/2039.png b/imgs/icons/2039.png new file mode 100644 index 000000000..b936e17fc Binary files /dev/null and b/imgs/icons/2039.png differ diff --git a/imgs/icons/2040.png b/imgs/icons/2040.png new file mode 100644 index 000000000..814c5f9d4 Binary files /dev/null and b/imgs/icons/2040.png differ diff --git a/imgs/icons/2041.png b/imgs/icons/2041.png new file mode 100644 index 000000000..a1115895a Binary files /dev/null and b/imgs/icons/2041.png differ diff --git a/imgs/icons/2042.png b/imgs/icons/2042.png new file mode 100644 index 000000000..350e65032 Binary files /dev/null and b/imgs/icons/2042.png differ diff --git a/imgs/icons/34_12.png b/imgs/icons/2053.png similarity index 100% rename from imgs/icons/34_12.png rename to imgs/icons/2053.png diff --git a/imgs/icons/34_15.png b/imgs/icons/2054.png similarity index 100% rename from imgs/icons/34_15.png rename to imgs/icons/2054.png diff --git a/imgs/icons/31_14.png b/imgs/icons/2060.png similarity index 100% rename from imgs/icons/31_14.png rename to imgs/icons/2060.png diff --git a/imgs/icons/31_15.png b/imgs/icons/2061.png similarity index 100% rename from imgs/icons/31_15.png rename to imgs/icons/2061.png diff --git a/imgs/icons/31_16.png b/imgs/icons/2062.png similarity index 100% rename from imgs/icons/31_16.png rename to imgs/icons/2062.png diff --git a/imgs/icons/34_16.png b/imgs/icons/2066.png similarity index 100% rename from imgs/icons/34_16.png rename to imgs/icons/2066.png diff --git a/imgs/icons/2093.png b/imgs/icons/2093.png new file mode 100644 index 000000000..22c30a5bd Binary files /dev/null and b/imgs/icons/2093.png differ diff --git a/imgs/icons/108_5.png b/imgs/icons/20939.png similarity index 100% rename from imgs/icons/108_5.png rename to imgs/icons/20939.png diff --git a/imgs/icons/2094.png b/imgs/icons/2094.png new file mode 100644 index 000000000..bdcd00cc6 Binary files /dev/null and b/imgs/icons/2094.png differ diff --git a/imgs/icons/108_6.png b/imgs/icons/20940.png similarity index 100% rename from imgs/icons/108_6.png rename to imgs/icons/20940.png diff --git a/imgs/icons/108_7.png b/imgs/icons/20941.png similarity index 100% rename from imgs/icons/108_7.png rename to imgs/icons/20941.png diff --git a/imgs/icons/108_8.png b/imgs/icons/20942.png similarity index 100% rename from imgs/icons/108_8.png rename to imgs/icons/20942.png diff --git a/imgs/icons/108_12.png b/imgs/icons/20943.png similarity index 100% rename from imgs/icons/108_12.png rename to imgs/icons/20943.png diff --git a/imgs/icons/108_13.png b/imgs/icons/20944.png similarity index 100% rename from imgs/icons/108_13.png rename to imgs/icons/20944.png diff --git a/imgs/icons/108_10.png b/imgs/icons/20945.png similarity index 100% rename from imgs/icons/108_10.png rename to imgs/icons/20945.png diff --git a/imgs/icons/108_11.png b/imgs/icons/20946.png similarity index 100% rename from imgs/icons/108_11.png rename to imgs/icons/20946.png diff --git a/imgs/icons/108_3.png b/imgs/icons/20947.png similarity index 100% rename from imgs/icons/108_3.png rename to imgs/icons/20947.png diff --git a/imgs/icons/108_4.png b/imgs/icons/20948.png similarity index 100% rename from imgs/icons/108_4.png rename to imgs/icons/20948.png diff --git a/imgs/icons/108_1.png b/imgs/icons/20949.png similarity index 100% rename from imgs/icons/108_1.png rename to imgs/icons/20949.png diff --git a/imgs/icons/2095.png b/imgs/icons/2095.png new file mode 100644 index 000000000..93651976c Binary files /dev/null and b/imgs/icons/2095.png differ diff --git a/imgs/icons/108_2.png b/imgs/icons/20950.png similarity index 100% rename from imgs/icons/108_2.png rename to imgs/icons/20950.png diff --git a/imgs/icons/108_20.png b/imgs/icons/20951.png similarity index 100% rename from imgs/icons/108_20.png rename to imgs/icons/20951.png diff --git a/imgs/icons/108_21.png b/imgs/icons/20952.png similarity index 100% rename from imgs/icons/108_21.png rename to imgs/icons/20952.png diff --git a/imgs/icons/108_18.png b/imgs/icons/20953.png similarity index 100% rename from imgs/icons/108_18.png rename to imgs/icons/20953.png diff --git a/imgs/icons/108_19.png b/imgs/icons/20954.png similarity index 100% rename from imgs/icons/108_19.png rename to imgs/icons/20954.png diff --git a/imgs/icons/108_16.png b/imgs/icons/20955.png similarity index 100% rename from imgs/icons/108_16.png rename to imgs/icons/20955.png diff --git a/imgs/icons/108_17.png b/imgs/icons/20956.png similarity index 100% rename from imgs/icons/108_17.png rename to imgs/icons/20956.png diff --git a/imgs/icons/108_14.png b/imgs/icons/20957.png similarity index 100% rename from imgs/icons/108_14.png rename to imgs/icons/20957.png diff --git a/imgs/icons/108_15.png b/imgs/icons/20958.png similarity index 100% rename from imgs/icons/108_15.png rename to imgs/icons/20958.png diff --git a/imgs/icons/35_9.png b/imgs/icons/2096.png similarity index 100% rename from imgs/icons/35_9.png rename to imgs/icons/2096.png diff --git a/imgs/icons/21.png b/imgs/icons/21.png new file mode 100644 index 000000000..6f939fd59 Binary files /dev/null and b/imgs/icons/21.png differ diff --git a/imgs/icons/2100.png b/imgs/icons/2100.png new file mode 100644 index 000000000..5804318d4 Binary files /dev/null and b/imgs/icons/2100.png differ diff --git a/imgs/icons/35_1.png b/imgs/icons/2101.png similarity index 100% rename from imgs/icons/35_1.png rename to imgs/icons/2101.png diff --git a/imgs/icons/2102.png b/imgs/icons/2102.png new file mode 100644 index 000000000..d6c1261e9 Binary files /dev/null and b/imgs/icons/2102.png differ diff --git a/imgs/icons/107_10.png b/imgs/icons/21025.png similarity index 100% rename from imgs/icons/107_10.png rename to imgs/icons/21025.png diff --git a/imgs/icons/107_11.png b/imgs/icons/21026.png similarity index 100% rename from imgs/icons/107_11.png rename to imgs/icons/21026.png diff --git a/imgs/icons/107_12.png b/imgs/icons/21027.png similarity index 100% rename from imgs/icons/107_12.png rename to imgs/icons/21027.png diff --git a/imgs/icons/2103.png b/imgs/icons/2103.png new file mode 100644 index 000000000..8829a179e Binary files /dev/null and b/imgs/icons/2103.png differ diff --git a/imgs/icons/35_15.png b/imgs/icons/2104.png similarity index 100% rename from imgs/icons/35_15.png rename to imgs/icons/2104.png diff --git a/imgs/icons/35_14.png b/imgs/icons/2105.png similarity index 100% rename from imgs/icons/35_14.png rename to imgs/icons/2105.png diff --git a/imgs/icons/35_12.png b/imgs/icons/2106.png similarity index 100% rename from imgs/icons/35_12.png rename to imgs/icons/2106.png diff --git a/imgs/icons/21060.png b/imgs/icons/21060.png new file mode 100644 index 000000000..b54a25bbe Binary files /dev/null and b/imgs/icons/21060.png differ diff --git a/imgs/icons/21061.png b/imgs/icons/21061.png new file mode 100644 index 000000000..a5bba6449 Binary files /dev/null and b/imgs/icons/21061.png differ diff --git a/imgs/icons/21062.png b/imgs/icons/21062.png new file mode 100644 index 000000000..ec41d08bb Binary files /dev/null and b/imgs/icons/21062.png differ diff --git a/imgs/icons/21063.png b/imgs/icons/21063.png new file mode 100644 index 000000000..2fe06b932 Binary files /dev/null and b/imgs/icons/21063.png differ diff --git a/imgs/icons/21064.png b/imgs/icons/21064.png new file mode 100644 index 000000000..217f4c049 Binary files /dev/null and b/imgs/icons/21064.png differ diff --git a/imgs/icons/21065.png b/imgs/icons/21065.png new file mode 100644 index 000000000..6ab2e1883 Binary files /dev/null and b/imgs/icons/21065.png differ diff --git a/imgs/icons/21066.png b/imgs/icons/21066.png new file mode 100644 index 000000000..15f9ea9b9 Binary files /dev/null and b/imgs/icons/21066.png differ diff --git a/imgs/icons/109_1.png b/imgs/icons/21074.png similarity index 100% rename from imgs/icons/109_1.png rename to imgs/icons/21074.png diff --git a/imgs/icons/109_2.png b/imgs/icons/21075.png similarity index 100% rename from imgs/icons/109_2.png rename to imgs/icons/21075.png diff --git a/imgs/icons/21095.png b/imgs/icons/21095.png new file mode 100644 index 000000000..f8d8eddb2 Binary files /dev/null and b/imgs/icons/21095.png differ diff --git a/imgs/icons/21096.png b/imgs/icons/21096.png new file mode 100644 index 000000000..30b7dea4c Binary files /dev/null and b/imgs/icons/21096.png differ diff --git a/imgs/icons/21097.png b/imgs/icons/21097.png new file mode 100644 index 000000000..a8340de7e Binary files /dev/null and b/imgs/icons/21097.png differ diff --git a/imgs/icons/21098.png b/imgs/icons/21098.png new file mode 100644 index 000000000..f5a199dc4 Binary files /dev/null and b/imgs/icons/21098.png differ diff --git a/imgs/icons/1337_22.png b/imgs/icons/21378.png similarity index 100% rename from imgs/icons/1337_22.png rename to imgs/icons/21378.png diff --git a/imgs/icons/1337_21.png b/imgs/icons/21379.png similarity index 100% rename from imgs/icons/1337_21.png rename to imgs/icons/21379.png diff --git a/imgs/icons/21408.png b/imgs/icons/21408.png new file mode 100644 index 000000000..f99638a0c Binary files /dev/null and b/imgs/icons/21408.png differ diff --git a/imgs/icons/119_1.png b/imgs/icons/21409.png similarity index 100% rename from imgs/icons/119_1.png rename to imgs/icons/21409.png diff --git a/imgs/icons/21417.png b/imgs/icons/21417.png new file mode 100644 index 000000000..8dafde77a Binary files /dev/null and b/imgs/icons/21417.png differ diff --git a/imgs/icons/21418.png b/imgs/icons/21418.png new file mode 100644 index 000000000..5dbf9d744 Binary files /dev/null and b/imgs/icons/21418.png differ diff --git a/imgs/icons/21419.png b/imgs/icons/21419.png new file mode 100644 index 000000000..8d23a7748 Binary files /dev/null and b/imgs/icons/21419.png differ diff --git a/imgs/icons/21482.png b/imgs/icons/21482.png new file mode 100644 index 000000000..fbfd91d83 Binary files /dev/null and b/imgs/icons/21482.png differ diff --git a/imgs/icons/118_9.png b/imgs/icons/21483.png similarity index 100% rename from imgs/icons/118_9.png rename to imgs/icons/21483.png diff --git a/imgs/icons/118_10.png b/imgs/icons/21484.png similarity index 100% rename from imgs/icons/118_10.png rename to imgs/icons/21484.png diff --git a/imgs/icons/118_11.png b/imgs/icons/21485.png similarity index 100% rename from imgs/icons/118_11.png rename to imgs/icons/21485.png diff --git a/imgs/icons/118_13.png b/imgs/icons/21486.png similarity index 100% rename from imgs/icons/118_13.png rename to imgs/icons/21486.png diff --git a/imgs/icons/118_14.png b/imgs/icons/21487.png similarity index 100% rename from imgs/icons/118_14.png rename to imgs/icons/21487.png diff --git a/imgs/icons/118_2.png b/imgs/icons/21489.png similarity index 100% rename from imgs/icons/118_2.png rename to imgs/icons/21489.png diff --git a/imgs/icons/118_12.png b/imgs/icons/21513.png similarity index 100% rename from imgs/icons/118_12.png rename to imgs/icons/21513.png diff --git a/imgs/icons/21532.png b/imgs/icons/21532.png new file mode 100644 index 000000000..57508b031 Binary files /dev/null and b/imgs/icons/21532.png differ diff --git a/imgs/icons/21533.png b/imgs/icons/21533.png new file mode 100644 index 000000000..aa299a123 Binary files /dev/null and b/imgs/icons/21533.png differ diff --git a/imgs/icons/21534.png b/imgs/icons/21534.png new file mode 100644 index 000000000..abea9ce60 Binary files /dev/null and b/imgs/icons/21534.png differ diff --git a/imgs/icons/123_6.png b/imgs/icons/21561.png similarity index 100% rename from imgs/icons/123_6.png rename to imgs/icons/21561.png diff --git a/imgs/icons/123_9.png b/imgs/icons/21564.png similarity index 100% rename from imgs/icons/123_9.png rename to imgs/icons/21564.png diff --git a/imgs/icons/123_10.png b/imgs/icons/21565.png similarity index 100% rename from imgs/icons/123_10.png rename to imgs/icons/21565.png diff --git a/imgs/icons/123_11.png b/imgs/icons/21566.png similarity index 100% rename from imgs/icons/123_11.png rename to imgs/icons/21566.png diff --git a/imgs/icons/124_5.png b/imgs/icons/21567.png similarity index 100% rename from imgs/icons/124_5.png rename to imgs/icons/21567.png diff --git a/imgs/icons/124_6.png b/imgs/icons/21568.png similarity index 100% rename from imgs/icons/124_6.png rename to imgs/icons/21568.png diff --git a/imgs/icons/124_7.png b/imgs/icons/21569.png similarity index 100% rename from imgs/icons/124_7.png rename to imgs/icons/21569.png diff --git a/imgs/icons/124_9.png b/imgs/icons/21570.png similarity index 100% rename from imgs/icons/124_9.png rename to imgs/icons/21570.png diff --git a/imgs/icons/124_10.png b/imgs/icons/21571.png similarity index 100% rename from imgs/icons/124_10.png rename to imgs/icons/21571.png diff --git a/imgs/icons/124_14.png b/imgs/icons/21574.png similarity index 100% rename from imgs/icons/124_14.png rename to imgs/icons/21574.png diff --git a/imgs/icons/124_15.png b/imgs/icons/21575.png similarity index 100% rename from imgs/icons/124_15.png rename to imgs/icons/21575.png diff --git a/imgs/icons/127_9.png b/imgs/icons/21594.png similarity index 100% rename from imgs/icons/127_9.png rename to imgs/icons/21594.png diff --git a/imgs/icons/127_2.png b/imgs/icons/21595.png similarity index 100% rename from imgs/icons/127_2.png rename to imgs/icons/21595.png diff --git a/imgs/icons/127_1.png b/imgs/icons/21596.png similarity index 100% rename from imgs/icons/127_1.png rename to imgs/icons/21596.png diff --git a/imgs/icons/127_3.png b/imgs/icons/21597.png similarity index 100% rename from imgs/icons/127_3.png rename to imgs/icons/21597.png diff --git a/imgs/icons/127_4.png b/imgs/icons/21598.png similarity index 100% rename from imgs/icons/127_4.png rename to imgs/icons/21598.png diff --git a/imgs/icons/127_5.png b/imgs/icons/21599.png similarity index 100% rename from imgs/icons/127_5.png rename to imgs/icons/21599.png diff --git a/imgs/icons/127_10.png b/imgs/icons/21601.png similarity index 100% rename from imgs/icons/127_10.png rename to imgs/icons/21601.png diff --git a/imgs/icons/127_7.png b/imgs/icons/21602.png similarity index 100% rename from imgs/icons/127_7.png rename to imgs/icons/21602.png diff --git a/imgs/icons/127_8.png b/imgs/icons/21729.png similarity index 100% rename from imgs/icons/127_8.png rename to imgs/icons/21729.png diff --git a/imgs/icons/118_15.png b/imgs/icons/21743.png similarity index 100% rename from imgs/icons/118_15.png rename to imgs/icons/21743.png diff --git a/imgs/icons/2176.png b/imgs/icons/2176.png new file mode 100644 index 000000000..f8f217853 Binary files /dev/null and b/imgs/icons/2176.png differ diff --git a/imgs/icons/2177.png b/imgs/icons/2177.png new file mode 100644 index 000000000..274d26409 Binary files /dev/null and b/imgs/icons/2177.png differ diff --git a/imgs/icons/2178.png b/imgs/icons/2178.png new file mode 100644 index 000000000..d2155a736 Binary files /dev/null and b/imgs/icons/2178.png differ diff --git a/imgs/icons/21783.png b/imgs/icons/21783.png new file mode 100644 index 000000000..71f2688b2 Binary files /dev/null and b/imgs/icons/21783.png differ diff --git a/imgs/icons/2179.png b/imgs/icons/2179.png new file mode 100644 index 000000000..df438c982 Binary files /dev/null and b/imgs/icons/2179.png differ diff --git a/imgs/icons/2180.png b/imgs/icons/2180.png new file mode 100644 index 000000000..ceb87a92f Binary files /dev/null and b/imgs/icons/2180.png differ diff --git a/imgs/icons/2181.png b/imgs/icons/2181.png new file mode 100644 index 000000000..963d789fb Binary files /dev/null and b/imgs/icons/2181.png differ diff --git a/imgs/icons/2182.png b/imgs/icons/2182.png new file mode 100644 index 000000000..78b37241f Binary files /dev/null and b/imgs/icons/2182.png differ diff --git a/imgs/icons/2183.png b/imgs/icons/2183.png new file mode 100644 index 000000000..7604edeb8 Binary files /dev/null and b/imgs/icons/2183.png differ diff --git a/imgs/icons/2184.png b/imgs/icons/2184.png new file mode 100644 index 000000000..cb6a55c46 Binary files /dev/null and b/imgs/icons/2184.png differ diff --git a/imgs/icons/21843.png b/imgs/icons/21843.png new file mode 100644 index 000000000..8cb2c852b Binary files /dev/null and b/imgs/icons/21843.png differ diff --git a/imgs/icons/21844.png b/imgs/icons/21844.png new file mode 100644 index 000000000..7ca97b872 Binary files /dev/null and b/imgs/icons/21844.png differ diff --git a/imgs/icons/2185.png b/imgs/icons/2185.png new file mode 100644 index 000000000..addb46ab4 Binary files /dev/null and b/imgs/icons/2185.png differ diff --git a/imgs/icons/2186.png b/imgs/icons/2186.png new file mode 100644 index 000000000..f35fcf3b5 Binary files /dev/null and b/imgs/icons/2186.png differ diff --git a/imgs/icons/2187.png b/imgs/icons/2187.png new file mode 100644 index 000000000..f01d69f39 Binary files /dev/null and b/imgs/icons/2187.png differ diff --git a/imgs/icons/2188.png b/imgs/icons/2188.png new file mode 100644 index 000000000..4615e8eec Binary files /dev/null and b/imgs/icons/2188.png differ diff --git a/imgs/icons/2189.png b/imgs/icons/2189.png new file mode 100644 index 000000000..822d09c52 Binary files /dev/null and b/imgs/icons/2189.png differ diff --git a/imgs/icons/2190.png b/imgs/icons/2190.png new file mode 100644 index 000000000..edf770074 Binary files /dev/null and b/imgs/icons/2190.png differ diff --git a/imgs/icons/2191.png b/imgs/icons/2191.png new file mode 100644 index 000000000..47bc2ec2a Binary files /dev/null and b/imgs/icons/2191.png differ diff --git a/imgs/icons/2192.png b/imgs/icons/2192.png new file mode 100644 index 000000000..e89e17f0a Binary files /dev/null and b/imgs/icons/2192.png differ diff --git a/imgs/icons/2193.png b/imgs/icons/2193.png new file mode 100644 index 000000000..f1a8d450c Binary files /dev/null and b/imgs/icons/2193.png differ diff --git a/imgs/icons/2194.png b/imgs/icons/2194.png new file mode 100644 index 000000000..22c74cdd6 Binary files /dev/null and b/imgs/icons/2194.png differ diff --git a/imgs/icons/2195.png b/imgs/icons/2195.png new file mode 100644 index 000000000..91e813909 Binary files /dev/null and b/imgs/icons/2195.png differ diff --git a/imgs/icons/2196.png b/imgs/icons/2196.png new file mode 100644 index 000000000..6519c0f8e Binary files /dev/null and b/imgs/icons/2196.png differ diff --git a/imgs/icons/2197.png b/imgs/icons/2197.png new file mode 100644 index 000000000..69b478173 Binary files /dev/null and b/imgs/icons/2197.png differ diff --git a/imgs/icons/2198.png b/imgs/icons/2198.png new file mode 100644 index 000000000..6908e7aea Binary files /dev/null and b/imgs/icons/2198.png differ diff --git a/imgs/icons/2199.png b/imgs/icons/2199.png new file mode 100644 index 000000000..a39b17640 Binary files /dev/null and b/imgs/icons/2199.png differ diff --git a/imgs/icons/22.png b/imgs/icons/22.png new file mode 100644 index 000000000..1984eb339 Binary files /dev/null and b/imgs/icons/22.png differ diff --git a/imgs/icons/2200.png b/imgs/icons/2200.png new file mode 100644 index 000000000..187de507b Binary files /dev/null and b/imgs/icons/2200.png differ diff --git a/imgs/icons/2201.png b/imgs/icons/2201.png new file mode 100644 index 000000000..90294d1b6 Binary files /dev/null and b/imgs/icons/2201.png differ diff --git a/imgs/icons/2202.png b/imgs/icons/2202.png new file mode 100644 index 000000000..0ea3a59b1 Binary files /dev/null and b/imgs/icons/2202.png differ diff --git a/imgs/icons/2203.png b/imgs/icons/2203.png new file mode 100644 index 000000000..69a3de595 Binary files /dev/null and b/imgs/icons/2203.png differ diff --git a/imgs/icons/2204.png b/imgs/icons/2204.png new file mode 100644 index 000000000..071a54d87 Binary files /dev/null and b/imgs/icons/2204.png differ diff --git a/imgs/icons/2206.png b/imgs/icons/2206.png new file mode 100644 index 000000000..b923f669b Binary files /dev/null and b/imgs/icons/2206.png differ diff --git a/imgs/icons/2209.png b/imgs/icons/2209.png new file mode 100644 index 000000000..3da5d96a5 Binary files /dev/null and b/imgs/icons/2209.png differ diff --git a/imgs/icons/2210.png b/imgs/icons/2210.png new file mode 100644 index 000000000..b4cfbbaa0 Binary files /dev/null and b/imgs/icons/2210.png differ diff --git a/imgs/icons/2211.png b/imgs/icons/2211.png new file mode 100644 index 000000000..7e6efac53 Binary files /dev/null and b/imgs/icons/2211.png differ diff --git a/imgs/icons/2212.png b/imgs/icons/2212.png new file mode 100644 index 000000000..2598c39a9 Binary files /dev/null and b/imgs/icons/2212.png differ diff --git a/imgs/icons/2213.png b/imgs/icons/2213.png new file mode 100644 index 000000000..b19b33837 Binary files /dev/null and b/imgs/icons/2213.png differ diff --git a/imgs/icons/2214.png b/imgs/icons/2214.png new file mode 100644 index 000000000..78f952307 Binary files /dev/null and b/imgs/icons/2214.png differ diff --git a/imgs/icons/2215.png b/imgs/icons/2215.png new file mode 100644 index 000000000..9db849aab Binary files /dev/null and b/imgs/icons/2215.png differ diff --git a/imgs/icons/2216.png b/imgs/icons/2216.png new file mode 100644 index 000000000..63bda9069 Binary files /dev/null and b/imgs/icons/2216.png differ diff --git a/imgs/icons/2217.png b/imgs/icons/2217.png new file mode 100644 index 000000000..ceb9eab78 Binary files /dev/null and b/imgs/icons/2217.png differ diff --git a/imgs/icons/2218.png b/imgs/icons/2218.png new file mode 100644 index 000000000..b53d5fc22 Binary files /dev/null and b/imgs/icons/2218.png differ diff --git a/imgs/icons/2219.png b/imgs/icons/2219.png new file mode 100644 index 000000000..a9612242b Binary files /dev/null and b/imgs/icons/2219.png differ diff --git a/imgs/icons/2220.png b/imgs/icons/2220.png new file mode 100644 index 000000000..28e2ad9dc Binary files /dev/null and b/imgs/icons/2220.png differ diff --git a/imgs/icons/2221.png b/imgs/icons/2221.png new file mode 100644 index 000000000..068c8d295 Binary files /dev/null and b/imgs/icons/2221.png differ diff --git a/imgs/icons/40_14.png b/imgs/icons/2222.png similarity index 100% rename from imgs/icons/40_14.png rename to imgs/icons/2222.png diff --git a/imgs/icons/40_16.png b/imgs/icons/2224.png similarity index 100% rename from imgs/icons/40_16.png rename to imgs/icons/2224.png diff --git a/imgs/icons/2225.png b/imgs/icons/2225.png new file mode 100644 index 000000000..850fb226f Binary files /dev/null and b/imgs/icons/2225.png differ diff --git a/imgs/icons/2226.png b/imgs/icons/2226.png new file mode 100644 index 000000000..eb2c03e65 Binary files /dev/null and b/imgs/icons/2226.png differ diff --git a/imgs/icons/2227.png b/imgs/icons/2227.png new file mode 100644 index 000000000..6bc8f1db4 Binary files /dev/null and b/imgs/icons/2227.png differ diff --git a/imgs/icons/2228.png b/imgs/icons/2228.png new file mode 100644 index 000000000..fce4401a1 Binary files /dev/null and b/imgs/icons/2228.png differ diff --git a/imgs/icons/2229.png b/imgs/icons/2229.png new file mode 100644 index 000000000..098cfbecd Binary files /dev/null and b/imgs/icons/2229.png differ diff --git a/imgs/icons/2230.png b/imgs/icons/2230.png new file mode 100644 index 000000000..4325080ac Binary files /dev/null and b/imgs/icons/2230.png differ diff --git a/imgs/icons/2231.png b/imgs/icons/2231.png new file mode 100644 index 000000000..1743fdae0 Binary files /dev/null and b/imgs/icons/2231.png differ diff --git a/imgs/icons/2232.png b/imgs/icons/2232.png new file mode 100644 index 000000000..a22baf46b Binary files /dev/null and b/imgs/icons/2232.png differ diff --git a/imgs/icons/2233.png b/imgs/icons/2233.png new file mode 100644 index 000000000..0b893a439 Binary files /dev/null and b/imgs/icons/2233.png differ diff --git a/imgs/icons/2234.png b/imgs/icons/2234.png new file mode 100644 index 000000000..60e782502 Binary files /dev/null and b/imgs/icons/2234.png differ diff --git a/imgs/icons/2244.png b/imgs/icons/2244.png new file mode 100644 index 000000000..60f658f49 Binary files /dev/null and b/imgs/icons/2244.png differ diff --git a/imgs/icons/230.png b/imgs/icons/230.png new file mode 100644 index 000000000..5d2dbd862 Binary files /dev/null and b/imgs/icons/230.png differ diff --git a/imgs/icons/2302.png b/imgs/icons/2302.png new file mode 100644 index 000000000..0e5fb47cd Binary files /dev/null and b/imgs/icons/2302.png differ diff --git a/imgs/icons/2304.png b/imgs/icons/2304.png new file mode 100644 index 000000000..b778426d7 Binary files /dev/null and b/imgs/icons/2304.png differ diff --git a/imgs/icons/2309.png b/imgs/icons/2309.png new file mode 100644 index 000000000..d560585bc Binary files /dev/null and b/imgs/icons/2309.png differ diff --git a/imgs/icons/231.png b/imgs/icons/231.png new file mode 100644 index 000000000..69d183bbf Binary files /dev/null and b/imgs/icons/231.png differ diff --git a/imgs/icons/2310.png b/imgs/icons/2310.png new file mode 100644 index 000000000..dc8a4f4b1 Binary files /dev/null and b/imgs/icons/2310.png differ diff --git a/imgs/icons/2311.png b/imgs/icons/2311.png new file mode 100644 index 000000000..31b00331b Binary files /dev/null and b/imgs/icons/2311.png differ diff --git a/imgs/icons/2312.png b/imgs/icons/2312.png new file mode 100644 index 000000000..454718b95 Binary files /dev/null and b/imgs/icons/2312.png differ diff --git a/imgs/icons/2313.png b/imgs/icons/2313.png new file mode 100644 index 000000000..d7f2cf3d8 Binary files /dev/null and b/imgs/icons/2313.png differ diff --git a/imgs/icons/2314.png b/imgs/icons/2314.png new file mode 100644 index 000000000..d97478d5e Binary files /dev/null and b/imgs/icons/2314.png differ diff --git a/imgs/icons/2315.png b/imgs/icons/2315.png new file mode 100644 index 000000000..c83026b91 Binary files /dev/null and b/imgs/icons/2315.png differ diff --git a/imgs/icons/2316.png b/imgs/icons/2316.png new file mode 100644 index 000000000..0916120b8 Binary files /dev/null and b/imgs/icons/2316.png differ diff --git a/imgs/icons/2317.png b/imgs/icons/2317.png new file mode 100644 index 000000000..bb8d94a61 Binary files /dev/null and b/imgs/icons/2317.png differ diff --git a/imgs/icons/2318.png b/imgs/icons/2318.png new file mode 100644 index 000000000..6f7d8ad7b Binary files /dev/null and b/imgs/icons/2318.png differ diff --git a/imgs/icons/2319.png b/imgs/icons/2319.png new file mode 100644 index 000000000..bb6f36af4 Binary files /dev/null and b/imgs/icons/2319.png differ diff --git a/imgs/icons/232.png b/imgs/icons/232.png new file mode 100644 index 000000000..414311f63 Binary files /dev/null and b/imgs/icons/232.png differ diff --git a/imgs/icons/2320.png b/imgs/icons/2320.png new file mode 100644 index 000000000..60a1dcfd3 Binary files /dev/null and b/imgs/icons/2320.png differ diff --git a/imgs/icons/2321.png b/imgs/icons/2321.png new file mode 100644 index 000000000..bf19e392b Binary files /dev/null and b/imgs/icons/2321.png differ diff --git a/imgs/icons/2322.png b/imgs/icons/2322.png new file mode 100644 index 000000000..f08a94615 Binary files /dev/null and b/imgs/icons/2322.png differ diff --git a/imgs/icons/2323.png b/imgs/icons/2323.png new file mode 100644 index 000000000..acbdf0123 Binary files /dev/null and b/imgs/icons/2323.png differ diff --git a/imgs/icons/2324.png b/imgs/icons/2324.png new file mode 100644 index 000000000..320dee2a6 Binary files /dev/null and b/imgs/icons/2324.png differ diff --git a/imgs/icons/2325.png b/imgs/icons/2325.png new file mode 100644 index 000000000..daf49a471 Binary files /dev/null and b/imgs/icons/2325.png differ diff --git a/imgs/icons/2326.png b/imgs/icons/2326.png new file mode 100644 index 000000000..694b599d0 Binary files /dev/null and b/imgs/icons/2326.png differ diff --git a/imgs/icons/2327.png b/imgs/icons/2327.png new file mode 100644 index 000000000..9fc77803e Binary files /dev/null and b/imgs/icons/2327.png differ diff --git a/imgs/icons/2328.png b/imgs/icons/2328.png new file mode 100644 index 000000000..f87a58bca Binary files /dev/null and b/imgs/icons/2328.png differ diff --git a/imgs/icons/2329.png b/imgs/icons/2329.png new file mode 100644 index 000000000..117c781c9 Binary files /dev/null and b/imgs/icons/2329.png differ diff --git a/imgs/icons/2330.png b/imgs/icons/2330.png new file mode 100644 index 000000000..1cb76ee56 Binary files /dev/null and b/imgs/icons/2330.png differ diff --git a/imgs/icons/2331.png b/imgs/icons/2331.png new file mode 100644 index 000000000..b56caa254 Binary files /dev/null and b/imgs/icons/2331.png differ diff --git a/imgs/icons/2332.png b/imgs/icons/2332.png new file mode 100644 index 000000000..156302d46 Binary files /dev/null and b/imgs/icons/2332.png differ diff --git a/imgs/icons/2333.png b/imgs/icons/2333.png new file mode 100644 index 000000000..5f2125b5a Binary files /dev/null and b/imgs/icons/2333.png differ diff --git a/imgs/icons/2334.png b/imgs/icons/2334.png new file mode 100644 index 000000000..830bcedba Binary files /dev/null and b/imgs/icons/2334.png differ diff --git a/imgs/icons/2338.png b/imgs/icons/2338.png new file mode 100644 index 000000000..cfdeb233c Binary files /dev/null and b/imgs/icons/2338.png differ diff --git a/imgs/icons/2340.png b/imgs/icons/2340.png new file mode 100644 index 000000000..61a417565 Binary files /dev/null and b/imgs/icons/2340.png differ diff --git a/imgs/icons/2355.png b/imgs/icons/2355.png new file mode 100644 index 000000000..c29b50603 Binary files /dev/null and b/imgs/icons/2355.png differ diff --git a/imgs/icons/7_12.png b/imgs/icons/2512.png similarity index 100% rename from imgs/icons/7_12.png rename to imgs/icons/2512.png diff --git a/imgs/icons/49_6.png b/imgs/icons/2526.png similarity index 100% rename from imgs/icons/49_6.png rename to imgs/icons/2526.png diff --git a/imgs/icons/49_5.png b/imgs/icons/2527.png similarity index 100% rename from imgs/icons/49_5.png rename to imgs/icons/2527.png diff --git a/imgs/icons/2528.png b/imgs/icons/2528.png new file mode 100644 index 000000000..95ed37401 Binary files /dev/null and b/imgs/icons/2528.png differ diff --git a/imgs/icons/2529.png b/imgs/icons/2529.png new file mode 100644 index 000000000..c839964b9 Binary files /dev/null and b/imgs/icons/2529.png differ diff --git a/imgs/icons/45_11.png b/imgs/icons/2530.png similarity index 100% rename from imgs/icons/45_11.png rename to imgs/icons/2530.png diff --git a/imgs/icons/45_12.png b/imgs/icons/2531.png similarity index 100% rename from imgs/icons/45_12.png rename to imgs/icons/2531.png diff --git a/imgs/icons/2532.png b/imgs/icons/2532.png new file mode 100644 index 000000000..1d52e95e8 Binary files /dev/null and b/imgs/icons/2532.png differ diff --git a/imgs/icons/2536.png b/imgs/icons/2536.png new file mode 100644 index 000000000..72d112bac Binary files /dev/null and b/imgs/icons/2536.png differ diff --git a/imgs/icons/2537.png b/imgs/icons/2537.png new file mode 100644 index 000000000..7a5c4319c Binary files /dev/null and b/imgs/icons/2537.png differ diff --git a/imgs/icons/2538.png b/imgs/icons/2538.png new file mode 100644 index 000000000..93965f7ad Binary files /dev/null and b/imgs/icons/2538.png differ diff --git a/imgs/icons/2539.png b/imgs/icons/2539.png new file mode 100644 index 000000000..49a29e6b0 Binary files /dev/null and b/imgs/icons/2539.png differ diff --git a/imgs/icons/2540.png b/imgs/icons/2540.png new file mode 100644 index 000000000..45ae7b5fc Binary files /dev/null and b/imgs/icons/2540.png differ diff --git a/imgs/icons/2541.png b/imgs/icons/2541.png new file mode 100644 index 000000000..e4e2f5c1c Binary files /dev/null and b/imgs/icons/2541.png differ diff --git a/imgs/icons/2542.png b/imgs/icons/2542.png new file mode 100644 index 000000000..4922ff694 Binary files /dev/null and b/imgs/icons/2542.png differ diff --git a/imgs/icons/2543.png b/imgs/icons/2543.png new file mode 100644 index 000000000..f83f5a287 Binary files /dev/null and b/imgs/icons/2543.png differ diff --git a/imgs/icons/2544.png b/imgs/icons/2544.png new file mode 100644 index 000000000..e09f6f869 Binary files /dev/null and b/imgs/icons/2544.png differ diff --git a/imgs/icons/2545.png b/imgs/icons/2545.png new file mode 100644 index 000000000..4c9d37854 Binary files /dev/null and b/imgs/icons/2545.png differ diff --git a/imgs/icons/2546.png b/imgs/icons/2546.png new file mode 100644 index 000000000..65fc45284 Binary files /dev/null and b/imgs/icons/2546.png differ diff --git a/imgs/icons/2547.png b/imgs/icons/2547.png new file mode 100644 index 000000000..f2b4aa5b0 Binary files /dev/null and b/imgs/icons/2547.png differ diff --git a/imgs/icons/2548.png b/imgs/icons/2548.png new file mode 100644 index 000000000..f2bd92307 Binary files /dev/null and b/imgs/icons/2548.png differ diff --git a/imgs/icons/2549.png b/imgs/icons/2549.png new file mode 100644 index 000000000..6e9fc22db Binary files /dev/null and b/imgs/icons/2549.png differ diff --git a/imgs/icons/2550.png b/imgs/icons/2550.png new file mode 100644 index 000000000..12e6a9470 Binary files /dev/null and b/imgs/icons/2550.png differ diff --git a/imgs/icons/2551.png b/imgs/icons/2551.png new file mode 100644 index 000000000..f2699f052 Binary files /dev/null and b/imgs/icons/2551.png differ diff --git a/imgs/icons/2552.png b/imgs/icons/2552.png new file mode 100644 index 000000000..2a6848019 Binary files /dev/null and b/imgs/icons/2552.png differ diff --git a/imgs/icons/2553.png b/imgs/icons/2553.png new file mode 100644 index 000000000..027283437 Binary files /dev/null and b/imgs/icons/2553.png differ diff --git a/imgs/icons/2554.png b/imgs/icons/2554.png new file mode 100644 index 000000000..59daff81c Binary files /dev/null and b/imgs/icons/2554.png differ diff --git a/imgs/icons/2555.png b/imgs/icons/2555.png new file mode 100644 index 000000000..b53e55bf9 Binary files /dev/null and b/imgs/icons/2555.png differ diff --git a/imgs/icons/2556.png b/imgs/icons/2556.png new file mode 100644 index 000000000..864fc099e Binary files /dev/null and b/imgs/icons/2556.png differ diff --git a/imgs/icons/2557.png b/imgs/icons/2557.png new file mode 100644 index 000000000..3bc267324 Binary files /dev/null and b/imgs/icons/2557.png differ diff --git a/imgs/icons/2558.png b/imgs/icons/2558.png new file mode 100644 index 000000000..64d90bf29 Binary files /dev/null and b/imgs/icons/2558.png differ diff --git a/imgs/icons/2559.png b/imgs/icons/2559.png new file mode 100644 index 000000000..6d9e6038a Binary files /dev/null and b/imgs/icons/2559.png differ diff --git a/imgs/icons/2560.png b/imgs/icons/2560.png new file mode 100644 index 000000000..d65419db8 Binary files /dev/null and b/imgs/icons/2560.png differ diff --git a/imgs/icons/2561.png b/imgs/icons/2561.png new file mode 100644 index 000000000..38d72a177 Binary files /dev/null and b/imgs/icons/2561.png differ diff --git a/imgs/icons/2_16.png b/imgs/icons/2563.png similarity index 100% rename from imgs/icons/2_16.png rename to imgs/icons/2563.png diff --git a/imgs/icons/2567.png b/imgs/icons/2567.png new file mode 100644 index 000000000..bd9be2578 Binary files /dev/null and b/imgs/icons/2567.png differ diff --git a/imgs/icons/2568.png b/imgs/icons/2568.png new file mode 100644 index 000000000..8c63e527b Binary files /dev/null and b/imgs/icons/2568.png differ diff --git a/imgs/icons/2569.png b/imgs/icons/2569.png new file mode 100644 index 000000000..518c605c4 Binary files /dev/null and b/imgs/icons/2569.png differ diff --git a/imgs/icons/2570.png b/imgs/icons/2570.png new file mode 100644 index 000000000..6616ad5cf Binary files /dev/null and b/imgs/icons/2570.png differ diff --git a/imgs/icons/2571.png b/imgs/icons/2571.png new file mode 100644 index 000000000..cb9e304b6 Binary files /dev/null and b/imgs/icons/2571.png differ diff --git a/imgs/icons/2572.png b/imgs/icons/2572.png new file mode 100644 index 000000000..a585b6bf5 Binary files /dev/null and b/imgs/icons/2572.png differ diff --git a/imgs/icons/2573.png b/imgs/icons/2573.png new file mode 100644 index 000000000..4e46ce732 Binary files /dev/null and b/imgs/icons/2573.png differ diff --git a/imgs/icons/2574.png b/imgs/icons/2574.png new file mode 100644 index 000000000..bf967b4d7 Binary files /dev/null and b/imgs/icons/2574.png differ diff --git a/imgs/icons/2575.png b/imgs/icons/2575.png new file mode 100644 index 000000000..cc6cc0c38 Binary files /dev/null and b/imgs/icons/2575.png differ diff --git a/imgs/icons/2576.png b/imgs/icons/2576.png new file mode 100644 index 000000000..2f34b02d2 Binary files /dev/null and b/imgs/icons/2576.png differ diff --git a/imgs/icons/2577.png b/imgs/icons/2577.png new file mode 100644 index 000000000..c6cbf047f Binary files /dev/null and b/imgs/icons/2577.png differ diff --git a/imgs/icons/2578.png b/imgs/icons/2578.png new file mode 100644 index 000000000..f94774d1e Binary files /dev/null and b/imgs/icons/2578.png differ diff --git a/imgs/icons/2579.png b/imgs/icons/2579.png new file mode 100644 index 000000000..276a994d9 Binary files /dev/null and b/imgs/icons/2579.png differ diff --git a/imgs/icons/2580.png b/imgs/icons/2580.png new file mode 100644 index 000000000..daa50c30d Binary files /dev/null and b/imgs/icons/2580.png differ diff --git a/imgs/icons/2581.png b/imgs/icons/2581.png new file mode 100644 index 000000000..c49d53267 Binary files /dev/null and b/imgs/icons/2581.png differ diff --git a/imgs/icons/2582.png b/imgs/icons/2582.png new file mode 100644 index 000000000..93ec9eacd Binary files /dev/null and b/imgs/icons/2582.png differ diff --git a/imgs/icons/26.png b/imgs/icons/26.png new file mode 100644 index 000000000..018b9ff57 Binary files /dev/null and b/imgs/icons/26.png differ diff --git a/imgs/icons/48_14.png b/imgs/icons/2645.png similarity index 100% rename from imgs/icons/48_14.png rename to imgs/icons/2645.png diff --git a/imgs/icons/48_13.png b/imgs/icons/2646.png similarity index 100% rename from imgs/icons/48_13.png rename to imgs/icons/2646.png diff --git a/imgs/icons/48_12.png b/imgs/icons/2647.png similarity index 100% rename from imgs/icons/48_12.png rename to imgs/icons/2647.png diff --git a/imgs/icons/48_11.png b/imgs/icons/2648.png similarity index 100% rename from imgs/icons/48_11.png rename to imgs/icons/2648.png diff --git a/imgs/icons/48_10.png b/imgs/icons/2649.png similarity index 100% rename from imgs/icons/48_10.png rename to imgs/icons/2649.png diff --git a/imgs/icons/48_9.png b/imgs/icons/2650.png similarity index 100% rename from imgs/icons/48_9.png rename to imgs/icons/2650.png diff --git a/imgs/icons/48_8.png b/imgs/icons/2651.png similarity index 100% rename from imgs/icons/48_8.png rename to imgs/icons/2651.png diff --git a/imgs/icons/48_7.png b/imgs/icons/2652.png similarity index 100% rename from imgs/icons/48_7.png rename to imgs/icons/2652.png diff --git a/imgs/icons/48_6.png b/imgs/icons/2653.png similarity index 100% rename from imgs/icons/48_6.png rename to imgs/icons/2653.png diff --git a/imgs/icons/48_16.png b/imgs/icons/2654.png similarity index 100% rename from imgs/icons/48_16.png rename to imgs/icons/2654.png diff --git a/imgs/icons/48_5.png b/imgs/icons/2655.png similarity index 100% rename from imgs/icons/48_5.png rename to imgs/icons/2655.png diff --git a/imgs/icons/48_4.png b/imgs/icons/2656.png similarity index 100% rename from imgs/icons/48_4.png rename to imgs/icons/2656.png diff --git a/imgs/icons/48_3.png b/imgs/icons/2657.png similarity index 100% rename from imgs/icons/48_3.png rename to imgs/icons/2657.png diff --git a/imgs/icons/48_2.png b/imgs/icons/2658.png similarity index 100% rename from imgs/icons/48_2.png rename to imgs/icons/2658.png diff --git a/imgs/icons/48_15.png b/imgs/icons/2659.png similarity index 100% rename from imgs/icons/48_15.png rename to imgs/icons/2659.png diff --git a/imgs/icons/48_1.png b/imgs/icons/2660.png similarity index 100% rename from imgs/icons/48_1.png rename to imgs/icons/2660.png diff --git a/imgs/icons/2661.png b/imgs/icons/2661.png new file mode 100644 index 000000000..ab2303855 Binary files /dev/null and b/imgs/icons/2661.png differ diff --git a/imgs/icons/2662.png b/imgs/icons/2662.png new file mode 100644 index 000000000..4253b14a8 Binary files /dev/null and b/imgs/icons/2662.png differ diff --git a/imgs/icons/50_3.png b/imgs/icons/2663.png similarity index 100% rename from imgs/icons/50_3.png rename to imgs/icons/2663.png diff --git a/imgs/icons/2664.png b/imgs/icons/2664.png new file mode 100644 index 000000000..e51ecae4d Binary files /dev/null and b/imgs/icons/2664.png differ diff --git a/imgs/icons/2665.png b/imgs/icons/2665.png new file mode 100644 index 000000000..698b0bb06 Binary files /dev/null and b/imgs/icons/2665.png differ diff --git a/imgs/icons/2666.png b/imgs/icons/2666.png new file mode 100644 index 000000000..eb55e62f9 Binary files /dev/null and b/imgs/icons/2666.png differ diff --git a/imgs/icons/2667.png b/imgs/icons/2667.png new file mode 100644 index 000000000..cc7c9cc7e Binary files /dev/null and b/imgs/icons/2667.png differ diff --git a/imgs/icons/2668.png b/imgs/icons/2668.png new file mode 100644 index 000000000..c29eba37a Binary files /dev/null and b/imgs/icons/2668.png differ diff --git a/imgs/icons/2669.png b/imgs/icons/2669.png new file mode 100644 index 000000000..95b1ed1d2 Binary files /dev/null and b/imgs/icons/2669.png differ diff --git a/imgs/icons/2670.png b/imgs/icons/2670.png new file mode 100644 index 000000000..fe661ccb0 Binary files /dev/null and b/imgs/icons/2670.png differ diff --git a/imgs/icons/2674.png b/imgs/icons/2674.png new file mode 100644 index 000000000..b20eb0b0a Binary files /dev/null and b/imgs/icons/2674.png differ diff --git a/imgs/icons/49_7.png b/imgs/icons/2677.png similarity index 100% rename from imgs/icons/49_7.png rename to imgs/icons/2677.png diff --git a/imgs/icons/2678.png b/imgs/icons/2678.png new file mode 100644 index 000000000..4ca57246b Binary files /dev/null and b/imgs/icons/2678.png differ diff --git a/imgs/icons/2679.png b/imgs/icons/2679.png new file mode 100644 index 000000000..e374147c6 Binary files /dev/null and b/imgs/icons/2679.png differ diff --git a/imgs/icons/2680.png b/imgs/icons/2680.png new file mode 100644 index 000000000..55d269d13 Binary files /dev/null and b/imgs/icons/2680.png differ diff --git a/imgs/icons/2681.png b/imgs/icons/2681.png new file mode 100644 index 000000000..19c2eae3c Binary files /dev/null and b/imgs/icons/2681.png differ diff --git a/imgs/icons/2682.png b/imgs/icons/2682.png new file mode 100644 index 000000000..ae43dc248 Binary files /dev/null and b/imgs/icons/2682.png differ diff --git a/imgs/icons/2683.png b/imgs/icons/2683.png new file mode 100644 index 000000000..824c82d33 Binary files /dev/null and b/imgs/icons/2683.png differ diff --git a/imgs/icons/2684.png b/imgs/icons/2684.png new file mode 100644 index 000000000..26df6c98d Binary files /dev/null and b/imgs/icons/2684.png differ diff --git a/imgs/icons/2685.png b/imgs/icons/2685.png new file mode 100644 index 000000000..3315819f7 Binary files /dev/null and b/imgs/icons/2685.png differ diff --git a/imgs/icons/2686.png b/imgs/icons/2686.png new file mode 100644 index 000000000..5e907f0eb Binary files /dev/null and b/imgs/icons/2686.png differ diff --git a/imgs/icons/2696.png b/imgs/icons/2696.png new file mode 100644 index 000000000..64be6e813 Binary files /dev/null and b/imgs/icons/2696.png differ diff --git a/imgs/icons/2697.png b/imgs/icons/2697.png new file mode 100644 index 000000000..5b01d9b52 Binary files /dev/null and b/imgs/icons/2697.png differ diff --git a/imgs/icons/2698.png b/imgs/icons/2698.png new file mode 100644 index 000000000..c8f68260c Binary files /dev/null and b/imgs/icons/2698.png differ diff --git a/imgs/icons/2699.png b/imgs/icons/2699.png new file mode 100644 index 000000000..fd70478f7 Binary files /dev/null and b/imgs/icons/2699.png differ diff --git a/imgs/icons/27.png b/imgs/icons/27.png new file mode 100644 index 000000000..ce3065385 Binary files /dev/null and b/imgs/icons/27.png differ diff --git a/imgs/icons/2700.png b/imgs/icons/2700.png new file mode 100644 index 000000000..7081d175e Binary files /dev/null and b/imgs/icons/2700.png differ diff --git a/imgs/icons/2701.png b/imgs/icons/2701.png new file mode 100644 index 000000000..ad9f0030b Binary files /dev/null and b/imgs/icons/2701.png differ diff --git a/imgs/icons/2702.png b/imgs/icons/2702.png new file mode 100644 index 000000000..a1232ca10 Binary files /dev/null and b/imgs/icons/2702.png differ diff --git a/imgs/icons/2703.png b/imgs/icons/2703.png new file mode 100644 index 000000000..41bb34deb Binary files /dev/null and b/imgs/icons/2703.png differ diff --git a/imgs/icons/2705.png b/imgs/icons/2705.png new file mode 100644 index 000000000..c816f069e Binary files /dev/null and b/imgs/icons/2705.png differ diff --git a/imgs/icons/3_12.png b/imgs/icons/2732.png similarity index 100% rename from imgs/icons/3_12.png rename to imgs/icons/2732.png diff --git a/imgs/icons/2754.png b/imgs/icons/2754.png new file mode 100644 index 000000000..3714dfe54 Binary files /dev/null and b/imgs/icons/2754.png differ diff --git a/imgs/icons/28.png b/imgs/icons/28.png new file mode 100644 index 000000000..e8ded28d4 Binary files /dev/null and b/imgs/icons/28.png differ diff --git a/imgs/icons/52_1.png b/imgs/icons/2827.png similarity index 100% rename from imgs/icons/52_1.png rename to imgs/icons/2827.png diff --git a/imgs/icons/52_2.png b/imgs/icons/2828.png similarity index 100% rename from imgs/icons/52_2.png rename to imgs/icons/2828.png diff --git a/imgs/icons/52_3.png b/imgs/icons/2829.png similarity index 100% rename from imgs/icons/52_3.png rename to imgs/icons/2829.png diff --git a/imgs/icons/52_4.png b/imgs/icons/2830.png similarity index 100% rename from imgs/icons/52_4.png rename to imgs/icons/2830.png diff --git a/imgs/icons/52_5.png b/imgs/icons/2831.png similarity index 100% rename from imgs/icons/52_5.png rename to imgs/icons/2831.png diff --git a/imgs/icons/52_6.png b/imgs/icons/2832.png similarity index 100% rename from imgs/icons/52_6.png rename to imgs/icons/2832.png diff --git a/imgs/icons/52_7.png b/imgs/icons/2833.png similarity index 100% rename from imgs/icons/52_7.png rename to imgs/icons/2833.png diff --git a/imgs/icons/52_8.png b/imgs/icons/2834.png similarity index 100% rename from imgs/icons/52_8.png rename to imgs/icons/2834.png diff --git a/imgs/icons/52_10.png b/imgs/icons/2836.png similarity index 100% rename from imgs/icons/52_10.png rename to imgs/icons/2836.png diff --git a/imgs/icons/52_11.png b/imgs/icons/2837.png similarity index 100% rename from imgs/icons/52_11.png rename to imgs/icons/2837.png diff --git a/imgs/icons/52_12.png b/imgs/icons/2838.png similarity index 100% rename from imgs/icons/52_12.png rename to imgs/icons/2838.png diff --git a/imgs/icons/52_13.png b/imgs/icons/2839.png similarity index 100% rename from imgs/icons/52_13.png rename to imgs/icons/2839.png diff --git a/imgs/icons/52_14.png b/imgs/icons/2840.png similarity index 100% rename from imgs/icons/52_14.png rename to imgs/icons/2840.png diff --git a/imgs/icons/52_15.png b/imgs/icons/2841.png similarity index 100% rename from imgs/icons/52_15.png rename to imgs/icons/2841.png diff --git a/imgs/icons/52_16.png b/imgs/icons/2842.png similarity index 100% rename from imgs/icons/52_16.png rename to imgs/icons/2842.png diff --git a/imgs/icons/53_1.png b/imgs/icons/2843.png similarity index 100% rename from imgs/icons/53_1.png rename to imgs/icons/2843.png diff --git a/imgs/icons/53_2.png b/imgs/icons/2844.png similarity index 100% rename from imgs/icons/53_2.png rename to imgs/icons/2844.png diff --git a/imgs/icons/53_3.png b/imgs/icons/2845.png similarity index 100% rename from imgs/icons/53_3.png rename to imgs/icons/2845.png diff --git a/imgs/icons/53_4.png b/imgs/icons/2846.png similarity index 100% rename from imgs/icons/53_4.png rename to imgs/icons/2846.png diff --git a/imgs/icons/53_5.png b/imgs/icons/2847.png similarity index 100% rename from imgs/icons/53_5.png rename to imgs/icons/2847.png diff --git a/imgs/icons/53_6.png b/imgs/icons/2848.png similarity index 100% rename from imgs/icons/53_6.png rename to imgs/icons/2848.png diff --git a/imgs/icons/53_7.png b/imgs/icons/2849.png similarity index 100% rename from imgs/icons/53_7.png rename to imgs/icons/2849.png diff --git a/imgs/icons/53_8.png b/imgs/icons/2850.png similarity index 100% rename from imgs/icons/53_8.png rename to imgs/icons/2850.png diff --git a/imgs/icons/53_9.png b/imgs/icons/2851.png similarity index 100% rename from imgs/icons/53_9.png rename to imgs/icons/2851.png diff --git a/imgs/icons/2852.png b/imgs/icons/2852.png new file mode 100644 index 000000000..0691d311b Binary files /dev/null and b/imgs/icons/2852.png differ diff --git a/imgs/icons/2853.png b/imgs/icons/2853.png new file mode 100644 index 000000000..e2058455b Binary files /dev/null and b/imgs/icons/2853.png differ diff --git a/imgs/icons/2854.png b/imgs/icons/2854.png new file mode 100644 index 000000000..3487ddb7e Binary files /dev/null and b/imgs/icons/2854.png differ diff --git a/imgs/icons/2855.png b/imgs/icons/2855.png new file mode 100644 index 000000000..3922d6fb8 Binary files /dev/null and b/imgs/icons/2855.png differ diff --git a/imgs/icons/53_14.png b/imgs/icons/2856.png similarity index 100% rename from imgs/icons/53_14.png rename to imgs/icons/2856.png diff --git a/imgs/icons/53_15.png b/imgs/icons/2857.png similarity index 100% rename from imgs/icons/53_15.png rename to imgs/icons/2857.png diff --git a/imgs/icons/53_16.png b/imgs/icons/2858.png similarity index 100% rename from imgs/icons/53_16.png rename to imgs/icons/2858.png diff --git a/imgs/icons/2859.png b/imgs/icons/2859.png new file mode 100644 index 000000000..aaa14840d Binary files /dev/null and b/imgs/icons/2859.png differ diff --git a/imgs/icons/2860.png b/imgs/icons/2860.png new file mode 100644 index 000000000..c01a3f351 Binary files /dev/null and b/imgs/icons/2860.png differ diff --git a/imgs/icons/2861.png b/imgs/icons/2861.png new file mode 100644 index 000000000..f9b8e09f6 Binary files /dev/null and b/imgs/icons/2861.png differ diff --git a/imgs/icons/2862.png b/imgs/icons/2862.png new file mode 100644 index 000000000..3bf6975fc Binary files /dev/null and b/imgs/icons/2862.png differ diff --git a/imgs/icons/2863.png b/imgs/icons/2863.png new file mode 100644 index 000000000..8199c3613 Binary files /dev/null and b/imgs/icons/2863.png differ diff --git a/imgs/icons/2864.png b/imgs/icons/2864.png new file mode 100644 index 000000000..4e0d1482d Binary files /dev/null and b/imgs/icons/2864.png differ diff --git a/imgs/icons/2865.png b/imgs/icons/2865.png new file mode 100644 index 000000000..b007bfa97 Binary files /dev/null and b/imgs/icons/2865.png differ diff --git a/imgs/icons/2866.png b/imgs/icons/2866.png new file mode 100644 index 000000000..7be5b66c4 Binary files /dev/null and b/imgs/icons/2866.png differ diff --git a/imgs/icons/2867.png b/imgs/icons/2867.png new file mode 100644 index 000000000..094d9329a Binary files /dev/null and b/imgs/icons/2867.png differ diff --git a/imgs/icons/2868.png b/imgs/icons/2868.png new file mode 100644 index 000000000..043b52798 Binary files /dev/null and b/imgs/icons/2868.png differ diff --git a/imgs/icons/2869.png b/imgs/icons/2869.png new file mode 100644 index 000000000..44fab052a Binary files /dev/null and b/imgs/icons/2869.png differ diff --git a/imgs/icons/2870.png b/imgs/icons/2870.png new file mode 100644 index 000000000..9228be24f Binary files /dev/null and b/imgs/icons/2870.png differ diff --git a/imgs/icons/2871.png b/imgs/icons/2871.png new file mode 100644 index 000000000..067cbc670 Binary files /dev/null and b/imgs/icons/2871.png differ diff --git a/imgs/icons/2872.png b/imgs/icons/2872.png new file mode 100644 index 000000000..50ef94241 Binary files /dev/null and b/imgs/icons/2872.png differ diff --git a/imgs/icons/2873.png b/imgs/icons/2873.png new file mode 100644 index 000000000..93fa59a15 Binary files /dev/null and b/imgs/icons/2873.png differ diff --git a/imgs/icons/2874.png b/imgs/icons/2874.png new file mode 100644 index 000000000..d8e240b5f Binary files /dev/null and b/imgs/icons/2874.png differ diff --git a/imgs/icons/2875.png b/imgs/icons/2875.png new file mode 100644 index 000000000..ea5ccc90a Binary files /dev/null and b/imgs/icons/2875.png differ diff --git a/imgs/icons/2876.png b/imgs/icons/2876.png new file mode 100644 index 000000000..441ca29aa Binary files /dev/null and b/imgs/icons/2876.png differ diff --git a/imgs/icons/2877.png b/imgs/icons/2877.png new file mode 100644 index 000000000..08d585336 Binary files /dev/null and b/imgs/icons/2877.png differ diff --git a/imgs/icons/2878.png b/imgs/icons/2878.png new file mode 100644 index 000000000..665d879d4 Binary files /dev/null and b/imgs/icons/2878.png differ diff --git a/imgs/icons/2879.png b/imgs/icons/2879.png new file mode 100644 index 000000000..fd1465995 Binary files /dev/null and b/imgs/icons/2879.png differ diff --git a/imgs/icons/2880.png b/imgs/icons/2880.png new file mode 100644 index 000000000..5b7ba0fcf Binary files /dev/null and b/imgs/icons/2880.png differ diff --git a/imgs/icons/2881.png b/imgs/icons/2881.png new file mode 100644 index 000000000..6ade5f140 Binary files /dev/null and b/imgs/icons/2881.png differ diff --git a/imgs/icons/2882.png b/imgs/icons/2882.png new file mode 100644 index 000000000..d1ba44bf8 Binary files /dev/null and b/imgs/icons/2882.png differ diff --git a/imgs/icons/2883.png b/imgs/icons/2883.png new file mode 100644 index 000000000..ac2b7412d Binary files /dev/null and b/imgs/icons/2883.png differ diff --git a/imgs/icons/2884.png b/imgs/icons/2884.png new file mode 100644 index 000000000..13758931a Binary files /dev/null and b/imgs/icons/2884.png differ diff --git a/imgs/icons/2885.png b/imgs/icons/2885.png new file mode 100644 index 000000000..b890354d1 Binary files /dev/null and b/imgs/icons/2885.png differ diff --git a/imgs/icons/2886.png b/imgs/icons/2886.png new file mode 100644 index 000000000..205ee547f Binary files /dev/null and b/imgs/icons/2886.png differ diff --git a/imgs/icons/55_13.png b/imgs/icons/2887.png similarity index 100% rename from imgs/icons/55_13.png rename to imgs/icons/2887.png diff --git a/imgs/icons/2888.png b/imgs/icons/2888.png new file mode 100644 index 000000000..51f1c5ca4 Binary files /dev/null and b/imgs/icons/2888.png differ diff --git a/imgs/icons/2889.png b/imgs/icons/2889.png new file mode 100644 index 000000000..63c691f1d Binary files /dev/null and b/imgs/icons/2889.png differ diff --git a/imgs/icons/2890.png b/imgs/icons/2890.png new file mode 100644 index 000000000..6ad10ff8b Binary files /dev/null and b/imgs/icons/2890.png differ diff --git a/imgs/icons/2891.png b/imgs/icons/2891.png new file mode 100644 index 000000000..53ad9ee91 Binary files /dev/null and b/imgs/icons/2891.png differ diff --git a/imgs/icons/2893.png b/imgs/icons/2893.png new file mode 100644 index 000000000..b1df4c624 Binary files /dev/null and b/imgs/icons/2893.png differ diff --git a/imgs/icons/29.png b/imgs/icons/29.png new file mode 100644 index 000000000..4c0695dd5 Binary files /dev/null and b/imgs/icons/29.png differ diff --git a/imgs/icons/2908.png b/imgs/icons/2908.png new file mode 100644 index 000000000..56ef341aa Binary files /dev/null and b/imgs/icons/2908.png differ diff --git a/imgs/icons/8_11.png b/imgs/icons/293.png similarity index 100% rename from imgs/icons/8_11.png rename to imgs/icons/293.png diff --git a/imgs/icons/56_2.png b/imgs/icons/2934.png similarity index 100% rename from imgs/icons/56_2.png rename to imgs/icons/2934.png diff --git a/imgs/icons/8_10.png b/imgs/icons/294.png similarity index 100% rename from imgs/icons/8_10.png rename to imgs/icons/294.png diff --git a/imgs/icons/57_4.png b/imgs/icons/2943.png similarity index 100% rename from imgs/icons/57_4.png rename to imgs/icons/2943.png diff --git a/imgs/icons/8_9.png b/imgs/icons/295.png similarity index 100% rename from imgs/icons/8_9.png rename to imgs/icons/295.png diff --git a/imgs/icons/56_1.png b/imgs/icons/2983.png similarity index 100% rename from imgs/icons/56_1.png rename to imgs/icons/2983.png diff --git a/imgs/icons/56_3.png b/imgs/icons/2985.png similarity index 100% rename from imgs/icons/56_3.png rename to imgs/icons/2985.png diff --git a/imgs/icons/56_4.png b/imgs/icons/2986.png similarity index 100% rename from imgs/icons/56_4.png rename to imgs/icons/2986.png diff --git a/imgs/icons/56_5.png b/imgs/icons/2987.png similarity index 100% rename from imgs/icons/56_5.png rename to imgs/icons/2987.png diff --git a/imgs/icons/56_6.png b/imgs/icons/2988.png similarity index 100% rename from imgs/icons/56_6.png rename to imgs/icons/2988.png diff --git a/imgs/icons/56_7.png b/imgs/icons/2989.png similarity index 100% rename from imgs/icons/56_7.png rename to imgs/icons/2989.png diff --git a/imgs/icons/56_8.png b/imgs/icons/2990.png similarity index 100% rename from imgs/icons/56_8.png rename to imgs/icons/2990.png diff --git a/imgs/icons/2991.png b/imgs/icons/2991.png new file mode 100644 index 000000000..cc602567c Binary files /dev/null and b/imgs/icons/2991.png differ diff --git a/imgs/icons/2992.png b/imgs/icons/2992.png new file mode 100644 index 000000000..4ef3a31c3 Binary files /dev/null and b/imgs/icons/2992.png differ diff --git a/imgs/icons/2994.png b/imgs/icons/2994.png new file mode 100644 index 000000000..6f904f813 Binary files /dev/null and b/imgs/icons/2994.png differ diff --git a/imgs/icons/30.png b/imgs/icons/30.png new file mode 100644 index 000000000..3919a5f03 Binary files /dev/null and b/imgs/icons/30.png differ diff --git a/imgs/icons/3000.png b/imgs/icons/3000.png new file mode 100644 index 000000000..a98c2e021 Binary files /dev/null and b/imgs/icons/3000.png differ diff --git a/imgs/icons/3001.png b/imgs/icons/3001.png new file mode 100644 index 000000000..6e254552e Binary files /dev/null and b/imgs/icons/3001.png differ diff --git a/imgs/icons/57_9.png b/imgs/icons/3006.png similarity index 100% rename from imgs/icons/57_9.png rename to imgs/icons/3006.png diff --git a/imgs/icons/57_10.png b/imgs/icons/3007.png similarity index 100% rename from imgs/icons/57_10.png rename to imgs/icons/3007.png diff --git a/imgs/icons/3010.png b/imgs/icons/3010.png new file mode 100644 index 000000000..54faf3975 Binary files /dev/null and b/imgs/icons/3010.png differ diff --git a/imgs/icons/3012.png b/imgs/icons/3012.png new file mode 100644 index 000000000..2999e98cb Binary files /dev/null and b/imgs/icons/3012.png differ diff --git a/imgs/icons/57_16.png b/imgs/icons/3013.png similarity index 100% rename from imgs/icons/57_16.png rename to imgs/icons/3013.png diff --git a/imgs/icons/3019.png b/imgs/icons/3019.png new file mode 100644 index 000000000..cd43cbf24 Binary files /dev/null and b/imgs/icons/3019.png differ diff --git a/imgs/icons/3025.png b/imgs/icons/3025.png new file mode 100644 index 000000000..631c2946d Binary files /dev/null and b/imgs/icons/3025.png differ diff --git a/imgs/icons/3036.png b/imgs/icons/3036.png new file mode 100644 index 000000000..2e54703ad Binary files /dev/null and b/imgs/icons/3036.png differ diff --git a/imgs/icons/35_3.png b/imgs/icons/3074.png similarity index 100% rename from imgs/icons/35_3.png rename to imgs/icons/3074.png diff --git a/imgs/icons/31.png b/imgs/icons/31.png new file mode 100644 index 000000000..b42900b03 Binary files /dev/null and b/imgs/icons/31.png differ diff --git a/imgs/icons/3181.png b/imgs/icons/3181.png new file mode 100644 index 000000000..4ea42ec86 Binary files /dev/null and b/imgs/icons/3181.png differ diff --git a/imgs/icons/3182.png b/imgs/icons/3182.png new file mode 100644 index 000000000..02a27d1ee Binary files /dev/null and b/imgs/icons/3182.png differ diff --git a/imgs/icons/3183.png b/imgs/icons/3183.png new file mode 100644 index 000000000..8eb1009fc Binary files /dev/null and b/imgs/icons/3183.png differ diff --git a/imgs/icons/3184.png b/imgs/icons/3184.png new file mode 100644 index 000000000..dfcea100e Binary files /dev/null and b/imgs/icons/3184.png differ diff --git a/imgs/icons/3185.png b/imgs/icons/3185.png new file mode 100644 index 000000000..3cbe41c42 Binary files /dev/null and b/imgs/icons/3185.png differ diff --git a/imgs/icons/3186.png b/imgs/icons/3186.png new file mode 100644 index 000000000..98e2b6396 Binary files /dev/null and b/imgs/icons/3186.png differ diff --git a/imgs/icons/3187.png b/imgs/icons/3187.png new file mode 100644 index 000000000..194e6e35d Binary files /dev/null and b/imgs/icons/3187.png differ diff --git a/imgs/icons/3188.png b/imgs/icons/3188.png new file mode 100644 index 000000000..fe8f4cab3 Binary files /dev/null and b/imgs/icons/3188.png differ diff --git a/imgs/icons/3189.png b/imgs/icons/3189.png new file mode 100644 index 000000000..b505c9856 Binary files /dev/null and b/imgs/icons/3189.png differ diff --git a/imgs/icons/3190.png b/imgs/icons/3190.png new file mode 100644 index 000000000..293da75a1 Binary files /dev/null and b/imgs/icons/3190.png differ diff --git a/imgs/icons/3191.png b/imgs/icons/3191.png new file mode 100644 index 000000000..e6b3ca92b Binary files /dev/null and b/imgs/icons/3191.png differ diff --git a/imgs/icons/3192.png b/imgs/icons/3192.png new file mode 100644 index 000000000..31deb6c06 Binary files /dev/null and b/imgs/icons/3192.png differ diff --git a/imgs/icons/68_9.png b/imgs/icons/3193.png similarity index 100% rename from imgs/icons/68_9.png rename to imgs/icons/3193.png diff --git a/imgs/icons/68_10.png b/imgs/icons/3194.png similarity index 100% rename from imgs/icons/68_10.png rename to imgs/icons/3194.png diff --git a/imgs/icons/68_11.png b/imgs/icons/3195.png similarity index 100% rename from imgs/icons/68_11.png rename to imgs/icons/3195.png diff --git a/imgs/icons/68_12.png b/imgs/icons/3196.png similarity index 100% rename from imgs/icons/68_12.png rename to imgs/icons/3196.png diff --git a/imgs/icons/68_13.png b/imgs/icons/3197.png similarity index 100% rename from imgs/icons/68_13.png rename to imgs/icons/3197.png diff --git a/imgs/icons/68_14.png b/imgs/icons/3198.png similarity index 100% rename from imgs/icons/68_14.png rename to imgs/icons/3198.png diff --git a/imgs/icons/68_15.png b/imgs/icons/3199.png similarity index 100% rename from imgs/icons/68_15.png rename to imgs/icons/3199.png diff --git a/imgs/icons/68_16.png b/imgs/icons/3200.png similarity index 100% rename from imgs/icons/68_16.png rename to imgs/icons/3200.png diff --git a/imgs/icons/68_2.png b/imgs/icons/3201.png similarity index 100% rename from imgs/icons/68_2.png rename to imgs/icons/3201.png diff --git a/imgs/icons/68_3.png b/imgs/icons/3202.png similarity index 100% rename from imgs/icons/68_3.png rename to imgs/icons/3202.png diff --git a/imgs/icons/68_4.png b/imgs/icons/3203.png similarity index 100% rename from imgs/icons/68_4.png rename to imgs/icons/3203.png diff --git a/imgs/icons/62_1.png b/imgs/icons/3210.png similarity index 100% rename from imgs/icons/62_1.png rename to imgs/icons/3210.png diff --git a/imgs/icons/62_2.png b/imgs/icons/3211.png similarity index 100% rename from imgs/icons/62_2.png rename to imgs/icons/3211.png diff --git a/imgs/icons/62_3.png b/imgs/icons/3212.png similarity index 100% rename from imgs/icons/62_3.png rename to imgs/icons/3212.png diff --git a/imgs/icons/62_4.png b/imgs/icons/3213.png similarity index 100% rename from imgs/icons/62_4.png rename to imgs/icons/3213.png diff --git a/imgs/icons/62_5.png b/imgs/icons/3214.png similarity index 100% rename from imgs/icons/62_5.png rename to imgs/icons/3214.png diff --git a/imgs/icons/62_6.png b/imgs/icons/3215.png similarity index 100% rename from imgs/icons/62_6.png rename to imgs/icons/3215.png diff --git a/imgs/icons/62_7.png b/imgs/icons/3216.png similarity index 100% rename from imgs/icons/62_7.png rename to imgs/icons/3216.png diff --git a/imgs/icons/62_8.png b/imgs/icons/3217.png similarity index 100% rename from imgs/icons/62_8.png rename to imgs/icons/3217.png diff --git a/imgs/icons/62_9.png b/imgs/icons/3218.png similarity index 100% rename from imgs/icons/62_9.png rename to imgs/icons/3218.png diff --git a/imgs/icons/62_10.png b/imgs/icons/3219.png similarity index 100% rename from imgs/icons/62_10.png rename to imgs/icons/3219.png diff --git a/imgs/icons/62_11.png b/imgs/icons/3220.png similarity index 100% rename from imgs/icons/62_11.png rename to imgs/icons/3220.png diff --git a/imgs/icons/62_12.png b/imgs/icons/3221.png similarity index 100% rename from imgs/icons/62_12.png rename to imgs/icons/3221.png diff --git a/imgs/icons/62_13.png b/imgs/icons/3222.png similarity index 100% rename from imgs/icons/62_13.png rename to imgs/icons/3222.png diff --git a/imgs/icons/62_14.png b/imgs/icons/3223.png similarity index 100% rename from imgs/icons/62_14.png rename to imgs/icons/3223.png diff --git a/imgs/icons/62_15.png b/imgs/icons/3224.png similarity index 100% rename from imgs/icons/62_15.png rename to imgs/icons/3224.png diff --git a/imgs/icons/62_16.png b/imgs/icons/3225.png similarity index 100% rename from imgs/icons/62_16.png rename to imgs/icons/3225.png diff --git a/imgs/icons/63_13.png b/imgs/icons/3226.png similarity index 100% rename from imgs/icons/63_13.png rename to imgs/icons/3226.png diff --git a/imgs/icons/63_14.png b/imgs/icons/3227.png similarity index 100% rename from imgs/icons/63_14.png rename to imgs/icons/3227.png diff --git a/imgs/icons/63_15.png b/imgs/icons/3228.png similarity index 100% rename from imgs/icons/63_15.png rename to imgs/icons/3228.png diff --git a/imgs/icons/63_16.png b/imgs/icons/3229.png similarity index 100% rename from imgs/icons/63_16.png rename to imgs/icons/3229.png diff --git a/imgs/icons/3230.png b/imgs/icons/3230.png new file mode 100644 index 000000000..a82fe277a Binary files /dev/null and b/imgs/icons/3230.png differ diff --git a/imgs/icons/3231.png b/imgs/icons/3231.png new file mode 100644 index 000000000..137c3234f Binary files /dev/null and b/imgs/icons/3231.png differ diff --git a/imgs/icons/3232.png b/imgs/icons/3232.png new file mode 100644 index 000000000..72a62624f Binary files /dev/null and b/imgs/icons/3232.png differ diff --git a/imgs/icons/3233.png b/imgs/icons/3233.png new file mode 100644 index 000000000..67a7b64e2 Binary files /dev/null and b/imgs/icons/3233.png differ diff --git a/imgs/icons/64_5.png b/imgs/icons/3234.png similarity index 100% rename from imgs/icons/64_5.png rename to imgs/icons/3234.png diff --git a/imgs/icons/64_6.png b/imgs/icons/3235.png similarity index 100% rename from imgs/icons/64_6.png rename to imgs/icons/3235.png diff --git a/imgs/icons/64_7.png b/imgs/icons/3236.png similarity index 100% rename from imgs/icons/64_7.png rename to imgs/icons/3236.png diff --git a/imgs/icons/64_8.png b/imgs/icons/3237.png similarity index 100% rename from imgs/icons/64_8.png rename to imgs/icons/3237.png diff --git a/imgs/icons/64_11.png b/imgs/icons/3240.png similarity index 100% rename from imgs/icons/64_11.png rename to imgs/icons/3240.png diff --git a/imgs/icons/64_12.png b/imgs/icons/3241.png similarity index 100% rename from imgs/icons/64_12.png rename to imgs/icons/3241.png diff --git a/imgs/icons/3246.png b/imgs/icons/3246.png new file mode 100644 index 000000000..30ba7fe18 Binary files /dev/null and b/imgs/icons/3246.png differ diff --git a/imgs/icons/3247.png b/imgs/icons/3247.png new file mode 100644 index 000000000..ac262341b Binary files /dev/null and b/imgs/icons/3247.png differ diff --git a/imgs/icons/3248.png b/imgs/icons/3248.png new file mode 100644 index 000000000..9e4e86f10 Binary files /dev/null and b/imgs/icons/3248.png differ diff --git a/imgs/icons/3249.png b/imgs/icons/3249.png new file mode 100644 index 000000000..ca404da38 Binary files /dev/null and b/imgs/icons/3249.png differ diff --git a/imgs/icons/3250.png b/imgs/icons/3250.png new file mode 100644 index 000000000..93a2210a5 Binary files /dev/null and b/imgs/icons/3250.png differ diff --git a/imgs/icons/3251.png b/imgs/icons/3251.png new file mode 100644 index 000000000..4f93098fc Binary files /dev/null and b/imgs/icons/3251.png differ diff --git a/imgs/icons/3252.png b/imgs/icons/3252.png new file mode 100644 index 000000000..858e3804b Binary files /dev/null and b/imgs/icons/3252.png differ diff --git a/imgs/icons/3253.png b/imgs/icons/3253.png new file mode 100644 index 000000000..e055c56a3 Binary files /dev/null and b/imgs/icons/3253.png differ diff --git a/imgs/icons/3254.png b/imgs/icons/3254.png new file mode 100644 index 000000000..2a6dd41b9 Binary files /dev/null and b/imgs/icons/3254.png differ diff --git a/imgs/icons/3255.png b/imgs/icons/3255.png new file mode 100644 index 000000000..6a0951721 Binary files /dev/null and b/imgs/icons/3255.png differ diff --git a/imgs/icons/3256.png b/imgs/icons/3256.png new file mode 100644 index 000000000..a8904b701 Binary files /dev/null and b/imgs/icons/3256.png differ diff --git a/imgs/icons/3257.png b/imgs/icons/3257.png new file mode 100644 index 000000000..1104c6ff2 Binary files /dev/null and b/imgs/icons/3257.png differ diff --git a/imgs/icons/3258.png b/imgs/icons/3258.png new file mode 100644 index 000000000..950de7298 Binary files /dev/null and b/imgs/icons/3258.png differ diff --git a/imgs/icons/3259.png b/imgs/icons/3259.png new file mode 100644 index 000000000..1169f2ba2 Binary files /dev/null and b/imgs/icons/3259.png differ diff --git a/imgs/icons/3260.png b/imgs/icons/3260.png new file mode 100644 index 000000000..4e40b0c5a Binary files /dev/null and b/imgs/icons/3260.png differ diff --git a/imgs/icons/3261.png b/imgs/icons/3261.png new file mode 100644 index 000000000..3bce43692 Binary files /dev/null and b/imgs/icons/3261.png differ diff --git a/imgs/icons/3262.png b/imgs/icons/3262.png new file mode 100644 index 000000000..39bed64b4 Binary files /dev/null and b/imgs/icons/3262.png differ diff --git a/imgs/icons/3263.png b/imgs/icons/3263.png new file mode 100644 index 000000000..c5b622919 Binary files /dev/null and b/imgs/icons/3263.png differ diff --git a/imgs/icons/3264.png b/imgs/icons/3264.png new file mode 100644 index 000000000..65db16123 Binary files /dev/null and b/imgs/icons/3264.png differ diff --git a/imgs/icons/3265.png b/imgs/icons/3265.png new file mode 100644 index 000000000..275655fc6 Binary files /dev/null and b/imgs/icons/3265.png differ diff --git a/imgs/icons/68_1.png b/imgs/icons/3266.png similarity index 100% rename from imgs/icons/68_1.png rename to imgs/icons/3266.png diff --git a/imgs/icons/70_5.png b/imgs/icons/3278.png similarity index 100% rename from imgs/icons/70_5.png rename to imgs/icons/3278.png diff --git a/imgs/icons/70_8.png b/imgs/icons/3279.png similarity index 100% rename from imgs/icons/70_8.png rename to imgs/icons/3279.png diff --git a/imgs/icons/70_6.png b/imgs/icons/3280.png similarity index 100% rename from imgs/icons/70_6.png rename to imgs/icons/3280.png diff --git a/imgs/icons/70_7.png b/imgs/icons/3281.png similarity index 100% rename from imgs/icons/70_7.png rename to imgs/icons/3281.png diff --git a/imgs/icons/70_3.png b/imgs/icons/3282.png similarity index 100% rename from imgs/icons/70_3.png rename to imgs/icons/3282.png diff --git a/imgs/icons/70_4.png b/imgs/icons/3283.png similarity index 100% rename from imgs/icons/70_4.png rename to imgs/icons/3283.png diff --git a/imgs/icons/50_11.png b/imgs/icons/33.png similarity index 100% rename from imgs/icons/50_11.png rename to imgs/icons/33.png diff --git a/imgs/icons/70_10.png b/imgs/icons/3300.png similarity index 100% rename from imgs/icons/70_10.png rename to imgs/icons/3300.png diff --git a/imgs/icons/70_12.png b/imgs/icons/3302.png similarity index 100% rename from imgs/icons/70_12.png rename to imgs/icons/3302.png diff --git a/imgs/icons/70_13.png b/imgs/icons/3303.png similarity index 100% rename from imgs/icons/70_13.png rename to imgs/icons/3303.png diff --git a/imgs/icons/70_14.png b/imgs/icons/3304.png similarity index 100% rename from imgs/icons/70_14.png rename to imgs/icons/3304.png diff --git a/imgs/icons/70_15.png b/imgs/icons/3305.png similarity index 100% rename from imgs/icons/70_15.png rename to imgs/icons/3305.png diff --git a/imgs/icons/70_16.png b/imgs/icons/3306.png similarity index 100% rename from imgs/icons/70_16.png rename to imgs/icons/3306.png diff --git a/imgs/icons/3307.png b/imgs/icons/3307.png new file mode 100644 index 000000000..273d5ff82 Binary files /dev/null and b/imgs/icons/3307.png differ diff --git a/imgs/icons/3308.png b/imgs/icons/3308.png new file mode 100644 index 000000000..b0234ca68 Binary files /dev/null and b/imgs/icons/3308.png differ diff --git a/imgs/icons/3309.png b/imgs/icons/3309.png new file mode 100644 index 000000000..9555ecc5d Binary files /dev/null and b/imgs/icons/3309.png differ diff --git a/imgs/icons/3310.png b/imgs/icons/3310.png new file mode 100644 index 000000000..1a03688b5 Binary files /dev/null and b/imgs/icons/3310.png differ diff --git a/imgs/icons/3311.png b/imgs/icons/3311.png new file mode 100644 index 000000000..ed828f13d Binary files /dev/null and b/imgs/icons/3311.png differ diff --git a/imgs/icons/3312.png b/imgs/icons/3312.png new file mode 100644 index 000000000..a8dc323c1 Binary files /dev/null and b/imgs/icons/3312.png differ diff --git a/imgs/icons/3313.png b/imgs/icons/3313.png new file mode 100644 index 000000000..5a7d469c8 Binary files /dev/null and b/imgs/icons/3313.png differ diff --git a/imgs/icons/3314.png b/imgs/icons/3314.png new file mode 100644 index 000000000..5f61b1117 Binary files /dev/null and b/imgs/icons/3314.png differ diff --git a/imgs/icons/3315.png b/imgs/icons/3315.png new file mode 100644 index 000000000..d3d12a680 Binary files /dev/null and b/imgs/icons/3315.png differ diff --git a/imgs/icons/3316.png b/imgs/icons/3316.png new file mode 100644 index 000000000..5d9f53b2b Binary files /dev/null and b/imgs/icons/3316.png differ diff --git a/imgs/icons/3317.png b/imgs/icons/3317.png new file mode 100644 index 000000000..3cdd5605b Binary files /dev/null and b/imgs/icons/3317.png differ diff --git a/imgs/icons/3318.png b/imgs/icons/3318.png new file mode 100644 index 000000000..e7b86f56d Binary files /dev/null and b/imgs/icons/3318.png differ diff --git a/imgs/icons/3319.png b/imgs/icons/3319.png new file mode 100644 index 000000000..cdbbe9f1e Binary files /dev/null and b/imgs/icons/3319.png differ diff --git a/imgs/icons/3320.png b/imgs/icons/3320.png new file mode 100644 index 000000000..cd7ee5faf Binary files /dev/null and b/imgs/icons/3320.png differ diff --git a/imgs/icons/3321.png b/imgs/icons/3321.png new file mode 100644 index 000000000..2f67c1deb Binary files /dev/null and b/imgs/icons/3321.png differ diff --git a/imgs/icons/3322.png b/imgs/icons/3322.png new file mode 100644 index 000000000..b3d2d9f26 Binary files /dev/null and b/imgs/icons/3322.png differ diff --git a/imgs/icons/3323.png b/imgs/icons/3323.png new file mode 100644 index 000000000..3365cae85 Binary files /dev/null and b/imgs/icons/3323.png differ diff --git a/imgs/icons/3324.png b/imgs/icons/3324.png new file mode 100644 index 000000000..cf60ca050 Binary files /dev/null and b/imgs/icons/3324.png differ diff --git a/imgs/icons/3325.png b/imgs/icons/3325.png new file mode 100644 index 000000000..d9b5b8643 Binary files /dev/null and b/imgs/icons/3325.png differ diff --git a/imgs/icons/3326.png b/imgs/icons/3326.png new file mode 100644 index 000000000..7377c3ad6 Binary files /dev/null and b/imgs/icons/3326.png differ diff --git a/imgs/icons/3327.png b/imgs/icons/3327.png new file mode 100644 index 000000000..1baa569fd Binary files /dev/null and b/imgs/icons/3327.png differ diff --git a/imgs/icons/3328.png b/imgs/icons/3328.png new file mode 100644 index 000000000..6d0a2b0a2 Binary files /dev/null and b/imgs/icons/3328.png differ diff --git a/imgs/icons/3329.png b/imgs/icons/3329.png new file mode 100644 index 000000000..a2d242d1b Binary files /dev/null and b/imgs/icons/3329.png differ diff --git a/imgs/icons/3330.png b/imgs/icons/3330.png new file mode 100644 index 000000000..4b87d803c Binary files /dev/null and b/imgs/icons/3330.png differ diff --git a/imgs/icons/3333.png b/imgs/icons/3333.png new file mode 100644 index 000000000..53992b878 Binary files /dev/null and b/imgs/icons/3333.png differ diff --git a/imgs/icons/3334.png b/imgs/icons/3334.png new file mode 100644 index 000000000..af009578f Binary files /dev/null and b/imgs/icons/3334.png differ diff --git a/imgs/icons/3335.png b/imgs/icons/3335.png new file mode 100644 index 000000000..5a6fbaa8b Binary files /dev/null and b/imgs/icons/3335.png differ diff --git a/imgs/icons/3336.png b/imgs/icons/3336.png new file mode 100644 index 000000000..034daa298 Binary files /dev/null and b/imgs/icons/3336.png differ diff --git a/imgs/icons/3337.png b/imgs/icons/3337.png new file mode 100644 index 000000000..90aa55da6 Binary files /dev/null and b/imgs/icons/3337.png differ diff --git a/imgs/icons/3338.png b/imgs/icons/3338.png new file mode 100644 index 000000000..6ff574a94 Binary files /dev/null and b/imgs/icons/3338.png differ diff --git a/imgs/icons/74_1.png b/imgs/icons/3339.png similarity index 100% rename from imgs/icons/74_1.png rename to imgs/icons/3339.png diff --git a/imgs/icons/74_2.png b/imgs/icons/3340.png similarity index 100% rename from imgs/icons/74_2.png rename to imgs/icons/3340.png diff --git a/imgs/icons/74_3.png b/imgs/icons/3341.png similarity index 100% rename from imgs/icons/74_3.png rename to imgs/icons/3341.png diff --git a/imgs/icons/74_4.png b/imgs/icons/3342.png similarity index 100% rename from imgs/icons/74_4.png rename to imgs/icons/3342.png diff --git a/imgs/icons/74_5.png b/imgs/icons/3343.png similarity index 100% rename from imgs/icons/74_5.png rename to imgs/icons/3343.png diff --git a/imgs/icons/74_6.png b/imgs/icons/3344.png similarity index 100% rename from imgs/icons/74_6.png rename to imgs/icons/3344.png diff --git a/imgs/icons/74_7.png b/imgs/icons/3345.png similarity index 100% rename from imgs/icons/74_7.png rename to imgs/icons/3345.png diff --git a/imgs/icons/74_8.png b/imgs/icons/3346.png similarity index 100% rename from imgs/icons/74_8.png rename to imgs/icons/3346.png diff --git a/imgs/icons/74_9.png b/imgs/icons/3347.png similarity index 100% rename from imgs/icons/74_9.png rename to imgs/icons/3347.png diff --git a/imgs/icons/74_10.png b/imgs/icons/3348.png similarity index 100% rename from imgs/icons/74_10.png rename to imgs/icons/3348.png diff --git a/imgs/icons/8_16.png b/imgs/icons/34.png similarity index 100% rename from imgs/icons/8_16.png rename to imgs/icons/34.png diff --git a/imgs/icons/76_1.png b/imgs/icons/3433.png similarity index 100% rename from imgs/icons/76_1.png rename to imgs/icons/3433.png diff --git a/imgs/icons/3435.png b/imgs/icons/3435.png new file mode 100644 index 000000000..f8f48c881 Binary files /dev/null and b/imgs/icons/3435.png differ diff --git a/imgs/icons/3436.png b/imgs/icons/3436.png new file mode 100644 index 000000000..70d72fa58 Binary files /dev/null and b/imgs/icons/3436.png differ diff --git a/imgs/icons/3437.png b/imgs/icons/3437.png new file mode 100644 index 000000000..e5899a458 Binary files /dev/null and b/imgs/icons/3437.png differ diff --git a/imgs/icons/3438.png b/imgs/icons/3438.png new file mode 100644 index 000000000..aabd42c96 Binary files /dev/null and b/imgs/icons/3438.png differ diff --git a/imgs/icons/3439.png b/imgs/icons/3439.png new file mode 100644 index 000000000..6ff4e6e84 Binary files /dev/null and b/imgs/icons/3439.png differ diff --git a/imgs/icons/3440.png b/imgs/icons/3440.png new file mode 100644 index 000000000..0644ae27c Binary files /dev/null and b/imgs/icons/3440.png differ diff --git a/imgs/icons/3441.png b/imgs/icons/3441.png new file mode 100644 index 000000000..73e89cb01 Binary files /dev/null and b/imgs/icons/3441.png differ diff --git a/imgs/icons/3442.png b/imgs/icons/3442.png new file mode 100644 index 000000000..d90b179e7 Binary files /dev/null and b/imgs/icons/3442.png differ diff --git a/imgs/icons/3443.png b/imgs/icons/3443.png new file mode 100644 index 000000000..8ad8a1664 Binary files /dev/null and b/imgs/icons/3443.png differ diff --git a/imgs/icons/3444.png b/imgs/icons/3444.png new file mode 100644 index 000000000..00cf4bca1 Binary files /dev/null and b/imgs/icons/3444.png differ diff --git a/imgs/icons/3445.png b/imgs/icons/3445.png new file mode 100644 index 000000000..c820a3cbc Binary files /dev/null and b/imgs/icons/3445.png differ diff --git a/imgs/icons/3446.png b/imgs/icons/3446.png new file mode 100644 index 000000000..d4ed6820a Binary files /dev/null and b/imgs/icons/3446.png differ diff --git a/imgs/icons/3447.png b/imgs/icons/3447.png new file mode 100644 index 000000000..110984ac2 Binary files /dev/null and b/imgs/icons/3447.png differ diff --git a/imgs/icons/3448.png b/imgs/icons/3448.png new file mode 100644 index 000000000..823292c7b Binary files /dev/null and b/imgs/icons/3448.png differ diff --git a/imgs/icons/3449.png b/imgs/icons/3449.png new file mode 100644 index 000000000..4a2665fd3 Binary files /dev/null and b/imgs/icons/3449.png differ diff --git a/imgs/icons/3450.png b/imgs/icons/3450.png new file mode 100644 index 000000000..d4a8a46b1 Binary files /dev/null and b/imgs/icons/3450.png differ diff --git a/imgs/icons/13_5.png b/imgs/icons/349.png similarity index 100% rename from imgs/icons/13_5.png rename to imgs/icons/349.png diff --git a/imgs/icons/13_13.png b/imgs/icons/350.png similarity index 100% rename from imgs/icons/13_13.png rename to imgs/icons/350.png diff --git a/imgs/icons/13_9.png b/imgs/icons/352.png similarity index 100% rename from imgs/icons/13_9.png rename to imgs/icons/352.png diff --git a/imgs/icons/13_10.png b/imgs/icons/355.png similarity index 100% rename from imgs/icons/13_10.png rename to imgs/icons/355.png diff --git a/imgs/icons/13_14.png b/imgs/icons/356.png similarity index 100% rename from imgs/icons/13_14.png rename to imgs/icons/356.png diff --git a/imgs/icons/13_15.png b/imgs/icons/360.png similarity index 100% rename from imgs/icons/13_15.png rename to imgs/icons/360.png diff --git a/imgs/icons/13_11.png b/imgs/icons/361.png similarity index 100% rename from imgs/icons/13_11.png rename to imgs/icons/361.png diff --git a/imgs/icons/76_6.png b/imgs/icons/3631.png similarity index 100% rename from imgs/icons/76_6.png rename to imgs/icons/3631.png diff --git a/imgs/icons/76_7.png b/imgs/icons/3636.png similarity index 100% rename from imgs/icons/76_7.png rename to imgs/icons/3636.png diff --git a/imgs/icons/76_5.png b/imgs/icons/3641.png similarity index 100% rename from imgs/icons/76_5.png rename to imgs/icons/3641.png diff --git a/imgs/icons/76_8.png b/imgs/icons/3646.png similarity index 100% rename from imgs/icons/76_8.png rename to imgs/icons/3646.png diff --git a/imgs/icons/13_3.png b/imgs/icons/365.png similarity index 100% rename from imgs/icons/13_3.png rename to imgs/icons/365.png diff --git a/imgs/icons/13_7.png b/imgs/icons/366.png similarity index 100% rename from imgs/icons/13_7.png rename to imgs/icons/366.png diff --git a/imgs/icons/13_6.png b/imgs/icons/370.png similarity index 100% rename from imgs/icons/13_6.png rename to imgs/icons/370.png diff --git a/imgs/icons/13_2.png b/imgs/icons/371.png similarity index 100% rename from imgs/icons/13_2.png rename to imgs/icons/371.png diff --git a/imgs/icons/3716.png b/imgs/icons/3716.png new file mode 100644 index 000000000..fa58aa849 Binary files /dev/null and b/imgs/icons/3716.png differ diff --git a/imgs/icons/3717.png b/imgs/icons/3717.png new file mode 100644 index 000000000..bb180c9e6 Binary files /dev/null and b/imgs/icons/3717.png differ diff --git a/imgs/icons/3718.png b/imgs/icons/3718.png new file mode 100644 index 000000000..2d6ff813a Binary files /dev/null and b/imgs/icons/3718.png differ diff --git a/imgs/icons/3719.png b/imgs/icons/3719.png new file mode 100644 index 000000000..0bb2390bd Binary files /dev/null and b/imgs/icons/3719.png differ diff --git a/imgs/icons/3720.png b/imgs/icons/3720.png new file mode 100644 index 000000000..f1505c304 Binary files /dev/null and b/imgs/icons/3720.png differ diff --git a/imgs/icons/3721.png b/imgs/icons/3721.png new file mode 100644 index 000000000..395bf1bee Binary files /dev/null and b/imgs/icons/3721.png differ diff --git a/imgs/icons/3722.png b/imgs/icons/3722.png new file mode 100644 index 000000000..b0a2d1973 Binary files /dev/null and b/imgs/icons/3722.png differ diff --git a/imgs/icons/3723.png b/imgs/icons/3723.png new file mode 100644 index 000000000..d3482d5cf Binary files /dev/null and b/imgs/icons/3723.png differ diff --git a/imgs/icons/3724.png b/imgs/icons/3724.png new file mode 100644 index 000000000..efad7d902 Binary files /dev/null and b/imgs/icons/3724.png differ diff --git a/imgs/icons/3725.png b/imgs/icons/3725.png new file mode 100644 index 000000000..395d9593a Binary files /dev/null and b/imgs/icons/3725.png differ diff --git a/imgs/icons/3726.png b/imgs/icons/3726.png new file mode 100644 index 000000000..65721890b Binary files /dev/null and b/imgs/icons/3726.png differ diff --git a/imgs/icons/3727.png b/imgs/icons/3727.png new file mode 100644 index 000000000..ae19b7c51 Binary files /dev/null and b/imgs/icons/3727.png differ diff --git a/imgs/icons/3729.png b/imgs/icons/3729.png new file mode 100644 index 000000000..604ae1ee8 Binary files /dev/null and b/imgs/icons/3729.png differ diff --git a/imgs/icons/3730.png b/imgs/icons/3730.png new file mode 100644 index 000000000..c438c759f Binary files /dev/null and b/imgs/icons/3730.png differ diff --git a/imgs/icons/3733.png b/imgs/icons/3733.png new file mode 100644 index 000000000..4e357b2c7 Binary files /dev/null and b/imgs/icons/3733.png differ diff --git a/imgs/icons/3734.png b/imgs/icons/3734.png new file mode 100644 index 000000000..9d352bfcd Binary files /dev/null and b/imgs/icons/3734.png differ diff --git a/imgs/icons/3736.png b/imgs/icons/3736.png new file mode 100644 index 000000000..2c7c2af44 Binary files /dev/null and b/imgs/icons/3736.png differ diff --git a/imgs/icons/3737.png b/imgs/icons/3737.png new file mode 100644 index 000000000..f1c057122 Binary files /dev/null and b/imgs/icons/3737.png differ diff --git a/imgs/icons/3738.png b/imgs/icons/3738.png new file mode 100644 index 000000000..1cf8f3800 Binary files /dev/null and b/imgs/icons/3738.png differ diff --git a/imgs/icons/3739.png b/imgs/icons/3739.png new file mode 100644 index 000000000..3b149b5be Binary files /dev/null and b/imgs/icons/3739.png differ diff --git a/imgs/icons/3740.png b/imgs/icons/3740.png new file mode 100644 index 000000000..54e7d8aa2 Binary files /dev/null and b/imgs/icons/3740.png differ diff --git a/imgs/icons/3741.png b/imgs/icons/3741.png new file mode 100644 index 000000000..f312e0458 Binary files /dev/null and b/imgs/icons/3741.png differ diff --git a/imgs/icons/3744.png b/imgs/icons/3744.png new file mode 100644 index 000000000..1c78ac12a Binary files /dev/null and b/imgs/icons/3744.png differ diff --git a/imgs/icons/3745.png b/imgs/icons/3745.png new file mode 100644 index 000000000..642a53986 Binary files /dev/null and b/imgs/icons/3745.png differ diff --git a/imgs/icons/3746.png b/imgs/icons/3746.png new file mode 100644 index 000000000..681b713bc Binary files /dev/null and b/imgs/icons/3746.png differ diff --git a/imgs/icons/3750.png b/imgs/icons/3750.png new file mode 100644 index 000000000..8009cf6fc Binary files /dev/null and b/imgs/icons/3750.png differ diff --git a/imgs/icons/3751.png b/imgs/icons/3751.png new file mode 100644 index 000000000..6580f0077 Binary files /dev/null and b/imgs/icons/3751.png differ diff --git a/imgs/icons/3753.png b/imgs/icons/3753.png new file mode 100644 index 000000000..09ba47e81 Binary files /dev/null and b/imgs/icons/3753.png differ diff --git a/imgs/icons/3754.png b/imgs/icons/3754.png new file mode 100644 index 000000000..59f37595c Binary files /dev/null and b/imgs/icons/3754.png differ diff --git a/imgs/icons/3755.png b/imgs/icons/3755.png new file mode 100644 index 000000000..b880d2258 Binary files /dev/null and b/imgs/icons/3755.png differ diff --git a/imgs/icons/76_4.png b/imgs/icons/3756.png similarity index 100% rename from imgs/icons/76_4.png rename to imgs/icons/3756.png diff --git a/imgs/icons/76_16.png b/imgs/icons/3759.png similarity index 100% rename from imgs/icons/76_16.png rename to imgs/icons/3759.png diff --git a/imgs/icons/13_1.png b/imgs/icons/376.png similarity index 100% rename from imgs/icons/13_1.png rename to imgs/icons/376.png diff --git a/imgs/icons/89_1.png b/imgs/icons/3762.png similarity index 100% rename from imgs/icons/89_1.png rename to imgs/icons/3762.png diff --git a/imgs/icons/89_2.png b/imgs/icons/3763.png similarity index 100% rename from imgs/icons/89_2.png rename to imgs/icons/3763.png diff --git a/imgs/icons/89_3.png b/imgs/icons/3764.png similarity index 100% rename from imgs/icons/89_3.png rename to imgs/icons/3764.png diff --git a/imgs/icons/89_4.png b/imgs/icons/3765.png similarity index 100% rename from imgs/icons/89_4.png rename to imgs/icons/3765.png diff --git a/imgs/icons/3766.png b/imgs/icons/3766.png new file mode 100644 index 000000000..d1d1d98c4 Binary files /dev/null and b/imgs/icons/3766.png differ diff --git a/imgs/icons/12_15.png b/imgs/icons/379.png similarity index 100% rename from imgs/icons/12_15.png rename to imgs/icons/379.png diff --git a/imgs/icons/12_11.png b/imgs/icons/381.png similarity index 100% rename from imgs/icons/12_11.png rename to imgs/icons/381.png diff --git a/imgs/icons/12_14.png b/imgs/icons/384.png similarity index 100% rename from imgs/icons/12_14.png rename to imgs/icons/384.png diff --git a/imgs/icons/12_10.png b/imgs/icons/386.png similarity index 100% rename from imgs/icons/12_10.png rename to imgs/icons/386.png diff --git a/imgs/icons/12_9.png b/imgs/icons/387.png similarity index 100% rename from imgs/icons/12_9.png rename to imgs/icons/387.png diff --git a/imgs/icons/12_13.png b/imgs/icons/389.png similarity index 100% rename from imgs/icons/12_13.png rename to imgs/icons/389.png diff --git a/imgs/icons/3943.png b/imgs/icons/3943.png new file mode 100644 index 000000000..ec15ce642 Binary files /dev/null and b/imgs/icons/3943.png differ diff --git a/imgs/icons/3945.png b/imgs/icons/3945.png new file mode 100644 index 000000000..1501c7da5 Binary files /dev/null and b/imgs/icons/3945.png differ diff --git a/imgs/icons/3946.png b/imgs/icons/3946.png new file mode 100644 index 000000000..4a31b572d Binary files /dev/null and b/imgs/icons/3946.png differ diff --git a/imgs/icons/3947.png b/imgs/icons/3947.png new file mode 100644 index 000000000..54575acd4 Binary files /dev/null and b/imgs/icons/3947.png differ diff --git a/imgs/icons/3948.png b/imgs/icons/3948.png new file mode 100644 index 000000000..b1665f39b Binary files /dev/null and b/imgs/icons/3948.png differ diff --git a/imgs/icons/3950.png b/imgs/icons/3950.png new file mode 100644 index 000000000..ff7822814 Binary files /dev/null and b/imgs/icons/3950.png differ diff --git a/imgs/icons/3951.png b/imgs/icons/3951.png new file mode 100644 index 000000000..97dc394d1 Binary files /dev/null and b/imgs/icons/3951.png differ diff --git a/imgs/icons/3952.png b/imgs/icons/3952.png new file mode 100644 index 000000000..747597fb9 Binary files /dev/null and b/imgs/icons/3952.png differ diff --git a/imgs/icons/3953.png b/imgs/icons/3953.png new file mode 100644 index 000000000..c11b03066 Binary files /dev/null and b/imgs/icons/3953.png differ diff --git a/imgs/icons/95_5.png b/imgs/icons/3955.png similarity index 100% rename from imgs/icons/95_5.png rename to imgs/icons/3955.png diff --git a/imgs/icons/11_5.png b/imgs/icons/398.png similarity index 100% rename from imgs/icons/11_5.png rename to imgs/icons/398.png diff --git a/imgs/icons/400.png b/imgs/icons/400.png new file mode 100644 index 000000000..518e3dc75 Binary files /dev/null and b/imgs/icons/400.png differ diff --git a/imgs/icons/401.png b/imgs/icons/401.png new file mode 100644 index 000000000..b63fab8d1 Binary files /dev/null and b/imgs/icons/401.png differ diff --git a/imgs/icons/402.png b/imgs/icons/402.png new file mode 100644 index 000000000..e5e4a54b1 Binary files /dev/null and b/imgs/icons/402.png differ diff --git a/imgs/icons/404.png b/imgs/icons/404.png new file mode 100644 index 000000000..b39071f4c Binary files /dev/null and b/imgs/icons/404.png differ diff --git a/imgs/icons/405.png b/imgs/icons/405.png new file mode 100644 index 000000000..e4b58d21d Binary files /dev/null and b/imgs/icons/405.png differ diff --git a/imgs/icons/8_12.png b/imgs/icons/413.png similarity index 100% rename from imgs/icons/8_12.png rename to imgs/icons/413.png diff --git a/imgs/icons/4_16.png b/imgs/icons/4_16.png deleted file mode 100644 index 811602e78..000000000 Binary files a/imgs/icons/4_16.png and /dev/null differ diff --git a/imgs/icons/5_17.png b/imgs/icons/5_17.png deleted file mode 100644 index c7772da4e..000000000 Binary files a/imgs/icons/5_17.png and /dev/null differ diff --git a/imgs/icons/5_18.png b/imgs/icons/5_18.png deleted file mode 100644 index 7ba26a473..000000000 Binary files a/imgs/icons/5_18.png and /dev/null differ diff --git a/imgs/icons/5_19.png b/imgs/icons/5_19.png deleted file mode 100644 index d71f2877f..000000000 Binary files a/imgs/icons/5_19.png and /dev/null differ diff --git a/imgs/icons/5_20.png b/imgs/icons/5_20.png deleted file mode 100644 index f3c2accff..000000000 Binary files a/imgs/icons/5_20.png and /dev/null differ diff --git a/imgs/icons/5_21.png b/imgs/icons/5_21.png deleted file mode 100644 index 07f00b4ec..000000000 Binary files a/imgs/icons/5_21.png and /dev/null differ diff --git a/imgs/icons/2_9.png b/imgs/icons/67.png similarity index 100% rename from imgs/icons/2_9.png rename to imgs/icons/67.png diff --git a/imgs/icons/1_9.png b/imgs/icons/68.png similarity index 100% rename from imgs/icons/1_9.png rename to imgs/icons/68.png diff --git a/imgs/icons/1_13.png b/imgs/icons/69.png similarity index 100% rename from imgs/icons/1_13.png rename to imgs/icons/69.png diff --git a/imgs/icons/70.png b/imgs/icons/70.png new file mode 100644 index 000000000..cf8d2316f Binary files /dev/null and b/imgs/icons/70.png differ diff --git a/imgs/icons/3_13.png b/imgs/icons/71.png similarity index 100% rename from imgs/icons/3_13.png rename to imgs/icons/71.png diff --git a/imgs/icons/3_1.png b/imgs/icons/72.png similarity index 100% rename from imgs/icons/3_1.png rename to imgs/icons/72.png diff --git a/imgs/icons/2_14.png b/imgs/icons/73.png similarity index 100% rename from imgs/icons/2_14.png rename to imgs/icons/73.png diff --git a/imgs/icons/3_9.png b/imgs/icons/74.png similarity index 100% rename from imgs/icons/3_9.png rename to imgs/icons/74.png diff --git a/imgs/icons/2_10.png b/imgs/icons/76.png similarity index 100% rename from imgs/icons/2_10.png rename to imgs/icons/76.png diff --git a/imgs/icons/76_9.png b/imgs/icons/76_9.png deleted file mode 100644 index 2233095e1..000000000 Binary files a/imgs/icons/76_9.png and /dev/null differ diff --git a/imgs/icons/2_11.png b/imgs/icons/77.png similarity index 100% rename from imgs/icons/2_11.png rename to imgs/icons/77.png diff --git a/imgs/icons/1_10.png b/imgs/icons/79.png similarity index 100% rename from imgs/icons/1_10.png rename to imgs/icons/79.png diff --git a/imgs/icons/1_11.png b/imgs/icons/80.png similarity index 100% rename from imgs/icons/1_11.png rename to imgs/icons/80.png diff --git a/imgs/icons/2_2.png b/imgs/icons/81.png similarity index 100% rename from imgs/icons/2_2.png rename to imgs/icons/81.png diff --git a/imgs/icons/2_4.png b/imgs/icons/82.png similarity index 100% rename from imgs/icons/2_4.png rename to imgs/icons/82.png diff --git a/imgs/icons/1_15.png b/imgs/icons/83.png similarity index 100% rename from imgs/icons/1_15.png rename to imgs/icons/83.png diff --git a/imgs/icons/2_3.png b/imgs/icons/84.png similarity index 100% rename from imgs/icons/2_3.png rename to imgs/icons/84.png diff --git a/imgs/icons/1_16.png b/imgs/icons/86.png similarity index 100% rename from imgs/icons/1_16.png rename to imgs/icons/86.png diff --git a/imgs/icons/1_4.png b/imgs/icons/89.png similarity index 100% rename from imgs/icons/1_4.png rename to imgs/icons/89.png diff --git a/imgs/icons/1_1.png b/imgs/icons/90.png similarity index 100% rename from imgs/icons/1_1.png rename to imgs/icons/90.png diff --git a/imgs/icons/4_13.png b/imgs/icons/92.png similarity index 100% rename from imgs/icons/4_13.png rename to imgs/icons/92.png diff --git a/imgs/icons/94.png b/imgs/icons/94.png new file mode 100644 index 000000000..05893d76d Binary files /dev/null and b/imgs/icons/94.png differ diff --git a/imgs/icons/94_9.png b/imgs/icons/94_9.png deleted file mode 100644 index fdcec1e33..000000000 Binary files a/imgs/icons/94_9.png and /dev/null differ diff --git a/imgs/icons/3_2.png b/imgs/icons/96.png similarity index 100% rename from imgs/icons/3_2.png rename to imgs/icons/96.png diff --git a/imgs/icons/3_8.png b/imgs/icons/97.png similarity index 100% rename from imgs/icons/3_8.png rename to imgs/icons/97.png diff --git a/imgs/icons/3_5.png b/imgs/icons/98.png similarity index 100% rename from imgs/icons/3_5.png rename to imgs/icons/98.png diff --git a/imgs/icons/assaultdamagecontrol.png b/imgs/icons/assaultdamagecontrol.png deleted file mode 100644 index 7ac3dc99c..000000000 Binary files a/imgs/icons/assaultdamagecontrol.png and /dev/null differ diff --git a/imgs/icons/burstprojectorecm.png b/imgs/icons/burstprojectorecm.png deleted file mode 100644 index 4595ca69c..000000000 Binary files a/imgs/icons/burstprojectorecm.png and /dev/null differ diff --git a/imgs/icons/burstprojectorenergyneutralization.png b/imgs/icons/burstprojectorenergyneutralization.png deleted file mode 100644 index 5299d48a5..000000000 Binary files a/imgs/icons/burstprojectorenergyneutralization.png and /dev/null differ diff --git a/imgs/icons/burstprojectorsensordampening.png b/imgs/icons/burstprojectorsensordampening.png deleted file mode 100644 index a417287aa..000000000 Binary files a/imgs/icons/burstprojectorsensordampening.png and /dev/null differ diff --git a/imgs/icons/burstprojectorstasiswebification.png b/imgs/icons/burstprojectorstasiswebification.png deleted file mode 100644 index 24309b580..000000000 Binary files a/imgs/icons/burstprojectorstasiswebification.png and /dev/null differ diff --git a/imgs/icons/burstprojectortargetillumination.png b/imgs/icons/burstprojectortargetillumination.png deleted file mode 100644 index 70f663847..000000000 Binary files a/imgs/icons/burstprojectortargetillumination.png and /dev/null differ diff --git a/imgs/icons/burstprojectortrackingdisruption.png b/imgs/icons/burstprojectortrackingdisruption.png deleted file mode 100644 index 9c6a72a51..000000000 Binary files a/imgs/icons/burstprojectortrackingdisruption.png and /dev/null differ diff --git a/imgs/icons/burstprojectorwarpdisruption.png b/imgs/icons/burstprojectorwarpdisruption.png deleted file mode 100644 index 8506b9007..000000000 Binary files a/imgs/icons/burstprojectorwarpdisruption.png and /dev/null differ diff --git a/imgs/icons/disintegratorcannonl.png b/imgs/icons/disintegratorcannonl.png deleted file mode 100644 index 8383dfa65..000000000 Binary files a/imgs/icons/disintegratorcannonl.png and /dev/null differ diff --git a/imgs/icons/disintegratorcannonm.png b/imgs/icons/disintegratorcannonm.png deleted file mode 100644 index 93f8f3c07..000000000 Binary files a/imgs/icons/disintegratorcannonm.png and /dev/null differ diff --git a/imgs/icons/disintegratorcannons.png b/imgs/icons/disintegratorcannons.png deleted file mode 100644 index 8669edb0a..000000000 Binary files a/imgs/icons/disintegratorcannons.png and /dev/null differ diff --git a/imgs/icons/emergencyhullenergizer.png b/imgs/icons/emergencyhullenergizer.png deleted file mode 100644 index 9918995d4..000000000 Binary files a/imgs/icons/emergencyhullenergizer.png and /dev/null differ diff --git a/imgs/icons/fleetboost_armorbase.png b/imgs/icons/fleetboost_armorbase.png deleted file mode 100644 index 2ce55a267..000000000 Binary files a/imgs/icons/fleetboost_armorbase.png and /dev/null differ diff --git a/imgs/icons/fleetboost_armorbuffer.png b/imgs/icons/fleetboost_armorbuffer.png deleted file mode 100644 index 88a27b2b4..000000000 Binary files a/imgs/icons/fleetboost_armorbuffer.png and /dev/null differ diff --git a/imgs/icons/fleetboost_armorrepair.png b/imgs/icons/fleetboost_armorrepair.png deleted file mode 100644 index 64d34d049..000000000 Binary files a/imgs/icons/fleetboost_armorrepair.png and /dev/null differ diff --git a/imgs/icons/fleetboost_armorresists.png b/imgs/icons/fleetboost_armorresists.png deleted file mode 100644 index 8f0215524..000000000 Binary files a/imgs/icons/fleetboost_armorresists.png and /dev/null differ diff --git a/imgs/icons/fleetboost_infobase.png b/imgs/icons/fleetboost_infobase.png deleted file mode 100644 index 4f25cc9b9..000000000 Binary files a/imgs/icons/fleetboost_infobase.png and /dev/null differ diff --git a/imgs/icons/fleetboost_infoewar.png b/imgs/icons/fleetboost_infoewar.png deleted file mode 100644 index 220282239..000000000 Binary files a/imgs/icons/fleetboost_infoewar.png and /dev/null differ diff --git a/imgs/icons/fleetboost_infosensors.png b/imgs/icons/fleetboost_infosensors.png deleted file mode 100644 index ba1febf9a..000000000 Binary files a/imgs/icons/fleetboost_infosensors.png and /dev/null differ diff --git a/imgs/icons/fleetboost_infotargeting.png b/imgs/icons/fleetboost_infotargeting.png deleted file mode 100644 index b5e17413f..000000000 Binary files a/imgs/icons/fleetboost_infotargeting.png and /dev/null differ diff --git a/imgs/icons/fleetboost_miningbase.png b/imgs/icons/fleetboost_miningbase.png deleted file mode 100644 index 83fce73b3..000000000 Binary files a/imgs/icons/fleetboost_miningbase.png and /dev/null differ diff --git a/imgs/icons/fleetboost_miningcrystal.png b/imgs/icons/fleetboost_miningcrystal.png deleted file mode 100644 index d4cb6541e..000000000 Binary files a/imgs/icons/fleetboost_miningcrystal.png and /dev/null differ diff --git a/imgs/icons/fleetboost_miningcycle.png b/imgs/icons/fleetboost_miningcycle.png deleted file mode 100644 index 0c45f95bb..000000000 Binary files a/imgs/icons/fleetboost_miningcycle.png and /dev/null differ diff --git a/imgs/icons/fleetboost_miningrange.png b/imgs/icons/fleetboost_miningrange.png deleted file mode 100644 index de07c2e29..000000000 Binary files a/imgs/icons/fleetboost_miningrange.png and /dev/null differ diff --git a/imgs/icons/fleetboost_shieldbase.png b/imgs/icons/fleetboost_shieldbase.png deleted file mode 100644 index 2de5e03f9..000000000 Binary files a/imgs/icons/fleetboost_shieldbase.png and /dev/null differ diff --git a/imgs/icons/fleetboost_shieldbuffer.png b/imgs/icons/fleetboost_shieldbuffer.png deleted file mode 100644 index f5d61c0fe..000000000 Binary files a/imgs/icons/fleetboost_shieldbuffer.png and /dev/null differ diff --git a/imgs/icons/fleetboost_shieldrepair.png b/imgs/icons/fleetboost_shieldrepair.png deleted file mode 100644 index 6b2340b2d..000000000 Binary files a/imgs/icons/fleetboost_shieldrepair.png and /dev/null differ diff --git a/imgs/icons/fleetboost_shieldresists.png b/imgs/icons/fleetboost_shieldresists.png deleted file mode 100644 index f0be8021a..000000000 Binary files a/imgs/icons/fleetboost_shieldresists.png and /dev/null differ diff --git a/imgs/icons/fleetboost_skirmishbase.png b/imgs/icons/fleetboost_skirmishbase.png deleted file mode 100644 index f382fa297..000000000 Binary files a/imgs/icons/fleetboost_skirmishbase.png and /dev/null differ diff --git a/imgs/icons/fleetboost_skirmishsignature.png b/imgs/icons/fleetboost_skirmishsignature.png deleted file mode 100644 index 862f74fa5..000000000 Binary files a/imgs/icons/fleetboost_skirmishsignature.png and /dev/null differ diff --git a/imgs/icons/fleetboost_skirmishspeed.png b/imgs/icons/fleetboost_skirmishspeed.png deleted file mode 100644 index c526de553..000000000 Binary files a/imgs/icons/fleetboost_skirmishspeed.png and /dev/null differ diff --git a/imgs/icons/fleetboost_skirmishweb.png b/imgs/icons/fleetboost_skirmishweb.png deleted file mode 100644 index 10003c641..000000000 Binary files a/imgs/icons/fleetboost_skirmishweb.png and /dev/null differ diff --git a/imgs/icons/icon_fireworks.png b/imgs/icons/icon_fireworks.png deleted file mode 100644 index 2e8a27c3d..000000000 Binary files a/imgs/icons/icon_fireworks.png and /dev/null differ diff --git a/imgs/icons/infantry_gear.png b/imgs/icons/infantry_gear.png deleted file mode 100644 index d58209754..000000000 Binary files a/imgs/icons/infantry_gear.png and /dev/null differ diff --git a/imgs/icons/marketicon_amarr.png b/imgs/icons/marketicon_amarr.png deleted file mode 100644 index fdb721f65..000000000 Binary files a/imgs/icons/marketicon_amarr.png and /dev/null differ diff --git a/imgs/icons/marketicon_caldari.png b/imgs/icons/marketicon_caldari.png deleted file mode 100644 index edd49286e..000000000 Binary files a/imgs/icons/marketicon_caldari.png and /dev/null differ diff --git a/imgs/icons/marketicon_gallente.png b/imgs/icons/marketicon_gallente.png deleted file mode 100644 index 4039ba05c..000000000 Binary files a/imgs/icons/marketicon_gallente.png and /dev/null differ diff --git a/imgs/icons/marketicon_minmatar.png b/imgs/icons/marketicon_minmatar.png deleted file mode 100644 index dba4a2726..000000000 Binary files a/imgs/icons/marketicon_minmatar.png and /dev/null differ diff --git a/imgs/icons/multiuseanalyzer_64.png b/imgs/icons/multiuseanalyzer_64.png deleted file mode 100644 index 23fb02c27..000000000 Binary files a/imgs/icons/multiuseanalyzer_64.png and /dev/null differ diff --git a/imgs/icons/panicmodule.png b/imgs/icons/panicmodule.png deleted file mode 100644 index 2c84b0f62..000000000 Binary files a/imgs/icons/panicmodule.png and /dev/null differ diff --git a/imgs/icons/refinery_boosterreactions.png b/imgs/icons/refinery_boosterreactions.png deleted file mode 100644 index dea206f4d..000000000 Binary files a/imgs/icons/refinery_boosterreactions.png and /dev/null differ diff --git a/imgs/icons/refinery_chunkstabilization.png b/imgs/icons/refinery_chunkstabilization.png deleted file mode 100644 index d4e9cc4a6..000000000 Binary files a/imgs/icons/refinery_chunkstabilization.png and /dev/null differ diff --git a/imgs/icons/refinery_hybridreactions.png b/imgs/icons/refinery_hybridreactions.png deleted file mode 100644 index fb7e653df..000000000 Binary files a/imgs/icons/refinery_hybridreactions.png and /dev/null differ diff --git a/imgs/icons/refinery_miningyield.png b/imgs/icons/refinery_miningyield.png deleted file mode 100644 index ab2df5809..000000000 Binary files a/imgs/icons/refinery_miningyield.png and /dev/null differ diff --git a/imgs/icons/refinery_t2reactions.png b/imgs/icons/refinery_t2reactions.png deleted file mode 100644 index a1b6aa979..000000000 Binary files a/imgs/icons/refinery_t2reactions.png and /dev/null differ diff --git a/imgs/icons/remote_repair.png b/imgs/icons/remote_repair.png deleted file mode 100644 index 16d4337ee..000000000 Binary files a/imgs/icons/remote_repair.png and /dev/null differ diff --git a/imgs/icons/remote_repairer.png b/imgs/icons/remote_repairer.png deleted file mode 100644 index 5899ec386..000000000 Binary files a/imgs/icons/remote_repairer.png and /dev/null differ diff --git a/imgs/icons/titangeneratoramarr.png b/imgs/icons/titangeneratoramarr.png deleted file mode 100644 index 8acfba816..000000000 Binary files a/imgs/icons/titangeneratoramarr.png and /dev/null differ diff --git a/imgs/icons/titangeneratorcaldari.png b/imgs/icons/titangeneratorcaldari.png deleted file mode 100644 index 6679b209b..000000000 Binary files a/imgs/icons/titangeneratorcaldari.png and /dev/null differ diff --git a/imgs/icons/titangeneratorgallente.png b/imgs/icons/titangeneratorgallente.png deleted file mode 100644 index 2d1cd686c..000000000 Binary files a/imgs/icons/titangeneratorgallente.png and /dev/null differ diff --git a/imgs/icons/titangeneratorminmatar.png b/imgs/icons/titangeneratorminmatar.png deleted file mode 100644 index e104ec024..000000000 Binary files a/imgs/icons/titangeneratorminmatar.png and /dev/null differ diff --git a/scripts/jsonToSql.py b/scripts/jsonToSql.py index 34bab22c0..0555f5424 100755 --- a/scripts/jsonToSql.py +++ b/scripts/jsonToSql.py @@ -56,7 +56,6 @@ def main(db, json_path): "dgmtypeattribs": eos.gamedata.Attribute, "dgmtypeeffects": eos.gamedata.ItemEffect, "dgmunits": eos.gamedata.Unit, - "icons": eos.gamedata.Icon, "evecategories": eos.gamedata.Category, "evegroups": eos.gamedata.Group, "invmetagroups": eos.gamedata.MetaGroup, diff --git a/service/attribute.py b/service/attribute.py index e33cbef4b..b4c3453e9 100644 --- a/service/attribute.py +++ b/service/attribute.py @@ -33,10 +33,10 @@ class Attribute(object): @staticmethod def getAttributeInfo(identity): if isinstance(identity, (int, str)): - info = eos.db.getAttributeInfo(identity, eager=("icon", "unit")) + info = eos.db.getAttributeInfo(identity, eager=("unit")) elif isinstance(identity, (int, float)): id_ = int(identity) - info = eos.db.getAttributeInfo(id_, eager=("icon", "unit")) + info = eos.db.getAttributeInfo(id_, eager=("unit")) else: info = None return info diff --git a/service/market.py b/service/market.py index 16d677e04..895cb2e98 100644 --- a/service/market.py +++ b/service/market.py @@ -121,13 +121,13 @@ class SearchWorkerThread(threading.Thread): if len(request) >= config.minItemSearchLength: results = eos.db.searchItems(request, where=filter_, join=(types_Item.group, types_Group.category), - eager=("icon", "group.category", "metaGroup", "metaGroup.parent")) + eager=("group.category", "metaGroup", "metaGroup.parent")) jargon_results = [] if len(jargon_request) >= config.minItemSearchLength: jargon_results = eos.db.searchItems(jargon_request, where=filter_, join=(types_Item.group, types_Group.category), - eager=("icon", "group.category", "metaGroup", "metaGroup.parent")) + eager=("group.category", "metaGroup", "metaGroup.parent")) items = set() # Return only published items, consult with Market service this time @@ -676,8 +676,8 @@ class Market(object): def getIconByMarketGroup(self, mg): """Return icon associated to marketgroup""" - if mg.icon: - return mg.icon.iconFile + if mg.iconID: + return mg.iconID else: while mg and not mg.hasTypes: mg = mg.parent @@ -692,7 +692,7 @@ class Market(object): except KeyError: return "" - return item.icon.iconFile if item.icon else "" + return item.iconID if item.icon else "" elif self.getMarketGroupChildren(mg) > 0: kids = self.getMarketGroupChildren(mg) mktGroups = self.getIconByMarketGroup(kids) @@ -725,7 +725,7 @@ class Market(object): """ root = set() for id_ in self.ROOT_MARKET_GROUPS: - mg = self.getMarketGroup(id_, eager="icon") + mg = self.getMarketGroup(id_) root.add(mg) return root @@ -752,7 +752,7 @@ class Market(object): filter_ = types_Category.name.in_(["Ship", "Structure"]) results = eos.db.searchItems(name, where=filter_, join=(types_Item.group, types_Group.category), - eager=("icon", "group.category", "metaGroup", "metaGroup.parent")) + eager=("group.category", "metaGroup", "metaGroup.parent")) ships = set() for item in results: if self.getPublicityByItem(item):