diff --git a/MonogameLibrary/UI/Elements/Bar.cs b/MonogameLibrary/UI/Elements/Bar.cs new file mode 100644 index 0000000..34409b2 --- /dev/null +++ b/MonogameLibrary/UI/Elements/Bar.cs @@ -0,0 +1,49 @@ +using Microsoft.Xna.Framework.Graphics; +using MonogameLibrary.UI.Base; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Graphics; +using MonogameLibrary.UI.Enums; +using System; +using System.Collections.Generic; +using System.Security.Cryptography.X509Certificates; +using System.Text; +using System.Threading; +using Microsoft.Xna.Framework.Content; +using Microsoft.Xna.Framework.Input; + +namespace MonogameLibrary.UI.Elements; + +public class Bar : DrawableUIElement +{ + public float percent = 0.5f; + private DrawableUIElement barInside; + public Color inColor; + public string inTextureName; + + public Bar(UIManager manager, int layerIndex = 0, string textureName = "") : base(manager, layerIndex, textureName) + { + } + + public void Initialize() + { + barInside = new DrawableUIElement(Manager) + { + rectangle = new Rectangle(rectangle.X + rectangle.Height / 8, rectangle.Y + rectangle.Height / 8, + (int)((rectangle.Width - rectangle.Height / 4) * percent), rectangle.Height / 8 * 7), + mainColor = inColor, + textureName = inTextureName + }; + } + + public override void LoadTexture(ContentManager content) + { + barInside.LoadTexture(content); + base.LoadTexture(content); + } + + public void Update(GameTime gameTime, float percent) + { + barInside.rectangle = new Rectangle(rectangle.X + rectangle.Height / 8, rectangle.Y + rectangle.Height / 8, + (int)((rectangle.Width - rectangle.Height / 4) * percent), rectangle.Height / 8 * 7); + } +} \ No newline at end of file diff --git a/ZoFo/Content/Content.mgcb b/ZoFo/Content/Content.mgcb index d40ebda..c36df59 100644 --- a/ZoFo/Content/Content.mgcb +++ b/ZoFo/Content/Content.mgcb @@ -44,6 +44,9 @@ #begin MapData/TileMaps/main.tmj /copy:MapData/TileMaps/main.tmj +#begin MapData/TileSets/bonfire.tsj +/copy:MapData/TileSets/bonfire.tsj + #begin MapData/TileSets/IconSet.tsj /copy:MapData/TileSets/IconSet.tsj @@ -1484,6 +1487,18 @@ /processorParam:TextureFormat=Color /build:Textures/Test/wood.jpg +#begin Textures/TileSetImages/Campfire.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:Textures/TileSetImages/Campfire.png + #begin Textures/TileSetImages/Pipes.png /importer:TextureImporter /processor:TextureProcessor diff --git a/ZoFo/Content/MapData/MapSession.tiled-session b/ZoFo/Content/MapData/MapSession.tiled-session index 560a26b..66a3ad6 100644 --- a/ZoFo/Content/MapData/MapSession.tiled-session +++ b/ZoFo/Content/MapData/MapSession.tiled-session @@ -1,49 +1,26 @@ { - "activeFile": "TileMaps/main.tmj", - "expandedProjectPaths": [ - "TileMaps", - "Templates", - ".", - "TileSets" - ], "fileStates": { "TileMaps/main.tmj": { - "scale": 0.75, - "selectedLayer": 1, + "scale": 0.33, + "selectedLayer": 0, "viewCenter": { - "x": 1860.6666666666665, - "y": 871.3333333333333 + "x": -463.63636363636374, + "y": 300 } }, "TileSets/IconSet.tsj": { - "dynamicWrapping": true, - "scaleInDock": 1, - "scaleInEditor": 1 + "dynamicWrapping": true }, "TileSets/TileSet 1.tsj": { "dynamicWrapping": false, - "scaleInDock": 1.5, - "scaleInEditor": 3 + "scaleInDock": 1 }, "TileSets/TilesetNature.tsj": { - "scaleInDock": 1.5, - "scaleInEditor": 1 + "scaleInDock": 1.5 }, "TileSets/tileset 1 collision.tsj": { + "dynamicWrapping": false, "scaleInDock": 1 } - }, - "openFiles": [ - "TileMaps/main.tmj", - "TileSets/IconSet.tsj", - "TileSets/TileSet 1.tsj", - "TileSets/TilesetNature.tsj" - ], - "project": "MapSession.tiled-project", - "recentFiles": [ - "TileSets/TilesetNature.tsj", - "TileSets/TileSet 1.tsj", - "TileSets/IconSet.tsj", - "TileMaps/main.tmj" - ] + } } diff --git a/ZoFo/Content/MapData/Templates/Ammo.tj b/ZoFo/Content/MapData/Templates/Collectables/Ammo.tj similarity index 68% rename from ZoFo/Content/MapData/Templates/Ammo.tj rename to ZoFo/Content/MapData/Templates/Collectables/Ammo.tj index 6bba547..e437270 100644 --- a/ZoFo/Content/MapData/Templates/Ammo.tj +++ b/ZoFo/Content/MapData/Templates/Collectables/Ammo.tj @@ -9,10 +9,9 @@ "visible":true, "width":16 }, - "tileset": - { - "firstgid":1, - "source":"..\/TileSets\/IconSet.tsj" - }, + "tileset": { + "firstgid": 1, + "source": "..\/..\/TileSets\/IconSet.tsj" + }, "type":"template" } \ No newline at end of file diff --git a/ZoFo/Content/MapData/Templates/BottleOfWater.tj b/ZoFo/Content/MapData/Templates/Collectables/BottleOfWater.tj similarity index 69% rename from ZoFo/Content/MapData/Templates/BottleOfWater.tj rename to ZoFo/Content/MapData/Templates/Collectables/BottleOfWater.tj index 14ab412..df96edf 100644 --- a/ZoFo/Content/MapData/Templates/BottleOfWater.tj +++ b/ZoFo/Content/MapData/Templates/Collectables/BottleOfWater.tj @@ -9,10 +9,9 @@ "visible":true, "width":16 }, - "tileset": - { - "firstgid":1, - "source":"..\/TileSets\/IconSet.tsj" - }, + "tileset": { + "firstgid": 1, + "source": "..\/..\/TileSets\/IconSet.tsj" + }, "type":"template" } \ No newline at end of file diff --git a/ZoFo/Content/MapData/Templates/Peeble.tj b/ZoFo/Content/MapData/Templates/Collectables/Peeble.tj similarity index 68% rename from ZoFo/Content/MapData/Templates/Peeble.tj rename to ZoFo/Content/MapData/Templates/Collectables/Peeble.tj index 70ff1ff..27f868e 100644 --- a/ZoFo/Content/MapData/Templates/Peeble.tj +++ b/ZoFo/Content/MapData/Templates/Collectables/Peeble.tj @@ -9,10 +9,9 @@ "visible":true, "width":16 }, - "tileset": - { - "firstgid":1, - "source":"..\/TileSets\/IconSet.tsj" - }, + "tileset": { + "firstgid": 1, + "source": "..\/..\/TileSets\/IconSet.tsj" + }, "type":"template" } \ No newline at end of file diff --git a/ZoFo/Content/MapData/Templates/PureBottleOfWater.tj b/ZoFo/Content/MapData/Templates/Collectables/PureBottleOfWater.tj similarity index 83% rename from ZoFo/Content/MapData/Templates/PureBottleOfWater.tj rename to ZoFo/Content/MapData/Templates/Collectables/PureBottleOfWater.tj index 72944f8..5c4d0f1 100644 --- a/ZoFo/Content/MapData/Templates/PureBottleOfWater.tj +++ b/ZoFo/Content/MapData/Templates/Collectables/PureBottleOfWater.tj @@ -12,7 +12,7 @@ "tileset": { "firstgid":1, - "source":"..\/TileSets\/IconSet.tsj" + "source":"..\/..\/TileSets\/IconSet.tsj" }, "type":"template" } \ No newline at end of file diff --git a/ZoFo/Content/MapData/Templates/RottenFlesh.tj b/ZoFo/Content/MapData/Templates/Collectables/RottenFlesh.tj similarity index 68% rename from ZoFo/Content/MapData/Templates/RottenFlesh.tj rename to ZoFo/Content/MapData/Templates/Collectables/RottenFlesh.tj index 620179c..c047f16 100644 --- a/ZoFo/Content/MapData/Templates/RottenFlesh.tj +++ b/ZoFo/Content/MapData/Templates/Collectables/RottenFlesh.tj @@ -9,10 +9,9 @@ "visible":true, "width":16 }, - "tileset": - { - "firstgid":1, - "source":"..\/TileSets\/IconSet.tsj" - }, + "tileset": { + "firstgid": 1, + "source": "..\/..\/TileSets\/IconSet.tsj" + }, "type":"template" } \ No newline at end of file diff --git a/ZoFo/Content/MapData/Templates/Steel.tj b/ZoFo/Content/MapData/Templates/Collectables/Steel.tj similarity index 68% rename from ZoFo/Content/MapData/Templates/Steel.tj rename to ZoFo/Content/MapData/Templates/Collectables/Steel.tj index 64fa222..2dbbc75 100644 --- a/ZoFo/Content/MapData/Templates/Steel.tj +++ b/ZoFo/Content/MapData/Templates/Collectables/Steel.tj @@ -9,10 +9,9 @@ "visible":true, "width":16 }, - "tileset": - { - "firstgid":1, - "source":"..\/TileSets\/IconSet.tsj" - }, + "tileset": { + "firstgid": 1, + "source": "..\/..\/TileSets\/IconSet.tsj" + }, "type":"template" } \ No newline at end of file diff --git a/ZoFo/Content/MapData/Templates/Wood.tj b/ZoFo/Content/MapData/Templates/Collectables/Wood.tj similarity index 68% rename from ZoFo/Content/MapData/Templates/Wood.tj rename to ZoFo/Content/MapData/Templates/Collectables/Wood.tj index b4c4b4e..f042f43 100644 --- a/ZoFo/Content/MapData/Templates/Wood.tj +++ b/ZoFo/Content/MapData/Templates/Collectables/Wood.tj @@ -9,10 +9,9 @@ "visible":true, "width":16 }, - "tileset": - { - "firstgid":1, - "source":"..\/TileSets\/IconSet.tsj" - }, + "tileset": { + "firstgid": 1, + "source": "..\/..\/TileSets\/IconSet.tsj" + }, "type":"template" } \ No newline at end of file diff --git a/ZoFo/Content/MapData/Templates/Enemies/Zombie.tj b/ZoFo/Content/MapData/Templates/Enemies/Zombie.tj new file mode 100644 index 0000000..463fc47 --- /dev/null +++ b/ZoFo/Content/MapData/Templates/Enemies/Zombie.tj @@ -0,0 +1,18 @@ +{ "object": + { + "gid":8, + "height":16, + "id":1, + "name":"Zombie", + "rotation":0, + "type":"", + "visible":true, + "width":16 + }, + "tileset": + { + "firstgid":1, + "source":"..\/..\/TileSets\/IconSet.tsj" + }, + "type":"template" +} \ No newline at end of file diff --git a/ZoFo/Content/MapData/TileMaps/main.tmj b/ZoFo/Content/MapData/TileMaps/main.tmj index 136574c..db1b476 100644 --- a/ZoFo/Content/MapData/TileMaps/main.tmj +++ b/ZoFo/Content/MapData/TileMaps/main.tmj @@ -5,1058 +5,1720 @@ { "chunks":[ { - "data":[46, 10, 2, 51, 24, 90, 24, 24, 24, 24, 24, 90, 24, 24, 50, 51, - 3, 23, 24, 24, 24, 90, 24, 24, 89, 24, 90, 89, 28, 29, 24, 24, - 50, 51, 24, 90, 24, 89, 24, 28, 29, 90, 24, 24, 25, 23, 24, 24, - 24, 28, 46, 29, 24, 24, 24, 50, 51, 90, 24, 24, 25, 23, 24, 24, - 24, 50, 3, 23, 24, 24, 24, 24, 24, 24, 24, 24, 50, 51, 28, 29, - 24, 89, 50, 51, 28, 29, 24, 24, 24, 24, 24, 28, 46, 46, 10, 32, - 28, 46, 46, 29, 50, 51, 24, 89, 89, 28, 29, 50, 2, 3, 23, 25, - 25, 1, 3, 45, 46, 29, 24, 24, 28, 10, 51, 89, 89, 50, 51, 50, - 25, 45, 10, 2, 2, 51, 90, 24, 50, 51, 24, 24, 24, 24, 24, 24, - 50, 2, 51, 28, 46, 29, 24, 24, 28, 46, 29, 24, 90, 24, 24, 24, - 90, 24, 24, 50, 2, 32, 29, 24, 25, 1, 32, 29, 24, 89, 24, 90, - 24, 90, 24, 24, 24, 25, 23, 28, 10, 32, 10, 32, 29, 24, 24, 24, - 29, 24, 24, 24, 24, 25, 23, 25, 23, 50, 32, 47, 23, 24, 24, 24, - 51, 28, 29, 89, 24, 50, 32, 10, 51, 24, 50, 2, 51, 24, 24, 24, - 24, 50, 32, 46, 29, 28, 47, 23, 24, 28, 46, 29, 28, 29, 24, 89, - 24, 28, 10, 2, 51, 25, 1, 51, 28, 10, 2, 51, 50, 51, 24, 89], + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265], + "height":16, + "width":16, + "x":-80, + "y":0 + }, + { + "data":[267, 268, 269, 245, 245, 268, 269, 268, 265, 265, 268, 268, 268, 267, 269, 267, + 269, 245, 267, 269, 246, 269, 265, 268, 265, 246, 265, 245, 269, 267, 266, 265, + 268, 269, 268, 267, 269, 269, 268, 246, 269, 265, 269, 268, 268, 267, 268, 269, + 268, 266, 245, 269, 268, 267, 269, 266, 266, 246, 267, 246, 266, 267, 268, 245, + 269, 267, 245, 268, 246, 269, 245, 268, 269, 245, 268, 265, 266, 265, 265, 268, + 269, 267, 266, 245, 266, 268, 267, 266, 246, 265, 266, 245, 268, 267, 269, 265, + 269, 267, 245, 268, 266, 266, 266, 265, 266, 268, 265, 268, 266, 246, 246, 246, + 245, 245, 246, 269, 266, 266, 245, 266, 246, 246, 269, 269, 267, 267, 267, 269, + 268, 266, 265, 268, 246, 267, 246, 245, 265, 269, 265, 245, 265, 268, 267, 265, + 268, 269, 245, 245, 267, 265, 268, 265, 246, 268, 269, 245, 245, 267, 246, 245, + 269, 245, 269, 268, 245, 246, 245, 269, 268, 245, 265, 269, 267, 246, 266, 265, + 268, 267, 268, 266, 265, 268, 269, 265, 265, 269, 268, 245, 267, 246, 268, 269, + 245, 269, 269, 265, 268, 266, 266, 245, 265, 268, 266, 265, 246, 246, 268, 266, + 246, 245, 268, 266, 245, 267, 246, 269, 265, 267, 266, 267, 269, 267, 266, 245, + 267, 268, 267, 266, 246, 246, 246, 268, 268, 266, 265, 245, 269, 267, 266, 268, + 246, 267, 269, 268, 269, 246, 245, 267, 268, 267, 245, 266, 266, 265, 268, 268], + "height":16, + "width":16, + "x":-64, + "y":0 + }, + { + "data":[268, 267, 245, 245, 267, 246, 246, 268, 267, 265, 246, 267, 245, 268, 246, 245, + 268, 245, 246, 246, 268, 267, 266, 268, 267, 267, 268, 266, 266, 266, 265, 267, + 269, 246, 267, 265, 246, 246, 266, 245, 245, 245, 265, 245, 266, 267, 268, 266, + 269, 268, 266, 269, 246, 245, 245, 246, 246, 267, 246, 268, 246, 266, 268, 267, + 269, 269, 266, 266, 246, 268, 246, 265, 245, 268, 266, 267, 266, 267, 267, 266, + 268, 268, 245, 267, 268, 269, 245, 266, 246, 245, 245, 268, 268, 268, 266, 265, + 265, 265, 245, 269, 268, 266, 246, 267, 245, 245, 267, 268, 269, 245, 266, 265, + 268, 267, 246, 246, 267, 268, 269, 268, 269, 269, 245, 265, 268, 265, 265, 267, + 268, 265, 265, 267, 245, 246, 269, 268, 269, 266, 265, 246, 266, 265, 245, 246, + 268, 269, 267, 245, 269, 266, 246, 269, 265, 269, 266, 266, 269, 269, 266, 246, + 246, 269, 268, 269, 268, 267, 246, 268, 268, 269, 266, 269, 267, 246, 266, 269, + 267, 269, 269, 269, 268, 245, 266, 268, 269, 266, 245, 268, 246, 266, 265, 269, + 246, 267, 268, 266, 268, 246, 267, 246, 268, 269, 266, 267, 266, 245, 246, 246, + 266, 265, 245, 268, 266, 266, 268, 267, 269, 268, 267, 265, 266, 155, 157, 265, + 267, 268, 265, 245, 269, 265, 246, 265, 245, 267, 267, 266, 266, 177, 179, 269, + 268, 268, 265, 246, 245, 267, 265, 265, 267, 265, 265, 265, 265, 177, 179, 246], + "height":16, + "width":16, + "x":-48, + "y":0 + }, + { + "data":[245, 269, 268, 268, 268, 246, 268, 246, 269, 267, 246, 265, 265, 268, 245, 266, + 266, 267, 265, 265, 266, 245, 268, 269, 246, 268, 246, 245, 269, 269, 266, 245, + 268, 245, 269, 246, 269, 268, 269, 269, 266, 266, 245, 265, 245, 267, 265, 269, + 269, 245, 245, 269, 269, 246, 267, 245, 267, 266, 265, 246, 245, 246, 269, 268, + 266, 245, 265, 246, 269, 245, 245, 265, 266, 266, 268, 266, 265, 267, 246, 269, + 269, 267, 266, 266, 269, 245, 246, 245, 266, 245, 267, 246, 268, 268, 268, 266, + 269, 265, 266, 265, 267, 245, 246, 246, 266, 266, 268, 246, 245, 268, 245, 268, + 265, 245, 269, 245, 269, 265, 267, 245, 246, 268, 268, 265, 267, 269, 265, 245, + 266, 269, 246, 246, 269, 246, 265, 269, 267, 246, 245, 268, 269, 268, 265, 245, + 268, 267, 266, 265, 268, 265, 265, 268, 246, 269, 267, 245, 269, 267, 267, 245, + 268, 268, 246, 268, 267, 267, 245, 266, 268, 266, 269, 265, 245, 267, 269, 265, + 269, 265, 269, 245, 267, 246, 245, 269, 245, 268, 267, 246, 246, 267, 245, 267, + 267, 246, 265, 245, 269, 266, 266, 266, 245, 265, 267, 266, 268, 266, 246, 268, + 267, 267, 246, 266, 269, 246, 269, 266, 246, 267, 269, 246, 268, 267, 268, 266, + 268, 266, 266, 245, 266, 245, 246, 245, 268, 267, 267, 265, 269, 245, 269, 265, + 268, 267, 268, 267, 266, 266, 269, 268, 265, 245, 269, 245, 269, 265, 267, 265], + "height":16, + "width":16, + "x":-32, + "y":0 + }, + { + "data":[245, 267, 266, 269, 246, 245, 269, 245, 269, 269, 269, 245, 265, 266, 246, 579, + 265, 267, 246, 268, 267, 268, 245, 269, 245, 268, 265, 245, 269, 265, 266, 601, + 266, 266, 245, 245, 245, 267, 265, 269, 246, 268, 269, 267, 268, 245, 245, 601, + 267, 267, 266, 269, 246, 268, 268, 246, 268, 245, 265, 268, 267, 269, 266, 601, + 269, 266, 266, 266, 246, 265, 269, 246, 245, 267, 269, 269, 265, 267, 268, 601, + 246, 245, 245, 269, 265, 268, 267, 245, 246, 245, 265, 268, 265, 269, 246, 601, + 246, 268, 267, 267, 267, 266, 269, 245, 246, 267, 268, 265, 267, 268, 246, 601, + 266, 268, 246, 269, 267, 269, 246, 269, 265, 246, 269, 267, 266, 246, 579, 605, + 265, 245, 266, 246, 268, 246, 268, 245, 266, 268, 269, 269, 246, 267, 601, 602, + 265, 245, 267, 245, 246, 266, 245, 267, 265, 269, 265, 246, 267, 267, 601, 111, + 269, 267, 269, 245, 265, 267, 246, 266, 245, 245, 268, 265, 266, 265, 601, 115, + 246, 267, 245, 246, 245, 268, 246, 267, 265, 245, 267, 269, 246, 267, 601, 602, + 265, 269, 245, 245, 245, 266, 266, 267, 245, 265, 266, 245, 268, 246, 601, 115, + 267, 269, 268, 265, 246, 245, 246, 265, 268, 266, 265, 267, 268, 246, 601, 111, + 266, 245, 268, 246, 267, 267, 245, 246, 267, 245, 245, 245, 269, 246, 601, 111, + 269, 265, 266, 245, 267, 265, 267, 245, 265, 265, 245, 246, 266, 246, 601, 114], + "height":16, + "width":16, + "x":-16, + "y":0 + }, + { + "data":[605, 115, 111, 111, 115, 115, 111, 111, 115, 111, 111, 111, 111, 114, 111, 114, + 114, 114, 115, 114, 111, 115, 115, 111, 115, 115, 114, 111, 111, 111, 114, 115, + 111, 114, 111, 115, 111, 111, 115, 111, 115, 115, 114, 111, 114, 115, 111, 111, + 114, 114, 115, 115, 113, 111, 111, 111, 111, 111, 111, 115, 111, 111, 114, 111, + 111, 115, 111, 111, 111, 111, 114, 114, 111, 114, 111, 111, 113, 111, 111, 111, + 115, 111, 111, 111, 115, 111, 115, 114, 112, 115, 111, 111, 114, 111, 115, 111, + 113, 111, 115, 115, 114, 115, 114, 111, 111, 111, 114, 111, 111, 114, 114, 114, + 111, 111, 111, 114, 111, 111, 111, 114, 115, 111, 111, 115, 115, 114, 111, 114, + 602, 112, 111, 115, 111, 111, 114, 115, 115, 111, 111, 115, 111, 115, 111, 115, + 111, 115, 115, 111, 111, 111, 111, 113, 114, 111, 114, 115, 111, 111, 111, 115, + 113, 114, 111, 113, 111, 115, 115, 115, 115, 115, 114, 111, 115, 114, 114, 111, + 602, 115, 111, 111, 114, 115, 111, 115, 114, 111, 111, 114, 111, 111, 114, 115, + 602, 111, 111, 111, 114, 111, 111, 115, 115, 114, 113, 111, 111, 114, 111, 112, + 114, 111, 111, 111, 115, 115, 115, 113, 114, 111, 115, 115, 114, 111, 114, 111, + 111, 114, 115, 115, 111, 115, 115, 114, 111, 111, 111, 111, 111, 114, 115, 114, + 114, 111, 115, 115, 111, 115, 115, 111, 114, 111, 111, 111, 111, 111, 114, 114], "height":16, "width":16, "x":0, "y":0 }, { - "data":[24, 24, 90, 90, 24, 24, 24, 24, 24, 24, 89, 90, 24, 28, 46, 46, - 24, 24, 24, 24, 24, 24, 24, 90, 24, 24, 89, 24, 24, 25, 1, 2, - 89, 24, 89, 24, 24, 89, 24, 28, 29, 24, 28, 29, 24, 50, 32, 29, - 24, 24, 24, 24, 24, 24, 24, 50, 51, 28, 10, 32, 46, 29, 25, 23, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 23, 50, 3, 45, 10, 32, - 29, 24, 24, 24, 24, 28, 29, 90, 24, 25, 23, 24, 50, 2, 51, 25, - 23, 28, 46, 46, 46, 47, 23, 24, 24, 50, 51, 24, 24, 28, 29, 50, - 51, 50, 2, 2, 3, 115, 23, 24, 24, 24, 89, 24, 24, 50, 32, 29, - 24, 24, 24, 24, 50, 3, 23, 28, 46, 46, 29, 24, 24, 89, 25, 23, - 24, 24, 24, 24, 24, 50, 32, 10, 2, 2, 32, 46, 29, 24, 50, 51, - 24, 24, 24, 28, 29, 89, 25, 23, 90, 28, 47, 1, 51, 89, 24, 24, - 24, 90, 24, 25, 23, 24, 50, 32, 29, 50, 2, 32, 29, 28, 29, 24, - 24, 24, 24, 25, 45, 46, 46, 10, 32, 29, 24, 50, 32, 10, 51, 24, - 24, 28, 46, 10, 2, 2, 2, 32, 10, 32, 46, 46, 10, 51, 24, 90, - 24, 50, 3, 23, 90, 24, 24, 50, 51, 50, 2, 3, 23, 24, 24, 89, - 28, 29, 50, 32, 29, 89, 24, 24, 24, 90, 24, 50, 32, 46, 46, 46], + "data":[115, 115, 114, 114, 111, 114, 114, 111, 111, 111, 114, 111, 111, 113, 111, 111, + 114, 115, 111, 114, 111, 115, 113, 111, 111, 115, 115, 111, 115, 115, 111, 111, + 114, 111, 111, 111, 115, 111, 111, 115, 111, 114, 111, 114, 114, 111, 115, 115, + 114, 111, 114, 111, 111, 111, 111, 114, 115, 114, 111, 115, 114, 112, 114, 114, + 111, 111, 114, 111, 111, 111, 114, 111, 111, 111, 115, 111, 111, 114, 115, 115, + 111, 111, 111, 115, 115, 114, 114, 114, 114, 111, 111, 112, 115, 111, 114, 114, + 111, 111, 111, 111, 111, 111, 114, 115, 115, 111, 111, 111, 115, 111, 111, 111, + 114, 115, 111, 111, 111, 111, 114, 115, 115, 111, 114, 111, 112, 111, 111, 115, + 115, 115, 111, 111, 111, 115, 111, 111, 111, 114, 111, 111, 115, 111, 114, 111, + 115, 113, 114, 111, 115, 111, 111, 114, 111, 114, 114, 114, 115, 111, 114, 111, + 111, 111, 111, 111, 111, 115, 111, 111, 115, 111, 115, 111, 111, 111, 115, 115, + 115, 115, 113, 111, 114, 115, 114, 115, 111, 114, 111, 111, 113, 111, 114, 111, + 111, 111, 111, 111, 115, 115, 111, 115, 114, 114, 111, 115, 115, 111, 114, 115, + 111, 111, 111, 114, 111, 114, 113, 111, 111, 111, 111, 114, 111, 114, 111, 114, + 115, 111, 115, 111, 111, 111, 115, 111, 115, 114, 114, 111, 111, 115, 111, 111, + 114, 111, 114, 111, 115, 113, 115, 112, 111, 111, 114, 111, 111, 114, 111, 115], "height":16, "width":16, "x":16, "y":0 }, { - "data":[46, 29, 89, 24, 24, 28, 47, 23, 24, 24, 28, 10, 51, 24, 24, 24, - 2, 51, 24, 24, 24, 50, 2, 51, 28, 29, 50, 51, 24, 24, 24, 90, - 24, 24, 90, 24, 24, 24, 24, 24, 25, 23, 28, 29, 24, 24, 89, 24, - 24, 90, 24, 24, 24, 24, 24, 24, 50, 32, 47, 23, 24, 89, 24, 24, - 29, 24, 24, 28, 46, 46, 29, 24, 24, 50, 2, 51, 24, 24, 28, 46, - 23, 24, 24, 25, 1, 2, 32, 29, 24, 24, 24, 24, 24, 24, 50, 2, - 32, 46, 46, 47, 23, 24, 50, 51, 24, 24, 90, 24, 89, 24, 24, 24, - 50, 3, 111, 1, 51, 24, 24, 24, 24, 28, 29, 24, 24, 24, 28, 46, - 24, 50, 2, 32, 29, 24, 24, 28, 29, 25, 23, 24, 24, 24, 50, 2, - 89, 24, 90, 50, 51, 28, 29, 50, 51, 50, 32, 29, 24, 24, 24, 24, - 24, 28, 29, 24, 24, 25, 23, 24, 89, 24, 50, 32, 29, 90, 24, 24, - 24, 25, 23, 24, 24, 25, 23, 24, 90, 24, 24, 25, 45, 46, 29, 24, - 28, 47, 45, 29, 24, 50, 32, 29, 24, 89, 24, 25, 114, 1, 32, 29, - 25, 114, 1, 51, 24, 90, 50, 51, 24, 24, 24, 25, 1, 51, 50, 51, - 50, 2, 51, 24, 28, 29, 28, 29, 24, 24, 24, 25, 45, 46, 29, 24, - 46, 29, 24, 24, 50, 51, 25, 23, 24, 24, 28, 10, 2, 2, 32, 29], + "data":[114, 112, 114, 111, 111, 111, 111, 114, 111, 114, 115, 111, 114, 112, 115, 111, + 114, 111, 111, 114, 111, 111, 111, 111, 111, 111, 114, 111, 111, 115, 115, 115, + 114, 114, 115, 115, 111, 114, 114, 114, 111, 111, 111, 114, 114, 111, 115, 115, + 115, 111, 114, 111, 111, 111, 111, 111, 111, 115, 111, 114, 111, 112, 114, 111, + 114, 114, 111, 111, 111, 111, 113, 115, 111, 115, 115, 111, 111, 111, 111, 114, + 111, 114, 111, 111, 111, 115, 114, 115, 115, 114, 111, 114, 111, 114, 114, 111, + 114, 111, 115, 114, 115, 111, 115, 111, 111, 115, 111, 111, 111, 114, 111, 114, + 115, 111, 114, 115, 111, 115, 111, 115, 111, 111, 111, 114, 111, 114, 114, 111, + 114, 115, 115, 111, 111, 114, 111, 113, 114, 114, 114, 115, 114, 115, 115, 115, + 111, 111, 111, 114, 114, 111, 111, 111, 113, 113, 115, 111, 111, 111, 115, 115, + 114, 111, 111, 114, 113, 111, 111, 115, 111, 111, 111, 115, 111, 111, 111, 111, + 115, 114, 111, 111, 115, 111, 115, 115, 115, 111, 111, 111, 111, 115, 114, 111, + 114, 111, 111, 111, 115, 111, 111, 111, 111, 111, 111, 111, 114, 114, 111, 111, + 114, 114, 114, 115, 115, 115, 111, 111, 114, 114, 111, 111, 111, 114, 114, 114, + 111, 111, 111, 114, 115, 114, 114, 115, 111, 111, 111, 111, 115, 115, 115, 114, + 115, 111, 111, 111, 115, 111, 111, 111, 111, 114, 115, 115, 112, 115, 115, 115], "height":16, "width":16, "x":32, "y":0 }, { - "data":[28, 29, 28, 46, 10, 51, 89, 24, 28, 29, 25, 111, 45, 29, 24, 25, - 50, 51, 50, 2, 51, 24, 24, 24, 25, 23, 25, 1, 2, 51, 89, 50, - 89, 24, 24, 24, 24, 24, 24, 24, 50, 51, 50, 51, 90, 24, 24, 24, - 24, 89, 28, 46, 29, 24, 24, 24, 24, 24, 24, 28, 29, 24, 24, 24, - 29, 24, 25, 1, 51, 24, 28, 29, 24, 28, 29, 50, 51, 89, 24, 90, - 51, 24, 50, 32, 46, 29, 50, 51, 24, 25, 23, 89, 24, 24, 24, 24, - 24, 28, 29, 25, 115, 45, 29, 24, 24, 25, 23, 24, 24, 24, 24, 24, - 29, 25, 23, 50, 2, 2, 51, 90, 89, 25, 23, 24, 24, 24, 24, 24, - 51, 25, 23, 89, 28, 29, 24, 24, 24, 25, 45, 29, 24, 28, 29, 28, - 24, 50, 32, 29, 25, 23, 24, 24, 24, 50, 2, 51, 24, 50, 32, 10, - 28, 29, 25, 45, 10, 51, 28, 46, 46, 46, 29, 89, 89, 24, 25, 23, - 25, 45, 10, 2, 32, 29, 50, 3, 1, 3, 23, 24, 24, 90, 50, 51, - 50, 2, 32, 29, 25, 23, 24, 50, 32, 10, 32, 46, 29, 24, 24, 90, - 89, 24, 25, 45, 47, 23, 24, 24, 50, 51, 25, 1, 51, 90, 90, 24, - 24, 24, 50, 2, 2, 51, 24, 89, 24, 24, 25, 23, 24, 24, 24, 24, - 24, 28, 29, 24, 28, 46, 29, 24, 24, 24, 50, 51, 24, 89, 28, 46], + "data":[111, 111, 112, 115, 115, 114, 111, 115, 111, 111, 111, 115, 111, 111, 115, 111, + 114, 115, 111, 111, 111, 111, 114, 111, 111, 114, 114, 115, 114, 111, 111, 111, + 115, 114, 111, 115, 111, 114, 111, 114, 114, 111, 115, 111, 111, 114, 111, 113, + 111, 111, 115, 111, 111, 111, 111, 111, 114, 111, 113, 111, 114, 111, 111, 111, + 114, 115, 111, 115, 114, 114, 115, 114, 114, 111, 114, 111, 111, 111, 111, 115, + 111, 114, 111, 115, 111, 111, 111, 115, 111, 114, 111, 111, 111, 115, 111, 111, + 111, 115, 111, 113, 115, 114, 111, 114, 114, 115, 115, 114, 112, 114, 115, 115, + 115, 111, 111, 114, 115, 115, 115, 115, 111, 115, 111, 111, 114, 115, 114, 111, + 115, 111, 111, 111, 111, 114, 114, 111, 111, 112, 115, 114, 114, 111, 111, 111, + 114, 111, 114, 111, 115, 115, 111, 111, 114, 115, 111, 111, 114, 114, 114, 111, + 114, 112, 114, 111, 115, 114, 114, 114, 111, 114, 115, 115, 111, 111, 115, 115, + 114, 115, 111, 115, 114, 111, 115, 114, 114, 111, 111, 115, 115, 114, 111, 111, + 114, 115, 111, 114, 111, 111, 115, 115, 115, 112, 115, 115, 115, 111, 114, 111, + 114, 111, 115, 111, 115, 111, 111, 111, 111, 111, 111, 111, 111, 114, 114, 113, + 114, 114, 115, 114, 114, 111, 111, 115, 115, 111, 111, 111, 115, 114, 111, 115, + 114, 111, 111, 111, 111, 114, 111, 111, 114, 111, 111, 114, 115, 113, 111, 111], "height":16, "width":16, "x":48, "y":0 }, { - "data":[23, 28, 47, 23, 24, 25, 114, 23, 28, 46, 46, 46, 46, 46, 46, 47, - 51, 50, 2, 32, 29, 25, 115, 23, 50, 2, 3, 115, 111, 115, 115, 1, - 28, 46, 46, 10, 51, 25, 111, 23, 24, 24, 25, 114, 1, 3, 1, 32, - 50, 2, 2, 51, 24, 50, 2, 51, 28, 29, 50, 2, 32, 10, 51, 25, - 28, 29, 24, 24, 24, 24, 24, 24, 50, 51, 24, 24, 50, 51, 24, 50, - 50, 51, 24, 24, 24, 89, 24, 24, 24, 24, 24, 24, 24, 90, 28, 29, - 90, 24, 24, 90, 28, 46, 29, 24, 90, 24, 24, 24, 24, 24, 50, 51, - 89, 89, 24, 24, 25, 115, 23, 24, 28, 29, 24, 24, 24, 24, 24, 28, - 46, 29, 24, 24, 25, 111, 23, 24, 50, 51, 24, 24, 24, 24, 24, 25, - 2, 51, 89, 90, 50, 2, 32, 29, 24, 24, 28, 29, 24, 24, 90, 25, - 24, 24, 24, 24, 24, 28, 10, 51, 24, 90, 50, 51, 24, 24, 28, 10, - 24, 24, 24, 24, 24, 50, 51, 28, 46, 46, 29, 24, 24, 24, 50, 51, - 24, 24, 28, 46, 29, 24, 89, 25, 1, 2, 32, 29, 24, 24, 28, 46, - 24, 24, 50, 2, 51, 24, 24, 25, 23, 28, 47, 23, 24, 28, 10, 3, - 24, 90, 89, 24, 89, 24, 24, 50, 32, 10, 2, 51, 24, 25, 23, 25, - 29, 24, 89, 24, 24, 24, 24, 89, 25, 23, 24, 24, 24, 25, 23, 50], + "data":[111, 111, 111, 115, 111, 114, 115, 114, 111, 114, 114, 115, 114, 115, 111, 115, + 115, 111, 114, 111, 114, 111, 112, 111, 111, 114, 111, 115, 111, 111, 114, 111, + 111, 115, 115, 114, 115, 111, 115, 111, 111, 115, 112, 111, 115, 114, 114, 111, + 111, 114, 115, 113, 115, 111, 111, 114, 111, 111, 113, 114, 111, 114, 111, 115, + 111, 115, 111, 115, 114, 112, 111, 111, 114, 111, 115, 114, 111, 114, 115, 111, + 115, 115, 111, 115, 111, 114, 114, 111, 115, 111, 114, 111, 115, 115, 113, 114, + 115, 115, 111, 114, 115, 115, 115, 111, 115, 115, 111, 111, 115, 111, 114, 115, + 111, 111, 115, 114, 111, 111, 114, 111, 114, 111, 115, 111, 115, 111, 114, 115, + 114, 115, 111, 114, 111, 111, 111, 111, 114, 111, 114, 115, 111, 114, 111, 111, + 111, 115, 115, 111, 114, 115, 114, 114, 115, 115, 115, 111, 115, 111, 111, 111, + 115, 111, 114, 114, 115, 111, 111, 114, 111, 115, 115, 113, 114, 111, 111, 114, + 111, 115, 115, 111, 115, 111, 111, 114, 114, 111, 111, 114, 115, 111, 112, 115, + 111, 111, 114, 115, 111, 115, 115, 114, 111, 111, 111, 114, 111, 114, 115, 111, + 115, 114, 111, 111, 114, 115, 114, 115, 114, 115, 115, 115, 111, 115, 111, 111, + 114, 115, 114, 114, 114, 111, 111, 111, 111, 111, 114, 115, 111, 111, 114, 111, + 115, 115, 114, 111, 111, 114, 112, 111, 114, 115, 115, 114, 111, 115, 115, 111], "height":16, "width":16, "x":64, "y":0 }, { - "data":[23, 25, 114, 45, 46, 46, 46, 46, 46, 46, 47, 45, 47, 23, 24, 50, - 51, 50, 2, 2, 2, 2, 2, 3, 113, 1, 2, 2, 2, 51, 89, 24, - 29, 24, 89, 90, 24, 28, 29, 50, 3, 23, 24, 24, 90, 89, 90, 24, - 23, 90, 28, 46, 46, 10, 51, 90, 50, 32, 46, 46, 29, 24, 24, 24, - 51, 90, 25, 115, 115, 23, 24, 24, 24, 50, 2, 3, 23, 24, 28, 29, - 24, 24, 50, 2, 2, 51, 24, 24, 24, 24, 90, 25, 23, 24, 25, 45, - 28, 29, 24, 24, 28, 29, 24, 24, 24, 24, 24, 25, 23, 28, 47, 111, - 10, 51, 89, 89, 50, 32, 29, 28, 46, 29, 24, 50, 51, 25, 1, 2, - 23, 24, 28, 29, 24, 50, 51, 50, 3, 23, 24, 28, 29, 25, 23, 24, - 23, 89, 50, 32, 29, 89, 24, 24, 25, 45, 46, 10, 51, 25, 23, 89, - 51, 24, 90, 50, 51, 24, 24, 24, 50, 3, 115, 45, 46, 47, 45, 29, - 28, 29, 24, 28, 29, 24, 24, 24, 24, 50, 2, 2, 2, 3, 111, 45, - 10, 32, 29, 50, 51, 28, 46, 29, 89, 24, 24, 24, 24, 25, 115, 1, - 23, 50, 32, 29, 24, 25, 111, 23, 24, 24, 28, 29, 90, 50, 3, 23, - 23, 24, 25, 23, 24, 50, 3, 23, 24, 24, 50, 51, 24, 24, 50, 32, - 51, 90, 50, 51, 24, 24, 25, 23, 24, 24, 24, 24, 24, 24, 24, 50], + "data":[114, 111, 111, 111, 115, 111, 115, 111, 114, 115, 111, 113, 113, 114, 115, 115, + 115, 111, 111, 115, 111, 111, 111, 114, 115, 115, 111, 111, 111, 115, 111, 111, + 114, 111, 114, 115, 111, 115, 112, 114, 111, 111, 111, 115, 114, 111, 115, 112, + 111, 111, 111, 111, 111, 114, 111, 111, 111, 114, 111, 111, 111, 115, 114, 112, + 111, 111, 115, 111, 111, 111, 111, 114, 111, 111, 112, 115, 111, 114, 114, 111, + 115, 111, 114, 114, 111, 111, 111, 111, 111, 114, 111, 115, 115, 111, 114, 115, + 112, 111, 111, 111, 111, 114, 114, 114, 115, 111, 114, 114, 115, 111, 111, 111, + 111, 111, 115, 111, 111, 111, 115, 111, 111, 111, 111, 115, 111, 111, 111, 111, + 111, 115, 111, 111, 115, 111, 111, 112, 111, 111, 114, 115, 111, 114, 111, 115, + 114, 111, 114, 111, 111, 111, 111, 114, 114, 111, 114, 111, 111, 115, 111, 111, + 115, 115, 111, 114, 111, 114, 111, 114, 115, 111, 115, 111, 111, 115, 115, 111, + 114, 114, 111, 111, 111, 115, 115, 111, 111, 111, 111, 111, 114, 111, 111, 111, + 111, 115, 114, 111, 111, 111, 114, 111, 114, 114, 111, 111, 115, 113, 114, 113, + 114, 114, 114, 115, 111, 111, 115, 111, 114, 111, 111, 111, 111, 115, 111, 111, + 111, 115, 114, 111, 111, 111, 112, 111, 114, 115, 111, 111, 112, 114, 111, 113, + 115, 111, 114, 114, 111, 115, 114, 115, 115, 115, 115, 111, 115, 111, 115, 115], "height":16, "width":16, "x":80, "y":0 }, { - "data":[3, 23, 90, 50, 32, 10, 3, 115, 111, 45, 47, 111, 45, 46, 10, 2, - 25, 45, 29, 24, 50, 32, 10, 2, 2, 2, 2, 2, 2, 2, 51, 24, - 25, 111, 45, 46, 46, 10, 51, 24, 24, 89, 24, 89, 24, 90, 24, 24, - 25, 114, 111, 111, 1, 51, 28, 29, 28, 46, 46, 29, 24, 24, 90, 89, - 25, 115, 1, 2, 51, 24, 25, 23, 50, 2, 3, 45, 29, 24, 89, 24, - 10, 2, 32, 29, 89, 28, 10, 51, 24, 24, 50, 2, 51, 24, 24, 24, - 23, 90, 50, 32, 29, 25, 45, 29, 89, 24, 24, 24, 24, 24, 24, 24, - 51, 28, 46, 10, 51, 50, 2, 51, 24, 24, 24, 24, 24, 90, 24, 24, - 24, 50, 2, 51, 24, 90, 24, 24, 28, 29, 24, 24, 24, 24, 24, 28, - 89, 24, 28, 46, 29, 24, 24, 24, 25, 45, 29, 24, 24, 24, 28, 10, - 24, 24, 50, 3, 23, 24, 24, 24, 50, 2, 51, 24, 24, 24, 25, 23, - 29, 24, 24, 50, 51, 24, 24, 24, 24, 24, 24, 24, 24, 24, 50, 51, - 32, 46, 29, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 25, 1, 32, 46, 46, 29, 24, 24, 28, 46, 29, 24, 24, 24, 24, 28, - 10, 32, 10, 3, 1, 32, 29, 24, 50, 2, 51, 24, 89, 24, 24, 25, - 51, 25, 23, 25, 45, 10, 32, 46, 29, 24, 24, 24, 24, 89, 90, 50], + "data":[114, 111, 115, 111, 115, 111, 111, 115, 111, 111, 111, 111, 111, 115, 111, 111, + 114, 115, 112, 115, 111, 111, 111, 111, 111, 111, 111, 111, 114, 114, 111, 114, + 115, 111, 111, 115, 111, 114, 111, 111, 111, 111, 111, 114, 115, 111, 111, 111, + 114, 115, 111, 115, 112, 111, 111, 115, 111, 114, 115, 111, 114, 111, 114, 114, + 114, 111, 111, 113, 115, 114, 112, 115, 115, 115, 115, 114, 111, 115, 111, 111, + 111, 115, 111, 111, 115, 115, 115, 114, 111, 111, 114, 114, 111, 111, 115, 111, + 112, 111, 115, 111, 111, 114, 114, 114, 111, 115, 111, 111, 114, 115, 114, 111, + 115, 111, 111, 115, 111, 114, 111, 111, 111, 115, 111, 111, 115, 114, 114, 114, + 111, 114, 111, 115, 111, 111, 111, 115, 114, 111, 111, 111, 111, 114, 114, 111, + 114, 111, 111, 111, 115, 114, 111, 114, 111, 111, 114, 1, 2, 2, 2, 3, + 111, 111, 114, 114, 114, 111, 115, 111, 114, 1, 2, 51, 24, 24, 24, 25, + 115, 115, 111, 115, 114, 115, 111, 1, 2, 51, 24, 24, 28, 46, 46, 47, + 111, 115, 111, 114, 111, 115, 111, 23, 24, 24, 24, 28, 47, 111, 111, 115, + 111, 114, 111, 113, 114, 114, 1, 51, 24, 28, 46, 47, 115, 114, 115, 111, + 115, 111, 114, 114, 114, 111, 23, 24, 24, 25, 115, 115, 113, 113, 115, 115, + 115, 111, 111, 111, 111, 1, 51, 24, 28, 47, 111, 111, 111, 112, 111, 115], "height":16, "width":16, "x":96, "y":0 }, { - "data":[51, 24, 24, 25, 23, 24, 25, 114, 1, 51, 24, 90, 24, 25, 23, 50, - 24, 24, 28, 10, 32, 46, 10, 2, 51, 24, 28, 46, 29, 50, 51, 24, - 24, 24, 50, 51, 50, 3, 45, 29, 24, 24, 50, 2, 32, 29, 28, 29, - 90, 24, 24, 24, 24, 50, 2, 51, 24, 24, 90, 28, 47, 45, 10, 51, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 29, 50, 2, 2, 51, 24, - 24, 24, 24, 24, 24, 24, 24, 28, 29, 50, 51, 24, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 28, 29, 50, 51, 24, 24, 24, 89, 90, 28, 29, - 24, 24, 28, 46, 29, 25, 23, 28, 29, 28, 46, 29, 24, 24, 50, 32, - 29, 24, 50, 2, 32, 10, 51, 25, 23, 25, 111, 45, 29, 24, 24, 25, - 51, 24, 24, 24, 50, 51, 24, 50, 32, 10, 3, 1, 32, 29, 24, 50, - 24, 24, 24, 90, 24, 24, 24, 24, 25, 23, 25, 23, 50, 51, 24, 24, - 24, 28, 46, 29, 24, 24, 90, 24, 25, 23, 50, 51, 24, 24, 24, 24, - 24, 25, 112, 23, 28, 46, 46, 29, 50, 51, 24, 24, 89, 28, 29, 24, - 29, 25, 1, 32, 10, 3, 111, 45, 29, 24, 24, 89, 24, 50, 51, 28, - 45, 47, 45, 10, 51, 25, 1, 2, 32, 29, 24, 24, 24, 24, 24, 50, - 2, 2, 3, 23, 24, 50, 51, 24, 50, 51, 24, 24, 24, 24, 24, 24], + "data":[114, 111, 111, 111, 111, 111, 111, 111, 114, 115, 111, 115, 111, 111, 114, 114, + 115, 114, 111, 114, 111, 114, 111, 113, 115, 112, 115, 111, 111, 111, 111, 111, + 114, 111, 115, 115, 115, 114, 114, 115, 111, 115, 111, 111, 111, 111, 111, 115, + 111, 114, 115, 112, 114, 115, 111, 111, 114, 111, 114, 115, 115, 115, 114, 114, + 111, 111, 115, 113, 114, 111, 114, 114, 111, 111, 114, 111, 112, 115, 113, 115, + 114, 113, 111, 111, 111, 111, 114, 114, 111, 111, 112, 112, 111, 111, 111, 114, + 111, 111, 111, 111, 111, 111, 111, 112, 111, 115, 111, 111, 115, 114, 115, 114, + 112, 113, 115, 114, 111, 114, 115, 114, 111, 111, 111, 114, 111, 111, 111, 111, + 111, 111, 111, 111, 114, 114, 111, 115, 111, 111, 112, 111, 113, 111, 111, 111, + 111, 111, 114, 111, 114, 113, 111, 114, 111, 114, 111, 111, 113, 114, 115, 114, + 111, 114, 115, 115, 111, 115, 114, 111, 111, 111, 114, 114, 111, 111, 111, 115, + 111, 115, 111, 114, 111, 111, 111, 111, 115, 111, 111, 115, 111, 115, 115, 111, + 114, 115, 111, 111, 111, 111, 115, 111, 111, 115, 111, 111, 114, 114, 115, 111, + 115, 115, 111, 115, 114, 111, 111, 111, 111, 114, 114, 115, 111, 111, 111, 115, + 115, 112, 111, 115, 111, 115, 111, 115, 111, 115, 115, 111, 111, 111, 111, 111, + 115, 113, 114, 112, 114, 114, 115, 115, 115, 115, 111, 111, 111, 111, 112, 111], "height":16, "width":16, "x":112, "y":0 }, { - "data":[24, 50, 32, 29, 24, 25, 23, 90, 50, 32, 46, 46, 46, 29, 24, 24, - 24, 90, 50, 32, 46, 10, 51, 24, 24, 25, 111, 1, 2, 32, 46, 46, - 29, 24, 89, 25, 1, 51, 28, 29, 28, 47, 111, 23, 28, 10, 2, 2, - 32, 29, 90, 50, 51, 24, 50, 51, 50, 2, 3, 23, 50, 32, 29, 28, - 25, 45, 29, 24, 24, 90, 24, 90, 28, 46, 10, 51, 24, 50, 51, 25, - 25, 114, 45, 29, 24, 28, 29, 24, 50, 2, 51, 28, 46, 29, 24, 25, - 50, 2, 2, 51, 24, 25, 23, 24, 28, 46, 46, 10, 2, 51, 24, 25, - 24, 28, 29, 24, 90, 50, 32, 46, 10, 3, 114, 23, 24, 24, 24, 25, - 24, 50, 51, 89, 89, 24, 25, 115, 45, 10, 2, 32, 29, 24, 24, 25, - 29, 89, 24, 24, 24, 90, 25, 1, 2, 32, 29, 25, 23, 24, 89, 25, - 23, 24, 28, 46, 29, 28, 10, 51, 24, 50, 32, 47, 23, 24, 89, 25, - 51, 24, 25, 1, 32, 10, 32, 29, 24, 24, 50, 2, 51, 24, 24, 50, - 24, 28, 47, 23, 50, 51, 50, 51, 89, 24, 28, 46, 29, 24, 24, 24, - 28, 10, 3, 23, 24, 24, 24, 24, 28, 46, 10, 3, 45, 46, 29, 24, - 50, 32, 47, 23, 89, 24, 24, 24, 50, 2, 51, 50, 2, 2, 51, 24, - 24, 50, 3, 23, 24, 24, 24, 24, 90, 24, 89, 24, 24, 24, 24, 24], + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266], "height":16, "width":16, - "x":0, + "x":-80, "y":16 }, { - "data":[25, 23, 28, 47, 23, 24, 24, 24, 24, 24, 89, 89, 50, 2, 3, 1, - 47, 23, 50, 2, 51, 24, 24, 90, 24, 28, 29, 28, 29, 24, 25, 23, - 2, 51, 24, 24, 24, 24, 24, 28, 29, 50, 51, 25, 23, 24, 25, 45, - 29, 24, 24, 24, 89, 24, 24, 50, 32, 29, 24, 50, 51, 28, 10, 2, - 45, 46, 46, 29, 89, 24, 24, 24, 50, 51, 24, 24, 24, 50, 51, 24, - 111, 115, 1, 32, 29, 24, 24, 28, 29, 89, 24, 24, 89, 24, 24, 24, - 111, 1, 32, 10, 51, 24, 24, 50, 51, 24, 24, 24, 24, 24, 24, 24, - 115, 23, 50, 51, 90, 24, 28, 29, 24, 24, 24, 24, 24, 24, 24, 24, - 1, 51, 24, 24, 24, 24, 50, 51, 24, 89, 90, 24, 24, 24, 24, 24, - 23, 24, 89, 28, 29, 24, 89, 24, 24, 89, 90, 28, 29, 24, 24, 24, - 23, 24, 28, 47, 45, 46, 29, 24, 28, 46, 29, 50, 51, 24, 24, 24, - 51, 24, 50, 2, 2, 2, 51, 89, 50, 2, 51, 24, 24, 28, 46, 29, - 24, 89, 24, 24, 24, 28, 29, 24, 24, 90, 24, 90, 24, 50, 2, 32, - 24, 90, 24, 24, 90, 50, 51, 24, 24, 89, 24, 24, 24, 28, 29, 50, - 24, 28, 29, 24, 24, 24, 24, 28, 46, 29, 24, 24, 24, 50, 32, 29, - 90, 50, 51, 24, 24, 28, 46, 10, 2, 32, 46, 29, 24, 24, 50, 32], + "data":[246, 267, 266, 246, 268, 245, 245, 265, 267, 246, 269, 246, 245, 268, 246, 267, + 246, 268, 268, 265, 245, 266, 268, 266, 266, 269, 266, 245, 265, 266, 265, 266, + 265, 267, 267, 269, 269, 245, 266, 266, 265, 246, 265, 245, 265, 268, 268, 246, + 267, 269, 269, 267, 246, 268, 265, 266, 267, 269, 245, 269, 267, 246, 267, 266, + 265, 266, 268, 246, 267, 246, 269, 267, 245, 265, 245, 265, 266, 246, 246, 266, + 266, 245, 245, 268, 245, 267, 268, 269, 246, 268, 267, 267, 269, 246, 245, 268, + 267, 266, 269, 265, 266, 245, 266, 266, 267, 245, 266, 265, 245, 269, 266, 269, + 268, 245, 245, 266, 245, 266, 268, 267, 267, 245, 245, 265, 269, 268, 246, 268, + 245, 269, 266, 265, 245, 269, 266, 267, 246, 267, 268, 245, 265, 266, 246, 269, + 245, 266, 268, 265, 269, 266, 267, 266, 246, 245, 267, 265, 267, 265, 265, 268, + 246, 246, 246, 265, 269, 245, 266, 265, 268, 268, 267, 266, 245, 265, 266, 269, + 267, 246, 266, 245, 268, 267, 266, 267, 246, 265, 246, 268, 266, 266, 246, 269, + 268, 267, 245, 266, 267, 265, 268, 266, 268, 269, 268, 266, 268, 267, 245, 269, + 266, 267, 268, 265, 246, 246, 265, 269, 246, 265, 246, 269, 266, 268, 269, 267, + 267, 245, 265, 245, 266, 265, 246, 269, 266, 267, 269, 266, 265, 266, 269, 269, + 266, 268, 265, 266, 265, 267, 269, 266, 268, 246, 268, 267, 268, 246, 269, 267], "height":16, "width":16, - "x":16, + "x":-64, "y":16 }, { - "data":[3, 23, 24, 24, 24, 24, 50, 51, 24, 24, 50, 51, 24, 28, 10, 51, - 50, 32, 29, 24, 24, 24, 24, 24, 89, 90, 24, 24, 24, 50, 51, 24, - 46, 10, 51, 28, 46, 29, 28, 46, 29, 24, 28, 46, 46, 29, 24, 28, - 2, 32, 29, 25, 114, 23, 25, 111, 23, 90, 25, 1, 2, 32, 46, 10, - 24, 50, 51, 50, 2, 51, 25, 1, 32, 46, 47, 23, 24, 25, 1, 32, - 24, 90, 24, 24, 24, 24, 50, 32, 10, 2, 2, 51, 24, 50, 51, 50, - 90, 90, 24, 24, 24, 24, 28, 10, 32, 29, 24, 24, 24, 24, 24, 24, - 24, 90, 24, 24, 24, 24, 25, 45, 47, 23, 24, 24, 24, 24, 24, 24, - 28, 29, 89, 24, 24, 24, 50, 3, 1, 32, 46, 46, 29, 90, 24, 24, - 25, 23, 24, 24, 24, 89, 24, 50, 32, 47, 1, 2, 32, 46, 29, 24, - 50, 32, 29, 24, 24, 24, 28, 46, 10, 3, 45, 46, 10, 2, 32, 46, - 24, 50, 51, 90, 24, 24, 25, 114, 23, 50, 2, 2, 51, 24, 25, 111, - 46, 29, 24, 89, 24, 24, 50, 2, 32, 46, 46, 29, 24, 24, 25, 111, - 2, 51, 24, 24, 24, 90, 90, 90, 25, 112, 1, 51, 24, 24, 50, 2, - 24, 24, 24, 24, 24, 24, 89, 24, 50, 2, 32, 46, 46, 29, 24, 24, - 46, 46, 29, 24, 24, 89, 24, 90, 24, 24, 50, 2, 3, 23, 24, 24], + "data":[265, 265, 266, 245, 267, 245, 265, 245, 245, 268, 269, 267, 267, 177, 179, 269, + 246, 266, 268, 268, 268, 245, 268, 266, 266, 267, 266, 245, 246, 177, 204, 157, + 267, 267, 266, 246, 266, 268, 269, 267, 267, 246, 265, 246, 268, 199, 183, 179, + 268, 267, 246, 246, 245, 245, 246, 269, 267, 268, 266, 267, 266, 267, 177, 179, + 246, 267, 269, 266, 269, 267, 268, 265, 267, 246, 269, 269, 267, 246, 177, 179, + 268, 246, 266, 267, 268, 269, 246, 267, 245, 266, 268, 269, 245, 266, 177, 204, + 246, 268, 246, 265, 245, 265, 267, 245, 246, 265, 245, 265, 246, 266, 199, 183, + 265, 267, 267, 267, 266, 245, 267, 268, 269, 266, 268, 266, 268, 266, 245, 177, + 245, 265, 246, 267, 246, 266, 245, 265, 245, 269, 269, 267, 267, 269, 266, 177, + 266, 269, 269, 268, 268, 265, 245, 265, 246, 268, 269, 268, 245, 266, 266, 177, + 267, 266, 268, 268, 267, 266, 265, 266, 246, 268, 267, 268, 266, 268, 267, 199, + 246, 267, 269, 269, 245, 269, 266, 269, 265, 268, 266, 245, 265, 269, 268, 268, + 246, 268, 269, 268, 267, 265, 269, 265, 269, 266, 266, 269, 266, 265, 269, 267, + 269, 266, 246, 268, 268, 266, 266, 268, 269, 267, 245, 246, 267, 245, 245, 268, + 245, 267, 266, 245, 269, 245, 268, 267, 269, 269, 268, 268, 246, 268, 265, 268, + 269, 266, 265, 245, 269, 266, 266, 265, 246, 267, 267, 268, 266, 267, 268, 267], "height":16, "width":16, - "x":32, - "y":16 - }, - { - "data":[24, 50, 32, 46, 10, 2, 32, 29, 24, 24, 89, 89, 24, 24, 50, 2, - 24, 24, 50, 3, 23, 24, 25, 23, 24, 24, 24, 24, 24, 24, 89, 24, - 29, 24, 24, 25, 23, 24, 25, 23, 24, 24, 89, 24, 24, 24, 28, 46, - 51, 24, 24, 50, 51, 28, 10, 51, 24, 89, 24, 24, 24, 90, 50, 2, - 29, 24, 90, 24, 89, 25, 23, 24, 28, 29, 24, 24, 24, 90, 24, 24, - 51, 28, 29, 24, 90, 25, 23, 24, 50, 32, 29, 90, 28, 29, 89, 24, - 90, 25, 45, 46, 46, 10, 32, 46, 29, 50, 51, 90, 50, 51, 24, 24, - 89, 25, 114, 115, 111, 23, 25, 1, 51, 24, 28, 46, 29, 28, 29, 24, - 24, 25, 1, 2, 2, 51, 25, 23, 24, 24, 25, 111, 45, 10, 51, 24, - 24, 25, 23, 24, 28, 46, 10, 32, 29, 24, 25, 114, 115, 23, 24, 28, - 29, 50, 51, 24, 50, 2, 32, 10, 32, 46, 10, 2, 2, 32, 29, 50, - 45, 46, 29, 24, 89, 90, 50, 32, 10, 2, 51, 24, 89, 25, 23, 24, - 114, 1, 32, 46, 29, 28, 46, 10, 51, 24, 89, 24, 24, 25, 23, 24, - 2, 32, 10, 2, 51, 50, 2, 51, 90, 24, 24, 24, 24, 50, 51, 24, - 24, 50, 32, 46, 29, 24, 90, 28, 29, 24, 90, 24, 24, 24, 24, 24, - 90, 24, 50, 2, 51, 24, 24, 50, 32, 29, 24, 24, 89, 90, 24, 24], - "height":16, - "width":16, - "x":48, - "y":16 - }, - { - "data":[51, 24, 24, 89, 89, 24, 24, 90, 25, 23, 24, 24, 24, 50, 51, 24, - 89, 28, 29, 24, 24, 89, 24, 24, 50, 51, 24, 90, 24, 28, 29, 28, - 46, 10, 32, 29, 24, 24, 24, 24, 24, 24, 28, 29, 28, 47, 23, 25, - 2, 51, 50, 32, 46, 29, 24, 24, 24, 28, 10, 32, 10, 2, 51, 50, - 24, 24, 24, 50, 2, 51, 24, 24, 24, 25, 45, 10, 51, 24, 24, 28, - 90, 90, 24, 24, 24, 24, 24, 24, 89, 50, 2, 32, 29, 24, 24, 50, - 89, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 50, 51, 89, 24, 24, - 24, 24, 24, 24, 24, 24, 24, 89, 24, 24, 24, 24, 24, 90, 24, 24, - 28, 46, 46, 29, 24, 24, 24, 90, 24, 24, 89, 24, 24, 24, 28, 29, - 10, 2, 2, 51, 24, 24, 24, 24, 24, 24, 24, 90, 24, 24, 25, 23, - 51, 28, 29, 28, 29, 90, 89, 24, 24, 24, 24, 28, 29, 28, 47, 23, - 90, 25, 23, 25, 45, 29, 24, 28, 29, 90, 24, 50, 32, 47, 1, 51, - 24, 25, 23, 25, 1, 51, 24, 50, 32, 46, 29, 24, 50, 2, 51, 24, - 24, 25, 45, 47, 45, 29, 90, 24, 50, 2, 51, 24, 90, 24, 28, 46, - 24, 25, 111, 1, 3, 23, 28, 46, 29, 24, 90, 24, 28, 46, 47, 1, - 24, 50, 2, 51, 25, 23, 50, 2, 51, 28, 29, 24, 25, 115, 114, 23], - "height":16, - "width":16, - "x":64, - "y":16 - }, - { - "data":[24, 28, 29, 24, 24, 24, 25, 23, 90, 90, 28, 46, 29, 24, 24, 24, - 29, 25, 45, 29, 24, 24, 50, 32, 46, 29, 50, 2, 32, 29, 24, 24, - 23, 50, 2, 51, 89, 90, 89, 50, 2, 32, 46, 46, 10, 32, 46, 29, - 32, 29, 89, 28, 29, 24, 24, 24, 24, 25, 111, 111, 23, 50, 3, 23, - 10, 32, 29, 50, 51, 24, 28, 29, 24, 50, 2, 2, 32, 29, 25, 45, - 51, 25, 23, 24, 24, 90, 50, 51, 28, 46, 46, 29, 50, 51, 50, 2, - 24, 25, 23, 24, 24, 24, 28, 46, 10, 2, 2, 51, 24, 24, 24, 24, - 24, 50, 51, 24, 24, 24, 50, 2, 51, 24, 24, 28, 29, 24, 24, 24, - 24, 24, 24, 24, 24, 90, 24, 89, 90, 24, 24, 50, 32, 46, 29, 89, - 89, 28, 29, 24, 24, 24, 24, 28, 29, 24, 24, 24, 50, 2, 32, 29, - 28, 10, 32, 29, 24, 28, 29, 50, 51, 89, 24, 24, 24, 24, 25, 23, - 25, 23, 25, 23, 24, 50, 32, 29, 24, 90, 24, 24, 24, 24, 50, 51, - 50, 51, 50, 51, 90, 24, 25, 23, 24, 24, 24, 24, 90, 24, 90, 24, - 29, 24, 24, 24, 24, 28, 10, 32, 46, 46, 29, 24, 24, 24, 24, 24, - 32, 29, 24, 28, 29, 25, 23, 50, 2, 2, 32, 29, 24, 89, 24, 24, - 25, 23, 24, 50, 51, 50, 51, 24, 24, 24, 50, 32, 29, 28, 29, 24], - "height":16, - "width":16, - "x":80, - "y":16 - }, - { - "data":[24, 25, 23, 25, 111, 23, 50, 2, 51, 28, 29, 24, 24, 24, 24, 24, - 24, 25, 23, 25, 1, 51, 28, 29, 24, 25, 23, 24, 89, 24, 89, 24, - 24, 50, 51, 25, 23, 24, 50, 51, 24, 50, 32, 46, 46, 29, 24, 24, - 24, 24, 24, 50, 51, 24, 24, 28, 29, 89, 25, 111, 111, 23, 24, 24, - 29, 24, 89, 90, 24, 24, 28, 10, 51, 28, 10, 2, 2, 32, 29, 24, - 32, 29, 28, 46, 29, 24, 50, 51, 24, 50, 32, 46, 29, 50, 32, 29, - 50, 51, 50, 3, 23, 90, 90, 24, 28, 29, 50, 2, 51, 24, 50, 51, - 89, 24, 24, 50, 32, 46, 29, 24, 50, 51, 24, 24, 24, 24, 24, 24, - 90, 28, 46, 29, 50, 3, 23, 24, 28, 29, 24, 24, 24, 24, 28, 46, - 24, 25, 1, 51, 89, 50, 51, 24, 50, 51, 24, 24, 24, 24, 25, 115, - 24, 25, 23, 24, 89, 90, 24, 24, 24, 24, 24, 24, 24, 24, 25, 111, - 24, 25, 23, 24, 24, 24, 24, 24, 24, 90, 24, 24, 24, 28, 10, 2, - 24, 50, 32, 46, 46, 46, 29, 24, 24, 24, 28, 29, 28, 10, 51, 24, - 24, 24, 25, 111, 111, 1, 51, 24, 24, 24, 50, 32, 10, 51, 24, 24, - 24, 24, 50, 2, 2, 51, 28, 29, 89, 89, 24, 25, 23, 24, 24, 28, - 24, 24, 24, 90, 24, 24, 50, 32, 29, 24, 24, 25, 23, 24, 28, 10], - "height":16, - "width":16, - "x":96, - "y":16 - }, - { - "data":[24, 28, 47, 23, 24, 24, 28, 29, 24, 24, 24, 24, 24, 28, 29, 24, - 24, 25, 114, 23, 24, 90, 50, 32, 46, 29, 24, 28, 29, 50, 51, 24, - 24, 25, 1, 51, 28, 29, 24, 25, 1, 51, 24, 25, 23, 28, 29, 24, - 24, 25, 23, 28, 10, 51, 24, 50, 51, 24, 24, 50, 51, 50, 32, 46, - 24, 50, 32, 10, 32, 46, 29, 24, 24, 28, 46, 46, 46, 29, 50, 2, - 28, 29, 25, 23, 50, 2, 51, 24, 24, 25, 114, 111, 1, 32, 29, 24, - 50, 51, 25, 45, 46, 29, 28, 29, 90, 25, 1, 2, 51, 50, 51, 28, - 28, 29, 50, 3, 1, 32, 10, 32, 46, 10, 32, 29, 89, 24, 89, 25, - 10, 32, 46, 47, 23, 50, 32, 10, 2, 51, 50, 51, 24, 24, 89, 25, - 23, 25, 111, 111, 23, 28, 10, 32, 46, 29, 24, 24, 24, 90, 24, 25, - 23, 25, 111, 1, 32, 10, 51, 50, 2, 51, 24, 24, 24, 24, 24, 50, - 32, 10, 3, 45, 10, 51, 24, 24, 24, 90, 24, 24, 24, 24, 24, 28, - 50, 51, 25, 114, 23, 89, 24, 24, 24, 24, 89, 24, 24, 90, 24, 50, - 90, 24, 25, 115, 23, 90, 24, 28, 29, 24, 24, 90, 24, 24, 24, 90, - 46, 29, 50, 2, 51, 24, 28, 10, 51, 24, 28, 46, 29, 28, 46, 29, - 2, 32, 46, 29, 24, 28, 10, 51, 24, 24, 50, 2, 51, 50, 3, 23], - "height":16, - "width":16, - "x":112, + "x":-48, "y":16 }, { - "data":[89, 24, 50, 32, 29, 28, 29, 24, 89, 24, 24, 28, 29, 28, 46, 29, - 24, 24, 89, 25, 45, 47, 23, 24, 24, 24, 24, 25, 23, 25, 1, 51, - 46, 29, 90, 50, 2, 2, 51, 28, 29, 24, 90, 50, 51, 50, 32, 46, - 2, 51, 28, 29, 24, 24, 24, 25, 23, 24, 24, 24, 24, 24, 50, 3, - 29, 24, 50, 51, 24, 24, 28, 10, 32, 29, 24, 24, 24, 24, 24, 50, - 51, 24, 24, 24, 24, 24, 50, 32, 47, 23, 24, 24, 90, 24, 24, 24, - 24, 24, 24, 24, 24, 24, 24, 50, 3, 45, 29, 89, 24, 28, 29, 28, - 24, 24, 24, 24, 24, 90, 24, 24, 50, 2, 51, 28, 29, 25, 45, 10, - 24, 24, 24, 24, 24, 24, 28, 29, 24, 24, 28, 10, 32, 10, 2, 51, - 90, 89, 24, 24, 89, 24, 25, 23, 24, 24, 50, 51, 25, 23, 24, 24, - 24, 24, 24, 24, 24, 24, 50, 51, 24, 24, 24, 28, 10, 51, 24, 24, - 24, 24, 24, 24, 28, 29, 24, 24, 24, 24, 24, 50, 51, 24, 24, 24, - 24, 90, 89, 89, 25, 45, 29, 24, 24, 24, 89, 24, 24, 24, 24, 24, - 90, 89, 24, 24, 50, 2, 32, 46, 46, 29, 89, 24, 28, 46, 29, 89, - 24, 24, 90, 89, 24, 24, 50, 2, 2, 51, 28, 29, 50, 2, 51, 90, - 29, 24, 24, 24, 24, 24, 90, 24, 24, 28, 10, 51, 24, 24, 24, 24], + "data":[246, 266, 246, 269, 269, 269, 269, 246, 265, 266, 265, 268, 266, 246, 245, 269, + 269, 245, 266, 245, 246, 265, 266, 246, 266, 245, 265, 245, 245, 245, 267, 267, + 246, 265, 268, 267, 268, 268, 246, 269, 269, 269, 245, 267, 265, 265, 268, 265, + 265, 246, 246, 245, 266, 269, 246, 245, 265, 265, 267, 268, 246, 245, 265, 266, + 246, 265, 267, 266, 265, 265, 268, 266, 267, 267, 267, 267, 246, 265, 267, 246, + 157, 267, 267, 266, 267, 265, 265, 246, 245, 266, 266, 267, 268, 246, 246, 246, + 179, 246, 268, 245, 269, 246, 268, 246, 268, 268, 266, 265, 266, 265, 246, 265, + 179, 269, 266, 265, 246, 268, 268, 246, 245, 267, 245, 269, 269, 269, 265, 245, + 179, 268, 269, 245, 269, 245, 269, 269, 268, 268, 267, 245, 268, 268, 267, 268, + 204, 157, 266, 267, 245, 268, 266, 245, 266, 266, 269, 246, 266, 245, 265, 245, + 183, 179, 267, 246, 246, 246, 246, 268, 269, 269, 246, 246, 267, 265, 265, 246, + 177, 179, 266, 246, 267, 266, 268, 266, 245, 268, 266, 268, 246, 245, 246, 269, + 177, 179, 245, 266, 266, 265, 267, 245, 265, 245, 268, 265, 265, 246, 268, 269, + 177, 204, 157, 267, 268, 266, 266, 267, 246, 265, 268, 266, 268, 266, 268, 269, + 199, 183, 204, 157, 246, 269, 265, 269, 268, 269, 269, 246, 266, 269, 246, 266, + 267, 199, 183, 179, 268, 267, 267, 245, 246, 246, 266, 267, 266, 246, 245, 268], + "height":16, + "width":16, + "x":-32, + "y":16 + }, + { + "data":[268, 245, 267, 246, 266, 245, 268, 268, 266, 265, 245, 269, 265, 246, 601, 602, + 245, 267, 265, 268, 269, 268, 266, 266, 246, 265, 269, 269, 245, 268, 601, 602, + 246, 268, 265, 268, 265, 266, 245, 267, 267, 265, 265, 266, 265, 267, 601, 111, + 266, 245, 265, 268, 267, 267, 266, 265, 268, 269, 246, 268, 268, 268, 601, 111, + 267, 268, 268, 269, 267, 269, 245, 266, 269, 268, 268, 267, 269, 268, 601, 602, + 246, 267, 268, 246, 269, 269, 265, 267, 245, 245, 269, 246, 267, 267, 601, 115, + 267, 265, 266, 246, 268, 268, 245, 268, 266, 266, 245, 266, 269, 579, 605, 602, + 269, 266, 269, 266, 246, 268, 267, 246, 268, 269, 268, 268, 265, 601, 115, 114, + 266, 265, 269, 269, 268, 269, 266, 268, 269, 268, 268, 265, 267, 601, 111, 114, + 265, 269, 245, 269, 266, 266, 245, 245, 245, 246, 267, 246, 267, 601, 114, 111, + 245, 245, 267, 266, 246, 268, 245, 268, 267, 245, 267, 246, 266, 601, 111, 114, + 266, 245, 267, 246, 269, 266, 265, 245, 269, 269, 246, 267, 267, 601, 602, 111, + 265, 265, 266, 265, 245, 266, 267, 267, 268, 267, 268, 265, 246, 601, 602, 111, + 267, 269, 246, 267, 245, 267, 246, 267, 269, 245, 266, 269, 266, 601, 114, 115, + 245, 268, 267, 265, 265, 265, 267, 268, 266, 269, 267, 266, 246, 601, 111, 114, + 267, 245, 246, 266, 265, 269, 269, 269, 265, 245, 268, 246, 266, 601, 602, 114], + "height":16, + "width":16, + "x":-16, + "y":16 + }, + { + "data":[111, 112, 111, 114, 115, 115, 111, 115, 111, 115, 111, 111, 111, 111, 114, 114, + 111, 115, 114, 111, 114, 115, 115, 111, 111, 115, 111, 111, 114, 111, 111, 115, + 602, 111, 115, 114, 115, 111, 111, 114, 114, 114, 115, 111, 115, 112, 111, 114, + 114, 111, 113, 111, 111, 111, 111, 115, 111, 111, 113, 111, 115, 112, 113, 111, + 111, 114, 115, 111, 115, 115, 114, 111, 111, 114, 115, 113, 111, 111, 111, 111, + 114, 111, 115, 111, 111, 111, 111, 114, 111, 111, 112, 114, 111, 111, 114, 114, + 111, 114, 111, 111, 111, 111, 114, 112, 111, 111, 114, 111, 111, 111, 115, 112, + 114, 115, 111, 114, 115, 114, 115, 111, 111, 115, 111, 115, 115, 112, 111, 111, + 115, 111, 111, 114, 111, 111, 114, 111, 111, 114, 111, 111, 111, 111, 115, 111, + 114, 115, 114, 115, 112, 111, 115, 115, 111, 111, 111, 114, 111, 111, 111, 111, + 114, 111, 112, 111, 114, 111, 111, 115, 111, 111, 113, 114, 115, 111, 111, 114, + 111, 111, 115, 111, 111, 114, 111, 111, 115, 111, 115, 114, 111, 112, 114, 114, + 111, 115, 114, 115, 111, 115, 115, 111, 112, 111, 115, 114, 111, 111, 111, 115, + 111, 115, 114, 114, 115, 114, 115, 115, 115, 115, 115, 115, 114, 111, 115, 114, + 602, 111, 111, 112, 115, 114, 111, 111, 113, 111, 114, 111, 115, 111, 115, 111, + 115, 114, 114, 114, 111, 115, 111, 111, 115, 115, 111, 111, 111, 115, 111, 115], + "height":16, + "width":16, + "x":0, + "y":16 + }, + { + "data":[114, 115, 115, 115, 111, 114, 111, 114, 113, 111, 115, 115, 115, 114, 114, 111, + 114, 111, 114, 114, 115, 111, 115, 114, 112, 114, 111, 111, 114, 115, 111, 111, + 115, 115, 115, 111, 111, 111, 115, 111, 111, 111, 114, 115, 114, 115, 114, 111, + 114, 111, 111, 115, 115, 115, 111, 115, 114, 111, 111, 111, 115, 111, 115, 111, + 115, 111, 111, 113, 115, 111, 111, 111, 111, 111, 111, 111, 114, 111, 111, 111, + 115, 114, 111, 114, 111, 115, 111, 111, 111, 115, 114, 111, 111, 111, 115, 113, + 114, 114, 111, 111, 115, 114, 114, 115, 111, 111, 111, 115, 111, 115, 114, 114, + 115, 111, 111, 114, 115, 115, 111, 111, 111, 111, 114, 111, 115, 115, 111, 111, + 113, 111, 115, 111, 111, 111, 114, 111, 111, 111, 114, 111, 115, 113, 115, 111, + 115, 114, 111, 115, 111, 114, 111, 114, 111, 114, 111, 111, 111, 115, 115, 111, + 111, 111, 111, 111, 115, 115, 111, 111, 111, 115, 111, 114, 115, 114, 113, 111, + 111, 115, 114, 111, 111, 115, 114, 111, 111, 111, 111, 111, 111, 111, 111, 115, + 115, 115, 115, 111, 111, 111, 114, 111, 111, 114, 111, 111, 115, 113, 114, 114, + 111, 114, 114, 1, 2, 2, 3, 111, 114, 1, 2, 2, 2, 2, 2, 2, + 111, 114, 115, 23, 24, 24, 50, 2, 2, 51, 28, 46, 46, 46, 46, 46, + 111, 111, 114, 23, 90, 24, 28, 46, 46, 46, 47, 115, 113, 111, 115, 115], + "height":16, + "width":16, + "x":16, + "y":16 + }, + { + "data":[115, 115, 111, 115, 115, 114, 111, 111, 115, 111, 114, 115, 114, 111, 115, 115, + 111, 111, 111, 111, 111, 114, 111, 113, 115, 115, 115, 111, 114, 111, 111, 115, + 115, 111, 115, 115, 111, 111, 114, 114, 114, 111, 111, 111, 111, 115, 115, 114, + 111, 114, 111, 111, 114, 114, 115, 111, 112, 111, 111, 115, 115, 111, 114, 111, + 111, 111, 112, 111, 115, 115, 111, 111, 115, 111, 115, 111, 111, 114, 111, 111, + 115, 115, 115, 114, 114, 115, 115, 111, 111, 111, 111, 115, 113, 111, 111, 115, + 114, 115, 111, 111, 114, 115, 114, 115, 114, 111, 114, 114, 111, 111, 115, 115, + 111, 115, 114, 114, 111, 115, 111, 115, 111, 114, 111, 111, 111, 111, 114, 114, + 112, 111, 115, 111, 111, 111, 113, 114, 115, 114, 114, 111, 111, 113, 114, 114, + 111, 115, 114, 114, 111, 114, 115, 111, 115, 111, 114, 111, 114, 115, 111, 111, + 114, 114, 111, 114, 114, 114, 111, 112, 111, 115, 114, 111, 111, 111, 115, 111, + 115, 115, 111, 114, 115, 111, 112, 115, 111, 111, 115, 114, 111, 111, 111, 111, + 1, 2, 2, 3, 115, 113, 114, 115, 111, 111, 111, 111, 111, 112, 114, 114, + 51, 28, 46, 47, 111, 114, 111, 115, 114, 111, 111, 111, 114, 111, 111, 115, + 46, 47, 111, 113, 111, 115, 111, 111, 111, 111, 111, 111, 111, 111, 115, 111, + 115, 111, 111, 114, 111, 111, 111, 115, 111, 115, 114, 111, 115, 111, 115, 111], + "height":16, + "width":16, + "x":32, + "y":16 + }, + { + "data":[111, 111, 111, 111, 114, 111, 111, 115, 114, 114, 114, 111, 115, 115, 113, 111, + 115, 111, 111, 111, 111, 111, 113, 115, 115, 111, 111, 111, 111, 115, 111, 111, + 115, 115, 111, 113, 111, 111, 114, 115, 114, 115, 111, 111, 115, 111, 111, 115, + 115, 111, 115, 114, 111, 111, 114, 114, 111, 111, 114, 111, 111, 111, 111, 111, + 115, 111, 111, 111, 113, 112, 111, 111, 111, 114, 111, 115, 115, 112, 111, 115, + 115, 114, 111, 114, 111, 111, 111, 115, 111, 111, 112, 111, 111, 111, 114, 114, + 114, 111, 114, 111, 111, 114, 111, 111, 111, 111, 111, 114, 115, 111, 114, 111, + 111, 115, 111, 111, 115, 111, 114, 113, 114, 115, 115, 111, 111, 111, 113, 114, + 111, 111, 114, 114, 111, 111, 114, 114, 111, 114, 114, 111, 111, 114, 111, 114, + 111, 111, 115, 111, 114, 111, 111, 115, 115, 115, 111, 111, 111, 111, 114, 111, + 114, 115, 111, 114, 114, 111, 114, 114, 114, 115, 111, 111, 113, 111, 114, 111, + 111, 111, 111, 115, 111, 112, 114, 111, 111, 111, 114, 114, 114, 111, 111, 114, + 113, 111, 115, 113, 114, 111, 115, 114, 114, 111, 114, 114, 111, 114, 111, 114, + 111, 115, 111, 115, 114, 111, 115, 111, 111, 114, 115, 114, 114, 111, 115, 111, + 111, 114, 115, 113, 111, 111, 111, 115, 114, 111, 111, 114, 114, 111, 111, 111, + 114, 114, 112, 111, 111, 111, 115, 111, 111, 114, 115, 115, 114, 115, 111, 111], + "height":16, + "width":16, + "x":48, + "y":16 + }, + { + "data":[111, 111, 111, 115, 114, 111, 111, 111, 115, 115, 114, 112, 111, 111, 115, 113, + 111, 111, 115, 111, 115, 111, 114, 111, 115, 111, 115, 111, 111, 114, 114, 111, + 115, 115, 111, 111, 111, 111, 111, 115, 115, 111, 111, 114, 115, 115, 111, 113, + 111, 111, 111, 115, 115, 114, 111, 111, 115, 111, 111, 115, 114, 115, 111, 114, + 112, 115, 111, 111, 115, 111, 113, 114, 111, 111, 115, 111, 111, 114, 111, 115, + 112, 111, 111, 111, 115, 115, 111, 111, 111, 111, 114, 114, 111, 111, 115, 114, + 114, 115, 114, 111, 115, 111, 111, 114, 111, 115, 111, 114, 111, 111, 115, 115, + 115, 111, 111, 111, 111, 114, 111, 111, 111, 111, 111, 111, 115, 114, 114, 114, + 115, 111, 111, 115, 111, 115, 111, 114, 111, 111, 115, 111, 111, 111, 114, 114, + 111, 114, 111, 111, 115, 111, 114, 111, 111, 111, 111, 114, 114, 114, 111, 115, + 115, 115, 111, 111, 111, 111, 111, 111, 114, 111, 111, 114, 114, 114, 111, 115, + 115, 111, 111, 111, 111, 112, 115, 113, 115, 115, 115, 114, 115, 115, 114, 111, + 114, 111, 114, 114, 111, 111, 114, 115, 111, 111, 114, 115, 111, 111, 114, 115, + 114, 114, 111, 114, 111, 114, 114, 111, 111, 111, 115, 111, 114, 111, 111, 111, + 111, 115, 113, 111, 115, 115, 114, 115, 114, 111, 114, 111, 115, 111, 111, 111, + 114, 115, 115, 111, 111, 111, 111, 114, 114, 111, 114, 111, 114, 111, 115, 111], + "height":16, + "width":16, + "x":64, + "y":16 + }, + { + "data":[115, 111, 114, 115, 115, 115, 114, 114, 114, 115, 111, 114, 114, 111, 114, 111, + 115, 111, 112, 115, 114, 111, 115, 115, 111, 111, 111, 114, 113, 115, 115, 113, + 111, 111, 114, 114, 111, 114, 111, 111, 113, 111, 115, 115, 111, 114, 114, 115, + 111, 114, 114, 111, 111, 111, 114, 112, 115, 114, 111, 114, 111, 111, 115, 114, + 115, 114, 111, 115, 115, 115, 114, 115, 115, 111, 111, 114, 115, 113, 115, 111, + 115, 114, 111, 115, 115, 115, 114, 111, 111, 114, 111, 111, 115, 114, 111, 115, + 111, 114, 114, 114, 111, 115, 111, 114, 111, 111, 111, 114, 111, 115, 114, 114, + 111, 115, 111, 111, 111, 111, 114, 111, 115, 115, 114, 115, 115, 115, 111, 111, + 114, 111, 111, 111, 115, 114, 115, 114, 115, 112, 113, 111, 115, 114, 115, 115, + 111, 114, 111, 111, 115, 114, 114, 114, 115, 115, 111, 114, 111, 111, 111, 114, + 114, 114, 114, 115, 115, 111, 111, 115, 111, 115, 115, 111, 111, 111, 111, 115, + 115, 113, 111, 111, 115, 111, 115, 113, 115, 115, 115, 111, 114, 111, 111, 111, + 115, 115, 114, 114, 112, 111, 111, 114, 111, 111, 115, 115, 111, 111, 115, 111, + 111, 111, 113, 115, 115, 111, 114, 115, 114, 114, 115, 115, 111, 115, 111, 111, + 111, 114, 111, 114, 114, 112, 115, 111, 111, 111, 111, 111, 111, 114, 111, 111, + 111, 111, 114, 111, 111, 114, 115, 115, 115, 115, 111, 111, 111, 114, 114, 114], + "height":16, + "width":16, + "x":80, + "y":16 + }, + { + "data":[115, 114, 111, 113, 115, 23, 24, 24, 25, 111, 115, 115, 114, 115, 111, 115, + 111, 114, 114, 111, 111, 23, 24, 28, 47, 115, 111, 111, 111, 111, 111, 115, + 114, 114, 114, 111, 115, 23, 24, 25, 111, 115, 113, 114, 114, 111, 114, 115, + 112, 114, 111, 115, 1, 51, 89, 25, 115, 115, 111, 114, 111, 111, 111, 115, + 111, 111, 111, 113, 23, 90, 24, 25, 114, 111, 111, 114, 114, 115, 113, 115, + 115, 114, 111, 114, 23, 24, 28, 47, 111, 111, 111, 111, 114, 114, 111, 114, + 111, 114, 111, 111, 23, 24, 25, 111, 111, 111, 114, 115, 111, 111, 114, 114, + 114, 111, 114, 114, 23, 90, 25, 115, 115, 114, 111, 115, 111, 111, 115, 111, + 111, 115, 114, 114, 23, 24, 25, 111, 111, 114, 114, 115, 114, 111, 111, 114, + 111, 111, 115, 115, 23, 24, 25, 115, 115, 115, 115, 114, 111, 111, 111, 115, + 115, 111, 111, 115, 23, 24, 25, 111, 115, 111, 115, 114, 114, 115, 111, 115, + 114, 115, 111, 114, 23, 24, 25, 115, 115, 112, 111, 111, 111, 111, 115, 114, + 111, 114, 111, 115, 23, 24, 25, 115, 111, 115, 111, 114, 114, 112, 111, 114, + 111, 111, 111, 111, 23, 24, 25, 114, 111, 115, 115, 114, 114, 115, 113, 115, + 114, 111, 114, 114, 23, 24, 25, 115, 115, 115, 111, 111, 115, 115, 115, 112, + 113, 111, 111, 111, 23, 24, 25, 111, 114, 114, 111, 111, 115, 111, 111, 112], + "height":16, + "width":16, + "x":96, + "y":16 + }, + { + "data":[111, 111, 115, 111, 111, 114, 111, 111, 111, 114, 111, 115, 111, 115, 111, 115, + 111, 111, 115, 111, 111, 111, 111, 115, 114, 114, 111, 111, 111, 111, 111, 111, + 114, 111, 113, 114, 111, 111, 111, 114, 111, 111, 114, 114, 111, 111, 111, 111, + 114, 115, 111, 114, 111, 113, 114, 111, 111, 114, 111, 115, 114, 115, 114, 111, + 115, 115, 114, 115, 114, 114, 111, 114, 111, 113, 115, 111, 111, 111, 111, 111, + 114, 114, 111, 111, 111, 111, 111, 115, 115, 114, 115, 111, 115, 114, 111, 114, + 115, 111, 111, 114, 111, 114, 111, 111, 115, 113, 111, 111, 111, 111, 115, 111, + 114, 114, 114, 115, 111, 111, 115, 111, 114, 115, 111, 111, 111, 115, 114, 111, + 111, 111, 114, 111, 115, 115, 111, 114, 115, 111, 111, 114, 115, 111, 115, 111, + 115, 111, 114, 111, 111, 111, 111, 113, 111, 111, 111, 111, 115, 111, 111, 111, + 111, 114, 115, 111, 111, 111, 115, 113, 111, 114, 113, 111, 111, 112, 115, 114, + 115, 115, 115, 115, 115, 114, 111, 115, 111, 114, 114, 113, 111, 115, 112, 115, + 112, 111, 115, 111, 111, 111, 111, 115, 114, 115, 111, 115, 112, 114, 114, 111, + 111, 111, 111, 111, 115, 115, 111, 115, 114, 112, 112, 111, 111, 111, 111, 115, + 114, 111, 111, 114, 111, 111, 111, 111, 115, 114, 111, 111, 114, 115, 111, 114, + 115, 111, 111, 114, 111, 114, 114, 111, 111, 111, 111, 114, 115, 114, 115, 114], + "height":16, + "width":16, + "x":112, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265], + "height":16, + "width":16, + "x":-80, + "y":32 + }, + { + "data":[246, 267, 267, 266, 265, 267, 268, 266, 246, 246, 267, 245, 245, 268, 269, 267, + 265, 269, 268, 266, 269, 267, 245, 266, 267, 246, 266, 269, 265, 246, 245, 268, + 268, 246, 269, 245, 265, 269, 246, 245, 266, 245, 246, 269, 269, 269, 267, 265, + 266, 265, 266, 268, 266, 245, 245, 266, 245, 266, 268, 246, 266, 269, 269, 266, + 267, 267, 245, 246, 269, 268, 269, 266, 267, 246, 267, 245, 267, 245, 266, 268, + 265, 245, 268, 245, 246, 266, 246, 268, 269, 246, 265, 246, 268, 266, 269, 245, + 268, 245, 265, 246, 269, 266, 245, 268, 266, 245, 268, 265, 267, 269, 267, 269, + 265, 269, 246, 266, 265, 246, 268, 246, 269, 265, 246, 268, 266, 266, 245, 265, + 266, 269, 266, 267, 267, 268, 268, 245, 265, 246, 245, 268, 266, 245, 268, 266, + 265, 268, 268, 268, 245, 266, 268, 267, 245, 265, 245, 265, 266, 268, 245, 265, + 245, 269, 266, 267, 266, 265, 245, 269, 246, 269, 266, 268, 245, 245, 267, 265, + 268, 266, 245, 266, 265, 245, 268, 266, 265, 269, 267, 267, 267, 246, 245, 269, + 266, 269, 245, 266, 265, 265, 266, 245, 265, 265, 268, 246, 268, 246, 268, 245, + 155, 156, 156, 157, 267, 246, 266, 267, 265, 268, 266, 266, 269, 245, 268, 266, + 177, 178, 178, 204, 156, 156, 157, 267, 246, 246, 265, 265, 268, 269, 265, 265, + 199, 183, 243, 178, 244, 244, 204, 156, 157, 266, 246, 266, 245, 246, 245, 267], + "height":16, + "width":16, + "x":-64, + "y":32 + }, + { + "data":[267, 265, 267, 268, 269, 265, 266, 267, 265, 268, 246, 268, 245, 265, 245, 246, + 267, 267, 268, 246, 246, 265, 246, 267, 246, 266, 245, 245, 246, 269, 245, 268, + 267, 267, 246, 269, 245, 246, 266, 266, 265, 266, 267, 268, 266, 269, 269, 269, + 266, 269, 266, 265, 267, 267, 265, 267, 268, 267, 245, 245, 266, 266, 269, 267, + 267, 265, 267, 245, 245, 245, 268, 265, 266, 267, 265, 245, 268, 268, 267, 245, + 266, 266, 268, 245, 266, 265, 269, 246, 246, 266, 266, 265, 246, 269, 265, 265, + 267, 245, 265, 245, 266, 265, 266, 267, 267, 269, 268, 267, 268, 268, 245, 266, + 265, 246, 265, 265, 266, 245, 266, 245, 268, 246, 269, 245, 245, 265, 246, 266, + 268, 267, 245, 245, 268, 245, 265, 265, 265, 266, 268, 268, 245, 266, 267, 246, + 246, 265, 267, 266, 246, 265, 265, 267, 246, 269, 266, 267, 268, 269, 245, 267, + 269, 246, 268, 269, 269, 265, 269, 245, 267, 266, 267, 265, 268, 269, 246, 267, + 265, 266, 265, 268, 246, 266, 268, 265, 246, 266, 245, 245, 246, 266, 269, 246, + 267, 246, 245, 265, 246, 267, 245, 269, 268, 266, 245, 265, 268, 268, 269, 267, + 245, 265, 245, 267, 265, 265, 245, 269, 266, 266, 245, 268, 267, 266, 267, 246, + 266, 266, 269, 267, 267, 267, 269, 268, 265, 268, 245, 268, 268, 267, 245, 246, + 265, 265, 245, 266, 269, 266, 269, 268, 268, 268, 265, 269, 267, 245, 268, 246], + "height":16, + "width":16, + "x":-48, + "y":32 + }, + { + "data":[266, 246, 177, 204, 157, 269, 267, 265, 266, 267, 267, 269, 265, 268, 269, 245, + 265, 268, 199, 183, 204, 156, 157, 245, 266, 266, 268, 266, 265, 246, 246, 268, + 246, 245, 268, 199, 183, 244, 179, 246, 267, 245, 269, 246, 269, 269, 265, 268, + 269, 245, 269, 245, 177, 178, 179, 245, 245, 269, 268, 269, 266, 267, 267, 266, + 266, 269, 265, 265, 177, 244, 179, 268, 267, 269, 266, 267, 268, 246, 267, 265, + 266, 245, 245, 269, 177, 243, 179, 246, 265, 266, 246, 268, 268, 267, 267, 245, + 269, 268, 268, 267, 177, 243, 179, 267, 268, 266, 266, 269, 266, 268, 245, 269, + 245, 245, 245, 267, 177, 244, 179, 245, 267, 245, 265, 267, 266, 268, 268, 246, + 246, 268, 265, 246, 177, 243, 179, 245, 265, 245, 265, 266, 245, 268, 268, 246, + 245, 246, 246, 245, 177, 243, 204, 157, 246, 266, 269, 265, 266, 246, 269, 266, + 268, 267, 265, 267, 177, 243, 244, 179, 265, 266, 269, 265, 266, 246, 267, 266, + 269, 269, 267, 267, 199, 183, 244, 179, 269, 267, 267, 246, 266, 265, 267, 266, + 246, 269, 267, 266, 245, 177, 243, 179, 269, 269, 269, 268, 245, 267, 265, 265, + 267, 267, 266, 265, 269, 177, 244, 204, 157, 266, 268, 245, 269, 267, 246, 267, + 269, 245, 246, 266, 246, 177, 243, 243, 179, 266, 266, 245, 267, 269, 246, 266, + 266, 266, 245, 267, 269, 199, 183, 243, 179, 245, 267, 265, 268, 269, 267, 267], + "height":16, + "width":16, + "x":-32, + "y":32 + }, + { + "data":[268, 267, 245, 267, 269, 265, 267, 266, 267, 269, 245, 268, 268, 601, 115, 111, + 246, 267, 268, 267, 267, 266, 266, 266, 267, 245, 267, 267, 267, 601, 111, 602, + 245, 269, 267, 269, 265, 266, 268, 266, 268, 268, 246, 268, 269, 601, 115, 602, + 266, 246, 268, 267, 246, 266, 245, 246, 267, 245, 265, 246, 245, 601, 114, 602, + 269, 267, 245, 246, 268, 246, 245, 268, 269, 267, 265, 245, 579, 605, 111, 114, + 267, 245, 266, 267, 267, 268, 266, 245, 246, 246, 269, 267, 601, 602, 111, 111, + 266, 269, 245, 268, 267, 267, 266, 267, 265, 245, 269, 265, 601, 602, 115, 114, + 268, 267, 266, 268, 246, 245, 268, 245, 266, 266, 267, 265, 601, 602, 111, 111, + 265, 267, 245, 268, 265, 267, 246, 269, 269, 245, 267, 265, 601, 602, 602, 602, + 265, 265, 245, 269, 265, 245, 268, 268, 246, 265, 269, 246, 601, 115, 111, 115, + 246, 266, 268, 269, 266, 269, 246, 268, 268, 266, 246, 269, 601, 114, 602, 115, + 269, 266, 266, 267, 267, 266, 269, 266, 246, 267, 245, 268, 601, 114, 111, 115, + 265, 246, 267, 269, 246, 269, 267, 268, 245, 266, 269, 268, 601, 114, 111, 115, + 269, 245, 245, 269, 266, 246, 267, 269, 269, 269, 265, 269, 601, 111, 112, 111, + 268, 267, 268, 265, 266, 245, 246, 265, 266, 265, 246, 266, 601, 111, 111, 111, + 245, 268, 267, 266, 245, 267, 265, 246, 268, 268, 268, 245, 601, 602, 111, 111], + "height":16, + "width":16, + "x":-16, + "y":32 + }, + { + "data":[111, 115, 111, 111, 111, 111, 111, 111, 115, 115, 111, 115, 111, 113, 115, 111, + 111, 114, 115, 111, 111, 114, 111, 111, 111, 114, 111, 111, 114, 111, 111, 114, + 115, 111, 115, 111, 115, 115, 111, 115, 115, 115, 111, 111, 111, 113, 111, 114, + 111, 114, 111, 111, 114, 111, 111, 111, 114, 115, 115, 111, 111, 115, 115, 111, + 111, 114, 111, 111, 111, 111, 111, 115, 114, 115, 114, 113, 115, 114, 114, 111, + 111, 114, 115, 111, 115, 111, 115, 114, 115, 114, 114, 111, 111, 111, 111, 114, + 111, 114, 115, 114, 111, 115, 114, 115, 111, 111, 114, 115, 115, 115, 115, 115, + 113, 114, 111, 111, 111, 115, 114, 115, 115, 115, 111, 115, 111, 111, 113, 115, + 114, 111, 114, 114, 111, 114, 111, 111, 111, 111, 114, 111, 111, 111, 114, 114, + 602, 114, 114, 112, 111, 114, 115, 111, 114, 115, 114, 113, 115, 111, 115, 111, + 114, 111, 114, 115, 115, 111, 111, 115, 115, 114, 111, 114, 111, 115, 114, 114, + 114, 111, 111, 115, 111, 111, 115, 111, 114, 111, 114, 111, 115, 111, 114, 112, + 115, 111, 114, 114, 114, 115, 111, 111, 115, 111, 114, 114, 115, 111, 114, 115, + 111, 115, 115, 114, 111, 114, 114, 111, 111, 111, 114, 111, 115, 111, 111, 114, + 111, 115, 115, 114, 115, 114, 111, 111, 114, 114, 111, 111, 115, 111, 111, 111, + 111, 115, 115, 114, 115, 114, 111, 111, 111, 111, 114, 114, 111, 111, 115, 111], "height":16, "width":16, "x":0, "y":32 - }, + }, + { - "data":[24, 89, 24, 24, 24, 50, 2, 51, 24, 25, 111, 23, 24, 24, 28, 47, - 24, 24, 28, 29, 24, 24, 24, 24, 24, 25, 1, 51, 24, 24, 50, 3, - 29, 24, 50, 32, 29, 24, 90, 24, 24, 25, 23, 24, 24, 24, 90, 25, - 23, 24, 89, 50, 51, 24, 24, 90, 24, 50, 51, 24, 24, 24, 24, 50, - 51, 24, 28, 29, 24, 24, 24, 24, 24, 24, 28, 29, 24, 89, 89, 24, - 24, 28, 10, 32, 46, 29, 90, 24, 24, 24, 50, 51, 24, 24, 28, 29, - 29, 25, 23, 50, 2, 51, 24, 24, 24, 24, 24, 24, 90, 24, 50, 32, - 32, 47, 23, 24, 24, 28, 46, 29, 24, 28, 29, 24, 24, 24, 28, 10, - 50, 2, 51, 28, 29, 25, 115, 45, 29, 50, 51, 89, 28, 29, 50, 32, - 24, 24, 24, 25, 23, 50, 3, 115, 23, 24, 24, 24, 50, 32, 29, 25, - 24, 89, 24, 50, 32, 29, 25, 111, 23, 90, 24, 24, 90, 25, 45, 10, - 24, 24, 24, 24, 50, 51, 25, 112, 45, 29, 24, 24, 28, 47, 1, 51, - 24, 28, 29, 24, 24, 24, 25, 115, 1, 32, 46, 29, 50, 2, 51, 28, - 24, 25, 45, 46, 29, 24, 25, 111, 23, 25, 111, 23, 89, 24, 24, 50, - 24, 50, 2, 2, 51, 24, 50, 2, 51, 50, 3, 23, 24, 24, 89, 24, - 24, 24, 90, 24, 24, 24, 24, 24, 24, 24, 25, 23, 90, 24, 24, 89], + "data":[111, 114, 111, 45, 29, 24, 50, 3, 115, 111, 114, 114, 111, 114, 111, 111, + 111, 111, 114, 114, 23, 24, 24, 25, 114, 111, 115, 111, 111, 114, 115, 111, + 111, 111, 115, 111, 45, 29, 24, 50, 3, 115, 111, 111, 111, 115, 111, 114, + 115, 111, 111, 111, 111, 23, 89, 24, 25, 114, 111, 111, 111, 115, 114, 111, + 115, 111, 115, 111, 115, 45, 29, 24, 50, 3, 115, 111, 115, 111, 112, 114, + 111, 111, 111, 111, 115, 111, 23, 24, 24, 25, 111, 115, 111, 111, 114, 114, + 115, 111, 111, 114, 111, 111, 45, 29, 24, 25, 111, 111, 115, 111, 114, 114, + 111, 114, 111, 111, 111, 111, 114, 23, 90, 25, 111, 111, 111, 111, 113, 111, + 111, 111, 114, 114, 111, 111, 114, 23, 24, 25, 111, 114, 114, 112, 111, 111, + 111, 111, 114, 115, 111, 111, 111, 23, 24, 50, 3, 111, 115, 111, 114, 111, + 114, 114, 115, 111, 111, 111, 112, 23, 24, 24, 25, 113, 111, 115, 111, 111, + 111, 111, 114, 114, 111, 111, 111, 45, 29, 24, 25, 111, 115, 111, 115, 111, + 115, 115, 111, 111, 112, 114, 115, 115, 23, 24, 25, 115, 111, 112, 111, 114, + 111, 111, 111, 111, 115, 111, 114, 111, 23, 90, 25, 115, 111, 111, 111, 111, + 111, 111, 111, 111, 111, 114, 111, 114, 23, 24, 25, 111, 114, 115, 115, 111, + 111, 111, 111, 111, 111, 112, 114, 114, 23, 24, 25, 111, 114, 115, 111, 111], "height":16, "width":16, "x":16, "y":32 }, { - "data":[111, 111, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 50, 51, 24, 28, - 1, 2, 51, 24, 24, 24, 24, 24, 24, 90, 89, 28, 46, 29, 24, 50, - 23, 24, 24, 24, 24, 24, 24, 24, 24, 28, 29, 50, 2, 51, 24, 24, - 51, 28, 29, 89, 24, 24, 24, 24, 24, 50, 51, 24, 24, 24, 89, 24, - 24, 50, 32, 29, 24, 24, 24, 24, 24, 24, 24, 24, 28, 29, 24, 90, - 24, 24, 25, 45, 29, 90, 24, 24, 24, 24, 24, 24, 50, 32, 29, 24, - 46, 46, 10, 2, 51, 90, 24, 24, 24, 24, 24, 24, 24, 25, 23, 24, - 2, 2, 51, 24, 24, 24, 24, 24, 24, 24, 28, 46, 29, 50, 51, 24, - 29, 90, 24, 90, 24, 24, 24, 28, 29, 24, 50, 2, 32, 46, 29, 24, - 45, 29, 24, 24, 24, 24, 24, 50, 51, 24, 24, 24, 25, 114, 45, 46, - 2, 51, 28, 46, 29, 24, 24, 24, 24, 24, 28, 46, 10, 3, 1, 2, - 24, 28, 47, 1, 51, 24, 24, 24, 24, 24, 50, 3, 23, 25, 23, 90, - 46, 10, 2, 32, 46, 46, 46, 46, 46, 46, 29, 25, 23, 50, 32, 46, - 2, 51, 24, 25, 114, 111, 115, 111, 114, 1, 51, 50, 32, 29, 50, 2, - 24, 24, 24, 50, 3, 111, 1, 2, 2, 32, 46, 46, 10, 32, 29, 24, - 24, 90, 24, 24, 50, 2, 51, 24, 24, 25, 111, 111, 23, 25, 23, 28], + "data":[111, 114, 111, 114, 111, 111, 111, 111, 111, 115, 112, 111, 111, 115, 111, 111, + 114, 113, 111, 115, 115, 111, 114, 111, 111, 115, 111, 111, 114, 112, 115, 113, + 111, 111, 111, 115, 115, 114, 114, 115, 111, 114, 114, 112, 111, 114, 115, 111, + 114, 113, 115, 111, 112, 111, 115, 115, 111, 114, 111, 111, 111, 111, 114, 115, + 111, 112, 111, 111, 111, 114, 115, 111, 112, 111, 115, 114, 111, 111, 111, 111, + 113, 111, 112, 115, 114, 115, 114, 111, 111, 114, 111, 114, 112, 114, 115, 111, + 111, 114, 114, 115, 111, 115, 111, 115, 115, 114, 111, 111, 114, 111, 111, 111, + 111, 111, 114, 111, 111, 111, 114, 114, 111, 115, 115, 111, 111, 115, 111, 111, + 114, 114, 111, 111, 111, 115, 111, 115, 114, 114, 111, 111, 111, 111, 111, 111, + 115, 114, 111, 115, 115, 115, 111, 115, 115, 111, 112, 114, 111, 114, 111, 111, + 114, 115, 115, 111, 114, 114, 114, 111, 115, 111, 114, 112, 115, 111, 111, 115, + 111, 114, 115, 115, 111, 115, 111, 114, 115, 115, 111, 115, 111, 114, 113, 111, + 111, 111, 111, 115, 115, 115, 114, 111, 111, 111, 111, 114, 111, 115, 114, 111, + 111, 114, 111, 111, 114, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 114, + 111, 111, 111, 111, 111, 111, 114, 115, 113, 111, 115, 111, 114, 111, 111, 114, + 112, 111, 115, 111, 111, 115, 115, 114, 111, 115, 111, 111, 115, 111, 114, 114], "height":16, "width":16, "x":32, "y":32 }, { - "data":[29, 24, 24, 24, 90, 24, 24, 24, 50, 32, 46, 29, 90, 24, 24, 24, - 32, 46, 29, 24, 89, 24, 24, 24, 24, 25, 1, 32, 29, 24, 28, 29, - 50, 2, 51, 24, 24, 89, 24, 24, 24, 25, 23, 50, 32, 29, 50, 51, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 23, 24, 50, 32, 29, 24, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 50, 51, 24, 24, 25, 23, 24, - 28, 29, 24, 24, 24, 24, 24, 24, 24, 24, 90, 24, 24, 50, 51, 24, - 25, 23, 24, 24, 28, 46, 29, 28, 29, 24, 24, 89, 24, 24, 24, 24, - 50, 51, 24, 28, 10, 2, 32, 10, 32, 29, 89, 24, 24, 24, 24, 24, - 28, 29, 24, 50, 51, 24, 50, 32, 10, 51, 24, 24, 24, 24, 89, 24, - 10, 32, 46, 46, 46, 29, 24, 50, 51, 24, 24, 24, 24, 24, 28, 29, - 51, 50, 2, 2, 2, 32, 46, 46, 29, 24, 24, 24, 24, 24, 25, 23, - 24, 24, 24, 24, 24, 50, 2, 2, 32, 29, 24, 24, 24, 24, 50, 51, - 46, 29, 90, 24, 90, 90, 24, 24, 50, 32, 29, 89, 24, 24, 24, 24, - 2, 51, 24, 24, 28, 46, 29, 28, 29, 50, 51, 24, 28, 29, 90, 24, - 24, 24, 24, 24, 25, 1, 32, 47, 45, 29, 24, 24, 50, 32, 46, 46, - 29, 24, 24, 24, 50, 51, 25, 114, 114, 23, 24, 24, 24, 25, 1, 3], + "data":[115, 115, 114, 112, 111, 111, 111, 111, 111, 111, 111, 111, 115, 114, 111, 111, + 111, 111, 111, 114, 111, 112, 111, 114, 111, 115, 111, 111, 115, 111, 113, 115, + 111, 113, 111, 114, 115, 111, 115, 115, 114, 111, 115, 111, 115, 115, 111, 115, + 111, 111, 114, 111, 111, 115, 111, 112, 111, 111, 111, 111, 111, 111, 111, 111, + 115, 114, 112, 111, 111, 114, 111, 111, 111, 112, 114, 111, 111, 114, 111, 111, + 111, 115, 114, 114, 111, 111, 111, 114, 111, 115, 115, 111, 114, 111, 111, 114, + 115, 111, 111, 115, 115, 111, 114, 111, 111, 115, 114, 115, 114, 111, 111, 115, + 111, 111, 111, 111, 115, 111, 115, 111, 111, 111, 111, 111, 111, 114, 111, 111, + 115, 111, 114, 111, 111, 112, 111, 114, 115, 111, 111, 111, 111, 115, 111, 111, + 115, 114, 114, 111, 111, 111, 114, 111, 114, 111, 114, 114, 111, 111, 115, 115, + 111, 112, 111, 113, 111, 114, 111, 111, 115, 113, 111, 115, 114, 115, 111, 111, + 114, 111, 114, 111, 113, 114, 115, 114, 114, 115, 111, 112, 114, 111, 111, 111, + 113, 114, 111, 111, 111, 111, 115, 114, 115, 114, 111, 115, 114, 115, 111, 114, + 115, 111, 115, 115, 111, 115, 114, 111, 111, 114, 115, 114, 114, 111, 112, 111, + 111, 113, 111, 114, 111, 115, 111, 111, 111, 114, 111, 115, 114, 111, 114, 111, + 111, 114, 111, 111, 111, 114, 111, 114, 111, 114, 111, 115, 111, 111, 114, 111], "height":16, "width":16, "x":48, "y":32 }, { - "data":[24, 24, 24, 24, 50, 32, 29, 90, 24, 25, 45, 46, 10, 2, 2, 51, - 24, 24, 89, 24, 24, 50, 51, 24, 24, 25, 111, 112, 23, 90, 24, 24, - 24, 24, 89, 24, 89, 24, 24, 24, 24, 25, 1, 2, 51, 24, 24, 24, - 24, 24, 24, 28, 46, 46, 46, 46, 29, 50, 51, 89, 90, 24, 24, 24, - 24, 90, 24, 25, 1, 2, 2, 2, 32, 29, 28, 29, 89, 24, 24, 24, - 24, 28, 46, 10, 32, 29, 89, 90, 50, 32, 10, 51, 28, 46, 46, 46, - 24, 50, 2, 51, 25, 23, 24, 24, 28, 10, 51, 24, 50, 3, 111, 1, - 24, 24, 24, 28, 10, 51, 24, 24, 25, 23, 24, 24, 24, 50, 2, 32, - 24, 24, 24, 25, 23, 24, 24, 89, 50, 32, 29, 24, 24, 28, 29, 50, - 24, 24, 24, 50, 32, 29, 28, 46, 29, 50, 51, 24, 28, 10, 32, 29, - 24, 89, 24, 28, 10, 51, 25, 1, 51, 24, 89, 28, 10, 51, 50, 51, - 24, 24, 90, 50, 32, 46, 47, 23, 24, 24, 24, 50, 51, 89, 24, 24, - 24, 24, 24, 24, 50, 2, 3, 23, 28, 29, 24, 24, 90, 24, 24, 24, - 28, 29, 24, 89, 89, 24, 50, 51, 50, 51, 24, 24, 24, 24, 24, 24, - 10, 32, 29, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 46, - 23, 50, 51, 24, 24, 24, 24, 24, 90, 28, 46, 29, 24, 24, 50, 3], + "data":[111, 114, 111, 111, 115, 111, 115, 114, 111, 114, 111, 114, 111, 113, 111, 114, + 115, 114, 115, 111, 113, 111, 111, 111, 111, 114, 114, 114, 111, 111, 111, 113, + 115, 111, 115, 111, 111, 115, 115, 111, 111, 114, 111, 111, 111, 111, 115, 114, + 111, 115, 115, 111, 111, 112, 114, 111, 115, 114, 111, 111, 114, 111, 115, 111, + 114, 115, 111, 111, 112, 115, 111, 115, 115, 111, 111, 111, 111, 111, 114, 114, + 111, 111, 111, 111, 114, 111, 115, 115, 111, 111, 114, 111, 115, 111, 111, 114, + 111, 114, 111, 111, 111, 115, 115, 115, 115, 111, 115, 111, 111, 111, 115, 111, + 115, 115, 114, 115, 111, 111, 114, 111, 115, 111, 115, 111, 111, 111, 114, 115, + 111, 112, 115, 115, 111, 111, 114, 114, 114, 111, 114, 112, 115, 111, 115, 111, + 111, 111, 111, 111, 114, 115, 111, 112, 111, 111, 111, 114, 115, 111, 111, 111, + 114, 111, 114, 111, 111, 115, 112, 111, 111, 111, 111, 115, 114, 111, 115, 111, + 111, 114, 114, 114, 111, 111, 115, 111, 111, 111, 115, 111, 111, 114, 111, 111, + 114, 114, 114, 114, 115, 114, 111, 111, 115, 111, 114, 115, 115, 111, 111, 114, + 111, 111, 114, 114, 111, 111, 115, 114, 112, 114, 111, 115, 115, 114, 114, 115, + 114, 111, 111, 111, 115, 111, 114, 111, 112, 114, 111, 114, 111, 114, 111, 111, + 111, 115, 111, 114, 111, 111, 111, 115, 115, 111, 114, 115, 114, 111, 115, 115], "height":16, "width":16, "x":64, "y":32 }, { - "data":[50, 51, 24, 24, 24, 24, 90, 24, 24, 24, 24, 50, 32, 10, 32, 29, - 28, 46, 29, 24, 24, 24, 24, 24, 24, 28, 29, 24, 50, 51, 50, 51, - 50, 2, 51, 90, 89, 24, 28, 29, 90, 50, 51, 24, 90, 24, 24, 24, - 24, 24, 24, 24, 90, 24, 25, 23, 24, 89, 24, 24, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 28, 10, 32, 46, 46, 46, 29, 28, 46, 29, 24, - 46, 29, 24, 24, 28, 47, 45, 10, 3, 115, 1, 51, 25, 1, 51, 90, - 2, 51, 24, 24, 50, 3, 1, 51, 50, 2, 32, 29, 50, 51, 24, 24, - 29, 28, 29, 24, 24, 25, 45, 29, 24, 24, 50, 32, 29, 24, 24, 24, - 51, 50, 32, 29, 24, 25, 114, 23, 90, 24, 24, 50, 32, 46, 46, 29, - 24, 89, 50, 51, 90, 50, 3, 23, 24, 24, 28, 29, 50, 2, 2, 51, - 24, 24, 24, 24, 24, 24, 25, 45, 46, 29, 25, 45, 46, 29, 24, 24, - 24, 24, 24, 90, 24, 24, 50, 2, 3, 23, 50, 3, 114, 23, 24, 28, - 24, 90, 24, 24, 24, 89, 24, 90, 25, 23, 89, 50, 2, 51, 24, 25, - 89, 28, 46, 29, 24, 90, 24, 24, 25, 23, 24, 24, 24, 24, 90, 25, - 46, 47, 115, 23, 24, 24, 24, 24, 50, 32, 46, 29, 89, 28, 29, 25, - 111, 1, 3, 23, 28, 29, 24, 24, 24, 50, 3, 23, 24, 50, 51, 50], + "data":[114, 111, 115, 115, 111, 115, 111, 115, 111, 111, 111, 111, 111, 114, 115, 111, + 115, 115, 115, 111, 111, 114, 115, 114, 111, 111, 111, 111, 111, 113, 114, 114, + 111, 112, 111, 111, 115, 115, 114, 111, 111, 114, 114, 111, 111, 115, 114, 111, + 111, 111, 114, 111, 114, 111, 111, 111, 115, 111, 114, 115, 114, 111, 111, 114, + 111, 111, 114, 115, 114, 111, 111, 111, 111, 111, 115, 115, 111, 115, 111, 111, + 111, 111, 114, 111, 115, 114, 114, 111, 114, 115, 111, 115, 111, 111, 111, 111, + 111, 111, 114, 114, 114, 111, 111, 114, 111, 114, 111, 111, 114, 115, 111, 114, + 111, 115, 114, 111, 111, 111, 113, 111, 111, 111, 115, 111, 114, 111, 111, 111, + 111, 114, 111, 111, 113, 111, 114, 111, 114, 115, 111, 111, 114, 114, 115, 111, + 115, 115, 111, 111, 113, 111, 115, 115, 114, 114, 111, 111, 111, 115, 114, 115, + 115, 114, 111, 111, 111, 115, 115, 115, 111, 111, 115, 111, 111, 114, 111, 114, + 115, 115, 114, 111, 113, 112, 115, 113, 111, 111, 112, 111, 114, 111, 111, 115, + 115, 113, 115, 111, 115, 115, 115, 115, 111, 114, 115, 111, 114, 114, 115, 113, + 115, 111, 114, 114, 111, 111, 115, 111, 113, 111, 111, 111, 114, 114, 115, 115, + 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 114, 114, 111, 114, 111, 111, + 111, 111, 111, 115, 111, 111, 111, 111, 114, 111, 111, 115, 111, 111, 111, 112], "height":16, "width":16, "x":80, "y":32 }, { - "data":[24, 90, 24, 24, 89, 24, 24, 50, 51, 28, 29, 25, 23, 24, 50, 51, - 89, 24, 24, 89, 89, 89, 24, 24, 90, 25, 23, 50, 51, 28, 29, 28, - 24, 24, 24, 24, 90, 28, 29, 28, 29, 50, 51, 89, 24, 50, 51, 50, - 24, 24, 24, 28, 46, 10, 51, 25, 23, 24, 24, 24, 24, 24, 24, 24, - 24, 24, 24, 50, 2, 51, 24, 50, 51, 24, 28, 29, 90, 24, 24, 24, - 90, 89, 90, 24, 28, 46, 46, 29, 90, 24, 50, 32, 46, 46, 46, 29, - 28, 46, 29, 24, 50, 2, 2, 32, 46, 29, 28, 10, 2, 3, 115, 23, - 50, 2, 32, 46, 46, 46, 46, 10, 2, 51, 25, 23, 24, 50, 2, 51, - 90, 24, 50, 2, 3, 114, 1, 51, 24, 24, 25, 23, 24, 24, 24, 24, - 24, 24, 24, 28, 47, 1, 51, 24, 24, 24, 25, 23, 90, 24, 28, 29, - 28, 46, 29, 50, 2, 51, 24, 24, 24, 24, 50, 32, 46, 46, 47, 45, - 10, 2, 32, 46, 29, 24, 90, 24, 24, 24, 24, 50, 3, 1, 2, 2, - 23, 24, 50, 3, 45, 46, 46, 46, 29, 24, 24, 24, 50, 51, 24, 24, - 23, 28, 29, 25, 114, 115, 111, 111, 23, 90, 24, 24, 24, 28, 29, 24, - 23, 50, 32, 47, 111, 1, 2, 2, 32, 29, 24, 24, 90, 25, 23, 24, - 32, 29, 50, 3, 115, 23, 28, 29, 50, 51, 24, 24, 24, 50, 51, 24], + "data":[114, 111, 111, 111, 23, 89, 25, 114, 111, 111, 111, 114, 114, 114, 115, 111, + 115, 111, 115, 114, 23, 24, 25, 115, 111, 115, 115, 115, 115, 111, 114, 114, + 111, 112, 115, 115, 23, 24, 25, 111, 111, 115, 111, 115, 112, 114, 115, 113, + 111, 111, 111, 111, 23, 90, 25, 115, 111, 112, 115, 111, 111, 115, 114, 115, + 115, 115, 111, 114, 23, 24, 25, 114, 111, 114, 111, 115, 115, 111, 111, 115, + 115, 114, 115, 114, 23, 24, 25, 113, 111, 113, 115, 115, 111, 115, 114, 111, + 111, 111, 111, 111, 23, 89, 25, 111, 111, 111, 111, 111, 115, 111, 111, 115, + 111, 112, 114, 1, 51, 24, 25, 111, 114, 115, 111, 111, 111, 111, 111, 111, + 114, 111, 111, 23, 24, 24, 25, 111, 114, 111, 111, 111, 115, 111, 114, 115, + 112, 114, 111, 23, 24, 28, 47, 113, 114, 111, 111, 111, 111, 111, 115, 115, + 111, 111, 111, 23, 24, 25, 115, 115, 115, 114, 111, 114, 111, 111, 111, 115, + 115, 111, 115, 23, 24, 25, 114, 114, 111, 115, 114, 111, 115, 111, 111, 114, + 112, 115, 111, 23, 90, 25, 115, 114, 111, 114, 114, 115, 111, 115, 114, 114, + 111, 111, 111, 23, 89, 25, 111, 115, 111, 115, 115, 113, 115, 111, 111, 111, + 114, 111, 114, 23, 24, 25, 111, 111, 114, 111, 114, 111, 115, 111, 115, 111, + 111, 111, 111, 23, 24, 25, 111, 111, 111, 111, 111, 114, 114, 111, 111, 111], "height":16, "width":16, "x":96, "y":32 }, { - "data":[24, 25, 1, 51, 90, 50, 51, 24, 24, 24, 24, 24, 24, 24, 50, 51, - 46, 10, 32, 29, 24, 28, 29, 24, 24, 24, 24, 24, 24, 28, 29, 24, - 2, 51, 50, 32, 29, 50, 32, 29, 89, 24, 24, 28, 46, 10, 32, 29, - 28, 46, 46, 47, 23, 24, 50, 51, 89, 24, 24, 50, 2, 32, 10, 32, - 50, 2, 2, 2, 32, 29, 24, 24, 24, 89, 90, 24, 24, 25, 23, 25, - 90, 24, 24, 24, 25, 45, 46, 46, 29, 24, 28, 29, 24, 50, 51, 50, - 24, 24, 24, 24, 50, 2, 3, 114, 45, 46, 10, 51, 24, 24, 24, 24, - 24, 24, 24, 24, 89, 24, 50, 2, 2, 2, 51, 24, 24, 24, 28, 46, - 28, 29, 24, 24, 89, 28, 46, 46, 29, 24, 89, 24, 24, 24, 50, 2, - 25, 45, 29, 24, 24, 50, 2, 2, 51, 24, 24, 90, 24, 24, 24, 24, - 10, 2, 51, 24, 24, 28, 46, 29, 90, 24, 24, 24, 24, 24, 24, 24, - 51, 24, 89, 90, 24, 50, 2, 51, 24, 24, 28, 46, 29, 24, 28, 29, - 24, 24, 89, 24, 89, 24, 90, 24, 24, 24, 50, 2, 51, 24, 50, 51, - 90, 89, 24, 24, 28, 46, 29, 89, 24, 24, 24, 24, 24, 24, 28, 46, - 24, 89, 24, 24, 25, 111, 23, 24, 24, 24, 24, 24, 90, 24, 25, 1, - 24, 24, 89, 24, 25, 1, 32, 29, 24, 24, 24, 90, 24, 24, 50, 51], + "data":[111, 115, 111, 115, 115, 111, 113, 115, 1, 2, 3, 115, 115, 115, 111, 111, + 112, 115, 111, 111, 113, 114, 115, 111, 23, 24, 25, 114, 114, 113, 114, 111, + 114, 111, 115, 111, 111, 111, 115, 112, 23, 24, 25, 115, 115, 115, 114, 114, + 114, 114, 111, 115, 114, 115, 111, 111, 23, 24, 25, 114, 115, 114, 111, 115, + 114, 111, 115, 115, 111, 114, 115, 114, 23, 24, 25, 115, 114, 115, 114, 114, + 115, 114, 111, 115, 115, 114, 111, 111, 23, 24, 25, 111, 115, 112, 112, 115, + 111, 111, 111, 115, 115, 111, 114, 115, 23, 24, 25, 114, 111, 114, 111, 113, + 114, 114, 111, 114, 111, 111, 111, 114, 23, 24, 25, 114, 115, 115, 114, 114, + 115, 111, 111, 114, 111, 111, 115, 111, 23, 90, 25, 115, 111, 111, 114, 114, + 114, 114, 111, 111, 114, 114, 111, 111, 23, 24, 25, 114, 111, 111, 111, 114, + 113, 114, 114, 114, 111, 112, 111, 111, 23, 24, 25, 111, 111, 115, 111, 111, + 115, 113, 111, 114, 115, 114, 111, 115, 23, 24, 25, 114, 111, 111, 111, 114, + 115, 111, 115, 111, 114, 114, 115, 114, 23, 90, 25, 114, 111, 114, 111, 111, + 114, 115, 114, 114, 111, 111, 111, 115, 23, 24, 25, 115, 114, 111, 115, 111, + 111, 115, 111, 111, 111, 114, 114, 114, 23, 24, 25, 115, 115, 111, 111, 115, + 115, 115, 111, 114, 115, 112, 114, 111, 23, 89, 25, 115, 111, 111, 114, 111], "height":16, "width":16, "x":112, "y":32 }, { - "data":[51, 24, 89, 24, 24, 24, 24, 28, 29, 50, 51, 28, 46, 29, 24, 24, - 89, 90, 28, 29, 24, 24, 28, 10, 51, 90, 90, 25, 111, 23, 24, 89, - 90, 90, 25, 23, 90, 24, 50, 32, 29, 24, 24, 25, 111, 23, 28, 46, - 28, 29, 50, 51, 24, 24, 24, 25, 23, 24, 24, 50, 2, 51, 50, 2, - 50, 51, 28, 29, 24, 24, 24, 50, 32, 29, 24, 24, 24, 24, 28, 29, - 89, 24, 25, 23, 90, 24, 24, 24, 25, 23, 24, 24, 24, 24, 50, 51, - 24, 89, 50, 51, 24, 28, 29, 24, 25, 23, 24, 24, 24, 24, 90, 24, - 24, 89, 24, 24, 24, 50, 51, 24, 50, 51, 24, 24, 24, 24, 28, 46, - 24, 24, 24, 28, 29, 24, 24, 24, 24, 24, 28, 46, 46, 29, 50, 2, - 29, 28, 29, 50, 32, 29, 89, 24, 24, 28, 47, 1, 2, 51, 24, 24, - 51, 50, 32, 29, 50, 51, 24, 24, 90, 25, 114, 23, 24, 24, 24, 24, - 24, 90, 25, 45, 29, 24, 24, 24, 24, 50, 3, 45, 46, 46, 29, 28, - 24, 24, 25, 111, 23, 24, 24, 28, 46, 29, 50, 3, 1, 3, 23, 25, - 24, 24, 50, 2, 51, 28, 46, 10, 2, 32, 29, 25, 23, 50, 51, 25, - 24, 24, 24, 24, 24, 25, 1, 51, 24, 25, 23, 25, 23, 24, 24, 25, - 24, 24, 28, 29, 24, 50, 32, 46, 29, 50, 51, 50, 51, 24, 24, 25], + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266], + "height":16, + "width":16, + "x":-80, + "y":48 + }, + { + "data":[269, 199, 200, 200, 183, 178, 178, 244, 204, 156, 157, 245, 245, 267, 269, 268, + 265, 266, 268, 269, 199, 200, 183, 178, 243, 244, 204, 157, 265, 245, 267, 269, + 269, 269, 265, 245, 266, 245, 199, 200, 183, 244, 178, 204, 156, 157, 268, 267, + 265, 245, 245, 269, 245, 246, 267, 245, 199, 183, 178, 178, 244, 204, 156, 157, + 268, 246, 246, 269, 246, 245, 265, 246, 267, 199, 200, 183, 244, 178, 244, 204, + 269, 266, 269, 269, 245, 267, 268, 269, 245, 266, 245, 199, 200, 183, 243, 178, + 265, 269, 266, 246, 245, 246, 265, 265, 266, 265, 246, 245, 267, 199, 183, 243, + 265, 265, 268, 269, 268, 268, 269, 267, 267, 268, 267, 267, 269, 245, 199, 200, + 269, 246, 268, 245, 265, 268, 268, 268, 268, 267, 265, 265, 265, 267, 246, 266, + 269, 265, 246, 266, 269, 268, 268, 269, 267, 246, 246, 265, 266, 245, 269, 246, + 266, 245, 245, 268, 267, 266, 269, 265, 269, 245, 267, 266, 265, 268, 246, 266, + 245, 265, 266, 266, 269, 246, 245, 268, 266, 245, 245, 245, 245, 246, 268, 267, + 246, 268, 266, 268, 268, 269, 269, 267, 267, 246, 269, 266, 245, 268, 266, 269, + 269, 265, 267, 266, 245, 265, 267, 245, 269, 265, 265, 265, 266, 266, 267, 265, + 246, 266, 245, 265, 268, 246, 246, 265, 266, 265, 246, 267, 267, 245, 265, 269, + 265, 246, 246, 245, 245, 246, 245, 269, 267, 268, 267, 268, 266, 246, 269, 246], + "height":16, + "width":16, + "x":-64, + "y":48 + }, + { + "data":[245, 266, 268, 266, 266, 267, 246, 268, 246, 269, 268, 246, 266, 267, 246, 267, + 268, 267, 246, 267, 265, 268, 246, 265, 246, 267, 268, 269, 267, 245, 269, 269, + 245, 267, 269, 269, 266, 268, 266, 265, 267, 246, 268, 246, 245, 267, 245, 265, + 266, 269, 269, 245, 268, 268, 268, 268, 268, 269, 266, 269, 265, 267, 245, 269, + 157, 269, 266, 268, 246, 267, 269, 268, 266, 267, 269, 269, 245, 267, 246, 245, + 204, 156, 156, 157, 267, 269, 246, 265, 246, 268, 245, 245, 266, 269, 269, 269, + 244, 178, 178, 204, 156, 156, 156, 157, 246, 266, 268, 266, 269, 266, 246, 246, + 200, 183, 243, 243, 178, 243, 244, 204, 156, 156, 157, 267, 267, 266, 266, 268, + 246, 199, 200, 200, 200, 183, 178, 178, 244, 244, 204, 156, 156, 156, 156, 156, + 268, 246, 245, 267, 265, 199, 200, 200, 200, 183, 244, 178, 243, 244, 178, 244, + 269, 245, 269, 267, 245, 267, 267, 269, 265, 199, 183, 243, 178, 243, 244, 178, + 266, 269, 266, 246, 266, 266, 246, 245, 267, 155, 205, 243, 178, 178, 243, 182, + 269, 266, 245, 267, 266, 246, 269, 269, 246, 177, 243, 244, 182, 200, 200, 201, + 268, 266, 245, 267, 269, 245, 268, 269, 265, 177, 182, 200, 201, 245, 246, 265, + 265, 245, 265, 269, 246, 245, 245, 267, 155, 205, 179, 266, 265, 246, 268, 245, + 246, 246, 267, 266, 246, 246, 246, 155, 205, 182, 201, 265, 269, 265, 267, 245], + "height":16, + "width":16, + "x":-48, + "y":48 + }, + { + "data":[268, 269, 266, 265, 268, 268, 177, 244, 204, 157, 245, 267, 246, 267, 266, 268, + 269, 269, 269, 245, 268, 269, 177, 244, 243, 179, 245, 265, 245, 267, 267, 245, + 267, 265, 267, 267, 266, 267, 199, 183, 243, 179, 266, 246, 265, 267, 269, 265, + 269, 267, 268, 267, 246, 268, 267, 177, 178, 179, 268, 266, 268, 269, 266, 266, + 265, 269, 269, 245, 266, 265, 245, 177, 243, 204, 156, 157, 246, 269, 246, 246, + 267, 246, 267, 267, 265, 245, 268, 177, 243, 243, 243, 204, 156, 156, 156, 156, + 266, 269, 155, 156, 156, 156, 156, 205, 243, 243, 244, 244, 243, 244, 244, 244, + 155, 156, 205, 243, 243, 244, 244, 243, 243, 182, 200, 200, 183, 178, 178, 178, + 205, 243, 243, 243, 244, 182, 200, 200, 200, 201, 266, 245, 199, 200, 200, 200, + 178, 243, 182, 200, 200, 201, 268, 268, 268, 267, 267, 266, 246, 266, 269, 267, + 182, 200, 201, 245, 269, 266, 268, 269, 268, 268, 269, 246, 267, 265, 245, 266, + 201, 266, 245, 245, 265, 265, 267, 246, 268, 268, 245, 266, 246, 245, 246, 269, + 267, 246, 267, 265, 265, 268, 269, 265, 269, 245, 245, 268, 268, 246, 266, 267, + 245, 267, 268, 246, 267, 267, 245, 246, 268, 268, 266, 267, 265, 269, 269, 246, + 265, 266, 269, 245, 267, 269, 245, 269, 245, 269, 266, 269, 245, 267, 245, 269, + 245, 266, 269, 267, 269, 265, 269, 265, 246, 246, 267, 268, 245, 268, 267, 269], + "height":16, + "width":16, + "x":-32, + "y":48 + }, + { + "data":[246, 246, 269, 268, 265, 269, 269, 245, 245, 269, 246, 266, 601, 111, 115, 114, + 245, 267, 265, 267, 265, 265, 268, 268, 266, 245, 266, 265, 601, 114, 111, 111, + 245, 267, 245, 265, 267, 246, 267, 269, 246, 265, 245, 269, 601, 114, 111, 111, + 266, 267, 266, 267, 267, 265, 267, 266, 268, 265, 266, 265, 623, 583, 114, 115, + 267, 265, 268, 265, 245, 266, 265, 267, 245, 265, 266, 246, 267, 601, 111, 111, + 157, 265, 268, 245, 266, 269, 267, 267, 267, 246, 266, 245, 579, 605, 111, 114, + 204, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 157, 601, 1, 2, 2, + 243, 243, 178, 244, 244, 178, 244, 178, 244, 178, 178, 179, 601, 23, 24, 24, + 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 201, 601, 45, 46, 46, + 268, 245, 265, 269, 267, 267, 245, 245, 265, 265, 265, 245, 623, 583, 111, 111, + 267, 265, 268, 246, 267, 265, 265, 268, 245, 269, 266, 268, 579, 605, 111, 115, + 267, 269, 245, 246, 267, 267, 266, 269, 269, 269, 269, 246, 623, 583, 114, 115, + 268, 268, 246, 266, 268, 267, 269, 267, 246, 265, 245, 266, 267, 601, 111, 111, + 267, 267, 267, 269, 267, 245, 266, 246, 246, 266, 267, 245, 268, 601, 111, 115, + 268, 245, 245, 269, 246, 268, 269, 265, 265, 266, 266, 268, 246, 601, 115, 114, + 245, 245, 266, 267, 246, 268, 267, 246, 266, 245, 267, 267, 246, 601, 111, 114], + "height":16, + "width":16, + "x":-16, + "y":48 + }, + { + "data":[111, 114, 114, 111, 111, 115, 114, 111, 111, 114, 115, 114, 114, 111, 114, 111, + 112, 111, 114, 111, 111, 114, 114, 115, 115, 112, 115, 111, 115, 114, 111, 111, + 115, 115, 115, 111, 111, 114, 114, 111, 111, 115, 111, 114, 111, 114, 111, 111, + 111, 114, 111, 114, 112, 115, 111, 115, 114, 113, 114, 111, 114, 114, 111, 114, + 602, 115, 111, 115, 111, 114, 113, 111, 111, 114, 111, 111, 114, 114, 114, 114, + 114, 602, 115, 602, 111, 111, 115, 111, 111, 114, 114, 111, 111, 112, 111, 111, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 90, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 90, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 602, 115, 111, 111, 114, 111, 111, 114, 115, 111, 114, 114, 114, 115, 115, 114, + 114, 113, 111, 111, 115, 111, 115, 115, 115, 111, 115, 114, 115, 115, 111, 111, + 115, 111, 114, 111, 113, 115, 114, 111, 114, 115, 113, 111, 115, 115, 115, 114, + 115, 111, 115, 115, 111, 111, 113, 111, 114, 115, 114, 111, 113, 115, 115, 111, + 111, 111, 111, 115, 111, 111, 113, 115, 111, 111, 111, 113, 111, 114, 111, 115, + 115, 114, 114, 111, 111, 111, 111, 111, 114, 115, 115, 111, 115, 114, 115, 111, + 111, 115, 115, 111, 114, 114, 111, 111, 114, 111, 111, 111, 115, 111, 115, 115], "height":16, "width":16, "x":0, "y":48 }, { - "data":[28, 29, 24, 89, 24, 24, 24, 90, 28, 46, 10, 51, 89, 90, 28, 29, - 50, 51, 89, 24, 28, 29, 24, 24, 25, 115, 23, 24, 24, 24, 50, 32, - 29, 28, 46, 46, 10, 51, 89, 24, 25, 1, 32, 29, 28, 29, 24, 50, - 32, 10, 3, 111, 23, 24, 24, 90, 25, 23, 50, 32, 10, 51, 28, 29, - 25, 23, 50, 2, 51, 24, 24, 90, 25, 23, 24, 50, 32, 29, 25, 23, - 50, 32, 46, 46, 46, 46, 29, 24, 25, 45, 29, 24, 25, 23, 50, 51, - 24, 25, 111, 114, 111, 1, 51, 24, 25, 111, 23, 89, 50, 51, 24, 24, - 46, 47, 111, 114, 1, 32, 46, 29, 25, 111, 23, 24, 24, 24, 24, 24, - 2, 3, 115, 111, 45, 47, 114, 23, 25, 114, 45, 29, 90, 24, 24, 89, - 24, 50, 2, 2, 3, 114, 111, 23, 25, 112, 1, 51, 24, 24, 24, 24, - 24, 24, 24, 24, 25, 1, 2, 32, 10, 3, 23, 24, 24, 24, 24, 28, - 29, 24, 24, 24, 50, 51, 89, 50, 51, 25, 23, 24, 24, 24, 89, 50, - 23, 24, 24, 24, 24, 24, 24, 24, 24, 50, 32, 29, 24, 89, 24, 89, - 23, 24, 28, 29, 24, 24, 24, 24, 89, 24, 50, 51, 89, 24, 24, 24, - 23, 24, 25, 23, 28, 29, 24, 89, 28, 29, 24, 90, 24, 89, 24, 24, - 45, 46, 10, 51, 50, 32, 46, 46, 10, 51, 90, 24, 28, 46, 29, 24], + "data":[111, 112, 114, 111, 115, 111, 115, 111, 23, 24, 25, 111, 111, 115, 111, 111, + 114, 114, 111, 111, 115, 112, 114, 112, 23, 24, 25, 113, 111, 111, 114, 111, + 115, 111, 113, 115, 111, 115, 111, 114, 23, 24, 25, 114, 111, 114, 114, 111, + 111, 112, 115, 111, 114, 114, 113, 111, 23, 24, 50, 3, 115, 115, 115, 115, + 113, 111, 114, 114, 114, 112, 115, 112, 23, 24, 90, 25, 111, 111, 115, 111, + 114, 114, 112, 111, 111, 114, 114, 111, 45, 29, 24, 50, 3, 114, 113, 114, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 51, 24, 24, 25, 111, 111, 111, + 89, 90, 24, 89, 24, 90, 24, 24, 24, 24, 24, 24, 50, 3, 115, 111, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 29, 24, 24, 50, 2, 2, + 115, 115, 111, 115, 115, 111, 115, 114, 111, 111, 45, 29, 24, 24, 24, 24, + 112, 111, 111, 114, 111, 114, 111, 111, 111, 111, 114, 45, 46, 46, 46, 46, + 115, 113, 115, 111, 111, 111, 111, 115, 115, 111, 114, 111, 115, 114, 114, 111, + 111, 114, 115, 114, 115, 115, 111, 115, 115, 111, 111, 111, 115, 111, 111, 114, + 111, 115, 111, 114, 111, 111, 111, 111, 114, 115, 114, 113, 114, 112, 114, 114, + 114, 115, 111, 111, 115, 114, 113, 111, 111, 115, 115, 115, 115, 111, 111, 111, + 115, 111, 111, 114, 111, 114, 114, 114, 115, 115, 114, 113, 115, 111, 114, 111], "height":16, "width":16, "x":16, "y":48 }, { - "data":[24, 24, 24, 24, 24, 24, 24, 89, 24, 25, 114, 115, 45, 10, 51, 50, - 46, 46, 46, 46, 29, 24, 24, 24, 24, 50, 2, 2, 2, 51, 28, 46, - 2, 2, 2, 2, 32, 29, 24, 24, 24, 24, 24, 28, 46, 29, 50, 2, - 24, 24, 90, 24, 50, 32, 29, 24, 24, 24, 24, 25, 1, 51, 24, 24, - 24, 90, 24, 24, 89, 50, 51, 89, 24, 24, 89, 50, 51, 24, 24, 24, - 24, 28, 29, 24, 24, 24, 24, 28, 46, 29, 24, 24, 24, 28, 46, 29, - 24, 25, 23, 28, 29, 90, 28, 10, 3, 23, 90, 24, 24, 50, 2, 32, - 89, 50, 32, 10, 51, 24, 50, 51, 50, 51, 90, 24, 24, 28, 29, 25, - 24, 89, 50, 51, 24, 24, 89, 89, 24, 28, 29, 24, 28, 47, 45, 10, - 24, 24, 28, 29, 28, 46, 29, 28, 46, 10, 32, 29, 50, 2, 2, 51, - 29, 24, 50, 32, 10, 2, 51, 50, 2, 51, 50, 32, 29, 24, 24, 24, - 51, 24, 28, 10, 51, 24, 24, 24, 24, 90, 24, 50, 51, 24, 24, 24, - 24, 24, 25, 23, 24, 24, 24, 24, 24, 89, 24, 90, 24, 24, 24, 90, - 24, 24, 50, 32, 46, 46, 29, 24, 24, 89, 28, 46, 29, 89, 24, 24, - 24, 89, 28, 10, 2, 2, 51, 89, 24, 90, 50, 3, 23, 24, 28, 29, - 28, 46, 10, 51, 28, 29, 24, 24, 24, 24, 24, 50, 51, 28, 10, 51], + "data":[114, 114, 115, 114, 114, 111, 111, 111, 115, 115, 112, 114, 111, 111, 112, 114, + 114, 111, 115, 114, 115, 111, 111, 113, 114, 115, 114, 111, 114, 111, 111, 115, + 111, 114, 111, 111, 111, 111, 114, 111, 111, 111, 113, 114, 111, 111, 114, 111, + 111, 112, 111, 111, 111, 111, 114, 115, 111, 111, 114, 115, 115, 114, 114, 111, + 114, 111, 111, 111, 111, 111, 111, 111, 111, 114, 111, 111, 111, 115, 114, 115, + 111, 115, 111, 111, 115, 114, 114, 115, 111, 115, 115, 111, 111, 114, 111, 115, + 111, 115, 115, 111, 114, 114, 111, 111, 114, 111, 115, 114, 114, 115, 111, 115, + 114, 111, 111, 114, 111, 111, 111, 111, 115, 114, 115, 1, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 51, 24, 24, 24, 24, + 24, 24, 89, 24, 24, 24, 24, 24, 24, 90, 24, 24, 28, 46, 46, 46, + 46, 46, 46, 46, 29, 89, 28, 46, 46, 46, 46, 46, 47, 111, 111, 115, + 111, 111, 111, 111, 23, 24, 25, 111, 111, 114, 111, 115, 114, 111, 114, 114, + 111, 114, 115, 111, 23, 24, 25, 114, 111, 114, 111, 114, 111, 115, 111, 114, + 111, 111, 114, 114, 23, 24, 25, 111, 111, 115, 111, 111, 114, 111, 111, 113, + 111, 114, 114, 114, 23, 24, 25, 112, 111, 115, 114, 111, 111, 115, 111, 111, + 111, 111, 114, 114, 23, 24, 25, 111, 112, 115, 114, 111, 111, 114, 111, 114], "height":16, "width":16, "x":32, "y":48 }, { - "data":[51, 24, 24, 24, 24, 24, 50, 2, 2, 32, 29, 24, 24, 50, 32, 10, - 29, 89, 24, 24, 28, 46, 29, 89, 24, 25, 45, 29, 24, 24, 25, 45, - 51, 24, 24, 90, 25, 1, 51, 24, 24, 25, 1, 32, 46, 29, 25, 115, - 90, 24, 28, 29, 50, 51, 24, 89, 89, 25, 23, 50, 2, 32, 47, 111, - 89, 24, 50, 32, 29, 24, 24, 24, 24, 50, 51, 24, 24, 25, 111, 111, - 28, 29, 24, 25, 23, 89, 89, 24, 28, 29, 24, 28, 29, 25, 111, 1, - 10, 51, 24, 25, 45, 29, 24, 24, 50, 32, 29, 25, 45, 10, 2, 51, - 23, 24, 24, 25, 114, 23, 24, 24, 24, 50, 51, 50, 2, 32, 29, 24, - 51, 24, 24, 50, 2, 51, 24, 24, 24, 24, 24, 90, 24, 50, 32, 29, - 24, 28, 29, 24, 24, 90, 24, 24, 24, 24, 24, 24, 24, 24, 50, 32, - 90, 50, 32, 29, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 29, 50, - 24, 28, 10, 32, 46, 46, 46, 29, 24, 24, 24, 28, 46, 10, 32, 29, - 24, 50, 51, 50, 2, 2, 2, 32, 46, 46, 29, 25, 113, 23, 50, 51, - 24, 24, 24, 24, 24, 24, 90, 50, 2, 2, 51, 25, 1, 32, 29, 24, - 24, 24, 24, 89, 24, 24, 24, 90, 24, 24, 24, 50, 32, 10, 51, 24, - 24, 24, 24, 24, 24, 24, 24, 24, 90, 24, 24, 24, 25, 23, 24, 24], + "data":[111, 114, 111, 111, 115, 111, 111, 114, 111, 114, 111, 114, 111, 115, 111, 111, + 111, 115, 115, 111, 111, 115, 111, 111, 111, 115, 111, 111, 115, 115, 115, 111, + 111, 111, 115, 113, 111, 115, 115, 115, 111, 115, 115, 111, 114, 114, 115, 111, + 113, 114, 115, 111, 115, 111, 113, 111, 115, 115, 114, 115, 111, 115, 113, 114, + 111, 114, 114, 114, 111, 114, 111, 115, 1, 2, 2, 2, 2, 2, 2, 2, + 111, 111, 111, 111, 114, 1, 2, 2, 51, 89, 24, 24, 24, 24, 24, 24, + 114, 1, 2, 2, 2, 51, 24, 24, 24, 24, 28, 46, 46, 46, 46, 46, + 2, 51, 24, 24, 24, 24, 28, 46, 46, 46, 47, 111, 111, 111, 114, 114, + 24, 90, 28, 46, 46, 46, 47, 114, 111, 111, 114, 111, 112, 111, 115, 111, + 46, 46, 47, 111, 111, 111, 114, 111, 111, 111, 113, 111, 114, 114, 111, 114, + 114, 111, 115, 111, 114, 115, 111, 111, 111, 111, 111, 115, 115, 111, 115, 114, + 111, 111, 111, 114, 115, 114, 111, 115, 111, 111, 111, 111, 111, 111, 115, 114, + 111, 115, 111, 111, 114, 115, 111, 114, 114, 115, 111, 114, 111, 115, 114, 111, + 114, 115, 114, 115, 111, 111, 114, 111, 111, 111, 113, 115, 114, 112, 111, 115, + 115, 111, 115, 115, 115, 115, 115, 114, 111, 114, 115, 115, 115, 111, 111, 114, + 115, 111, 114, 111, 111, 111, 111, 111, 114, 111, 115, 112, 111, 111, 111, 114], "height":16, "width":16, "x":48, "y":48 - }, - { - "data":[51, 24, 90, 24, 28, 29, 24, 24, 28, 10, 3, 45, 29, 24, 24, 50, - 29, 24, 24, 24, 25, 23, 24, 90, 50, 51, 50, 2, 51, 24, 24, 24, - 23, 89, 24, 24, 50, 51, 28, 46, 29, 24, 24, 24, 28, 29, 24, 24, - 23, 89, 24, 28, 29, 24, 50, 2, 51, 90, 24, 24, 25, 45, 29, 24, - 23, 24, 24, 25, 45, 29, 24, 24, 24, 24, 24, 24, 50, 2, 32, 29, - 51, 24, 24, 50, 3, 23, 90, 24, 90, 24, 28, 29, 24, 24, 50, 51, - 24, 24, 24, 24, 50, 32, 46, 29, 24, 24, 25, 45, 29, 24, 89, 24, - 24, 28, 29, 28, 46, 10, 3, 45, 29, 24, 25, 111, 23, 24, 24, 24, - 24, 50, 32, 10, 2, 32, 10, 2, 51, 24, 50, 2, 51, 24, 24, 24, - 46, 29, 50, 32, 29, 50, 32, 46, 46, 46, 29, 28, 29, 89, 28, 46, - 3, 45, 29, 50, 51, 24, 50, 2, 2, 2, 32, 10, 32, 29, 50, 2, - 50, 2, 51, 24, 24, 24, 90, 24, 24, 24, 25, 23, 25, 23, 24, 24, - 24, 24, 24, 24, 24, 24, 24, 28, 46, 46, 10, 51, 25, 23, 24, 89, - 24, 28, 46, 46, 29, 24, 24, 50, 2, 2, 32, 46, 10, 32, 46, 29, - 24, 25, 115, 115, 23, 24, 24, 24, 24, 24, 50, 3, 23, 25, 114, 23, - 24, 50, 3, 1, 32, 29, 89, 24, 90, 90, 24, 50, 51, 25, 114, 45], - "height":16, - "width":16, - "x":64, - "y":48 - }, - { - "data":[2, 51, 50, 32, 10, 32, 46, 29, 24, 24, 50, 51, 28, 46, 29, 28, - 90, 24, 24, 50, 51, 25, 1, 51, 24, 28, 29, 24, 50, 2, 51, 50, - 28, 46, 46, 29, 24, 25, 23, 24, 24, 50, 51, 24, 24, 24, 89, 24, - 25, 1, 2, 51, 24, 25, 23, 24, 24, 28, 46, 29, 24, 90, 89, 24, - 25, 23, 90, 24, 28, 10, 51, 24, 24, 50, 3, 23, 28, 29, 24, 24, - 25, 23, 24, 28, 10, 51, 24, 90, 24, 24, 25, 23, 50, 51, 89, 24, - 50, 51, 24, 50, 32, 29, 28, 29, 89, 28, 10, 51, 24, 24, 24, 89, - 24, 24, 28, 46, 10, 51, 50, 32, 29, 50, 51, 24, 24, 90, 24, 28, - 24, 90, 50, 2, 51, 24, 24, 25, 23, 24, 24, 28, 29, 24, 24, 25, - 46, 29, 24, 89, 24, 24, 24, 50, 51, 24, 89, 50, 51, 24, 24, 25, - 2, 32, 46, 29, 89, 24, 28, 46, 29, 24, 24, 24, 28, 46, 29, 25, - 28, 10, 2, 32, 29, 24, 50, 3, 23, 24, 28, 29, 50, 2, 32, 47, - 50, 51, 24, 25, 23, 24, 28, 10, 51, 24, 25, 45, 29, 24, 25, 111, - 24, 24, 24, 25, 23, 90, 25, 23, 24, 24, 50, 2, 51, 24, 25, 1, - 24, 24, 24, 50, 32, 29, 25, 23, 28, 46, 29, 24, 24, 24, 50, 51, - 46, 46, 29, 24, 50, 32, 10, 51, 50, 2, 32, 29, 89, 24, 24, 24], - "height":16, - "width":16, - "x":80, - "y":48 - }, - { - "data":[10, 32, 29, 50, 2, 51, 50, 32, 29, 24, 90, 90, 24, 90, 24, 24, - 32, 10, 32, 29, 24, 24, 24, 50, 51, 28, 29, 89, 24, 24, 24, 24, - 25, 23, 25, 45, 46, 29, 89, 24, 89, 50, 51, 24, 24, 89, 89, 24, - 50, 32, 10, 2, 2, 32, 29, 24, 90, 24, 24, 24, 24, 28, 46, 46, - 24, 50, 32, 46, 29, 50, 32, 29, 24, 24, 24, 24, 24, 50, 2, 2, - 28, 29, 25, 112, 23, 24, 50, 51, 24, 24, 24, 24, 24, 24, 24, 90, - 25, 23, 25, 111, 23, 24, 24, 24, 90, 24, 24, 24, 24, 24, 24, 24, - 10, 51, 25, 111, 23, 24, 24, 24, 90, 89, 24, 28, 46, 46, 29, 24, - 45, 29, 25, 1, 51, 24, 24, 89, 28, 29, 28, 10, 2, 2, 32, 46, - 111, 23, 25, 23, 24, 24, 24, 24, 25, 45, 10, 51, 28, 29, 50, 2, - 1, 51, 50, 51, 24, 24, 24, 24, 50, 3, 45, 29, 50, 32, 29, 24, - 45, 29, 24, 24, 24, 24, 28, 46, 29, 50, 2, 51, 24, 50, 32, 29, - 1, 32, 29, 24, 24, 24, 50, 3, 23, 24, 24, 24, 28, 29, 50, 51, - 51, 50, 51, 90, 24, 90, 24, 50, 32, 29, 24, 24, 50, 32, 29, 24, - 28, 46, 29, 89, 24, 89, 24, 24, 50, 51, 24, 24, 24, 50, 51, 24, - 50, 2, 51, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28], - "height":16, - "width":16, - "x":96, - "y":48 - }, - { - "data":[24, 24, 24, 24, 25, 23, 50, 51, 24, 28, 29, 89, 24, 28, 29, 24, - 89, 24, 24, 24, 50, 32, 46, 29, 24, 25, 23, 24, 90, 50, 51, 90, - 24, 24, 24, 24, 24, 50, 3, 23, 24, 50, 51, 89, 28, 46, 46, 46, - 46, 46, 46, 29, 24, 24, 25, 23, 89, 89, 24, 24, 25, 114, 115, 1, - 3, 115, 1, 51, 24, 24, 25, 23, 89, 24, 24, 24, 50, 2, 2, 32, - 50, 2, 51, 24, 24, 24, 25, 23, 28, 29, 24, 90, 24, 24, 24, 50, - 24, 24, 89, 24, 24, 24, 50, 51, 50, 32, 46, 29, 90, 24, 89, 24, - 24, 24, 28, 46, 29, 24, 24, 28, 46, 10, 2, 51, 24, 24, 24, 24, - 46, 29, 50, 3, 23, 90, 24, 50, 2, 51, 90, 24, 24, 24, 28, 46, - 2, 51, 24, 25, 45, 46, 29, 24, 24, 24, 28, 29, 24, 24, 25, 114, - 24, 24, 24, 50, 2, 2, 51, 24, 24, 24, 25, 23, 24, 24, 50, 2, - 24, 24, 28, 29, 28, 29, 24, 89, 24, 24, 25, 23, 90, 24, 24, 89, - 24, 24, 50, 32, 10, 32, 46, 29, 24, 24, 50, 51, 89, 24, 24, 24, - 28, 29, 24, 25, 23, 50, 3, 45, 29, 90, 89, 24, 90, 24, 24, 24, - 50, 51, 24, 25, 23, 90, 50, 2, 51, 24, 24, 24, 24, 90, 24, 24, - 29, 24, 24, 50, 51, 24, 24, 24, 28, 46, 46, 29, 24, 28, 46, 29], - "height":16, - "width":16, - "x":112, - "y":48 }, { - "data":[89, 24, 25, 23, 24, 24, 50, 2, 32, 29, 24, 24, 24, 24, 24, 50, - 24, 90, 25, 23, 24, 24, 24, 89, 50, 51, 24, 24, 24, 90, 24, 24, - 24, 89, 50, 51, 24, 24, 24, 24, 24, 89, 28, 29, 24, 24, 24, 24, - 89, 24, 90, 24, 24, 24, 24, 24, 24, 24, 25, 23, 24, 24, 24, 24, - 89, 24, 24, 24, 24, 28, 46, 29, 24, 24, 50, 32, 29, 28, 46, 29, - 24, 90, 90, 28, 46, 10, 2, 51, 24, 24, 90, 50, 51, 25, 1, 51, - 24, 24, 89, 50, 3, 23, 24, 24, 24, 24, 24, 28, 46, 10, 51, 28, - 28, 46, 29, 24, 50, 51, 24, 24, 24, 24, 24, 50, 2, 51, 89, 50, - 50, 2, 51, 89, 24, 24, 24, 89, 24, 28, 29, 24, 24, 24, 24, 24, - 28, 29, 24, 24, 89, 89, 24, 24, 90, 50, 32, 29, 24, 24, 24, 24, - 50, 51, 24, 24, 24, 24, 24, 24, 24, 24, 50, 32, 29, 24, 28, 29, - 89, 90, 24, 90, 89, 89, 24, 24, 24, 24, 24, 25, 23, 24, 50, 51, - 28, 46, 46, 46, 29, 24, 24, 28, 46, 46, 46, 10, 51, 28, 29, 24, - 50, 2, 2, 3, 23, 24, 24, 50, 2, 2, 3, 23, 24, 50, 32, 29, - 28, 29, 28, 10, 51, 24, 24, 24, 24, 28, 10, 32, 29, 24, 50, 32, - 25, 23, 50, 51, 24, 24, 90, 28, 46, 47, 23, 25, 23, 24, 24, 50], + "data":[114, 115, 115, 111, 114, 115, 111, 111, 111, 111, 111, 111, 115, 114, 114, 111, + 114, 114, 114, 111, 111, 111, 111, 111, 111, 111, 113, 115, 111, 111, 114, 111, + 111, 115, 114, 115, 115, 111, 111, 111, 112, 115, 115, 111, 111, 115, 111, 111, + 111, 111, 111, 114, 111, 115, 114, 111, 111, 113, 111, 115, 115, 114, 111, 111, + 2, 2, 3, 111, 113, 111, 111, 114, 112, 111, 111, 114, 115, 115, 111, 114, + 24, 24, 50, 2, 3, 115, 111, 111, 114, 114, 114, 111, 111, 114, 111, 112, + 29, 24, 24, 24, 50, 2, 3, 115, 114, 113, 115, 111, 115, 111, 111, 114, + 45, 46, 46, 29, 89, 24, 50, 3, 115, 114, 114, 114, 111, 115, 111, 115, + 114, 111, 111, 45, 29, 24, 24, 50, 2, 3, 114, 111, 111, 115, 114, 114, + 111, 114, 114, 114, 45, 46, 29, 24, 24, 50, 3, 114, 115, 111, 115, 111, + 114, 114, 114, 113, 115, 111, 45, 29, 24, 24, 25, 115, 111, 115, 111, 111, + 114, 115, 111, 111, 111, 115, 111, 45, 29, 24, 50, 2, 2, 2, 2, 2, + 111, 111, 111, 111, 111, 115, 115, 111, 45, 29, 24, 24, 24, 24, 24, 24, + 111, 111, 115, 111, 114, 115, 111, 111, 115, 45, 29, 24, 24, 24, 28, 46, + 111, 114, 114, 114, 114, 112, 115, 111, 111, 111, 23, 28, 46, 46, 47, 114, + 115, 114, 111, 115, 114, 111, 115, 115, 114, 115, 23, 25, 114, 114, 114, 115], + "height":16, + "width":16, + "x":64, + "y":48 + }, + { + "data":[111, 114, 114, 114, 115, 111, 115, 112, 111, 115, 111, 111, 115, 111, 115, 114, + 114, 111, 115, 111, 115, 111, 111, 115, 111, 115, 114, 111, 111, 114, 115, 111, + 114, 112, 111, 111, 111, 111, 115, 115, 111, 115, 111, 114, 115, 111, 111, 111, + 114, 111, 114, 115, 111, 114, 114, 111, 115, 114, 111, 114, 111, 111, 115, 115, + 112, 114, 115, 115, 114, 114, 111, 114, 111, 114, 114, 111, 114, 111, 111, 115, + 115, 111, 111, 115, 113, 114, 114, 114, 111, 115, 115, 114, 111, 114, 111, 111, + 114, 115, 115, 111, 115, 111, 115, 111, 111, 112, 114, 112, 111, 111, 115, 112, + 111, 111, 111, 114, 111, 111, 113, 111, 115, 115, 111, 115, 114, 111, 115, 111, + 111, 111, 114, 115, 115, 114, 111, 114, 111, 114, 114, 115, 114, 111, 114, 115, + 114, 111, 115, 115, 111, 115, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 114, 114, 1, 2, 2, 2, 51, 89, 24, 24, 24, 24, 24, 24, 24, 24, + 2, 2, 51, 24, 24, 24, 90, 89, 28, 46, 46, 46, 46, 46, 46, 46, + 24, 24, 24, 28, 46, 46, 46, 46, 47, 114, 111, 111, 114, 115, 111, 115, + 46, 46, 46, 47, 111, 111, 111, 111, 114, 111, 111, 111, 115, 115, 111, 114, + 111, 113, 111, 111, 111, 111, 113, 115, 111, 115, 111, 115, 114, 111, 114, 114, + 115, 115, 114, 111, 114, 114, 112, 111, 111, 114, 114, 111, 111, 114, 111, 114], + "height":16, + "width":16, + "x":80, + "y":48 + }, + { + "data":[111, 115, 1, 51, 24, 25, 114, 111, 114, 114, 115, 111, 111, 111, 111, 111, + 111, 111, 23, 24, 28, 47, 115, 115, 115, 115, 111, 113, 113, 115, 111, 114, + 111, 111, 23, 24, 25, 114, 114, 115, 114, 115, 111, 111, 115, 111, 111, 111, + 115, 111, 23, 24, 25, 111, 111, 111, 114, 115, 111, 114, 114, 114, 111, 114, + 111, 115, 23, 24, 25, 114, 111, 111, 112, 111, 111, 111, 111, 115, 111, 114, + 111, 1, 51, 24, 25, 114, 115, 115, 111, 115, 111, 111, 111, 114, 115, 115, + 111, 23, 89, 28, 47, 115, 111, 115, 114, 114, 114, 111, 111, 115, 115, 115, + 111, 23, 24, 25, 114, 115, 111, 115, 111, 111, 111, 111, 115, 111, 1, 2, + 1, 51, 89, 50, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 51, 24, + 51, 24, 90, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 90, 24, 28, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 29, 24, + 46, 46, 47, 111, 115, 111, 114, 111, 113, 111, 114, 111, 115, 114, 23, 24, + 112, 111, 111, 111, 111, 114, 111, 111, 115, 114, 111, 111, 114, 1, 51, 24, + 115, 114, 111, 115, 111, 112, 115, 111, 111, 115, 115, 111, 114, 23, 24, 24, + 115, 115, 111, 113, 111, 114, 115, 114, 115, 111, 114, 115, 1, 51, 24, 28, + 114, 111, 111, 111, 111, 114, 114, 111, 113, 111, 113, 111, 23, 24, 24, 25], + "height":16, + "width":16, + "x":96, + "y":48 + }, + { + "data":[111, 111, 111, 115, 114, 111, 111, 111, 23, 24, 25, 115, 111, 111, 111, 115, + 111, 111, 113, 114, 111, 111, 114, 111, 23, 24, 25, 114, 111, 111, 115, 115, + 111, 114, 111, 111, 115, 111, 115, 115, 23, 24, 25, 115, 115, 114, 111, 115, + 115, 111, 111, 111, 111, 115, 114, 1, 51, 24, 25, 111, 115, 114, 115, 111, + 114, 111, 114, 115, 114, 111, 111, 23, 24, 24, 25, 115, 115, 114, 111, 112, + 111, 111, 114, 114, 111, 111, 1, 51, 24, 28, 47, 111, 111, 115, 112, 115, + 114, 111, 1, 2, 2, 2, 51, 24, 28, 47, 111, 111, 112, 114, 111, 111, + 2, 2, 51, 24, 24, 24, 24, 90, 25, 115, 111, 111, 111, 114, 111, 111, + 24, 24, 24, 24, 28, 46, 46, 29, 50, 2, 3, 115, 111, 111, 111, 115, + 24, 28, 46, 46, 47, 115, 111, 45, 46, 29, 50, 2, 2, 2, 3, 111, + 89, 25, 114, 111, 111, 111, 111, 115, 115, 45, 46, 46, 46, 46, 47, 114, + 24, 25, 111, 111, 114, 111, 115, 115, 114, 115, 114, 115, 114, 115, 111, 111, + 28, 47, 114, 111, 111, 114, 111, 115, 111, 111, 115, 115, 114, 114, 114, 113, + 25, 114, 111, 114, 111, 115, 114, 111, 111, 114, 115, 111, 115, 115, 115, 115, + 47, 115, 111, 113, 115, 111, 111, 115, 115, 111, 115, 115, 115, 115, 111, 111, + 111, 115, 111, 114, 111, 111, 114, 115, 111, 111, 114, 111, 114, 115, 115, 114], + "height":16, + "width":16, + "x":112, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266], + "height":16, + "width":16, + "x":-80, + "y":64 + }, + { + "data":[268, 246, 268, 267, 266, 246, 268, 268, 265, 246, 269, 265, 266, 266, 266, 267, + 267, 265, 269, 245, 268, 269, 246, 269, 269, 267, 267, 269, 269, 268, 269, 267, + 265, 245, 245, 268, 267, 266, 245, 268, 269, 269, 245, 245, 245, 268, 246, 246, + 269, 265, 267, 269, 265, 268, 246, 246, 265, 269, 266, 265, 269, 267, 269, 268, + 265, 245, 268, 245, 266, 265, 245, 266, 245, 269, 267, 268, 266, 269, 245, 266, + 267, 265, 246, 266, 266, 266, 246, 266, 268, 245, 265, 266, 268, 265, 269, 246, + 267, 246, 265, 246, 245, 265, 268, 245, 267, 265, 245, 266, 245, 245, 269, 265, + 246, 265, 267, 245, 246, 266, 269, 245, 267, 246, 267, 267, 246, 246, 265, 265, + 268, 266, 265, 269, 265, 268, 266, 266, 267, 266, 269, 246, 246, 266, 245, 267, + 267, 246, 269, 246, 245, 245, 245, 265, 246, 265, 268, 245, 267, 268, 268, 266, + 246, 266, 246, 266, 267, 245, 267, 269, 269, 245, 268, 245, 267, 269, 269, 265, + 266, 269, 266, 266, 266, 266, 268, 266, 269, 268, 265, 266, 265, 267, 266, 267, + 246, 245, 269, 266, 245, 266, 246, 269, 269, 246, 269, 269, 245, 269, 269, 267, + 245, 245, 265, 267, 269, 245, 266, 268, 267, 269, 266, 246, 266, 267, 265, 245, + 266, 267, 267, 265, 269, 269, 246, 245, 269, 265, 245, 269, 246, 246, 265, 268, + 265, 266, 245, 246, 246, 245, 246, 269, 268, 266, 267, 267, 245, 246, 246, 245], + "height":16, + "width":16, + "x":-64, + "y":64 + }, + { + "data":[265, 267, 266, 268, 266, 265, 245, 177, 182, 201, 265, 268, 265, 267, 265, 267, + 265, 267, 245, 267, 268, 265, 155, 205, 179, 268, 245, 265, 265, 246, 266, 269, + 265, 246, 246, 246, 266, 265, 177, 182, 201, 269, 246, 266, 266, 267, 265, 265, + 265, 246, 269, 246, 265, 155, 205, 179, 266, 267, 268, 245, 265, 246, 265, 266, + 268, 266, 246, 269, 246, 177, 182, 201, 246, 268, 265, 269, 245, 267, 245, 245, + 266, 246, 267, 246, 155, 205, 179, 246, 267, 267, 266, 266, 246, 269, 266, 265, + 265, 268, 266, 269, 177, 182, 201, 246, 266, 265, 245, 269, 246, 246, 265, 245, + 265, 269, 266, 265, 177, 179, 265, 245, 267, 246, 266, 268, 246, 266, 269, 245, + 268, 245, 266, 268, 177, 179, 266, 266, 268, 268, 268, 269, 266, 266, 266, 267, + 246, 245, 266, 268, 177, 179, 269, 266, 267, 266, 266, 245, 246, 267, 266, 267, + 266, 268, 266, 246, 177, 179, 245, 245, 265, 269, 265, 269, 265, 265, 268, 265, + 265, 267, 266, 269, 177, 204, 157, 268, 267, 265, 245, 265, 246, 269, 268, 268, + 266, 268, 268, 266, 199, 183, 179, 245, 269, 267, 265, 269, 269, 267, 246, 267, + 245, 245, 245, 267, 246, 177, 179, 266, 268, 265, 246, 269, 268, 267, 267, 265, + 269, 268, 245, 245, 265, 177, 179, 267, 266, 269, 268, 265, 246, 265, 265, 269, + 267, 268, 269, 265, 268, 177, 179, 245, 265, 268, 246, 268, 269, 265, 266, 268], + "height":16, + "width":16, + "x":-48, + "y":64 + }, + { + "data":[246, 266, 265, 267, 267, 245, 269, 267, 267, 245, 266, 269, 245, 246, 269, 266, + 267, 265, 266, 267, 246, 265, 266, 266, 265, 245, 269, 269, 268, 266, 269, 268, + 246, 268, 267, 267, 266, 265, 265, 267, 267, 246, 268, 246, 268, 268, 268, 266, + 266, 266, 269, 268, 269, 246, 268, 246, 265, 265, 267, 266, 245, 246, 246, 246, + 246, 269, 265, 269, 268, 268, 245, 246, 267, 269, 245, 267, 246, 265, 268, 245, + 265, 269, 246, 269, 268, 269, 265, 269, 268, 245, 245, 269, 265, 245, 267, 267, + 266, 269, 266, 245, 269, 267, 268, 245, 245, 245, 268, 245, 246, 245, 265, 266, + 268, 266, 265, 246, 265, 267, 266, 265, 267, 265, 266, 265, 265, 246, 245, 246, + 266, 266, 245, 245, 267, 269, 266, 268, 266, 267, 265, 267, 268, 266, 245, 267, + 266, 266, 266, 246, 245, 267, 246, 265, 265, 267, 245, 245, 269, 268, 265, 267, + 266, 265, 266, 246, 265, 267, 245, 265, 245, 269, 267, 269, 268, 245, 269, 266, + 246, 245, 268, 266, 267, 245, 245, 265, 268, 267, 267, 265, 266, 267, 246, 245, + 269, 245, 246, 265, 268, 246, 246, 266, 269, 269, 246, 265, 246, 267, 268, 245, + 266, 266, 246, 245, 268, 268, 268, 267, 267, 245, 268, 265, 268, 267, 246, 267, + 268, 265, 266, 246, 269, 266, 269, 268, 245, 245, 267, 246, 266, 265, 269, 246, + 246, 245, 268, 246, 266, 269, 265, 246, 269, 245, 268, 245, 268, 267, 265, 267], + "height":16, + "width":16, + "x":-32, + "y":64 + }, + { + "data":[266, 245, 265, 246, 265, 268, 268, 268, 269, 265, 268, 246, 245, 623, 583, 111, + 245, 245, 266, 246, 269, 267, 269, 245, 268, 265, 268, 265, 267, 266, 601, 114, + 246, 265, 268, 267, 266, 246, 269, 265, 269, 265, 245, 245, 266, 245, 601, 115, + 269, 267, 245, 245, 246, 245, 246, 267, 266, 268, 245, 245, 266, 245, 601, 111, + 269, 269, 267, 245, 269, 246, 268, 245, 246, 268, 268, 269, 267, 579, 605, 602, + 245, 245, 267, 268, 246, 268, 246, 265, 267, 246, 267, 269, 266, 601, 115, 115, + 267, 246, 268, 267, 245, 268, 246, 245, 268, 245, 265, 266, 268, 601, 602, 602, + 265, 265, 267, 265, 266, 268, 267, 268, 269, 265, 245, 267, 267, 601, 115, 115, + 265, 245, 265, 267, 246, 269, 265, 266, 268, 245, 267, 245, 265, 601, 602, 115, + 245, 266, 245, 265, 265, 245, 268, 269, 267, 246, 267, 246, 246, 601, 111, 111, + 265, 265, 245, 266, 265, 269, 246, 245, 269, 268, 245, 246, 266, 601, 111, 114, + 269, 267, 265, 266, 265, 245, 268, 246, 246, 267, 268, 267, 267, 601, 602, 115, + 266, 245, 267, 265, 245, 269, 267, 245, 245, 246, 265, 266, 269, 601, 114, 111, + 268, 265, 269, 269, 246, 268, 267, 269, 267, 246, 266, 269, 268, 601, 602, 111, + 245, 265, 265, 246, 246, 245, 266, 266, 245, 266, 265, 266, 266, 601, 111, 111, + 269, 266, 245, 269, 266, 246, 266, 267, 269, 265, 269, 245, 267, 601, 115, 114], + "height":16, + "width":16, + "x":-16, + "y":64 + }, + { + "data":[111, 111, 115, 111, 114, 114, 115, 114, 115, 111, 111, 114, 111, 111, 111, 114, + 111, 114, 115, 111, 115, 111, 114, 111, 111, 114, 111, 114, 111, 111, 111, 111, + 112, 115, 111, 115, 111, 115, 111, 115, 115, 115, 114, 111, 111, 114, 111, 111, + 115, 111, 114, 115, 115, 111, 111, 115, 111, 113, 111, 111, 111, 115, 111, 111, + 111, 111, 115, 115, 115, 111, 111, 111, 115, 114, 111, 111, 114, 111, 115, 111, + 115, 114, 111, 115, 115, 111, 115, 111, 114, 114, 111, 111, 115, 111, 114, 115, + 111, 111, 114, 111, 115, 114, 115, 114, 111, 114, 111, 111, 112, 115, 111, 115, + 115, 114, 111, 111, 113, 111, 111, 111, 114, 111, 111, 115, 111, 112, 111, 114, + 111, 114, 115, 115, 115, 111, 114, 111, 111, 115, 114, 115, 111, 111, 115, 111, + 111, 111, 115, 115, 111, 111, 111, 111, 111, 114, 114, 114, 115, 114, 111, 111, + 115, 115, 111, 115, 111, 111, 111, 111, 111, 115, 114, 115, 114, 114, 115, 114, + 113, 114, 111, 111, 111, 111, 111, 114, 111, 114, 114, 111, 115, 114, 115, 114, + 111, 114, 115, 111, 111, 111, 115, 112, 111, 114, 115, 111, 115, 111, 114, 115, + 115, 114, 111, 114, 111, 111, 112, 113, 111, 115, 114, 111, 114, 114, 111, 114, + 111, 111, 114, 114, 114, 111, 114, 115, 111, 111, 111, 114, 111, 115, 111, 115, + 115, 114, 114, 111, 111, 111, 115, 111, 111, 115, 111, 111, 114, 111, 114, 115], "height":16, "width":16, "x":0, "y":64 }, { - "data":[2, 2, 51, 24, 24, 50, 2, 2, 51, 24, 24, 24, 25, 1, 32, 46, - 24, 90, 28, 46, 46, 46, 46, 29, 24, 24, 24, 24, 25, 23, 25, 111, - 24, 24, 50, 3, 1, 2, 2, 51, 24, 24, 24, 24, 25, 45, 10, 2, - 24, 24, 24, 50, 51, 89, 24, 89, 28, 29, 24, 24, 50, 2, 51, 89, - 28, 29, 24, 28, 29, 24, 90, 28, 10, 32, 46, 29, 24, 90, 24, 24, - 25, 23, 24, 50, 32, 29, 24, 50, 51, 50, 2, 51, 24, 89, 24, 24, - 47, 23, 24, 24, 50, 51, 24, 24, 24, 24, 24, 24, 24, 89, 24, 28, - 3, 23, 28, 29, 90, 24, 90, 24, 24, 90, 24, 24, 24, 24, 89, 25, - 25, 23, 25, 23, 24, 24, 28, 29, 24, 24, 24, 24, 24, 24, 24, 50, - 50, 51, 25, 23, 24, 24, 50, 51, 24, 24, 24, 90, 89, 24, 24, 28, - 90, 24, 25, 23, 24, 24, 89, 24, 90, 24, 24, 24, 24, 89, 28, 10, - 90, 24, 50, 32, 29, 24, 90, 28, 46, 29, 24, 24, 89, 24, 25, 45, - 24, 24, 24, 50, 32, 29, 24, 50, 2, 51, 90, 24, 24, 24, 50, 2, - 89, 24, 24, 24, 25, 23, 90, 89, 90, 24, 89, 24, 24, 24, 24, 24, - 29, 28, 29, 28, 10, 32, 46, 46, 29, 24, 24, 89, 24, 24, 89, 24, - 32, 10, 32, 10, 32, 10, 2, 2, 32, 46, 29, 24, 24, 24, 24, 24], + "data":[111, 115, 111, 111, 111, 114, 114, 111, 115, 115, 114, 114, 114, 111, 111, 115, + 111, 111, 114, 111, 111, 115, 111, 111, 111, 115, 111, 114, 111, 114, 114, 114, + 114, 111, 115, 114, 115, 111, 111, 114, 111, 111, 115, 111, 112, 115, 114, 111, + 111, 111, 115, 111, 114, 111, 115, 115, 114, 111, 111, 111, 114, 114, 115, 115, + 111, 111, 111, 115, 113, 115, 114, 111, 115, 111, 111, 114, 113, 111, 115, 114, + 114, 111, 111, 111, 115, 111, 115, 114, 111, 114, 115, 114, 115, 111, 114, 114, + 111, 114, 111, 115, 111, 114, 111, 111, 111, 111, 114, 111, 111, 111, 114, 111, + 114, 111, 111, 115, 111, 115, 111, 111, 115, 115, 115, 114, 111, 111, 112, 111, + 111, 115, 111, 111, 111, 111, 111, 111, 111, 111, 111, 115, 111, 111, 115, 115, + 114, 114, 115, 114, 113, 111, 111, 111, 114, 115, 111, 114, 112, 113, 111, 111, + 111, 111, 114, 111, 114, 111, 111, 115, 114, 114, 111, 111, 111, 113, 115, 114, + 111, 115, 114, 114, 114, 114, 114, 111, 114, 111, 111, 111, 111, 115, 114, 111, + 114, 114, 114, 114, 111, 111, 114, 115, 114, 112, 114, 114, 111, 111, 115, 111, + 114, 114, 115, 114, 115, 112, 115, 111, 112, 111, 111, 114, 111, 115, 115, 115, + 115, 111, 115, 111, 111, 115, 115, 113, 111, 111, 111, 111, 111, 112, 114, 111, + 115, 115, 115, 111, 111, 111, 111, 111, 111, 111, 111, 115, 111, 111, 115, 115], "height":16, "width":16, "x":16, "y":64 }, { - "data":[10, 2, 51, 24, 50, 32, 29, 28, 46, 46, 29, 24, 24, 50, 32, 46, - 23, 24, 89, 24, 24, 50, 32, 10, 2, 2, 51, 24, 24, 24, 50, 2, - 32, 29, 24, 24, 24, 24, 50, 32, 29, 24, 24, 24, 90, 28, 46, 29, - 50, 51, 28, 29, 28, 29, 24, 25, 23, 24, 24, 24, 24, 50, 2, 51, - 24, 24, 50, 32, 10, 51, 28, 10, 51, 24, 24, 24, 24, 24, 89, 24, - 28, 29, 24, 25, 45, 29, 50, 51, 24, 24, 89, 24, 24, 28, 29, 28, - 47, 45, 29, 50, 3, 45, 29, 24, 28, 46, 46, 46, 29, 50, 51, 25, - 111, 1, 51, 24, 25, 1, 51, 24, 50, 2, 2, 2, 51, 24, 89, 50, - 2, 32, 46, 46, 47, 23, 24, 24, 24, 24, 28, 29, 24, 89, 24, 24, - 29, 50, 2, 2, 2, 51, 24, 24, 89, 24, 50, 51, 24, 24, 24, 90, - 51, 24, 89, 24, 28, 29, 24, 24, 90, 24, 24, 90, 24, 89, 28, 29, - 29, 24, 24, 90, 50, 32, 29, 28, 29, 24, 89, 24, 24, 24, 50, 51, - 51, 90, 24, 24, 24, 50, 51, 25, 23, 24, 24, 24, 24, 90, 24, 24, - 90, 24, 24, 89, 24, 24, 89, 25, 45, 46, 46, 46, 46, 46, 29, 24, - 24, 24, 24, 90, 24, 90, 24, 25, 1, 2, 3, 115, 111, 111, 45, 29, - 24, 90, 24, 24, 28, 29, 24, 50, 32, 29, 50, 2, 2, 3, 111, 23], + "data":[113, 114, 111, 115, 23, 24, 25, 114, 111, 114, 115, 115, 114, 111, 111, 115, + 111, 111, 115, 111, 23, 24, 25, 115, 111, 111, 115, 114, 112, 115, 111, 111, + 111, 111, 111, 1, 51, 24, 25, 111, 111, 111, 115, 111, 111, 113, 114, 114, + 111, 115, 114, 23, 89, 24, 25, 111, 111, 111, 115, 111, 111, 115, 111, 114, + 111, 115, 115, 23, 24, 28, 47, 111, 115, 114, 111, 115, 111, 115, 111, 114, + 111, 111, 113, 23, 24, 25, 114, 115, 111, 115, 115, 115, 111, 111, 114, 114, + 115, 111, 111, 23, 24, 25, 114, 115, 115, 115, 111, 114, 111, 111, 115, 111, + 111, 111, 111, 23, 24, 25, 111, 111, 111, 111, 114, 111, 112, 111, 114, 114, + 111, 111, 114, 23, 24, 25, 111, 111, 111, 114, 114, 111, 115, 115, 111, 111, + 111, 115, 111, 23, 24, 25, 114, 111, 114, 111, 111, 115, 111, 111, 114, 114, + 115, 114, 1, 51, 24, 25, 111, 114, 111, 111, 111, 111, 112, 115, 115, 114, + 111, 111, 23, 24, 24, 25, 111, 114, 114, 115, 111, 111, 115, 115, 111, 111, + 111, 111, 23, 89, 28, 47, 114, 111, 114, 111, 115, 112, 115, 111, 111, 114, + 115, 114, 23, 24, 25, 115, 111, 112, 115, 114, 114, 114, 111, 115, 111, 114, + 111, 1, 51, 24, 25, 111, 114, 114, 111, 115, 111, 115, 114, 111, 111, 115, + 111, 23, 24, 24, 25, 111, 111, 111, 111, 113, 111, 115, 111, 114, 115, 115], "height":16, "width":16, "x":32, "y":64 }, { - "data":[46, 29, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 23, 90, 24, - 2, 32, 29, 24, 90, 28, 46, 46, 29, 24, 24, 24, 25, 45, 46, 29, - 24, 25, 23, 24, 24, 50, 2, 2, 32, 46, 29, 24, 25, 1, 3, 23, - 24, 25, 45, 46, 29, 24, 24, 89, 50, 2, 32, 46, 10, 51, 25, 23, - 24, 50, 2, 3, 45, 46, 46, 29, 24, 24, 50, 2, 51, 24, 50, 51, - 29, 24, 24, 50, 2, 2, 2, 51, 24, 28, 46, 46, 29, 24, 89, 24, - 23, 24, 89, 28, 29, 90, 24, 24, 89, 50, 2, 2, 51, 24, 24, 24, - 32, 29, 24, 25, 23, 24, 24, 24, 90, 89, 24, 24, 24, 89, 24, 28, - 50, 51, 24, 25, 23, 24, 24, 24, 24, 90, 89, 24, 24, 89, 24, 50, - 24, 24, 28, 47, 45, 29, 28, 29, 24, 24, 24, 28, 29, 24, 24, 24, - 24, 24, 50, 2, 2, 32, 47, 45, 29, 24, 24, 50, 51, 24, 24, 24, - 24, 28, 46, 46, 29, 50, 3, 1, 32, 46, 29, 24, 24, 24, 89, 28, - 24, 50, 2, 2, 51, 24, 25, 23, 25, 111, 23, 24, 24, 28, 29, 50, - 28, 46, 29, 24, 90, 24, 50, 51, 50, 2, 32, 29, 24, 50, 51, 24, - 50, 2, 51, 24, 24, 24, 28, 46, 29, 24, 50, 51, 24, 24, 28, 29, - 89, 24, 24, 24, 24, 28, 10, 3, 23, 28, 29, 24, 24, 24, 50, 51], + "data":[115, 115, 115, 114, 115, 115, 111, 111, 114, 115, 111, 111, 114, 111, 111, 114, + 111, 111, 111, 115, 114, 111, 115, 111, 111, 111, 111, 113, 111, 115, 115, 115, + 114, 111, 115, 111, 115, 114, 114, 114, 111, 111, 113, 111, 112, 111, 114, 111, + 114, 115, 114, 113, 111, 111, 114, 111, 114, 115, 111, 111, 111, 114, 111, 111, + 115, 114, 115, 111, 114, 111, 111, 111, 111, 111, 111, 114, 111, 111, 111, 115, + 112, 115, 111, 111, 111, 114, 111, 111, 111, 111, 111, 114, 112, 111, 115, 111, + 111, 111, 111, 115, 111, 111, 111, 111, 115, 111, 114, 114, 115, 111, 115, 111, + 111, 113, 114, 111, 115, 111, 114, 111, 111, 115, 114, 111, 111, 115, 115, 115, + 111, 115, 114, 115, 111, 111, 114, 114, 115, 111, 111, 114, 111, 114, 115, 114, + 111, 115, 114, 114, 111, 113, 114, 114, 111, 111, 111, 111, 111, 113, 111, 115, + 111, 111, 111, 111, 115, 111, 111, 111, 111, 114, 115, 111, 111, 114, 115, 114, + 114, 114, 115, 111, 111, 111, 111, 111, 114, 111, 114, 114, 115, 111, 115, 114, + 111, 115, 111, 114, 111, 115, 111, 111, 111, 115, 111, 115, 111, 111, 114, 111, + 111, 114, 114, 111, 111, 111, 111, 111, 115, 111, 111, 111, 115, 115, 111, 115, + 111, 111, 114, 111, 115, 111, 111, 111, 115, 111, 115, 111, 111, 111, 111, 113, + 111, 111, 111, 114, 111, 111, 115, 114, 111, 111, 114, 111, 111, 111, 111, 114], "height":16, "width":16, "x":48, "y":64 }, { - "data":[90, 24, 25, 23, 25, 23, 24, 24, 24, 24, 89, 24, 24, 50, 2, 2, - 24, 24, 50, 51, 25, 23, 24, 24, 24, 28, 46, 46, 29, 24, 24, 24, - 24, 24, 24, 24, 50, 32, 29, 89, 24, 50, 2, 2, 51, 24, 24, 24, - 24, 89, 24, 28, 29, 50, 32, 29, 90, 28, 46, 29, 89, 24, 24, 24, - 24, 24, 90, 25, 23, 24, 50, 51, 24, 50, 2, 32, 29, 24, 24, 24, - 24, 24, 24, 50, 32, 46, 46, 29, 24, 90, 24, 50, 32, 29, 90, 28, - 24, 24, 24, 24, 50, 2, 2, 32, 29, 28, 29, 28, 10, 32, 29, 25, - 29, 28, 46, 29, 24, 28, 46, 10, 32, 10, 51, 50, 51, 50, 32, 10, - 51, 50, 2, 32, 46, 10, 2, 32, 10, 32, 29, 24, 90, 24, 25, 23, - 24, 24, 24, 25, 1, 51, 24, 25, 23, 50, 51, 24, 24, 90, 50, 51, - 24, 24, 24, 25, 23, 24, 24, 25, 23, 24, 28, 29, 24, 24, 24, 24, - 46, 46, 29, 50, 51, 24, 28, 10, 51, 24, 25, 45, 29, 24, 90, 90, - 2, 2, 32, 46, 29, 90, 50, 51, 24, 24, 50, 3, 23, 24, 24, 24, - 24, 24, 25, 1, 51, 24, 24, 89, 24, 24, 24, 25, 45, 29, 89, 90, - 24, 24, 25, 23, 24, 28, 29, 24, 24, 24, 24, 50, 2, 51, 28, 29, - 24, 24, 50, 51, 24, 50, 51, 24, 24, 24, 90, 24, 24, 24, 50, 51], + "data":[111, 115, 111, 111, 111, 112, 111, 114, 114, 1, 51, 25, 115, 111, 114, 111, + 111, 111, 115, 111, 115, 111, 111, 115, 1, 51, 24, 25, 114, 111, 111, 111, + 111, 111, 111, 111, 113, 111, 114, 111, 45, 46, 29, 25, 111, 112, 111, 111, + 114, 111, 115, 111, 111, 115, 115, 114, 115, 115, 23, 50, 3, 115, 112, 111, + 111, 114, 115, 111, 115, 115, 111, 113, 115, 111, 45, 29, 25, 111, 111, 114, + 111, 115, 111, 115, 115, 111, 112, 111, 114, 111, 114, 45, 47, 111, 114, 111, + 115, 111, 111, 114, 115, 114, 115, 111, 111, 114, 112, 115, 115, 111, 113, 111, + 111, 111, 115, 111, 115, 111, 111, 115, 115, 111, 111, 111, 111, 114, 111, 111, + 114, 115, 111, 111, 111, 114, 111, 111, 115, 115, 115, 111, 111, 114, 114, 111, + 115, 114, 111, 111, 114, 111, 111, 115, 115, 115, 111, 115, 111, 111, 111, 115, + 112, 111, 114, 111, 111, 115, 115, 111, 111, 111, 111, 111, 115, 111, 111, 115, + 114, 111, 111, 115, 111, 115, 114, 111, 115, 115, 111, 111, 115, 114, 111, 115, + 114, 113, 111, 115, 111, 111, 111, 115, 111, 114, 111, 111, 111, 111, 111, 115, + 111, 111, 111, 113, 111, 114, 115, 114, 115, 111, 115, 115, 111, 115, 111, 114, + 111, 114, 115, 115, 115, 115, 114, 115, 115, 111, 111, 111, 114, 115, 111, 111, + 114, 111, 111, 115, 114, 111, 111, 115, 114, 111, 111, 111, 111, 111, 111, 111], "height":16, "width":16, "x":64, "y":64 }, { - "data":[2, 2, 32, 46, 46, 10, 32, 46, 46, 29, 50, 51, 28, 29, 24, 24, - 24, 24, 50, 2, 3, 23, 50, 2, 2, 32, 29, 24, 25, 45, 46, 29, - 24, 24, 28, 29, 25, 45, 46, 29, 24, 25, 45, 29, 50, 2, 3, 23, - 24, 89, 50, 32, 47, 1, 2, 51, 28, 10, 2, 51, 24, 89, 50, 51, - 28, 29, 24, 50, 3, 23, 28, 29, 25, 23, 24, 24, 28, 29, 24, 28, - 10, 51, 24, 90, 50, 51, 50, 51, 25, 23, 89, 89, 50, 51, 28, 10, - 23, 28, 46, 29, 89, 28, 29, 24, 50, 51, 24, 28, 29, 24, 25, 23, - 51, 25, 1, 32, 29, 50, 51, 28, 46, 29, 24, 50, 51, 90, 50, 51, - 24, 50, 32, 47, 23, 28, 29, 50, 3, 45, 46, 29, 24, 24, 24, 24, - 24, 24, 50, 2, 51, 50, 51, 24, 50, 3, 113, 23, 24, 28, 29, 24, - 28, 46, 29, 24, 89, 24, 24, 24, 24, 25, 111, 23, 24, 50, 32, 29, - 50, 2, 32, 29, 28, 46, 29, 24, 24, 50, 2, 51, 24, 24, 50, 51, - 89, 24, 25, 23, 50, 2, 51, 24, 24, 24, 24, 24, 24, 24, 24, 28, - 28, 29, 25, 23, 24, 90, 24, 24, 28, 46, 46, 29, 24, 24, 24, 25, - 25, 45, 47, 23, 24, 28, 46, 29, 50, 2, 2, 51, 24, 24, 24, 25, - 50, 3, 1, 32, 29, 50, 2, 51, 24, 24, 90, 24, 24, 24, 24, 50], + "data":[111, 114, 112, 113, 114, 115, 114, 114, 111, 111, 111, 114, 114, 111, 114, 113, + 113, 115, 113, 114, 111, 114, 114, 115, 111, 114, 115, 111, 111, 111, 115, 115, + 114, 111, 114, 115, 115, 115, 115, 111, 111, 111, 112, 115, 111, 111, 111, 111, + 111, 113, 115, 115, 115, 111, 114, 111, 115, 111, 114, 114, 111, 115, 114, 111, + 114, 111, 111, 114, 111, 111, 111, 111, 111, 115, 111, 111, 115, 111, 112, 114, + 111, 115, 115, 111, 114, 111, 111, 111, 115, 114, 114, 114, 114, 115, 111, 111, + 111, 115, 114, 111, 111, 115, 111, 111, 111, 111, 111, 114, 111, 111, 115, 115, + 111, 115, 115, 114, 115, 111, 115, 114, 114, 111, 111, 111, 111, 111, 111, 111, + 114, 114, 111, 111, 113, 115, 111, 111, 111, 115, 111, 111, 111, 111, 111, 112, + 111, 111, 115, 111, 115, 111, 115, 111, 111, 111, 111, 114, 114, 111, 111, 111, + 114, 115, 114, 111, 115, 113, 111, 115, 111, 111, 115, 111, 114, 111, 111, 115, + 111, 115, 111, 111, 112, 111, 115, 115, 111, 114, 115, 111, 111, 115, 111, 114, + 111, 115, 111, 114, 111, 111, 111, 114, 111, 114, 115, 111, 114, 111, 111, 111, + 114, 111, 115, 111, 111, 115, 111, 115, 111, 111, 115, 111, 111, 111, 111, 111, + 115, 114, 115, 111, 111, 114, 112, 115, 115, 111, 115, 114, 111, 111, 114, 114, + 112, 111, 111, 111, 114, 111, 115, 115, 115, 114, 114, 111, 112, 111, 115, 111], "height":16, "width":16, "x":80, "y":64 }, { - "data":[24, 24, 28, 29, 24, 24, 28, 29, 24, 24, 24, 24, 24, 89, 24, 50, - 89, 24, 25, 23, 24, 24, 50, 51, 24, 24, 24, 24, 24, 89, 28, 29, - 24, 24, 50, 51, 90, 24, 24, 24, 24, 28, 46, 29, 24, 89, 50, 51, - 24, 90, 24, 24, 24, 24, 89, 24, 24, 50, 3, 45, 29, 24, 24, 28, - 46, 29, 24, 28, 46, 29, 90, 89, 89, 24, 50, 2, 51, 24, 28, 10, - 2, 51, 24, 50, 2, 32, 46, 29, 90, 28, 29, 24, 24, 24, 50, 51, - 24, 28, 29, 24, 24, 50, 3, 23, 24, 25, 23, 24, 89, 24, 89, 24, - 24, 25, 23, 24, 24, 24, 25, 23, 90, 50, 51, 24, 90, 90, 24, 24, - 24, 25, 23, 24, 24, 24, 25, 23, 28, 46, 29, 24, 24, 28, 29, 28, - 24, 25, 23, 24, 24, 90, 25, 23, 25, 1, 51, 24, 24, 50, 32, 47, - 24, 50, 51, 24, 24, 24, 50, 51, 50, 51, 24, 24, 24, 24, 50, 2, - 28, 46, 29, 24, 24, 24, 24, 28, 29, 24, 24, 24, 24, 24, 24, 24, - 10, 3, 23, 24, 24, 24, 24, 25, 23, 24, 24, 24, 24, 24, 89, 24, - 23, 50, 32, 46, 46, 46, 46, 10, 32, 29, 24, 28, 46, 29, 24, 24, - 23, 28, 10, 3, 115, 114, 1, 51, 25, 23, 89, 50, 2, 32, 29, 24, - 51, 25, 23, 25, 1, 2, 32, 46, 47, 23, 90, 24, 24, 50, 32, 29], + "data":[111, 111, 115, 111, 114, 111, 115, 111, 111, 114, 112, 1, 51, 24, 28, 47, + 111, 111, 111, 111, 115, 115, 115, 115, 114, 111, 111, 23, 24, 24, 25, 111, + 115, 114, 114, 114, 111, 114, 114, 111, 113, 114, 115, 23, 89, 28, 47, 111, + 111, 114, 111, 111, 114, 111, 111, 114, 111, 115, 1, 51, 24, 25, 111, 111, + 111, 111, 114, 111, 111, 111, 114, 111, 112, 114, 23, 24, 24, 25, 114, 114, + 114, 111, 111, 111, 111, 114, 115, 115, 115, 111, 23, 89, 28, 47, 113, 111, + 111, 111, 111, 114, 114, 111, 111, 114, 111, 114, 23, 24, 25, 115, 111, 114, + 111, 111, 111, 111, 111, 111, 115, 115, 115, 1, 51, 24, 25, 115, 114, 111, + 111, 115, 111, 115, 111, 111, 111, 115, 111, 23, 24, 28, 47, 111, 111, 114, + 111, 115, 111, 114, 111, 111, 111, 111, 111, 23, 24, 25, 111, 111, 115, 115, + 111, 111, 114, 111, 115, 111, 111, 111, 115, 23, 24, 25, 111, 115, 115, 114, + 115, 115, 114, 111, 111, 115, 114, 114, 111, 23, 24, 25, 114, 111, 115, 111, + 111, 115, 115, 111, 115, 111, 111, 115, 114, 23, 24, 25, 114, 115, 111, 111, + 111, 111, 115, 115, 111, 114, 115, 115, 114, 23, 24, 25, 112, 111, 111, 111, + 111, 115, 111, 114, 115, 114, 115, 114, 114, 23, 24, 25, 111, 111, 115, 115, + 114, 111, 115, 111, 114, 111, 111, 1, 2, 51, 24, 25, 112, 111, 115, 111], "height":16, "width":16, "x":96, "y":64 - }, + }, + { - "data":[51, 24, 24, 89, 24, 28, 46, 29, 25, 111, 1, 32, 29, 25, 111, 45, - 28, 46, 29, 90, 28, 10, 2, 32, 10, 2, 51, 50, 32, 10, 2, 3, - 50, 2, 32, 46, 47, 23, 28, 10, 51, 24, 24, 89, 25, 23, 24, 50, - 46, 29, 50, 2, 2, 32, 10, 51, 89, 24, 24, 89, 25, 23, 24, 24, - 2, 51, 24, 24, 24, 50, 32, 46, 29, 28, 29, 90, 25, 23, 24, 24, - 24, 24, 90, 24, 24, 24, 50, 2, 32, 10, 51, 24, 50, 32, 29, 90, - 24, 89, 24, 24, 24, 24, 24, 24, 25, 23, 24, 24, 24, 50, 51, 24, - 24, 24, 24, 24, 89, 89, 24, 89, 25, 23, 89, 28, 29, 24, 24, 90, - 29, 89, 24, 24, 90, 28, 29, 24, 25, 45, 29, 25, 23, 24, 24, 24, - 23, 90, 28, 29, 24, 50, 51, 89, 50, 3, 23, 25, 23, 24, 90, 24, - 51, 24, 25, 23, 24, 28, 46, 29, 24, 25, 23, 25, 45, 29, 24, 24, - 24, 24, 50, 51, 24, 25, 1, 51, 90, 50, 51, 25, 113, 23, 24, 28, - 24, 24, 89, 24, 24, 50, 51, 24, 90, 24, 24, 25, 111, 45, 29, 50, - 24, 24, 28, 29, 90, 24, 90, 24, 24, 24, 24, 25, 111, 111, 23, 28, - 24, 89, 25, 23, 24, 24, 24, 24, 24, 24, 24, 50, 2, 2, 32, 10, - 24, 24, 25, 23, 24, 24, 24, 24, 24, 24, 24, 90, 24, 24, 50, 51], + "data":[111, 113, 115, 111, 111, 115, 111, 115, 111, 111, 111, 111, 111, 111, 111, 114, + 111, 111, 111, 115, 115, 111, 115, 111, 115, 111, 114, 114, 112, 115, 111, 111, + 111, 114, 111, 115, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 115, 111, + 114, 111, 111, 115, 111, 111, 115, 115, 111, 114, 111, 115, 114, 111, 114, 111, + 111, 114, 111, 112, 111, 114, 111, 115, 111, 115, 114, 115, 111, 111, 115, 111, + 115, 111, 111, 115, 111, 113, 114, 115, 113, 111, 111, 111, 111, 111, 111, 114, + 111, 115, 111, 115, 111, 114, 115, 115, 112, 114, 114, 115, 115, 115, 115, 111, + 115, 115, 115, 111, 114, 115, 111, 111, 111, 111, 111, 111, 114, 114, 111, 111, + 114, 114, 114, 114, 113, 111, 115, 111, 111, 111, 111, 111, 114, 111, 111, 111, + 114, 111, 111, 114, 115, 111, 115, 114, 115, 111, 115, 115, 111, 114, 111, 115, + 114, 111, 115, 114, 113, 111, 111, 115, 114, 115, 111, 115, 111, 115, 111, 115, + 115, 111, 114, 111, 115, 115, 111, 114, 111, 111, 115, 111, 111, 111, 111, 114, + 114, 114, 112, 111, 115, 111, 115, 115, 111, 111, 111, 111, 111, 114, 111, 111, + 111, 111, 114, 115, 115, 114, 114, 111, 111, 115, 115, 111, 111, 111, 111, 114, + 114, 111, 115, 111, 111, 111, 115, 115, 111, 115, 115, 111, 113, 115, 111, 115, + 115, 114, 114, 115, 111, 112, 111, 114, 114, 114, 115, 115, 115, 115, 111, 111], "height":16, "width":16, "x":112, "y":64 }, { - "data":[10, 51, 24, 24, 28, 29, 90, 50, 2, 2, 32, 10, 32, 46, 46, 46, - 23, 24, 28, 46, 10, 51, 24, 24, 24, 24, 50, 32, 47, 1, 2, 3, - 32, 29, 50, 2, 32, 46, 29, 24, 24, 24, 24, 50, 3, 23, 24, 50, - 25, 23, 24, 24, 25, 1, 51, 90, 24, 24, 28, 46, 10, 32, 29, 89, - 10, 51, 24, 89, 50, 32, 46, 29, 24, 24, 50, 2, 51, 25, 45, 29, - 32, 46, 46, 46, 29, 50, 2, 32, 46, 46, 46, 29, 24, 25, 1, 32, - 25, 111, 1, 3, 23, 24, 24, 25, 1, 2, 2, 51, 24, 50, 51, 25, - 25, 1, 51, 50, 51, 24, 28, 10, 51, 24, 24, 24, 90, 28, 29, 50, - 50, 51, 24, 28, 29, 24, 50, 32, 29, 24, 90, 24, 24, 25, 23, 24, - 24, 24, 24, 50, 32, 29, 24, 50, 51, 89, 24, 24, 24, 50, 51, 24, - 24, 24, 24, 24, 50, 51, 24, 24, 89, 89, 24, 28, 46, 46, 46, 46, - 24, 24, 24, 24, 24, 89, 24, 24, 24, 24, 24, 50, 2, 3, 111, 111, - 28, 46, 46, 46, 29, 24, 24, 24, 24, 24, 24, 24, 24, 25, 111, 1, - 10, 2, 2, 2, 51, 24, 24, 28, 29, 89, 28, 46, 29, 50, 3, 23, - 51, 24, 24, 90, 24, 89, 24, 25, 45, 46, 47, 111, 23, 24, 25, 23, - 24, 28, 29, 24, 24, 28, 46, 10, 2, 2, 2, 2, 51, 24, 50, 51], + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265], + "height":16, + "width":16, + "x":-80, + "y":80 + }, + { + "data":[245, 268, 269, 266, 265, 266, 268, 267, 245, 269, 265, 266, 266, 266, 245, 268, + 246, 269, 266, 246, 268, 267, 266, 245, 268, 245, 266, 266, 266, 266, 268, 266, + 245, 245, 267, 268, 269, 246, 268, 268, 268, 245, 269, 265, 268, 268, 267, 268, + 267, 269, 265, 268, 266, 246, 268, 268, 246, 267, 266, 267, 267, 265, 245, 246, + 266, 245, 266, 245, 268, 268, 269, 265, 245, 267, 268, 268, 268, 245, 268, 269, + 246, 245, 266, 269, 268, 268, 265, 266, 245, 269, 269, 269, 265, 268, 245, 246, + 267, 267, 269, 269, 245, 269, 266, 266, 246, 266, 245, 267, 267, 266, 265, 265, + 268, 246, 266, 269, 265, 267, 245, 267, 246, 265, 245, 268, 265, 266, 245, 267, + 266, 268, 269, 265, 269, 265, 265, 265, 246, 265, 246, 245, 246, 265, 245, 267, + 268, 267, 269, 268, 267, 269, 267, 246, 268, 246, 266, 265, 245, 269, 266, 266, + 265, 269, 267, 268, 246, 266, 265, 267, 266, 246, 246, 267, 267, 267, 266, 266, + 246, 246, 246, 245, 245, 266, 265, 269, 245, 269, 246, 246, 265, 246, 266, 246, + 266, 266, 269, 246, 266, 266, 269, 269, 246, 266, 246, 266, 266, 265, 266, 269, + 246, 246, 266, 267, 266, 269, 269, 265, 268, 245, 267, 265, 246, 269, 269, 245, + 266, 269, 267, 269, 266, 246, 266, 245, 266, 269, 269, 266, 266, 246, 266, 246, + 245, 246, 267, 246, 267, 266, 268, 268, 266, 245, 246, 267, 265, 268, 266, 265], + "height":16, + "width":16, + "x":-64, + "y":80 + }, + { + "data":[265, 246, 269, 266, 155, 205, 179, 246, 269, 265, 269, 269, 268, 265, 268, 265, + 245, 266, 246, 155, 205, 182, 201, 269, 245, 245, 267, 266, 266, 265, 265, 267, + 269, 245, 155, 205, 182, 201, 245, 267, 245, 266, 246, 268, 267, 266, 246, 269, + 245, 245, 177, 182, 201, 267, 265, 265, 246, 245, 269, 267, 246, 245, 265, 269, + 246, 267, 199, 201, 266, 246, 266, 265, 245, 265, 246, 267, 246, 268, 268, 246, + 267, 269, 265, 265, 267, 266, 246, 246, 267, 268, 267, 245, 269, 268, 246, 269, + 266, 265, 266, 268, 246, 267, 246, 245, 246, 246, 266, 246, 265, 268, 245, 267, + 246, 268, 266, 246, 266, 268, 267, 268, 246, 265, 269, 246, 269, 269, 268, 246, + 246, 245, 267, 265, 267, 267, 267, 245, 267, 245, 269, 266, 269, 246, 266, 245, + 245, 267, 265, 265, 267, 245, 267, 267, 245, 246, 265, 245, 269, 245, 245, 268, + 266, 245, 267, 246, 246, 268, 267, 265, 268, 266, 265, 245, 266, 265, 246, 246, + 265, 246, 265, 246, 269, 266, 245, 268, 267, 265, 265, 246, 266, 245, 268, 266, + 269, 245, 267, 245, 268, 269, 245, 267, 269, 245, 269, 265, 268, 266, 267, 268, + 245, 245, 269, 245, 265, 269, 267, 245, 265, 265, 265, 269, 269, 268, 266, 246, + 268, 268, 266, 265, 266, 246, 266, 269, 245, 266, 269, 246, 246, 246, 265, 268, + 267, 246, 245, 246, 265, 245, 266, 266, 265, 245, 245, 265, 268, 268, 246, 267], + "height":16, + "width":16, + "x":-48, + "y":80 + }, + { + "data":[268, 246, 269, 245, 266, 265, 266, 266, 267, 245, 246, 267, 265, 245, 267, 267, + 268, 245, 246, 267, 245, 267, 265, 268, 246, 268, 246, 268, 246, 265, 265, 245, + 245, 268, 265, 245, 266, 265, 265, 267, 245, 265, 266, 268, 269, 267, 269, 269, + 246, 265, 268, 269, 269, 265, 266, 267, 269, 268, 266, 267, 266, 268, 266, 267, + 265, 267, 266, 245, 266, 266, 267, 267, 245, 269, 268, 268, 266, 267, 268, 268, + 266, 267, 245, 268, 266, 265, 265, 246, 265, 267, 265, 269, 245, 245, 266, 267, + 265, 265, 246, 269, 267, 265, 246, 268, 246, 267, 269, 265, 268, 269, 269, 246, + 266, 268, 265, 267, 266, 246, 267, 268, 246, 268, 246, 265, 246, 246, 245, 265, + 267, 269, 266, 266, 245, 266, 245, 245, 246, 269, 266, 267, 267, 265, 246, 269, + 265, 266, 265, 265, 245, 267, 265, 266, 246, 245, 267, 245, 269, 245, 266, 267, + 245, 246, 246, 268, 246, 245, 266, 269, 267, 245, 266, 265, 267, 266, 265, 268, + 245, 266, 267, 246, 266, 267, 246, 267, 266, 267, 267, 267, 265, 268, 245, 245, + 265, 266, 266, 268, 268, 266, 267, 266, 265, 269, 246, 246, 245, 268, 265, 267, + 266, 269, 266, 268, 245, 267, 268, 267, 267, 267, 269, 268, 245, 265, 268, 245, + 269, 268, 269, 268, 269, 245, 269, 268, 267, 246, 265, 269, 246, 267, 265, 267, + 245, 265, 246, 267, 246, 246, 269, 269, 246, 246, 267, 265, 269, 267, 267, 269], + "height":16, + "width":16, + "x":-32, + "y":80 + }, + { + "data":[265, 246, 269, 268, 266, 267, 245, 265, 266, 269, 245, 245, 267, 601, 602, 111, + 267, 245, 269, 246, 265, 246, 246, 269, 268, 269, 269, 266, 245, 601, 111, 111, + 267, 246, 266, 246, 267, 268, 267, 269, 265, 246, 269, 265, 579, 605, 111, 115, + 245, 266, 268, 246, 267, 268, 245, 246, 267, 269, 246, 265, 601, 111, 111, 602, + 268, 246, 267, 265, 266, 265, 269, 265, 265, 265, 268, 245, 601, 115, 113, 114, + 268, 245, 268, 245, 265, 269, 268, 268, 269, 246, 245, 267, 601, 602, 111, 114, + 266, 265, 267, 245, 267, 246, 245, 266, 268, 265, 266, 266, 601, 111, 114, 111, + 245, 268, 265, 267, 268, 267, 246, 268, 265, 245, 245, 267, 601, 111, 115, 602, + 267, 267, 245, 267, 266, 267, 267, 266, 268, 245, 245, 265, 601, 111, 113, 111, + 266, 268, 265, 269, 266, 269, 246, 266, 266, 268, 265, 269, 601, 111, 114, 111, + 266, 267, 245, 265, 268, 267, 266, 246, 268, 269, 245, 579, 605, 113, 111, 602, + 265, 269, 245, 268, 268, 245, 246, 268, 245, 269, 269, 601, 111, 111, 114, 114, + 246, 245, 245, 246, 265, 266, 269, 245, 266, 267, 266, 601, 111, 113, 114, 111, + 268, 267, 269, 267, 268, 245, 246, 268, 266, 246, 268, 601, 602, 115, 111, 115, + 265, 269, 268, 266, 245, 268, 269, 266, 269, 246, 579, 605, 111, 111, 112, 112, + 265, 267, 245, 245, 265, 245, 246, 246, 265, 266, 601, 602, 111, 111, 602, 111], + "height":16, + "width":16, + "x":-16, + "y":80 + }, + { + "data":[114, 111, 111, 114, 114, 114, 114, 114, 111, 114, 111, 111, 111, 111, 114, 111, + 115, 111, 114, 111, 111, 114, 115, 115, 111, 114, 111, 111, 115, 111, 115, 111, + 115, 113, 115, 111, 114, 114, 114, 114, 114, 111, 111, 111, 111, 115, 111, 114, + 111, 115, 111, 111, 111, 111, 115, 111, 113, 111, 114, 112, 114, 115, 111, 114, + 111, 114, 111, 115, 115, 111, 111, 111, 111, 114, 114, 114, 111, 115, 1, 2, + 111, 112, 115, 111, 113, 111, 115, 115, 114, 114, 114, 111, 111, 115, 23, 24, + 115, 114, 115, 111, 114, 115, 115, 115, 114, 111, 111, 111, 111, 115, 23, 24, + 115, 115, 111, 111, 114, 111, 114, 111, 111, 114, 114, 114, 114, 114, 45, 29, + 111, 114, 111, 111, 111, 114, 115, 115, 114, 114, 111, 113, 115, 111, 111, 45, + 111, 115, 111, 115, 115, 114, 114, 115, 111, 114, 111, 115, 115, 111, 114, 111, + 111, 111, 111, 114, 111, 111, 111, 114, 114, 115, 115, 114, 115, 112, 111, 111, + 114, 111, 114, 111, 115, 114, 111, 111, 114, 111, 113, 114, 111, 111, 114, 114, + 114, 111, 114, 111, 114, 115, 115, 114, 111, 114, 115, 113, 113, 111, 114, 111, + 111, 114, 115, 111, 111, 115, 111, 115, 114, 115, 113, 111, 113, 115, 111, 113, + 111, 111, 111, 111, 114, 115, 111, 114, 115, 111, 114, 112, 114, 111, 112, 111, + 114, 114, 114, 111, 111, 111, 114, 111, 113, 111, 111, 111, 114, 111, 115, 111], "height":16, "width":16, "x":0, "y":80 }, { - "data":[10, 51, 50, 51, 50, 32, 29, 24, 50, 2, 51, 24, 24, 24, 24, 24, - 23, 90, 24, 24, 24, 25, 45, 46, 29, 24, 24, 24, 24, 24, 28, 29, - 32, 29, 24, 24, 24, 25, 115, 1, 51, 24, 24, 89, 24, 24, 25, 23, - 50, 51, 90, 24, 24, 25, 111, 23, 24, 24, 24, 89, 24, 28, 47, 23, - 24, 24, 24, 24, 28, 10, 2, 51, 28, 46, 29, 24, 24, 50, 2, 32, - 29, 24, 24, 24, 50, 32, 29, 24, 50, 2, 32, 46, 29, 24, 24, 50, - 45, 46, 29, 24, 24, 50, 32, 29, 89, 24, 50, 3, 45, 29, 24, 24, - 2, 2, 32, 29, 24, 24, 25, 23, 24, 24, 24, 50, 3, 23, 90, 28, - 89, 24, 50, 32, 29, 24, 50, 51, 24, 24, 28, 46, 10, 32, 29, 25, - 24, 24, 89, 25, 45, 46, 29, 28, 46, 29, 50, 2, 51, 50, 51, 50, - 46, 46, 46, 10, 3, 1, 32, 10, 2, 32, 29, 28, 29, 28, 29, 90, - 1, 3, 1, 51, 50, 51, 50, 51, 24, 50, 32, 10, 51, 50, 51, 90, - 51, 25, 23, 24, 24, 24, 24, 24, 28, 46, 47, 23, 24, 24, 24, 24, - 24, 25, 23, 24, 24, 24, 24, 24, 50, 2, 3, 45, 29, 24, 24, 24, - 24, 50, 32, 46, 46, 29, 24, 28, 46, 46, 10, 2, 32, 29, 24, 24, - 24, 28, 10, 2, 2, 32, 29, 50, 3, 114, 45, 29, 25, 45, 29, 24], + "data":[115, 115, 115, 111, 111, 111, 114, 111, 111, 111, 114, 115, 111, 111, 115, 114, + 111, 111, 111, 112, 115, 111, 111, 113, 115, 113, 114, 114, 115, 111, 115, 111, + 111, 115, 111, 111, 111, 111, 111, 115, 112, 115, 115, 114, 111, 114, 114, 1, + 115, 111, 115, 111, 111, 114, 115, 111, 111, 115, 115, 115, 114, 111, 111, 23, + 3, 111, 115, 111, 111, 111, 113, 111, 115, 115, 111, 115, 111, 115, 1, 51, + 50, 3, 114, 111, 115, 115, 114, 113, 111, 115, 111, 111, 111, 1, 51, 24, + 24, 50, 3, 113, 114, 115, 115, 111, 114, 111, 114, 1, 2, 51, 24, 24, + 24, 90, 50, 2, 3, 114, 114, 111, 1, 2, 2, 51, 24, 24, 24, 28, + 29, 89, 24, 24, 50, 2, 2, 2, 51, 24, 24, 24, 24, 28, 46, 47, + 45, 46, 29, 89, 24, 24, 90, 89, 24, 24, 28, 46, 46, 47, 115, 111, + 111, 111, 45, 46, 46, 46, 46, 46, 46, 46, 47, 111, 111, 115, 111, 115, + 111, 111, 114, 114, 114, 114, 111, 115, 114, 115, 111, 115, 111, 115, 111, 114, + 111, 111, 111, 114, 115, 115, 114, 111, 114, 115, 114, 114, 114, 111, 111, 111, + 115, 111, 111, 115, 115, 114, 111, 114, 111, 115, 114, 111, 111, 115, 111, 114, + 111, 111, 111, 115, 111, 111, 111, 115, 114, 111, 111, 111, 114, 111, 111, 114, + 111, 115, 111, 115, 115, 115, 115, 111, 111, 111, 111, 111, 111, 111, 114, 115], "height":16, "width":16, "x":16, "y":80 }, { - "data":[24, 24, 90, 24, 50, 51, 28, 29, 50, 51, 24, 24, 24, 25, 1, 51, - 24, 24, 24, 24, 90, 24, 25, 45, 29, 24, 24, 89, 24, 25, 23, 24, - 24, 28, 29, 24, 90, 24, 50, 2, 32, 46, 46, 29, 24, 50, 51, 24, - 90, 50, 51, 24, 24, 28, 29, 24, 50, 2, 2, 51, 28, 29, 24, 24, - 46, 29, 24, 24, 24, 25, 23, 28, 29, 89, 24, 24, 25, 23, 24, 28, - 2, 51, 24, 28, 46, 10, 51, 25, 23, 24, 28, 46, 10, 51, 24, 25, - 24, 24, 24, 25, 114, 23, 24, 50, 32, 46, 10, 2, 51, 24, 24, 50, - 46, 46, 29, 25, 111, 23, 24, 28, 10, 2, 51, 24, 28, 29, 24, 24, - 1, 2, 51, 50, 3, 23, 28, 10, 51, 90, 24, 90, 50, 32, 29, 90, - 32, 29, 24, 24, 50, 32, 10, 32, 46, 29, 90, 24, 28, 47, 23, 24, - 50, 51, 89, 24, 24, 50, 32, 10, 2, 51, 24, 28, 47, 1, 51, 24, - 28, 29, 24, 89, 89, 90, 25, 23, 24, 28, 29, 25, 1, 51, 24, 28, - 25, 23, 24, 24, 90, 24, 25, 23, 24, 50, 32, 10, 51, 24, 24, 50, - 25, 45, 29, 89, 24, 89, 25, 23, 24, 28, 47, 23, 24, 24, 24, 24, - 25, 114, 23, 89, 24, 24, 50, 51, 24, 50, 2, 51, 24, 24, 28, 29, - 50, 2, 32, 29, 24, 24, 28, 29, 28, 46, 29, 24, 24, 24, 25, 23], + "data":[111, 23, 24, 28, 47, 111, 111, 111, 111, 111, 115, 111, 112, 111, 115, 111, + 1, 51, 24, 25, 115, 115, 115, 115, 111, 114, 115, 115, 111, 111, 114, 111, + 51, 24, 28, 47, 114, 115, 111, 111, 111, 114, 115, 114, 114, 111, 115, 111, + 24, 24, 25, 114, 114, 111, 114, 115, 111, 111, 114, 115, 111, 111, 114, 111, + 89, 28, 47, 115, 115, 115, 115, 111, 114, 115, 112, 115, 115, 115, 115, 111, + 24, 50, 3, 111, 111, 114, 115, 111, 114, 111, 1, 2, 2, 2, 3, 111, + 24, 24, 50, 2, 2, 2, 2, 2, 2, 2, 51, 24, 24, 24, 25, 115, + 46, 29, 90, 24, 90, 24, 90, 24, 24, 24, 24, 24, 28, 46, 47, 111, + 115, 45, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 47, 111, 114, 111, + 111, 112, 114, 114, 114, 111, 111, 114, 115, 111, 111, 111, 111, 114, 114, 111, + 111, 111, 111, 114, 111, 111, 111, 115, 111, 115, 111, 111, 111, 115, 111, 111, + 111, 111, 115, 111, 111, 112, 111, 114, 111, 115, 115, 111, 111, 115, 111, 114, + 114, 114, 111, 111, 111, 111, 115, 111, 114, 115, 111, 114, 111, 111, 114, 111, + 111, 111, 111, 111, 115, 115, 115, 114, 114, 111, 115, 115, 114, 114, 111, 114, + 114, 115, 111, 111, 112, 111, 111, 114, 115, 115, 111, 111, 113, 111, 115, 111, + 111, 111, 111, 111, 114, 115, 111, 115, 114, 114, 115, 112, 111, 111, 111, 114], "height":16, "width":16, "x":32, "y":80 }, { - "data":[24, 24, 24, 28, 29, 25, 45, 10, 32, 10, 32, 29, 24, 24, 90, 24, - 28, 29, 28, 10, 51, 50, 2, 51, 25, 23, 50, 51, 24, 24, 24, 24, - 25, 23, 50, 32, 29, 24, 24, 24, 25, 23, 24, 24, 24, 24, 90, 24, - 25, 23, 24, 50, 32, 29, 24, 24, 50, 51, 28, 46, 29, 28, 29, 24, - 47, 23, 24, 24, 50, 32, 46, 29, 24, 24, 25, 1, 32, 47, 23, 28, - 115, 45, 29, 90, 28, 47, 111, 23, 89, 89, 50, 32, 10, 2, 51, 50, - 2, 2, 51, 24, 50, 2, 3, 23, 24, 24, 24, 50, 51, 28, 46, 29, - 24, 24, 24, 28, 46, 29, 25, 23, 24, 24, 24, 24, 90, 50, 2, 32, - 24, 24, 24, 50, 3, 45, 10, 51, 28, 29, 24, 90, 28, 29, 24, 50, - 24, 24, 24, 24, 25, 115, 23, 28, 10, 32, 46, 29, 25, 23, 24, 24, - 24, 24, 24, 24, 50, 2, 51, 25, 23, 50, 3, 23, 50, 32, 46, 29, - 46, 46, 46, 46, 46, 29, 24, 25, 23, 24, 25, 23, 24, 50, 2, 51, - 2, 2, 2, 2, 2, 32, 46, 10, 51, 28, 10, 32, 29, 24, 24, 89, - 24, 24, 89, 24, 24, 50, 3, 23, 90, 25, 23, 25, 23, 24, 24, 24, - 24, 24, 24, 24, 24, 24, 50, 51, 89, 50, 51, 25, 23, 24, 24, 24, - 24, 24, 89, 24, 24, 90, 24, 24, 24, 24, 24, 25, 23, 24, 24, 24], + "data":[111, 111, 114, 114, 115, 111, 115, 115, 115, 115, 111, 114, 114, 114, 111, 111, + 111, 111, 111, 111, 115, 111, 115, 114, 111, 114, 111, 115, 111, 111, 115, 115, + 111, 111, 111, 115, 115, 115, 111, 111, 111, 114, 111, 111, 115, 114, 114, 114, + 114, 111, 115, 114, 111, 114, 114, 115, 111, 111, 111, 115, 114, 111, 111, 114, + 111, 114, 115, 115, 111, 115, 114, 111, 114, 111, 115, 111, 111, 114, 115, 111, + 111, 114, 111, 111, 115, 111, 115, 114, 111, 114, 114, 115, 111, 115, 112, 111, + 111, 111, 111, 111, 111, 112, 111, 114, 115, 111, 114, 114, 115, 111, 114, 115, + 115, 115, 114, 111, 111, 115, 114, 111, 114, 114, 111, 115, 111, 115, 115, 114, + 114, 111, 111, 111, 111, 111, 114, 111, 111, 111, 114, 114, 111, 111, 111, 115, + 111, 111, 111, 114, 115, 111, 111, 111, 112, 114, 111, 115, 115, 114, 115, 111, + 111, 111, 111, 111, 115, 111, 111, 114, 114, 114, 111, 114, 111, 114, 111, 111, + 114, 111, 115, 111, 115, 111, 111, 115, 115, 115, 111, 111, 111, 114, 111, 114, + 111, 111, 114, 111, 111, 115, 111, 111, 114, 115, 112, 115, 111, 114, 114, 115, + 114, 111, 113, 111, 115, 111, 111, 111, 111, 115, 114, 115, 114, 115, 111, 111, + 111, 114, 111, 114, 111, 114, 111, 113, 115, 111, 111, 111, 111, 115, 111, 111, + 115, 111, 111, 115, 111, 115, 111, 111, 111, 111, 115, 115, 114, 115, 114, 114], "height":16, "width":16, "x":48, "y":80 }, { - "data":[24, 24, 24, 24, 24, 28, 29, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 50, 51, 24, 24, 28, 46, 46, 29, 24, 24, 24, - 89, 24, 24, 24, 28, 29, 24, 24, 90, 50, 2, 2, 32, 46, 29, 24, - 24, 24, 24, 24, 25, 23, 24, 24, 24, 24, 90, 24, 50, 2, 32, 29, - 29, 28, 29, 90, 25, 23, 24, 24, 24, 24, 24, 28, 29, 24, 25, 23, - 51, 25, 23, 24, 50, 51, 24, 28, 29, 89, 28, 10, 32, 46, 10, 32, - 24, 50, 51, 24, 24, 24, 24, 25, 23, 24, 50, 51, 50, 2, 51, 50, - 29, 24, 28, 29, 90, 24, 24, 50, 32, 29, 24, 24, 24, 24, 24, 24, - 51, 28, 10, 51, 24, 90, 90, 24, 25, 23, 24, 24, 24, 24, 90, 24, - 24, 25, 23, 24, 24, 24, 24, 24, 50, 51, 89, 24, 24, 24, 24, 24, - 24, 50, 32, 29, 28, 46, 29, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 24, 28, 10, 51, 25, 111, 45, 46, 46, 46, 29, 24, 24, 24, 24, 24, - 24, 50, 32, 29, 50, 2, 2, 2, 2, 2, 51, 24, 24, 24, 24, 24, - 24, 90, 50, 51, 90, 24, 89, 90, 24, 24, 24, 24, 24, 28, 29, 24, - 24, 90, 24, 24, 24, 24, 24, 24, 28, 29, 24, 24, 28, 47, 45, 29, - 24, 90, 24, 89, 24, 89, 28, 29, 25, 45, 29, 28, 10, 3, 1, 51], + "data":[114, 115, 111, 111, 114, 114, 115, 114, 111, 111, 111, 115, 115, 114, 111, 115, + 111, 115, 115, 114, 114, 114, 112, 111, 111, 115, 111, 115, 114, 114, 111, 114, + 114, 111, 111, 111, 115, 115, 115, 115, 115, 111, 114, 114, 111, 111, 111, 111, + 111, 111, 111, 111, 115, 115, 115, 111, 111, 111, 111, 114, 115, 114, 114, 115, + 111, 111, 111, 115, 111, 114, 111, 114, 115, 113, 114, 111, 111, 111, 111, 115, + 112, 115, 111, 115, 114, 111, 111, 115, 111, 112, 111, 111, 111, 111, 114, 114, + 111, 111, 111, 111, 115, 111, 114, 111, 115, 113, 111, 114, 111, 111, 115, 115, + 112, 111, 114, 115, 115, 111, 111, 113, 111, 114, 111, 115, 111, 114, 115, 111, + 114, 114, 115, 115, 111, 114, 111, 111, 115, 111, 115, 114, 111, 111, 111, 111, + 111, 111, 111, 111, 114, 115, 111, 115, 111, 111, 115, 114, 111, 115, 115, 115, + 111, 111, 115, 114, 115, 115, 111, 114, 114, 114, 114, 111, 114, 111, 115, 115, + 111, 111, 111, 111, 111, 111, 114, 115, 115, 114, 111, 115, 111, 115, 114, 111, + 111, 111, 115, 111, 111, 114, 114, 111, 112, 115, 115, 113, 114, 111, 111, 111, + 115, 111, 113, 111, 111, 114, 115, 114, 111, 115, 115, 115, 111, 111, 115, 115, + 114, 111, 111, 111, 111, 114, 111, 115, 115, 111, 115, 111, 111, 114, 114, 115, + 111, 113, 111, 114, 115, 114, 115, 114, 111, 114, 115, 115, 111, 115, 111, 111], "height":16, "width":16, "x":64, "y":80 }, { - "data":[90, 25, 45, 47, 23, 89, 24, 24, 24, 89, 24, 24, 28, 46, 29, 24, - 24, 50, 2, 2, 51, 24, 28, 29, 24, 24, 24, 24, 50, 3, 23, 24, - 24, 90, 24, 24, 24, 28, 10, 51, 24, 89, 28, 46, 29, 25, 45, 46, - 24, 24, 28, 29, 24, 50, 32, 29, 28, 29, 50, 3, 23, 50, 2, 3, - 24, 24, 25, 23, 24, 28, 47, 23, 25, 23, 24, 50, 51, 24, 24, 50, - 46, 29, 25, 23, 24, 25, 115, 23, 50, 32, 29, 24, 24, 24, 24, 24, - 2, 51, 50, 51, 24, 50, 3, 45, 29, 50, 51, 24, 24, 24, 90, 24, - 24, 24, 24, 90, 90, 24, 50, 2, 32, 46, 46, 29, 28, 29, 90, 24, - 24, 24, 24, 24, 24, 28, 46, 29, 50, 2, 2, 32, 47, 23, 89, 24, - 28, 29, 28, 29, 24, 50, 3, 23, 24, 24, 89, 50, 3, 45, 29, 24, - 25, 23, 50, 32, 29, 90, 50, 51, 24, 24, 89, 24, 50, 3, 23, 24, - 50, 51, 89, 50, 51, 24, 24, 24, 90, 24, 24, 24, 24, 50, 51, 24, - 24, 89, 28, 29, 24, 24, 24, 24, 28, 29, 24, 24, 90, 89, 24, 28, - 28, 29, 50, 51, 89, 24, 28, 46, 10, 32, 46, 29, 90, 24, 24, 25, - 25, 23, 90, 89, 24, 90, 50, 2, 32, 10, 3, 45, 46, 46, 46, 47, - 50, 32, 46, 29, 24, 24, 24, 90, 25, 23, 50, 2, 3, 111, 1, 3], + "data":[111, 111, 111, 111, 111, 114, 111, 114, 114, 114, 115, 115, 111, 111, 114, 113, + 111, 111, 114, 114, 111, 115, 114, 115, 111, 111, 115, 114, 111, 114, 114, 115, + 115, 111, 115, 114, 112, 115, 115, 111, 111, 111, 111, 114, 111, 1, 2, 2, + 111, 114, 114, 114, 115, 115, 111, 111, 114, 111, 115, 1, 2, 51, 28, 46, + 114, 111, 114, 111, 111, 111, 114, 111, 111, 114, 111, 45, 46, 46, 47, 115, + 115, 115, 111, 115, 115, 111, 111, 113, 115, 115, 114, 111, 115, 111, 111, 111, + 111, 115, 114, 111, 111, 111, 111, 114, 115, 115, 111, 115, 114, 115, 111, 111, + 111, 115, 111, 111, 114, 111, 111, 114, 111, 111, 111, 111, 114, 111, 111, 111, + 111, 111, 115, 114, 111, 111, 111, 111, 114, 112, 112, 115, 114, 111, 114, 111, + 115, 111, 111, 115, 114, 115, 111, 113, 114, 115, 115, 111, 112, 115, 114, 111, + 114, 114, 114, 114, 111, 111, 111, 115, 111, 111, 115, 111, 115, 115, 114, 111, + 115, 115, 114, 111, 114, 111, 111, 111, 111, 114, 114, 114, 113, 111, 115, 115, + 115, 111, 115, 111, 115, 114, 114, 111, 111, 115, 114, 114, 111, 111, 114, 111, + 114, 114, 111, 115, 111, 111, 111, 114, 111, 114, 115, 111, 113, 114, 111, 115, + 115, 111, 115, 114, 111, 115, 111, 115, 111, 111, 115, 111, 111, 111, 115, 114, + 111, 114, 111, 115, 111, 115, 115, 113, 114, 114, 115, 115, 114, 114, 114, 111], "height":16, "width":16, "x":80, "y":80 }, { - "data":[24, 50, 51, 50, 32, 46, 10, 3, 1, 32, 46, 29, 24, 24, 50, 32, - 24, 24, 24, 24, 25, 1, 51, 50, 51, 25, 1, 51, 28, 29, 24, 50, - 46, 29, 24, 89, 50, 51, 24, 28, 29, 50, 32, 29, 50, 32, 29, 28, - 1, 32, 29, 89, 24, 28, 46, 10, 51, 24, 25, 23, 24, 50, 51, 50, - 51, 50, 32, 29, 24, 50, 2, 51, 90, 24, 50, 51, 89, 90, 24, 24, - 24, 24, 50, 51, 24, 28, 29, 24, 24, 24, 24, 24, 90, 24, 24, 24, - 24, 24, 90, 24, 89, 50, 51, 24, 24, 24, 28, 29, 24, 24, 24, 24, - 24, 28, 46, 29, 24, 24, 89, 24, 24, 24, 50, 51, 24, 24, 24, 90, - 24, 25, 111, 23, 24, 89, 28, 29, 24, 24, 28, 29, 24, 24, 24, 28, - 24, 50, 2, 51, 24, 89, 50, 51, 90, 24, 50, 32, 46, 46, 46, 47, - 24, 89, 24, 24, 24, 24, 24, 24, 24, 90, 24, 25, 115, 114, 114, 111, - 24, 24, 24, 24, 24, 24, 89, 24, 24, 24, 24, 25, 114, 1, 2, 3, - 46, 29, 28, 29, 28, 29, 28, 46, 29, 24, 90, 50, 2, 51, 24, 50, - 1, 51, 25, 23, 50, 51, 50, 2, 32, 29, 90, 89, 90, 89, 24, 24, - 23, 24, 50, 51, 28, 46, 29, 24, 50, 51, 24, 24, 89, 24, 90, 89, - 23, 24, 24, 24, 50, 2, 51, 24, 24, 24, 24, 24, 90, 24, 24, 24], + "data":[111, 114, 111, 1, 2, 2, 2, 51, 24, 24, 24, 25, 114, 111, 111, 111, + 1, 2, 2, 51, 24, 24, 90, 24, 24, 24, 24, 50, 3, 111, 114, 111, + 51, 28, 46, 46, 46, 46, 46, 46, 46, 29, 24, 24, 25, 114, 114, 111, + 46, 47, 115, 111, 114, 115, 111, 111, 111, 45, 29, 24, 25, 114, 114, 114, + 115, 112, 111, 115, 111, 111, 112, 115, 111, 111, 23, 24, 25, 111, 111, 111, + 115, 111, 114, 111, 114, 111, 115, 115, 111, 111, 23, 24, 50, 3, 111, 111, + 115, 114, 114, 111, 111, 111, 115, 114, 111, 114, 23, 24, 24, 25, 111, 111, + 111, 112, 111, 114, 114, 115, 111, 111, 111, 115, 45, 29, 24, 25, 111, 111, + 114, 111, 111, 114, 115, 111, 112, 115, 111, 115, 111, 23, 90, 50, 3, 114, + 115, 115, 114, 114, 115, 111, 111, 111, 111, 111, 114, 23, 90, 24, 25, 115, + 111, 111, 114, 115, 111, 115, 115, 113, 111, 111, 111, 45, 29, 24, 25, 114, + 115, 113, 111, 112, 115, 114, 114, 111, 114, 111, 111, 114, 23, 89, 25, 115, + 114, 111, 115, 114, 111, 111, 115, 111, 111, 114, 115, 111, 45, 46, 47, 114, + 115, 111, 111, 114, 111, 115, 114, 114, 112, 111, 111, 111, 114, 111, 111, 111, + 111, 114, 115, 111, 115, 114, 111, 114, 111, 112, 114, 114, 111, 115, 111, 111, + 111, 111, 111, 114, 111, 111, 111, 111, 115, 111, 114, 114, 113, 111, 111, 111], "height":16, "width":16, "x":96, "y":80 }, { - "data":[29, 24, 50, 51, 24, 24, 24, 24, 28, 29, 24, 89, 28, 46, 29, 28, - 51, 24, 24, 24, 24, 90, 24, 28, 10, 51, 24, 24, 50, 3, 45, 10, - 29, 24, 28, 29, 24, 24, 28, 10, 32, 46, 29, 24, 24, 25, 1, 51, - 32, 46, 10, 32, 46, 46, 10, 51, 50, 3, 45, 29, 24, 25, 45, 29, - 50, 2, 51, 25, 1, 2, 32, 46, 46, 47, 1, 32, 46, 47, 115, 23, - 90, 24, 24, 50, 32, 46, 10, 2, 3, 112, 45, 10, 2, 2, 2, 32, - 24, 24, 24, 24, 50, 2, 32, 46, 10, 2, 2, 51, 28, 29, 24, 50, - 24, 24, 89, 24, 24, 24, 25, 111, 23, 24, 24, 24, 25, 23, 28, 29, - 29, 24, 89, 89, 24, 24, 25, 111, 23, 24, 28, 29, 50, 51, 25, 23, - 23, 24, 89, 24, 24, 24, 25, 111, 23, 24, 25, 23, 28, 29, 25, 23, - 23, 24, 24, 24, 24, 24, 25, 111, 45, 46, 10, 51, 50, 51, 50, 51, - 23, 24, 24, 24, 24, 24, 50, 3, 115, 115, 23, 89, 24, 24, 90, 28, - 51, 24, 24, 24, 24, 24, 90, 25, 1, 2, 51, 89, 24, 89, 24, 25, - 24, 24, 24, 24, 24, 24, 24, 50, 32, 29, 24, 24, 24, 24, 24, 50, - 24, 24, 90, 90, 24, 24, 28, 46, 47, 23, 28, 29, 28, 46, 29, 24, - 24, 24, 24, 24, 24, 24, 25, 111, 1, 51, 50, 51, 50, 2, 51, 24], + "data":[111, 113, 111, 115, 114, 111, 113, 111, 113, 115, 114, 114, 111, 111, 114, 114, + 114, 111, 115, 114, 111, 114, 112, 114, 115, 114, 113, 111, 111, 111, 111, 111, + 111, 115, 111, 111, 115, 115, 114, 115, 114, 111, 111, 115, 115, 111, 111, 112, + 115, 111, 114, 111, 115, 115, 111, 114, 111, 111, 113, 115, 111, 114, 111, 111, + 115, 111, 115, 114, 111, 111, 111, 115, 115, 114, 115, 115, 114, 115, 111, 111, + 111, 114, 111, 115, 114, 115, 114, 111, 111, 115, 111, 114, 114, 115, 111, 114, + 115, 111, 114, 111, 111, 114, 111, 111, 114, 114, 115, 111, 111, 111, 111, 111, + 111, 114, 111, 111, 111, 115, 111, 115, 111, 111, 115, 115, 114, 115, 111, 111, + 115, 111, 113, 111, 115, 111, 114, 113, 114, 111, 112, 115, 115, 115, 111, 114, + 114, 111, 111, 114, 111, 111, 115, 114, 114, 112, 114, 111, 111, 114, 114, 114, + 111, 111, 111, 115, 112, 111, 111, 114, 111, 115, 114, 114, 114, 115, 115, 114, + 114, 113, 115, 113, 114, 115, 111, 111, 114, 114, 115, 114, 111, 115, 111, 114, + 115, 115, 111, 114, 111, 115, 111, 114, 115, 114, 111, 115, 111, 115, 111, 115, + 111, 111, 111, 115, 114, 115, 111, 111, 113, 111, 111, 111, 114, 115, 115, 111, + 111, 111, 114, 115, 111, 114, 115, 115, 112, 113, 111, 115, 111, 111, 111, 115, + 111, 115, 115, 111, 111, 111, 111, 114, 111, 114, 111, 111, 111, 115, 111, 115], "height":16, "width":16, "x":112, @@ -1067,11 +1729,11 @@ "id":1, "name":"Tiles", "opacity":1, - "startx":0, + "startx":-80, "starty":0, "type":"tilelayer", "visible":true, - "width":128, + "width":208, "x":0, "y":0 }, @@ -1083,10 +1745,98 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1149, 0, 0, 0, 0, 0, 0, + 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1314, 1315, + 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1338, 1339, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 895, 896, 0, 0, 0, 1362, 1363, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 919, 920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1074, 1075, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1098, 1099, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1122, 1123, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, 0, 1073, 1074, 0, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":0 + }, + { + "data":[0, 0, 0, 0, 895, 896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 919, 920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1364, 0, 0, 0, 0, 0, 0, 0, 931, 932, 933, 934, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1134, 1135, 0, 955, 956, 957, 958, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1158, 1159, 0, 979, 980, 981, 982, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1073, 1074, 0, 0, 0, 0, 755, 756, 757, 758, 0, 0, 0, 0, 0, + 0, 1097, 1098, 0, 0, 0, 0, 775, 776, 777, 778, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 795, 796, 797, 798, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":0 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 947, 948, 949, 950, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 971, 972, 973, 974, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 995, 996, 997, 998, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1146, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1208, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":0 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1182, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 897, 898, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 921, 922, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":0 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1102,20 +1852,20 @@ { "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1116, 1117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1182, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1074, 1075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "height":16, "width":16, "x":16, @@ -1126,7 +1876,7 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1134,7 +1884,7 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -1150,15 +1900,15 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1018, 1019, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1042, 1043, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1084, 1085, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 573, 574, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593, 594, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 613, 614, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639, 640, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 659, 660, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679, 680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "height":16, "width":16, @@ -1172,16 +1922,16 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 1075, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 1099, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1122, 1123, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 575, 576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 595, 596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 615, 616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 641, 642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 661, 662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 681, 682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "height":16, "width":16, "x":64, @@ -1198,8 +1948,8 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1116, 1117, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1182, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1211,18 +1961,18 @@ }, { "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 650, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 670, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 716, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 584, 585, 586, 0, 0, 1098, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 604, 605, 606, 0, 0, 1122, - 0, 0, 0, 0, 0, 650, 651, 652, 0, 0, 624, 625, 626, 0, 0, 0, - 0, 0, 0, 0, 0, 670, 671, 672, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 650, 651, 652, 0, 0, 1164, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 670, 671, 672, 0, 0, 1188, + 0, 0, 0, 0, 0, 716, 717, 718, 0, 0, 690, 691, 692, 0, 0, 0, + 0, 0, 0, 0, 0, 736, 737, 738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1143, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -1233,14 +1983,14 @@ }, { "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 651, 652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 671, 672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 717, 718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 737, 738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1044, 0, 0, + 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1255,7 +2005,1652 @@ }, { "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 895, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-80, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1097, 1098, 0, 0, 0, + 896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 920, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 647, 648, 649, 0, 0, 0, 0, 0, 897, 898, 0, 0, 0, 0, 0, 0, + 667, 668, 669, 0, 0, 0, 0, 0, 921, 922, 0, 0, 0, 0, 0, 0, + 687, 688, 689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 815, 816, 817, 818, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 835, 836, 837, 838, 0, 0, 0, 0, 0, + 0, 0, 895, 896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 919, 920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 895, 896, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 919, 920, 0, + 0, 0, 0, 1208, 0, 0, 0, 0, 0, 0, 1084, 1085, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1108, 1109, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1149, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1228, 0, 0, 0, 0, 0, + 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 1252, 0, 0, 0, 0, 0, + 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1125, + 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":16 + }, + + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1073, 1074, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1097, 1098, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 931, 932, 933, 934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 955, 956, 957, 958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":0, + "y":16 + }, + { + "data":[0, 1164, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1188, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1158, 1159, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":16, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":32, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1084, 1085, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1108, 1109, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":48, + "y":16 + }, + { + "data":[0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1084, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":64, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 716, 717, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 736, 737, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":80, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1136, 1137, 1138, 1139, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1160, 1161, 1162, 1163, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1184, 1185, 1186, 1187, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":96, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1110, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 643, 644, 645, 646, 0, 1110, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 663, 664, 665, 666, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 683, 684, 685, 686, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":112, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 895, 896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 919, 920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 931, 932, 933, 934, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 955, 956, 957, 958, 0, 0, 0, 1208, + 0, 0, 0, 0, 0, 0, 0, 0, 979, 980, 981, 982, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":32 + }, + { + "data":[0, 1314, 1315, 1316, 0, 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, + 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, + 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1203, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1077, 1078, 0, 0, 0, 0, 0, 895, 896, 0, 0, + 0, 0, 1125, 0, 0, 1101, 1102, 0, 0, 0, 0, 0, 919, 920, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 1105, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1077, 1078, 0, 0, 0, 0, 0, 0, + 1182, 1183, 0, 0, 0, 0, 0, 0, 1101, 1102, 0, 0, 0, 0, 0, 0, + 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1077, 1078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1101, 1102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":32 + }, + { + "data":[0, 979, 980, 981, 982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1227, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1251, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1182, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1011, 1012, 1013, 1014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1035, 1036, 1037, 1038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1059, 1060, 1061, 1062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 1189, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1182, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":0, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":16, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1084, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":32, + "y":32 + }, + + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1084, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":48, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1164, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1188, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, 0, 0, 1182, 1183, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1206, 1207, 0, 0], + "height":16, + "width":16, + "x":64, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1084, + 0, 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1108, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1182, 1183, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":80, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, 1134], + "height":16, + "width":16, + "x":96, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1208, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1110, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":112, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1228, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1252, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1122, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1125, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 1136, 1137, 1138, 1139, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1160, 1161, 1162, 1163, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1184, 1185, 1186, 1187, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 716, 717, 718, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 736, 737, 738, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1077, 1078, 0, 1126, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1101, 1102, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 879, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 903, + 1209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1077, 1078, 0, 1084, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1101, 1102, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1077, 1078, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1101, 1102, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":48 + }, + { + "data":[880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 1209, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1077, 1078, 0, 0, 0, 1158, 1159, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1101, 1102, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":48 + }, + { + "data":[0, 0, 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":0, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 647, 648, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 667, 668, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 688, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":16, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 650, 651, 652, 0, 0, 0, 643, 644, 645, 646, 0, 0, 0, 0, 0, + 0, 670, 671, 672, 0, 0, 0, 663, 664, 665, 666, 0, 0, 0, 0, 0, + 0, 690, 691, 692, 0, 0, 0, 683, 684, 685, 686, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639, 640, 641, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 659, 660, 661, + 649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679, 680, 681, + 669, 0, 0, 0, 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, + 689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":32, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1136, 1137, 1138, 1139, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1160, 1161, 1162, 1163, 0, 0, 0, 0, 0, + 642, 0, 0, 0, 0, 0, 0, 1184, 1185, 1186, 1187, 0, 0, 0, 0, 0, + 662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1158, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":48, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 716, 717, 718, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":64, + "y":48 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1158, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 1012, 1013, 1014, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1035, 1036, 1037, 1038, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1059, 1060, 1061, 1062, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1210, 0, 0, 0, 1136, 1137, 1138, 1139, 0, 0, 0], + "height":16, + "width":16, + "x":96, + "y":48 + }, + { + "data":[1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1110, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 647, 648, 649, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 667, 668, 669, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 688, 689, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":112, + "y":48 + }, + + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 897, 898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 921, 922, 0, 0, 0, 0, 1208, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1125, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, 0, 879, 880, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 903, 904, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1149, 0, 0, 0, 1077, 1078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1101, 1102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1077, 1078, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1124, 0, 0, 0, 1101, 1102, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1203, + 0, 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, + 0, 0, 0, 1182, 1183, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, + 0, 0, 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 931, 932, 933, 934, 0, + 879, 880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 955, 956, 957, 958, 0, + 903, 904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 979, 980, 981, 982, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1208, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 895, 896, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1120, 0, 0, 919, 920, 0, 0, 0, 0, + 0, 0, 999, 1000, 1001, 1002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1011, 1012, 1013, 1014, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, + 0, 0, 1035, 1036, 1037, 1038, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, + 0, 0, 1059, 1060, 1061, 1062, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 639, 640, 641, 642, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 659, 660, 661, 662, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 679, 680, 681, 682, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1084, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":0, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":16, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1158, 1159, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 1012, 1013, 1014, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1035, 1036, 1037, 1038, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1059, 1060, 1061, 1062, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":32, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1084, 1085, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1108, 1109, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":48, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 736, 737, 738, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 647, 648, 649, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 667, 668, 669, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 688, 689, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":64, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1182, 1183, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1206, 1207, 0, 0], + "height":16, + "width":16, + "x":80, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 1160, 1161, 1162, 1163, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1184, 1185, 1186, 1187, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1164, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1188, 1189, 0, 0, 0, 0, 0, 0, 0, 1210, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":96, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1134, 1135, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1110, 0, 1158, 1159, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":112, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 771, 772, + 0, 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 791, 792, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 811, 812, + 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 831, 832, + 0, 0, 0, 1164, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 851, 852, + 0, 0, 0, 1188, 1189, 0, 0, 0, 0, 1124, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1124, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 773, 774, 0, 0, 0, 0, 0, 0, 0, 0, 643, 644, 645, 646, 0, 0, + 793, 794, 0, 0, 0, 0, 0, 0, 0, 0, 663, 664, 665, 666, 0, 0, + 813, 814, 0, 0, 0, 0, 0, 0, 0, 0, 683, 684, 685, 686, 0, 0, + 833, 834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 853, 854, 0, 0, 0, 0, 0, 0, 1208, 0, 0, 0, 0, 0, 0, 1126, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 999, 1000, 1001, 1002, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1023, 1024, 1025, 1026, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1047, 1048, 1049, 1050, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 931, 932, 933, 934, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 955, 956, 957, 958, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 979, 980, 981, 982, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":80 + }, + { + "data":[0, 0, 1023, 1024, 1025, 1026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1047, 1048, 1049, 1050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1124, 0, 0, 1209, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1073, 1074, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1097, 1098, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1136, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1160, + 0, 0, 0, 0, 0, 0, 0, 879, 880, 0, 0, 0, 0, 0, 0, 1184, + 0, 0, 0, 0, 0, 0, 0, 903, 904, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":80 + }, + { + "data":[0, 0, 0, 0, 897, 898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 921, 922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1203, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1314, 1315, 1316, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1137, 1138, 1139, 0, 1338, 1339, 1340, 0, 0, 0, 0, 0, 1208, 0, 0, 0, + 1161, 1162, 1163, 0, 1362, 1363, 1364, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1185, 1186, 1187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":80 + }, + + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 650, 651, 652, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 670, 671, 672, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 690, 691, 692, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1084, 1085, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":0, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":16, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 663, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 683, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1084, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1108, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":32, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 644, 645, 646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 664, 665, 666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 684, 685, 686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":48, + "y":80 + }, + { + "data":[1164, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1188, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 1188, 1189, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":64, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1182, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1206, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":80, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1182, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":96, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1164, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1188, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 650, 651, 652, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, + 0, 0, 670, 671, 672, 0, 0, 0, 0, 0, 0, 1164, 1165, 0, 0, 0, + 0, 0, 690, 691, 692, 0, 0, 0, 0, 0, 0, 1188, 1189, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":112, + "y":80 + }], + "height":96, + "id":5, + "name":"Collidable", + "opacity":1, + "startx":-80, + "starty":0, + "type":"tilelayer", + "visible":true, + "width":208, + "x":0, + "y":0 + }, + { + "chunks":[ + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1203, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":0 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1148, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1123, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":0 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":0 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1227, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1251, 0, 0, 1391, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1203, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 1143, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":16 + }, + { + "data":[0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1123, 0, 0, 0, 0, 0, 0, 0, + 1203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":16 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1391, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":64, + "y":32 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-32, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-16, + "y":64 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-64, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 1228, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1252, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "height":16, + "width":16, + "x":-48, + "y":80 + }, + { + "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1269,33 +3664,12 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":0, - "y":16 - }, - { - "data":[0, 1098, 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1122, 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1068, 1069, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1092, 1093, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "height":16, "width":16, - "x":16, - "y":16 + "x":-16, + "y":80 }, { "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1304,316 +3678,7 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":32, - "y":16 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1018, 1019, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1042, 1043, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":48, - "y":16 - }, - { - "data":[0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1018, 1019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1042, 1043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":64, - "y":16 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 1075, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 1099, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1122, 1123, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 650, 651, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 670, 671, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":80, - "y":16 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1143, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1070, 1071, 1072, 1073, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1094, 1095, 1096, 1097, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1118, 1119, 1120, 1121, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":96, - "y":16 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1044, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 578, 579, 580, 0, 1044, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 597, 598, 599, 600, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 617, 618, 619, 620, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":112, - "y":16 - }, - - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 945, 946, 947, 948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 969, 970, 971, 972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 993, 994, 995, 996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 1075, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 1099, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1122, 1123, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1116, 1117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":0, - "y":32 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":16, - "y":32 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1018, 1019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1042, 1043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1143, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":32, - "y":32 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1018, 1019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1042, 1043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":48, - "y":32 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1074, 1075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1098, 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1122, 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1143, 0, 0, 0, 0, 0, 0, 0, 1116, 1117, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0], - "height":16, - "width":16, - "x":64, - "y":32 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1018, - 0, 0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1042, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1116, 1117, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":80, - "y":32 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 1075, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 1099, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1122, 1123, 0, 0, 0, 1068], - "height":16, - "width":16, - "x":96, - "y":32 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1142, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1044, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":112, - "y":32 - }, - { - "data":[0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1626,502 +3691,17 @@ "height":16, "width":16, "x":0, - "y":48 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 582, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 601, 602, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 621, 622, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":16, - "y":48 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 584, 585, 586, 0, 0, 0, 577, 578, 579, 580, 0, 0, 0, 0, 0, - 0, 604, 605, 606, 0, 0, 0, 597, 598, 599, 600, 0, 0, 0, 0, 0, - 0, 624, 625, 626, 0, 0, 0, 617, 618, 619, 620, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 573, 574, 575, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593, 594, 595, - 583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 613, 614, 615, - 603, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, - 623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":32, - "y":48 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1070, 1071, 1072, 1073, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1094, 1095, 1096, 1097, 0, 0, 0, 0, 0, - 576, 0, 0, 0, 0, 0, 0, 1118, 1119, 1120, 1121, 0, 0, 0, 0, 0, - 596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":48, - "y":48 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 650, 651, 652, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":64, - "y":48 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1092, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 945, 946, 947, 948, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 969, 970, 971, 972, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 993, 994, 995, 996, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1144, 0, 0, 0, 1070, 1071, 1072, 1073, 0, 0, 0], - "height":16, - "width":16, - "x":96, - "y":48 - }, - { - "data":[1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1044, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 582, 583, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 601, 602, 603, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 621, 622, 623, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":112, - "y":48 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1143, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1018, 1019, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1042, 1043, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":0, - "y":64 - }, - - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1143, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 1075, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 1099, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1122, 1123, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":16, - "y":64 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1068, 1069, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1092, 1093, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 945, 946, 947, 948, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 969, 970, 971, 972, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 993, 994, 995, 996, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":32, - "y":64 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1018, 1019, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1042, 1043, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":48, - "y":64 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 670, 671, 672, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 582, 583, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 601, 602, 603, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 621, 622, 623, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1074, 1075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":64, - "y":64 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1116, 1117, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0], - "height":16, - "width":16, - "x":80, - "y":64 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 1094, 1095, 1096, 1097, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1118, 1119, 1120, 1121, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1074, 1075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1098, 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1122, 1123, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":96, - "y":64 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1044, 0, 1092, 1093, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":112, - "y":64 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 584, 585, 586, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 604, 605, 606, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 624, 625, 626, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1018, 1019, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1042, 1043, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":0, - "y":80 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":16, - "y":80 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 597, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 617, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1018, 1019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1042, 1043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":32, - "y":80 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 578, 579, 580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 598, 599, 600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 618, 619, 620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":48, - "y":80 - }, - { - "data":[1098, 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1122, 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 1075, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 1099, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1074, 1075, 0, 1122, 1123, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1098, 1099, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1122, 1123, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":64, - "y":80 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1116, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":80, - "y":80 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1116, 1117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":96, - "y":80 - }, - { - "data":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1074, 1075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1098, 1099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1122, 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 584, 585, 586, 0, 0, 0, 0, 0, 0, 1074, 1075, 0, 0, 0, - 0, 0, 604, 605, 606, 0, 0, 0, 0, 0, 0, 1098, 1099, 0, 0, 0, - 0, 0, 624, 625, 626, 0, 0, 0, 0, 0, 0, 1122, 1123, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "height":16, - "width":16, - "x":112, "y":80 }], - "height":144, - "id":5, - "name":"Collidable", + "height":96, + "id":6, + "name":"Decorative", "opacity":1, - "startx":-16, - "starty":-16, + "startx":-64, + "starty":0, "type":"tilelayer", "visible":true, - "width":208, + "width":144, "x":0, "y":0 }, @@ -2129,7 +3709,576 @@ "draworder":"topdown", "id":3, "name":"Collectables", - "objects":[], + "objects":[ + { + "id":10, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-544, + "y":432 + }, + { + "id":11, + "template":"..\/Templates\/Collectables\/BottleOfWater.tj", + "x":-944, + "y":400 + }, + { + "id":12, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":-592.666666666667, + "y":209 + }, + { + "id":13, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":-334.666666666667, + "y":547.333333333333 + }, + { + "id":14, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":-672, + "y":208 + }, + { + "id":15, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":-63.3333333333333, + "y":1280.33333333333 + }, + { + "id":16, + "template":"..\/Templates\/Collectables\/BottleOfWater.tj", + "x":-754, + "y":1408.66666666667 + }, + { + "id":17, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-653.333333333333, + "y":1238 + }, + { + "id":18, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-814, + "y":1216.66666666667 + }, + { + "id":19, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":-558.666666666667, + "y":1375.33333333333 + }, + { + "id":20, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":-957.333333333333, + "y":1440.66666666667 + }, + { + "id":21, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-272, + "y":1105 + }, + { + "id":22, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":-848.333333333333, + "y":750.666666666667 + }, + { + "id":23, + "template":"..\/Templates\/Collectables\/PureBottleOfWater.tj", + "x":688.666666666667, + "y":812.666666666667 + }, + { + "id":24, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":722, + "y":1025.33333333333 + }, + { + "id":25, + "template":"..\/Templates\/Collectables\/Steel.tj", + "x":707.166666666667, + "y":1104.33333333333 + }, + + { + "id":26, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":563.333333333333, + "y":614 + }, + { + "id":27, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":573.333333333333, + "y":736.666666666667 + }, + { + "id":28, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":876, + "y":621.333333333333 + }, + { + "id":29, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":513, + "y":1024 + }, + { + "id":30, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":81, + "y":656.5 + }, + { + "id":31, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":258, + "y":738 + }, + { + "id":32, + "template":"..\/Templates\/Collectables\/Steel.tj", + "x":81.5, + "y":752 + }, + { + "id":33, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":260, + "y":1060.5 + }, + { + "id":34, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":61.5, + "y":1253.83333333333 + }, + { + "id":35, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":145, + "y":1455.5 + }, + { + "id":36, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":193, + "y":1439.5 + }, + { + "id":37, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":192.5, + "y":1423.75 + }, + { + "id":38, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":-128.333333333333, + "y":1264.66666666667 + }, + { + "id":39, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":-222.333333333333, + "y":1187.33333333333 + }, + { + "id":40, + "template":"..\/Templates\/Collectables\/Steel.tj", + "x":-655.333333333333, + "y":1007 + }, + { + "id":42, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-494.333333333333, + "y":880.666666666667 + }, + + { + "id":43, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-287, + "y":930 + }, + { + "id":44, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-159, + "y":864.5 + }, + { + "id":46, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":-528, + "y":625.333333333333 + }, + { + "id":47, + "template":"..\/Templates\/Collectables\/Steel.tj", + "x":331, + "y":50 + }, + { + "id":48, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":149, + "y":175 + }, + { + "id":49, + "template":"..\/Templates\/Collectables\/BottleOfWater.tj", + "x":1057, + "y":225 + }, + { + "id":50, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":976.5, + "y":239 + }, + { + "id":51, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":816.5, + "y":1440.5 + }, + { + "id":52, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":817, + "y":1408 + }, + { + "id":53, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":611.5, + "y":1521 + }, + { + "id":56, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":462.5, + "y":1009 + }, + { + "id":57, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":542.5, + "y":1184 + }, + { + "id":58, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":307.333333333333, + "y":182 + }, + { + "id":59, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":634, + "y":240 + }, + { + "id":61, + "template":"..\/Templates\/Collectables\/BottleOfWater.tj", + "x":308, + "y":270 + }, + { + "id":62, + "template":"..\/Templates\/Collectables\/PureBottleOfWater.tj", + "x":1248.25, + "y":560.25 + }, + + { + "id":63, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1265.25, + "y":592.25 + }, + { + "id":64, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1249, + "y":528 + }, + { + "id":65, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":1153, + "y":1088.33333333333 + }, + { + "id":66, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":1265, + "y":1104.66666666667 + }, + { + "id":67, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1202.66666666667, + "y":1218 + }, + { + "id":68, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1233, + "y":1136.66666666667 + }, + { + "id":69, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":990.666666666667, + "y":910 + }, + { + "id":70, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":896, + "y":995.333333333333 + }, + { + "id":71, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":1009.66666666667, + "y":177.333333333333 + }, + { + "id":72, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1889, + "y":1473.66666666667 + }, + { + "id":73, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1888.33333333333, + "y":1508 + }, + { + "id":74, + "template":"..\/Templates\/Collectables\/Steel.tj", + "x":1779.5, + "y":1521.5 + }, + { + "id":75, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1783, + "y":1409 + }, + { + "id":76, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1800.5, + "y":1443.5 + }, + { + "id":77, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1839.5, + "y":1458.5 + }, + { + "id":78, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1217.83333333333, + "y":1440.16666666667 + }, + + { + "id":81, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":913, + "y":1205 + }, + { + "id":82, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1026, + "y":1349 + }, + { + "id":83, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":366.666666666667, + "y":1175.33333333333 + }, + { + "id":84, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":-0.5, + "y":944 + }, + { + "id":86, + "template":"..\/Templates\/Collectables\/BottleOfWater.tj", + "x":144.5, + "y":1134.5 + }, + { + "id":87, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":561.333333333333, + "y":400.666666666667 + }, + { + "id":88, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":416.666666666667, + "y":398 + }, + { + "id":89, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1552.5, + "y":511.25 + }, + { + "id":90, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":1745, + "y":96.25 + }, + { + "id":91, + "template":"..\/Templates\/Collectables\/Ammo.tj", + "x":1776.5, + "y":63.5 + }, + { + "id":92, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":1679.75, + "y":112 + }, + { + "id":93, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":1683.33333333333, + "y":445.333333333333 + }, + { + "id":94, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1602, + "y":177.333333333333 + }, + { + "id":95, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1794.66666666667, + "y":162 + }, + { + "id":96, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1263.5, + "y":816 + }, + { + "id":97, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1424, + "y":913.5 + }, + + { + "id":98, + "template":"..\/Templates\/Collectables\/Steel.tj", + "x":1441, + "y":1346.5 + }, + { + "id":99, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":1383.5, + "y":1380 + }, + { + "id":100, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1861, + "y":946 + }, + { + "id":101, + "template":"..\/Templates\/Collectables\/BottleOfWater.tj", + "x":2015.5, + "y":911.5 + }, + { + "id":102, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1971.5, + "y":977 + }, + { + "id":103, + "template":"..\/Templates\/Collectables\/PureBottleOfWater.tj", + "x":2000.90909090909, + "y":479.272727272727 + }, + { + "id":104, + "template":"..\/Templates\/Collectables\/PureBottleOfWater.tj", + "x":1984.36363636364, + "y":512.363636363636 + }, + { + "id":105, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1920, + "y":479.818181818182 + }, + { + "id":106, + "template":"..\/Templates\/Collectables\/Wood.tj", + "x":1920.36363636364, + "y":463.818181818182 + }, + { + "id":107, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":1920, + "y":415.818181818182 + }, + { + "id":108, + "template":"..\/Templates\/Collectables\/RottenFlesh.tj", + "x":1984.72727272727, + "y":432.363636363636 + }, + { + "id":109, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1634.5, + "y":1047.5 + }, + { + "id":110, + "template":"..\/Templates\/Collectables\/Peeble.tj", + "x":1554, + "y":1217 + }, + { + "id":201, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1056, + "y":289 + }], "opacity":1, "type":"objectgroup", "visible":true, @@ -2140,15 +4289,657 @@ "draworder":"topdown", "id":4, "name":"Enemies", - "objects":[], + "objects":[ + { + "id":111, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-687.666666666667, + "y":944.666666666667 + }, + { + "id":112, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-496.333333333333, + "y":976.333333333333 + }, + { + "id":113, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-800.666666666667, + "y":1281.33333333333 + }, + { + "id":114, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-767, + "y":1312 + }, + { + "id":115, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-832.666666666667, + "y":1327.66666666667 + }, + { + "id":116, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-527.333333333333, + "y":1180.33333333333 + }, + { + "id":117, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-416.333333333333, + "y":1216 + }, + { + "id":118, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-720.5, + "y":1442.5 + }, + { + "id":119, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-620, + "y":1394 + }, + { + "id":120, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-176.333333333333, + "y":1264 + }, + { + "id":121, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-95.6666666666667, + "y":1326.33333333333 + }, + { + "id":122, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-125.333333333333, + "y":1184.66666666667 + }, + { + "id":123, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":50.3333333333333, + "y":1424 + }, + { + "id":124, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":52.6666666666667, + "y":1343.33333333333 + }, + { + "id":125, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":165.333333333333, + "y":1312.33333333333 + }, + { + "id":126, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":145.333333333333, + "y":1374.66666666667 + }, + + { + "id":127, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-206.666666666667, + "y":864.333333333333 + }, + { + "id":128, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-32, + "y":944.333333333333 + }, + { + "id":129, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":137, + "y":685 + }, + { + "id":130, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-955.5, + "y":327 + }, + { + "id":131, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-665.333333333333, + "y":404.666666666667 + }, + { + "id":132, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-782.666666666667, + "y":252 + }, + { + "id":133, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-530, + "y":159.333333333333 + }, + { + "id":134, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-502, + "y":236.666666666667 + }, + { + "id":135, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-412, + "y":464.666666666667 + }, + { + "id":136, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":325.333333333333, + "y":860.666666666667 + }, + { + "id":137, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":379.333333333333, + "y":1001.33333333333 + }, + { + "id":138, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":483.333333333333, + "y":758.666666666667 + }, + { + "id":139, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":594.666666666667, + "y":889.333333333333 + }, + { + "id":140, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":466, + "y":1154.66666666667 + }, + { + "id":141, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":723.333333333333, + "y":1168.66666666667 + }, + { + "id":142, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":783.333333333333, + "y":1076 + }, + + { + "id":143, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":820, + "y":802.666666666667 + }, + { + "id":144, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":683.333333333333, + "y":726.666666666667 + }, + { + "id":145, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":588.666666666667, + "y":954 + }, + { + "id":146, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":837.333333333333, + "y":888.666666666667 + }, + { + "id":147, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":545.333333333333, + "y":1290 + }, + { + "id":148, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":172, + "y":1077.33333333333 + }, + { + "id":149, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":643.333333333333, + "y":1460.66666666667 + }, + { + "id":150, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":689.333333333333, + "y":1336 + }, + { + "id":151, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":722.666666666667, + "y":1396.66666666667 + }, + { + "id":152, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1112, + "y":1165 + }, + { + "id":153, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1231, + "y":1233 + }, + { + "id":154, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1376, + "y":1113 + }, + { + "id":155, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1033, + "y":965 + }, + { + "id":156, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1305, + "y":940 + }, + { + "id":157, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1151, + "y":884 + }, + { + "id":158, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1178.5, + "y":1223 + }, + + { + "id":159, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":954, + "y":1442 + }, + { + "id":160, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1133, + "y":1455 + }, + { + "id":161, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1301, + "y":1392 + }, + { + "id":162, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1459, + "y":1479 + }, + { + "id":163, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1401.5, + "y":1243.5 + }, + { + "id":164, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1669.5, + "y":1501 + }, + { + "id":165, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1667, + "y":1408 + }, + { + "id":166, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1822.5, + "y":1525.5 + }, + { + "id":167, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1928.5, + "y":1515 + }, + { + "id":168, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1926.5, + "y":1433 + }, + { + "id":169, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1843.5, + "y":1359 + }, + { + "id":170, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1740.5, + "y":1362 + }, + { + "id":171, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1760, + "y":1179.5 + }, + { + "id":172, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1659, + "y":1109 + }, + { + "id":173, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1781.5, + "y":973 + }, + { + "id":174, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1671.5, + "y":896 + }, + + { + "id":175, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1534, + "y":946.5 + }, + { + "id":176, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1599.5, + "y":673 + }, + { + "id":177, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1985.33333333333, + "y":930 + }, + { + "id":178, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1924, + "y":801.333333333333 + }, + { + "id":179, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1879.33333333333, + "y":523.333333333333 + }, + { + "id":180, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":2018.66666666667, + "y":566 + }, + { + "id":181, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1800.66666666667, + "y":436.666666666667 + }, + { + "id":182, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1717.33333333333, + "y":533.333333333333 + }, + { + "id":183, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1810, + "y":546.666666666667 + }, + { + "id":184, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1884.66666666667, + "y":416 + }, + { + "id":185, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1747.33333333333, + "y":477.333333333333 + }, + { + "id":186, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1998, + "y":339.333333333333 + }, + { + "id":187, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1916.66666666667, + "y":348.666666666667 + }, + { + "id":188, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1889.33333333333, + "y":694.666666666667 + }, + { + "id":189, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1716, + "y":700.666666666667 + }, + { + "id":190, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1554.66666666667, + "y":406 + }, + + { + "id":191, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1690.66666666667, + "y":338 + }, + { + "id":192, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1572, + "y":268 + }, + { + "id":193, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1808.66666666667, + "y":184 + }, + { + "id":194, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1586, + "y":95.3333333333333 + }, + { + "id":195, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1700.66666666667, + "y":45.3333333333333 + }, + { + "id":196, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1478.66666666667, + "y":160.666666666667 + }, + { + "id":197, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1681.33333333333, + "y":183.333333333333 + }, + { + "id":198, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1712, + "y":206.666666666667 + }, + { + "id":199, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":911.666666666667, + "y":235.666666666667 + }, + { + "id":200, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":978.666666666667, + "y":160.666666666667 + }, + { + "id":202, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":944.666666666667, + "y":303 + }, + { + "id":203, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1013, + "y":326 + }, + { + "id":204, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":698, + "y":454 + }, + { + "id":205, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":104, + "y":300 + }, + { + "id":206, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-134, + "y":130 + }, + { + "id":207, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-124, + "y":518 + }, + + { + "id":208, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-460, + "y":1506 + }, + { + "id":209, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":-122, + "y":1510 + }, + { + "id":210, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":80, + "y":838 + }, + { + "id":211, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":332, + "y":1270 + }, + { + "id":212, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":264, + "y":454 + }, + { + "id":213, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":450, + "y":566 + }, + { + "id":214, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1016, + "y":776 + }, + { + "id":215, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":884, + "y":660 + }, + { + "id":216, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":674, + "y":98 + }, + { + "id":217, + "template":"..\/Templates\/Enemies\/Zombie.tj", + "x":1502, + "y":780 + }], "opacity":1, "type":"objectgroup", "visible":true, "x":0, "y":0 }], - "nextlayerid":6, - "nextobjectid":1, + "nextlayerid":7, + "nextobjectid":218, "orientation":"orthogonal", "renderorder":"right-down", "tiledversion":"1.11.0", @@ -2159,12 +4950,20 @@ "source":"..\/TileSets\/TileSet 1.tsj" }, { - "firstgid":573, + "firstgid":639, "source":"..\/TileSets\/tileset 1 collision.tsj" }, { - "firstgid":813, + "firstgid":879, "source":"..\/TileSets\/TilesetNature.tsj" + }, + { + "firstgid":1383, + "source":"..\/TileSets\/IconSet.tsj" + }, + { + "firstgid":1391, + "source":"..\/TileSets\/bonfire.tsj" }], "tilewidth":16, "type":"map", diff --git a/ZoFo/Content/MapData/TileSets/IconSet.tsj b/ZoFo/Content/MapData/TileSets/IconSet.tsj index 186df25..3ec8f51 100644 --- a/ZoFo/Content/MapData/TileSets/IconSet.tsj +++ b/ZoFo/Content/MapData/TileSets/IconSet.tsj @@ -8,51 +8,57 @@ "margin":0, "name":"IconSet", "spacing":0, - "tilecount":7, + "tilecount":8, "tiledversion":"1.10.2", "tileheight":1200, "tiles":[ { "id":0, - "image":"..\/..\/Textures\/icons\/Collectables\/ammunition.png", + "image":"..\/..\/Textures\/icons\/Collectables\/Ammo.png", "imageheight":512, "imagewidth":512 }, { "id":1, - "image":"..\/..\/Textures\/icons\/Collectables\/Blue Potion.png", + "image":"..\/..\/Textures\/icons\/Collectables\/PureBottleOfWater.png", "imageheight":32, "imagewidth":32 }, { "id":2, - "image":"..\/..\/Textures\/icons\/Collectables\/Water Bottle.png", + "image":"..\/..\/Textures\/icons\/Collectables\/BottleOfWater.png", "imageheight":32, "imagewidth":32 }, { "id":3, - "image":"..\/..\/Textures\/icons\/Collectables\/Wood Log.png", + "image":"..\/..\/Textures\/icons\/Collectables\/Wood.png", "imageheight":32, "imagewidth":32 }, { "id":4, - "image":"..\/..\/Textures\/icons\/Collectables\/Silver Ingot.png", + "image":"..\/..\/Textures\/icons\/Collectables\/Steel.png", "imageheight":32, "imagewidth":32 }, { "id":5, - "image":"..\/..\/Textures\/icons\/Collectables\/Monster Meat.png", + "image":"..\/..\/Textures\/icons\/Collectables\/RottenFlesh.png", "imageheight":32, "imagewidth":32 }, { "id":6, - "image":"..\/..\/Textures\/icons\/Collectables\/Stone.png", + "image":"..\/..\/Textures\/icons\/Collectables\/Peeble.png", "imageheight":1200, "imagewidth":1200 + }, + { + "id":7, + "image":"..\/..\/Textures\/icons\/zombie_218153.png", + "imageheight":512, + "imagewidth":512 }], "tilewidth":1200, "type":"tileset", diff --git a/ZoFo/Content/MapData/TileSets/TileSet 1.tsj b/ZoFo/Content/MapData/TileSets/TileSet 1.tsj index 9e9f4b1..30268ce 100644 --- a/ZoFo/Content/MapData/TileSets/TileSet 1.tsj +++ b/ZoFo/Content/MapData/TileSets/TileSet 1.tsj @@ -8,13 +8,13 @@ "width":24 }, "image":"..\/..\/Textures\/TileSetImages\/TilesetFloor.png", - "imageheight":417, + "imageheight":464, "imagewidth":352, "margin":0, "name":"TileSet 1", "objectalignment":"topleft", "spacing":0, - "tilecount":572, + "tilecount":638, "tiledversion":"1.10.2", "tileheight":16, "tiles":[ @@ -2314,6 +2314,270 @@ { "id":571, "type":"Tile" + }, + { + "id":572, + "type":"Tile" + }, + { + "id":573, + "type":"Tile" + }, + { + "id":574, + "type":"Tile" + }, + { + "id":575, + "type":"Tile" + }, + { + "id":576, + "type":"Tile" + }, + { + "id":577, + "type":"Tile" + }, + { + "id":578, + "type":"Tile" + }, + { + "id":579, + "type":"Tile" + }, + { + "id":580, + "type":"Tile" + }, + { + "id":581, + "type":"Tile" + }, + { + "id":582, + "type":"Tile" + }, + { + "id":583, + "type":"Tile" + }, + { + "id":584, + "type":"Tile" + }, + { + "id":585, + "type":"Tile" + }, + { + "id":586, + "type":"Tile" + }, + { + "id":587, + "type":"Tile" + }, + { + "id":588, + "type":"Tile" + }, + { + "id":589, + "type":"Tile" + }, + { + "id":590, + "type":"Tile" + }, + { + "id":591, + "type":"Tile" + }, + { + "id":592, + "type":"Tile" + }, + { + "id":593, + "type":"Tile" + }, + { + "id":594, + "type":"Tile" + }, + { + "id":595, + "type":"Tile" + }, + { + "id":596, + "type":"Tile" + }, + { + "id":597, + "type":"Tile" + }, + { + "id":598, + "type":"Tile" + }, + { + "id":599, + "type":"Tile" + }, + { + "id":600, + "type":"Tile" + }, + { + "id":601, + "type":"Tile" + }, + { + "id":602, + "type":"Tile" + }, + { + "id":603, + "type":"Tile" + }, + { + "id":604, + "type":"Tile" + }, + { + "id":605, + "type":"Tile" + }, + { + "id":606, + "type":"Tile" + }, + { + "id":607, + "type":"Tile" + }, + { + "id":608, + "type":"Tile" + }, + { + "id":609, + "type":"Tile" + }, + { + "id":610, + "type":"Tile" + }, + { + "id":611, + "type":"Tile" + }, + { + "id":612, + "type":"Tile" + }, + { + "id":613, + "type":"Tile" + }, + { + "id":614, + "type":"Tile" + }, + { + "id":615, + "type":"Tile" + }, + { + "id":616, + "type":"Tile" + }, + { + "id":617, + "type":"Tile" + }, + { + "id":618, + "type":"Tile" + }, + { + "id":619, + "type":"Tile" + }, + { + "id":620, + "type":"Tile" + }, + { + "id":621, + "type":"Tile" + }, + { + "id":622, + "type":"Tile" + }, + { + "id":623, + "type":"Tile" + }, + { + "id":624, + "type":"Tile" + }, + { + "id":625, + "type":"Tile" + }, + { + "id":626, + "type":"Tile" + }, + { + "id":627, + "type":"Tile" + }, + { + "id":628, + "type":"Tile" + }, + { + "id":629, + "type":"Tile" + }, + { + "id":630, + "type":"Tile" + }, + { + "id":631, + "type":"Tile" + }, + { + "id":632, + "type":"Tile" + }, + { + "id":633, + "type":"Tile" + }, + { + "id":634, + "type":"Tile" + }, + { + "id":635, + "type":"Tile" + }, + { + "id":636, + "type":"Tile" + }, + { + "id":637, + "type":"Tile" }], "tilewidth":16, "type":"tileset", @@ -2332,8 +2596,20 @@ "name":"SandStone", "probability":0.3, "tile":110 + }, + { + "color":"#0000ff", + "name":"LightGrass", + "probability":1, + "tile":265 + }, + { + "color":"#ff7700", + "name":"Dirt", + "probability":1, + "tile":177 }], - "name":"\u041f\u0435\u0441\u0447\u0430\u043d\u044b\u0439", + "name":"\u0411\u0438\u043e\u043c\u043d\u044b\u0439", "tile":-1, "type":"corner", "wangtiles":[ @@ -2424,6 +2700,228 @@ { "tileid":114, "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":154, + "wangid":[0, 3, 0, 4, 0, 3, 0, 3] + }, + { + "tileid":155, + "wangid":[0, 3, 0, 4, 0, 4, 0, 3] + }, + { + "tileid":156, + "wangid":[0, 3, 0, 3, 0, 4, 0, 3] + }, + { + "tileid":163, + "wangid":[0, 3, 0, 4, 0, 3, 0, 4] + }, + { + "tileid":176, + "wangid":[0, 4, 0, 4, 0, 3, 0, 3] + }, + { + "tileid":177, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":178, + "wangid":[0, 3, 0, 3, 0, 4, 0, 4] + }, + { + "tileid":181, + "wangid":[0, 4, 0, 3, 0, 4, 0, 4] + }, + { + "tileid":182, + "wangid":[0, 4, 0, 4, 0, 3, 0, 4] + }, + { + "tileid":185, + "wangid":[0, 4, 0, 3, 0, 4, 0, 3] + }, + { + "tileid":198, + "wangid":[0, 4, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":199, + "wangid":[0, 4, 0, 3, 0, 3, 0, 4] + }, + { + "tileid":200, + "wangid":[0, 3, 0, 3, 0, 3, 0, 4] + }, + { + "tileid":203, + "wangid":[0, 3, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":204, + "wangid":[0, 4, 0, 4, 0, 4, 0, 3] + }, + { + "tileid":242, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":243, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":244, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":245, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":264, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":265, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":266, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":267, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":268, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":578, + "wangid":[0, 3, 0, 2, 0, 3, 0, 3] + }, + { + "tileid":579, + "wangid":[0, 3, 0, 2, 0, 2, 0, 3] + }, + { + "tileid":580, + "wangid":[0, 3, 0, 3, 0, 2, 0, 3] + }, + { + "tileid":581, + "wangid":[0, 2, 0, 3, 0, 2, 0, 2] + }, + { + "tileid":582, + "wangid":[0, 2, 0, 2, 0, 3, 0, 2] + }, + { + "tileid":600, + "wangid":[0, 2, 0, 2, 0, 3, 0, 3] + }, + { + "tileid":601, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":602, + "wangid":[0, 3, 0, 3, 0, 2, 0, 2] + }, + { + "tileid":603, + "wangid":[0, 3, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":604, + "wangid":[0, 2, 0, 2, 0, 2, 0, 3] + }, + { + "tileid":622, + "wangid":[0, 2, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":623, + "wangid":[0, 2, 0, 3, 0, 3, 0, 2] + }, + { + "tileid":624, + "wangid":[0, 3, 0, 3, 0, 3, 0, 2] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"", + "probability":1, + "tile":264 + }], + "name":"\u0422\u0440\u0430\u0432\u0430", + "tile":244, + "type":"corner", + "wangtiles":[ + { + "tileid":244, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":245, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":264, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":265, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":266, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":267, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":268, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"", + "probability":1, + "tile":110 + }], + "name":"\u041f\u0435\u0441\u0447\u0430\u043d\u0438\u043a", + "tile":111, + "type":"corner", + "wangtiles":[ + { + "tileid":110, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":111, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":112, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":113, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":114, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] }] }] } \ No newline at end of file diff --git a/ZoFo/Content/MapData/TileSets/bonfire.tsj b/ZoFo/Content/MapData/TileSets/bonfire.tsj new file mode 100644 index 0000000..69111cb --- /dev/null +++ b/ZoFo/Content/MapData/TileSets/bonfire.tsj @@ -0,0 +1,102 @@ +{ "columns":4, + "image":"..\/..\/Textures\/TileSetImages\/Campfire.png", + "imageheight":32, + "imagewidth":128, + "margin":0, + "name":"bonfire", + "spacing":0, + "tilecount":22, + "tiledversion":"1.10.2", + "tileheight":32, + "tiles":[ + { + "animation":[ + { + "duration":250, + "tileid":0 + }, + { + "duration":250, + "tileid":1 + }, + { + "duration":250, + "tileid":2 + }, + { + "duration":250, + "tileid":3 + }], + "id":0, + "type":"StopObject" + }, + { + "id":1, + "type":"StopObject" + }, + { + "id":2, + "type":"StopObject" + }, + { + "id":3, + "type":"StopObject" + }, + { + "id":4 + }, + { + "id":7 + }, + { + "id":8 + }, + { + "id":9 + }, + { + "id":10 + }, + { + "id":11 + }, + { + "id":12 + }, + { + "id":13 + }, + { + "id":14 + }, + { + "id":20 + }, + { + "id":16 + }, + { + "id":17 + }, + { + "id":18 + }, + { + "id":19 + }, + { + "id":21 + }, + { + "id":5 + }, + { + "id":6 + }, + { + "id":15 + }], + "tilewidth":32, + "type":"tileset", + "version":"1.10" +} \ No newline at end of file diff --git a/ZoFo/Content/MapData/TileSets/tileset 1 collision.tsj b/ZoFo/Content/MapData/TileSets/tileset 1 collision.tsj index f13aafa..a30866b 100644 --- a/ZoFo/Content/MapData/TileSets/tileset 1 collision.tsj +++ b/ZoFo/Content/MapData/TileSets/tileset 1 collision.tsj @@ -6,7 +6,7 @@ "name":"tileset 1 collision", "spacing":0, "tilecount":240, - "tiledversion":"1.10.2", + "tiledversion":"1.11.0", "tileheight":16, "tiles":[ { @@ -105,7 +105,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -133,7 +132,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -161,7 +159,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -189,7 +186,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -217,7 +213,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -245,7 +240,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -273,7 +267,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -301,7 +294,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -329,7 +321,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -357,7 +348,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -385,7 +375,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -449,7 +438,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -477,7 +465,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -505,7 +492,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -533,7 +519,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -561,7 +546,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -589,7 +573,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -617,7 +600,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -645,7 +627,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -673,7 +654,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -701,7 +681,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -729,7 +708,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -861,7 +839,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -889,7 +866,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -917,7 +893,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -1013,7 +988,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -1041,7 +1015,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -1069,7 +1042,6 @@ "objectgroup": { "draworder":"index", - "id":2, "name":"", "objects":[ { @@ -1386,10 +1358,56 @@ }, { "id":173, + "objectgroup": + { + "draworder":"index", + "id":2, + "name":"", + "objects":[ + { + "height":16, + "id":1, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":16, + "x":0, + "y":0 + }], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, "type":"StopObject" }, { "id":174, + "objectgroup": + { + "draworder":"index", + "id":2, + "name":"", + "objects":[ + { + "height":16, + "id":1, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":16, + "x":0, + "y":0 + }], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, "type":"StopObject" }, { @@ -1466,10 +1484,56 @@ }, { "id":193, + "objectgroup": + { + "draworder":"index", + "id":2, + "name":"", + "objects":[ + { + "height":16, + "id":1, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":16, + "x":0, + "y":0 + }], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, "type":"StopObject" }, { "id":194, + "objectgroup": + { + "draworder":"index", + "id":2, + "name":"", + "objects":[ + { + "height":16, + "id":1, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":16, + "x":0, + "y":0 + }], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, "type":"StopObject" }, { diff --git a/ZoFo/Content/MapData/TileStamps/bushes.stamp b/ZoFo/Content/MapData/TileStamps/bushes.stamp new file mode 100644 index 0000000..8ad8099 --- /dev/null +++ b/ZoFo/Content/MapData/TileStamps/bushes.stamp @@ -0,0 +1 @@ +{"name":"Bushes","variations":[{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7xMDAAAADzADz","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7yMDAAAADyADy","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7zMDAAAAD0AD0","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7wsDAAAAD1AD1","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7ysDAAAAD2AD2","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7xsDAAAAD3AD3","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7zsDAAAAD4AD4","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7wcDAAAAD5AD5","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7ycDAAAAD6AD6","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7xcDAAAAD7AD7","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJz7zcDAAAAD8AD8","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJwTZGRgAAAASwAT","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJwTYmRgAAAATwAU","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJx7zMDAAAADkADk","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1}]} \ No newline at end of file diff --git a/ZoFo/Content/MapData/TileStamps/flowers.stamp b/ZoFo/Content/MapData/TileStamps/flowers.stamp new file mode 100644 index 0000000..f68c572 --- /dev/null +++ b/ZoFo/Content/MapData/TileStamps/flowers.stamp @@ -0,0 +1 @@ +{"name":"Flowers","variations":[{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZGRgAAAAKwAL","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjYmRgAAAALwAM","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZmRgAAAAMwAN","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjYWRgAAAANwAO","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZWRgAAAAOwAP","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjY2RgAAAAPwAQ","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZ2RgAAAAQwAR","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1}]} \ No newline at end of file diff --git a/ZoFo/Content/MapData/TileStamps/green trees.stamp b/ZoFo/Content/MapData/TileStamps/green trees.stamp new file mode 100644 index 0000000..379ef27 --- /dev/null +++ b/ZoFo/Content/MapData/TileStamps/green trees.stamp @@ -0,0 +1 @@ +{"name":"Green Trees","variations":[{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwzZWBgMANicyC2AGJfIPYDYn8gDgDiVCBOA+J0IM4AYgBToAOv","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJxjZGBgYAJiSSCWAmIAAWgANw==","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJw7zsDAcAKI7wPxAyAGACBYA08=","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzbwsjAsBWItwHxGSA+C8TngPgJED8F4mdADACKGwc/","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJwTZGBgEAJiTSDWAmIAA+gAdw==","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwcNACAMALBZ45iAYYLjP7RJS0RUm93hNF1uj9fnB2JABD8=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwcNACAMALCZ45iAYYIjnzZpiYhqszucpsvt8fr8ZyAEbw==","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJwTZmBgEAFibSDWAWIABDgAfw==","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1}]} \ No newline at end of file diff --git a/ZoFo/Content/MapData/TileStamps/stone buildings.stamp b/ZoFo/Content/MapData/TileStamps/stone buildings.stamp index 47d327e..fe52933 100644 --- a/ZoFo/Content/MapData/TileStamps/stone buildings.stamp +++ b/ZoFo/Content/MapData/TileStamps/stone buildings.stamp @@ -1 +1 @@ -{"name":"Stone Buildings","variations":[{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwcNACAMALBxLMCwwPGvjzZpiYhqszucpsvt8fr8EWABDw==","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJxjZWBgYANidiDmAGJJIJYCYmkglgFiXSDWA2J9IDYAYgAWQAE/","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZGBg4AJibiCWBWI5IJYHYkMgNgJiYyAGAA+EAQ8=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjYWBg4AViPiBWAGJFIFYCYhMgNgViMyAGABGgASo=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJzzY2Bg8AfiACBOAuJkIE4BYgAb1AIX","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1}]} \ No newline at end of file +{"name":"Stone Buildings","variations":[{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwcNACAMALBxLMCwwPGvjzZpiYhqszucpsvt8fr8EWABDw==","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJxjZWBgYANidiDmAGJJIJYCYmkglgFiXSDWA2J9IDYAYgAWQAE/","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZGBg4AJibiCWBWI5IJYHYkMgNgJiYyAGAA+EAQ8=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjYWBg4AViPiBWAGJFIFYCYhMgNgViMyAGABGgASo=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJzzY2Bg8AfiACBOAuJkIE4BYgAb1AIX","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":5,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwsRgCAUALBXXqGCQgXQCooV/MRxu9sUEbPJ7OJqsdrsbu4eng4vbx9fP38Kng2j","encoding":"base64","height":5,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":5,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwsRgCAUALBXWqGCQgXQCooV/MRyu9sUEbPJ7OJqsdrsbu4eng4vbx9fP3/WDwxj","encoding":"base64","height":5,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1}]} \ No newline at end of file diff --git a/ZoFo/Content/Textures/GUI/background/endGame.png b/ZoFo/Content/Textures/GUI/background/endGame.png index 2d9926c..04c9091 100644 Binary files a/ZoFo/Content/Textures/GUI/background/endGame.png and b/ZoFo/Content/Textures/GUI/background/endGame.png differ diff --git a/ZoFo/Content/Textures/TileSetImages/Campfire.png b/ZoFo/Content/Textures/TileSetImages/Campfire.png new file mode 100644 index 0000000..cd33fa5 Binary files /dev/null and b/ZoFo/Content/Textures/TileSetImages/Campfire.png differ diff --git a/ZoFo/Content/Textures/TileSetImages/TilesetFloor.png b/ZoFo/Content/Textures/TileSetImages/TilesetFloor.png index abba7bf..8b68cd1 100644 Binary files a/ZoFo/Content/Textures/TileSetImages/TilesetFloor.png and b/ZoFo/Content/Textures/TileSetImages/TilesetFloor.png differ diff --git a/ZoFo/Content/Textures/icons/zombie_218153.png b/ZoFo/Content/Textures/icons/zombie_218153.png new file mode 100644 index 0000000..9f73e6e Binary files /dev/null and b/ZoFo/Content/Textures/icons/zombie_218153.png differ diff --git a/ZoFo/GameCore/Client.cs b/ZoFo/GameCore/Client.cs index 1fb0db7..f2a85de 100644 --- a/ZoFo/GameCore/Client.cs +++ b/ZoFo/GameCore/Client.cs @@ -93,7 +93,7 @@ namespace ZoFo.GameCore #endregion - Player myPlayer; + public Player myPlayer; List mapObjects = new List(); List gameObjects = new List(); List players = new List(); @@ -190,9 +190,9 @@ namespace ZoFo.GameCore { created_gameObject = new Player((update as UpdateGameObjectCreated).position); players.Add(created_gameObject as Player); - myPlayer = players[0]; + myPlayer = players[0]; gameObjects.Add(created_gameObject); - } + } else { Type t = Type.GetType("ZoFo.GameCore.GameObjects." + (update as UpdateGameObjectCreated).GameObjectType); @@ -200,7 +200,7 @@ namespace ZoFo.GameCore if (gameObject is Entity) (gameObject as Entity).SetIdByClient((update as UpdateGameObjectCreated).IdEntity); gameObjects.Add(gameObject); - } + } (gameObjects.Last() as Entity).SetIdByClient((update as UpdateGameObjectCreated).IdEntity); } diff --git a/ZoFo/GameCore/GUI/ExitGameGUI.cs b/ZoFo/GameCore/GUI/ExitGameGUI.cs new file mode 100644 index 0000000..aca7173 --- /dev/null +++ b/ZoFo/GameCore/GUI/ExitGameGUI.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Threading; +using System.Xml; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Content; +using Microsoft.Xna.Framework.Graphics; +using Microsoft.Xna.Framework.Input; +using MonogameLibrary.UI.Base; +using MonogameLibrary.UI.Elements; +using ZoFo.GameCore.GameManagers; +using ZoFo.GameCore.GameManagers.ItemManager; + +namespace ZoFo.GameCore.GUI; + +public class ExitGameGUI : AbstractGUI +{ + private DrawableUIElement menuBackground; + protected override void CreateUI() + { + int width = AppManager.Instance.CurentScreenResolution.X; + int height = AppManager.Instance.CurentScreenResolution.Y; + + menuBackground = new DrawableUIElement(Manager) { rectangle = new Rectangle(0, 0, width, height), mainColor = Color.White, textureName = "Textures/GUI/background/waiting" }; + Elements.Add(menuBackground); + menuBackground.LoadTexture(AppManager.Instance.Content); + + Elements.Add(new Label(Manager) { rectangle = new Rectangle(width / 2 - (int)(width / 8), height / 5, (int)(width / 4), (int)(height / 20)), text = "Ты вышел из игры и потерял весь лут(((", fontColor = Color.Black, mainColor = Color.Transparent, scale = 0.9f, fontName = "Fonts/Font4"}); + + Button endButton = new Button(Manager) + { + rectangle = new Rectangle(width / 2 - (width / 15) / 2, height / 2 + height / 4, (int)(width / 15), (int)(height / 20)), + text = "Exit", + scale = 0.3f, + fontColor = Color.White, + mainColor = Color.Gray, + fontName = "Fonts/Font" + }; + endButton.LeftButtonPressed += () => + { + AppManager.Instance.SetGUI(new MainMenuGUI()); + }; + Elements.Add(endButton); + } + + public override void Update(GameTime gameTime) + { + base.Update(gameTime); + } +} \ No newline at end of file diff --git a/ZoFo/GameCore/GUI/FinishingGUI.cs b/ZoFo/GameCore/GUI/FinishingGUI.cs new file mode 100644 index 0000000..e437e3d --- /dev/null +++ b/ZoFo/GameCore/GUI/FinishingGUI.cs @@ -0,0 +1,95 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Threading; +using System.Xml; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Content; +using Microsoft.Xna.Framework.Graphics; +using Microsoft.Xna.Framework.Input; +using MonogameLibrary.UI.Base; +using MonogameLibrary.UI.Elements; +using ZoFo.GameCore.GameManagers; +using ZoFo.GameCore.GameManagers.ItemManager; + +namespace ZoFo.GameCore.GUI; + +public class FinishingGUI : AbstractGUI +{ + private List ItemDisplayLabelsList; + private int labelIndex = 0; + private DrawableUIElement menuBackground; + + protected override void CreateUI() + { + ItemDisplayLabelsList = new List(); + int width = AppManager.Instance.CurentScreenResolution.X; + int height = AppManager.Instance.CurentScreenResolution.Y; + + menuBackground = new DrawableUIElement(Manager) { rectangle = new Rectangle(0, 0, width, height), mainColor = Color.White, textureName = "Textures/GUI/background/endGame" }; + Elements.Add(menuBackground); + menuBackground.LoadTexture(AppManager.Instance.Content); + + Elements.Add(new Label(Manager) { rectangle = new Rectangle(width / 2 - (int)(width / 8), height / 15, (int)(width / 4), (int)(height / 20)), text = "Mission completed", fontColor = Color.Black, mainColor = Color.Transparent, scale = 0.9f, fontName = "Fonts/Font"}); + + DrawableUIElement inventoryBack = new DrawableUIElement(Manager) + { + rectangle = new Rectangle(width / 2 - height / 80 - width / 5 / 2, + height / 2 - (int)(height / 1.5) / 2, + height / 40 + width / 5, (int)(height / 1.5)), + mainColor = Color.LightGray + }; + Elements.Add(inventoryBack); + + Button ExitButton = new Button(Manager) + { + rectangle = new Rectangle(width / 2 - width / 15 / 2, + height / 2 + (int)(height / 1.5) / 2 + height / 40, (int)(width / 15), (int)(height / 20)), + text = "Exit", + scale = 0.2f, + fontColor = Color.White, + mainColor = Color.Gray, + fontName = "Fonts\\Font" + }; + ExitButton.LeftButtonPressed += () => { AppManager.Instance.SetGUI(new MainMenuGUI()); }; + Elements.Add(ExitButton); + + //player itams + foreach (var item in AppManager.Instance.client.myPlayer.lootData.loots) + { + if (item.Value > 0) + { + ItemInfo itemInfo = AppManager.Instance.ItemManager.GetItemInfo(item.Key); + var temp = new ItemDisplayLabel(Manager) + { + rectangle = new Rectangle( + width / 2 - width / 5 / 2, + height / 2 - (int)(height / 1.5) / 2 + height / 80 + + (height / 20 + height / 80) * (labelIndex), + (int)(width / 5), (int)(height / 20)), + text1 = item.Key, + scale1 = 0.4f, + count = item.Value, + itemTextureName = itemInfo.textureName, + fontColor1 = Color.White, + mainColor = Color.Gray, + fontName1 = "Fonts\\Font4", + discriptions1 = itemInfo.description, + resourcesNeededToCraft1 = itemInfo.resourcesNeededToCraft + }; + Elements.Add(temp); + temp.Initialize(); + temp.LoadTexture(AppManager.Instance.Content); + ItemDisplayLabelsList.Add(temp); + + labelIndex++; + } + } + } + + public override void Update(GameTime gameTime) + { + base.Update(gameTime); + } +} \ No newline at end of file diff --git a/ZoFo/GameCore/GUI/GameEndedGUI.cs b/ZoFo/GameCore/GUI/GameEndedGUI.cs index 03897ea..abd5835 100644 --- a/ZoFo/GameCore/GUI/GameEndedGUI.cs +++ b/ZoFo/GameCore/GUI/GameEndedGUI.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Diagnostics; using System.Linq; +using System.Threading; using System.Xml; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Content; @@ -9,19 +10,43 @@ using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using MonogameLibrary.UI.Base; using MonogameLibrary.UI.Elements; +using ZoFo.GameCore.GameManagers; +using ZoFo.GameCore.GameManagers.ItemManager; namespace ZoFo.GameCore.GUI; public class GameEndedGUI : AbstractGUI { + private DrawableUIElement menuBackground; protected override void CreateUI() { - // int width = AppManager.Instance.inGameHUDHelperResolution.X; - // int height = AppManager.Instance.inGameHUDHelperResolution.Y; + int width = AppManager.Instance.CurentScreenResolution.X; + int height = AppManager.Instance.CurentScreenResolution.Y; + + menuBackground = new DrawableUIElement(Manager) { rectangle = new Rectangle(0, 0, width, height), mainColor = Color.White, textureName = "Textures/GUI/background/endGame" }; + Elements.Add(menuBackground); + menuBackground.LoadTexture(AppManager.Instance.Content); + + Elements.Add(new Label(Manager) { rectangle = new Rectangle(width / 2 - (int)(width / 8), height / 5, (int)(width / 4), (int)(height / 20)), text = "The End", fontColor = Color.Black, mainColor = Color.Transparent, scale = 0.9f, fontName = "Fonts/Font"}); + + Button endButton = new Button(Manager) + { + rectangle = new Rectangle(width / 2 - (width / 15) / 2, height / 2 + height / 4, (int)(width / 15), (int)(height / 20)), + text = "End", + scale = 0.3f, + fontColor = Color.White, + mainColor = Color.Gray, + fontName = "Fonts/Font" + }; + endButton.LeftButtonPressed += () => + { + AppManager.Instance.SetGUI(new MainMenuGUI()); + }; + Elements.Add(endButton); } public override void Update(GameTime gameTime) { - + base.Update(gameTime); } } \ No newline at end of file diff --git a/ZoFo/GameCore/GUI/HUD.cs b/ZoFo/GameCore/GUI/HUD.cs index 745453a..9a88a71 100644 --- a/ZoFo/GameCore/GUI/HUD.cs +++ b/ZoFo/GameCore/GUI/HUD.cs @@ -13,23 +13,68 @@ using ZoFo.GameCore.GameManagers; namespace ZoFo.GameCore.GUI; -public class HUD : AbstractGUI +public class HUD : AbstractGUI { - protected override void CreateUI() + private Bar hpBar; + private Bar radBar; + private AbstractGUI overlayGUI; + protected override void CreateUI() { int width = AppManager.Instance.CurentScreenResolution.X; int height = AppManager.Instance.CurentScreenResolution.Y; Button pauseButton = new Button(Manager) - { fontName = "Fonts\\Font3", scale = 0.4f, text = "| |", fontColor = Color.Black, mainColor = Color.Transparent, rectangle = new Rectangle(width / 30, height / 30, width / 40, width / 40), textureName = "Textures\\GUI\\checkboxs_off"}; + { fontName = "Fonts\\Font3", scale = 0.4f, text = "| |", fontColor = Color.Black, mainColor = Color.Transparent, rectangle = new Rectangle(width - width / 30 - width / 40, height / 30, width / 40, width / 40), textureName = "Textures\\GUI\\checkboxs_off"}; Elements.Add(pauseButton); pauseButton.LeftButtonPressed += () => { - AppManager.Instance.SetGUI(new PauseGUI()); + AppManager.Instance.SetGUI(new FinishingGUI()); + //overlayGUI = new PauseGUI(); + //overlayGUI.Initialize(); + //overlayGUI.LoadContent(); }; + Button invButton = new Button(Manager) + { fontName = "Fonts\\Font3", scale = 0.4f, text = "inv", fontColor = Color.Black, mainColor = Color.Transparent, rectangle = new Rectangle(width - width / 30 - width / 40, height / 15 + width / 40, width / 40, width / 40), textureName = "Textures\\GUI\\checkboxs_off"}; + Elements.Add(invButton); + invButton.LeftButtonPressed += () => + { + overlayGUI = new InventoryGUI(); + overlayGUI.Initialize(); + overlayGUI.LoadContent(); + }; + + hpBar = new Bar(Manager) + { + rectangle = new Rectangle(width / 2 - width / 8 - width / 16, height - height / 10, width / 8, height / 25), + percent = 1f, + mainColor = Color.LightGray, + inColor = Color.Red + }; + hpBar.Initialize(); + hpBar.LoadTexture(AppManager.Instance.Content); + radBar = new Bar(Manager) + { + rectangle = new Rectangle(width / 2 + width / 16, height - height / 10, width / 8, height / 25), + percent = 0f, + mainColor = Color.LightGray, + inColor = Color.GreenYellow + }; + radBar.Initialize(); + radBar.LoadTexture(AppManager.Instance.Content); + } public override void Update(GameTime gameTime) { + overlayGUI?.Update(gameTime); + //hpBar.Update(gameTime, AppManager.Instance.client.myPlayer.health / 100f); + //radBar.Update(gameTime, AppManager.Instance.client.myPlayer.rad / 100f); + radBar.Update(gameTime, gameTime.TotalGameTime.Seconds / 100f); base.Update(gameTime); } + + public override void Draw(SpriteBatch spriteBatch) + { + overlayGUI?.Draw(spriteBatch); + base.Draw(spriteBatch); + } } \ No newline at end of file diff --git a/ZoFo/GameCore/GUI/InventoryGUI.cs b/ZoFo/GameCore/GUI/InventoryGUI.cs index c085803..c20be82 100644 --- a/ZoFo/GameCore/GUI/InventoryGUI.cs +++ b/ZoFo/GameCore/GUI/InventoryGUI.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Diagnostics; using System.Linq; +using System.Threading; using System.Xml; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Content; @@ -9,19 +10,83 @@ using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using MonogameLibrary.UI.Base; using MonogameLibrary.UI.Elements; +using ZoFo.GameCore.GameManagers; +using ZoFo.GameCore.GameManagers.ItemManager; namespace ZoFo.GameCore.GUI; public class InventoryGUI : AbstractGUI { + private List ItemDisplayButtonsList; + private int buttonIndex = 0; + protected override void CreateUI() { - // int width = AppManager.Instance.inGameHUDHelperResolution.X; - // int height = AppManager.Instance.inGameHUDHelperResolution.Y; + ItemDisplayButtonsList = new List(); + int width = AppManager.Instance.CurentScreenResolution.X; + int height = AppManager.Instance.CurentScreenResolution.Y; + + DrawableUIElement inventoryBack = new DrawableUIElement(Manager) + { + rectangle = new Rectangle(width / 2 - height / 80 - width / 5 / 2, + height / 2 - (int)(height / 1.5) / 2 - height / 10, + height / 40 + width / 5, (int)(height / 1.5)), + mainColor = Color.LightGray + }; + Elements.Add(inventoryBack); + + Button continueButton = new Button(Manager) + { + rectangle = new Rectangle(width / 2 - width / 5 / 2, + height / 2 + (int)(height / 1.5) / 2 + height / 40 - height / 10, (int)(width / 5), (int)(height / 20)), + text = "Continue", + scale = 0.2f, + fontColor = Color.White, + mainColor = Color.Gray, + fontName = "Fonts\\Font" + }; + continueButton.LeftButtonPressed += () => { AppManager.Instance.SetGUI(new HUD()); }; + Elements.Add(continueButton); + + //player itams + foreach (var item in AppManager.Instance.client.myPlayer.lootData.loots) + { + if (item.Value > 0) + { + ItemInfo itemInfo = AppManager.Instance.ItemManager.GetItemInfo(item.Key); + var temp = new ItemDisplayButton(Manager) + { + rectangle = new Rectangle( + width / 2 - width / 5 / 2, + height / 2 - (int)(height / 1.5) / 2 + height / 80 + + (height / 20 + height / 80) * (buttonIndex) - height / 10, + (int)(width / 5), (int)(height / 20)), + text1 = item.Key, + scale1 = 0.4f, + count = item.Value, + itemTextureName = itemInfo.textureName, + fontColor1 = Color.White, + mainColor = Color.Gray, + fontName1 = "Fonts\\Font4", + discriptions1 = itemInfo.description, + resourcesNeededToCraft1 = itemInfo.resourcesNeededToCraft + }; + Elements.Add(temp); + temp.Initialize(); + temp.LoadTexture(AppManager.Instance.Content); + ItemDisplayButtonsList.Add(temp); + temp.LeftButtonPressed += () => + { + + }; + + buttonIndex++; + } + } } public override void Update(GameTime gameTime) { - + base.Update(gameTime); } } \ No newline at end of file diff --git a/ZoFo/GameCore/GameManagers/AppManager.cs b/ZoFo/GameCore/GameManagers/AppManager.cs index bd9ed02..db6bcf0 100644 --- a/ZoFo/GameCore/GameManagers/AppManager.cs +++ b/ZoFo/GameCore/GameManagers/AppManager.cs @@ -58,7 +58,6 @@ namespace ZoFo.GameCore.GameManagers Content.RootDirectory = "Content"; IsMouseVisible = true; - server = new Server(); playerData = new PlayerData(); ItemManager = new ItemManager.ItemManager(); Instance = this; diff --git a/ZoFo/GameCore/GameManagers/ItemManager/ItemManager.cs b/ZoFo/GameCore/GameManagers/ItemManager/ItemManager.cs index 785793d..0678c21 100644 --- a/ZoFo/GameCore/GameManagers/ItemManager/ItemManager.cs +++ b/ZoFo/GameCore/GameManagers/ItemManager/ItemManager.cs @@ -25,6 +25,7 @@ namespace ZoFo.GameCore.GameManagers.ItemManager public void Initialize() { tagItemPairs = new Dictionary(); + tagItemPairs.Add("Ammo", new ItemInfo("Ammo", "деньги в метро", "Textures\\icons\\Collectables\\Ammo",false,null)); tagItemPairs.Add("wood", new ItemInfo("wood", "бревна кусок", "Textures\\Test\\wood",false,null)); tagItemPairs.Add("rock", new ItemInfo("rock", "пять галек", "Textures\\Test\\rock", false, null)); tagItemPairs.Add("steel", new ItemInfo("steel", "метал, метал, \nжелезо, метал", "Textures\\Test\\steel", false, null)); diff --git a/ZoFo/GameCore/GameManagers/MapManager/MapElements/Frame.cs b/ZoFo/GameCore/GameManagers/MapManager/MapElements/Frame.cs new file mode 100644 index 0000000..3a698cd --- /dev/null +++ b/ZoFo/GameCore/GameManagers/MapManager/MapElements/Frame.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ZoFo.GameCore.GameManagers.MapManager.MapElements +{ + public class Frame + { + public int Duration { get; set; } + public int TileId { get; set; } + } +} diff --git a/ZoFo/GameCore/GameManagers/MapManager/MapElements/Tile.cs b/ZoFo/GameCore/GameManagers/MapManager/MapElements/Tile.cs index 88ce815..6792f4b 100644 --- a/ZoFo/GameCore/GameManagers/MapManager/MapElements/Tile.cs +++ b/ZoFo/GameCore/GameManagers/MapManager/MapElements/Tile.cs @@ -11,5 +11,6 @@ namespace ZoFo.GameCore.GameManagers.MapManager.MapElements public int Id { get; set; } public string Type { get; set; } public ObjectGroup Objectgroup { get; set; } + public List Animation { get; set; } } } diff --git a/ZoFo/GameCore/GameManagers/MapManager/MapManager.cs b/ZoFo/GameCore/GameManagers/MapManager/MapManager.cs index 1aba430..49d2b2d 100644 --- a/ZoFo/GameCore/GameManagers/MapManager/MapManager.cs +++ b/ZoFo/GameCore/GameManagers/MapManager/MapManager.cs @@ -20,8 +20,8 @@ namespace ZoFo.GameCore.GameManagers.MapManager private static readonly string _templatePath = "Content/MapData/TileMaps/{0}.tmj"; private static readonly JsonSerializerOptions _options = new JsonSerializerOptions { PropertyNameCaseInsensitive = true }; // Задача настроек для JsonSerialize private static readonly Dictionary _classPath = new Dictionary() { - { "Collectables", "ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables." }, - { "Enemies", "ZoFo.GameCore.GameObjects.Entities.LivingEntities.Enemies." } + { "Collectables", "ZoFo.GameCore.GameObjects." }, + { "Enemies", "ZoFo.GameCore.GameObjects." } }; //private static readonly float _scale = 1.0f; @@ -72,6 +72,13 @@ namespace ZoFo.GameCore.GameManagers.MapManager if (tileSet.FirstGid <= chunk.Data[i]) { int number = chunk.Data[i] - tileSet.FirstGid; + Tile tile = tileSet.Tiles[number]; // По факту может быть StopObjectom, но на уровне Tiled это все в первую очередь Tile + + + if (tile.Animation is not null) + { + + } int relativeColumn = number % tileSet.Columns; int relativeRow = number / tileSet.Columns; // относительно левого угла чанка @@ -84,7 +91,6 @@ namespace ZoFo.GameCore.GameManagers.MapManager (i % chunk.Width) * _tileMap.TileWidth + chunk.X * _tileMap.TileWidth, (i / chunk.Height) * _tileMap.TileHeight + chunk.Y * _tileMap.TileHeight); - Tile tile = tileSet.Tiles[number]; // По факту может быть StopObjectom, но на уровне Tiled это все в первую очередь Tile switch (tile.Type) { diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Ammo.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Ammo.cs index 81e0e1f..25eddf3 100644 --- a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Ammo.cs +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Ammo.cs @@ -13,7 +13,7 @@ using ZoFo.GameCore.GUI; namespace ZoFo.GameCore.GameObjects { - class Ammo:Collectable + class Ammo : Collectable { public override StaticGraphicsComponent graphicsComponent { get; } = new(_path + "Ammo"); public Ammo(Vector2 position) : base(position) @@ -26,6 +26,14 @@ namespace ZoFo.GameCore.GameObjects public override void OnInteraction(GameObject sender) { DebugHUD.DebugLog("collected"); + if (AppManager.Instance.client.myPlayer.lootData.loots.Keys.Contains("Ammo")) + { + AppManager.Instance.client.myPlayer.lootData.loots["Ammo"] += 1; + } + else + { + AppManager.Instance.client.myPlayer.lootData.loots.Add("Ammo", 1); + } AppManager.Instance.server.AddData(new UpdateLoot("Ammo")); AppManager.Instance.server.DeleteObject(this); } diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/BottleOfWater.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/BottleOfWater.cs index 2a4e542..2e48992 100644 --- a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/BottleOfWater.cs +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/BottleOfWater.cs @@ -10,14 +10,15 @@ using ZoFo.GameCore.GameManagers.CollisionManager; using ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient; using ZoFo.GameCore.GameManagers; -namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables +namespace ZoFo.GameCore.GameObjects { public class BottleOfWater : Collectable { public override StaticGraphicsComponent graphicsComponent { get; } = new(_path + "BottleOfWater"); public BottleOfWater(Vector2 position) : base(position) { - + graphicsComponent.ObjectDrawRectangle.Width = 20; + graphicsComponent.ObjectDrawRectangle.Height = 20; } public override void OnInteraction(GameObject sender) { diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Peeble.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Peeble.cs index 9b6ad47..b031bdd 100644 --- a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Peeble.cs +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Peeble.cs @@ -10,7 +10,7 @@ using ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient; using ZoFo.GameCore.GameManagers; -namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables +namespace ZoFo.GameCore.GameObjects { public class Peeble:Collectable { @@ -18,7 +18,8 @@ namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables public Peeble(Vector2 position) : base(position) { - + graphicsComponent.ObjectDrawRectangle.Width = 20; + graphicsComponent.ObjectDrawRectangle.Height = 20; } public override void OnInteraction(GameObject sender) { diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/PureBottleOfWater.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/PureBottleOfWater.cs index d318bf6..f32d070 100644 --- a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/PureBottleOfWater.cs +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/PureBottleOfWater.cs @@ -9,7 +9,7 @@ using ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient; using ZoFo.GameCore.GameManagers; using ZoFo.GameCore.Graphics; -namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables +namespace ZoFo.GameCore.GameObjects { class PureBottleOfWater:Collectable { @@ -17,6 +17,8 @@ namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables public PureBottleOfWater(Vector2 position) : base(position) { + graphicsComponent.ObjectDrawRectangle.Width = 20; + graphicsComponent.ObjectDrawRectangle.Height = 20; } public override void OnInteraction(GameObject sender) { diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/RottenFlesh.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/RottenFlesh.cs index a1ce270..68a7a0a 100644 --- a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/RottenFlesh.cs +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/RottenFlesh.cs @@ -9,14 +9,15 @@ using ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient; using ZoFo.GameCore.GameManagers; using ZoFo.GameCore.Graphics; -namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables +namespace ZoFo.GameCore.GameObjects { class RottenFlesh:Collectable { public override StaticGraphicsComponent graphicsComponent { get; } = new(_path + "RottenFlesh"); public RottenFlesh(Vector2 position) : base(position) { - + graphicsComponent.ObjectDrawRectangle.Width = 20; + graphicsComponent.ObjectDrawRectangle.Height = 20; } public override void OnInteraction(GameObject sender) { diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Steel.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Steel.cs index a8bbe9d..21f5311 100644 --- a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Steel.cs +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Steel.cs @@ -9,7 +9,7 @@ using ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient; using ZoFo.GameCore.GameManagers; using ZoFo.GameCore.Graphics; -namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables +namespace ZoFo.GameCore.GameObjects { class Steel:Collectable { @@ -17,6 +17,8 @@ namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables public Steel(Vector2 position) : base(position) { + graphicsComponent.ObjectDrawRectangle.Width = 20; + graphicsComponent.ObjectDrawRectangle.Height = 20; } public override void OnInteraction(GameObject sender) { diff --git a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Wood.cs b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Wood.cs index 15d6ee6..7cfad32 100644 --- a/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Wood.cs +++ b/ZoFo/GameCore/GameObjects/Entities/Interactables/Collectables/Wood.cs @@ -5,7 +5,7 @@ using ZoFo.GameCore.GameManagers.CollisionManager; using ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient; using ZoFo.GameCore.Graphics; -namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables; +namespace ZoFo.GameCore.GameObjects; public class Wood : Collectable { @@ -13,7 +13,8 @@ public class Wood : Collectable public Wood(Vector2 position) : base(position) { - + graphicsComponent.ObjectDrawRectangle.Width = 20; + graphicsComponent.ObjectDrawRectangle.Height = 20; } public override void OnInteraction(GameObject sender) { diff --git a/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/LootData.cs b/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/LootData.cs index 25dd09d..8180247 100644 --- a/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/LootData.cs +++ b/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/LootData.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace ZoFo.GameCore.GameObjects { - class LootData + public class LootData { public Dictionary loots; diff --git a/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs b/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs index 44cb902..2687e08 100644 --- a/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs +++ b/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs @@ -18,20 +18,26 @@ public class Player : LivingEntity { public Vector2 InputWeaponRotation { get; set; } public Vector2 InputPlayerRotation { get; set; } + + private float speed; + public int reloading; + public int health = 100; + public int rad = 0; + public LootData lootData; + + + public override GraphicsComponent graphicsComponent { get; } = new AnimatedGraphicsComponent(AppManager.Instance.AssetManager.Player); + + public bool IsTryingToInteract { get; set; } + /// /// Факт того, что плеер в этом апдейте пытается стрелять /// - //public bool IsTryingToShoot { get; set; } - private float speed; - private int health; - public int reloading; - public override GraphicsComponent graphicsComponent { get; } = new AnimatedGraphicsComponent(AppManager.Instance.AssetManager.Player); - - private LootData lootData; - public bool IsTryingToInteract { get; set; } public bool IsTryingToShoot { get; set; } public Player(Vector2 position) : base(position) { + lootData = new LootData(); + lootData.loots = new Dictionary(); graphicsComponent.ObjectDrawRectangle = new Rectangle(0, 0, 30, 30); collisionComponent.stopRectangle = new Rectangle(0, 20, 30, 10); speed = 5;