diff --git a/.gitignore b/.gitignore index 65f3ed0..96cc317 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ ENV *.jpg *.jpeg +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md index fc4aec8..a25e086 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,11 @@ For example:
python mosaic.py game_of_thrones_poster.jpg /home/admin/images/screenshots
 
+Or, if you want to use the included plain color tiles for pixel art effect (you can generate your own palette by modifying [the generation script](extras/gen_colors_rgb.py)): + +
python mosaic.py game_of_thrones_poster.jpg images/colors
+
+ The images below show an example of how the mosaic tiles are matched to the details of the original image: ![Mosaic Image](https://codebox.net/assets/images/mosaic/mosaic_small.jpg) diff --git a/extras/gen_colors_rgb.py b/extras/gen_colors_rgb.py new file mode 100644 index 0000000..e085501 --- /dev/null +++ b/extras/gen_colors_rgb.py @@ -0,0 +1,22 @@ +from PIL import Image +import os + +# Creates a palette of small 32x32px PNG images. + +output_dir = "output_images" +os.makedirs(output_dir, exist_ok=True) + +# Define the equally spaced RGB levels for the palette combinations +nLevels = 10 +step = 255.0/(nLevels-1) +levels = [int(i * step) for i in range(nLevels)] + +# Generate and save the images +for r in levels: + for g in levels: + for b in levels: + img = Image.new("RGB", (32, 32), (r, g, b)) + hex_color = f"{r:02x}{g:02x}{b:02x}" + img.save(os.path.join(output_dir, f"{hex_color}.png")) + +print(f"Image generation complete; saved to {output_dir}") diff --git a/images/colors/000000.png b/images/colors/000000.png new file mode 100644 index 0000000..8c1870d Binary files /dev/null and b/images/colors/000000.png differ diff --git a/images/colors/00001c.png b/images/colors/00001c.png new file mode 100644 index 0000000..c748e1e Binary files /dev/null and b/images/colors/00001c.png differ diff --git a/images/colors/000038.png b/images/colors/000038.png new file mode 100644 index 0000000..6e05bff Binary files /dev/null and b/images/colors/000038.png differ diff --git a/images/colors/000055.png b/images/colors/000055.png new file mode 100644 index 0000000..d54728f Binary files /dev/null and b/images/colors/000055.png differ diff --git a/images/colors/000071.png b/images/colors/000071.png new file mode 100644 index 0000000..54f2618 Binary files /dev/null and b/images/colors/000071.png differ diff --git a/images/colors/00008d.png b/images/colors/00008d.png new file mode 100644 index 0000000..0dde3a5 Binary files /dev/null and b/images/colors/00008d.png differ diff --git a/images/colors/0000aa.png b/images/colors/0000aa.png new file mode 100644 index 0000000..a6b9e05 Binary files /dev/null and b/images/colors/0000aa.png differ diff --git a/images/colors/0000c6.png b/images/colors/0000c6.png new file mode 100644 index 0000000..5b1b872 Binary files /dev/null and b/images/colors/0000c6.png differ diff --git a/images/colors/0000e2.png b/images/colors/0000e2.png new file mode 100644 index 0000000..ddd4cfe Binary files /dev/null and b/images/colors/0000e2.png differ diff --git a/images/colors/0000ff.png b/images/colors/0000ff.png new file mode 100644 index 0000000..bfa46f4 Binary files /dev/null and b/images/colors/0000ff.png differ diff --git a/images/colors/001c00.png b/images/colors/001c00.png new file mode 100644 index 0000000..29c0e98 Binary files /dev/null and b/images/colors/001c00.png differ diff --git a/images/colors/001c1c.png b/images/colors/001c1c.png new file mode 100644 index 0000000..5141921 Binary files /dev/null and b/images/colors/001c1c.png differ diff --git a/images/colors/001c38.png b/images/colors/001c38.png new file mode 100644 index 0000000..57abfe3 Binary files /dev/null and b/images/colors/001c38.png differ diff --git a/images/colors/001c55.png b/images/colors/001c55.png new file mode 100644 index 0000000..6c856de Binary files /dev/null and b/images/colors/001c55.png differ diff --git a/images/colors/001c71.png b/images/colors/001c71.png new file mode 100644 index 0000000..1b737cb Binary files /dev/null and b/images/colors/001c71.png differ diff --git a/images/colors/001c8d.png b/images/colors/001c8d.png new file mode 100644 index 0000000..66288c7 Binary files /dev/null and b/images/colors/001c8d.png differ diff --git a/images/colors/001caa.png b/images/colors/001caa.png new file mode 100644 index 0000000..32d1237 Binary files /dev/null and b/images/colors/001caa.png differ diff --git a/images/colors/001cc6.png b/images/colors/001cc6.png new file mode 100644 index 0000000..7f8dda4 Binary files /dev/null and b/images/colors/001cc6.png differ diff --git a/images/colors/001ce2.png b/images/colors/001ce2.png new file mode 100644 index 0000000..1a49538 Binary files /dev/null and b/images/colors/001ce2.png differ diff --git a/images/colors/001cff.png b/images/colors/001cff.png new file mode 100644 index 0000000..91f2c2d Binary files /dev/null and b/images/colors/001cff.png differ diff --git a/images/colors/003800.png b/images/colors/003800.png new file mode 100644 index 0000000..05201a1 Binary files /dev/null and b/images/colors/003800.png differ diff --git a/images/colors/00381c.png b/images/colors/00381c.png new file mode 100644 index 0000000..cf61aca Binary files /dev/null and b/images/colors/00381c.png differ diff --git a/images/colors/003838.png b/images/colors/003838.png new file mode 100644 index 0000000..40fcd10 Binary files /dev/null and b/images/colors/003838.png differ diff --git a/images/colors/003855.png b/images/colors/003855.png new file mode 100644 index 0000000..abde81f Binary files /dev/null and b/images/colors/003855.png differ diff --git a/images/colors/003871.png b/images/colors/003871.png new file mode 100644 index 0000000..dc29871 Binary files /dev/null and b/images/colors/003871.png differ diff --git a/images/colors/00388d.png b/images/colors/00388d.png new file mode 100644 index 0000000..b270da1 Binary files /dev/null and b/images/colors/00388d.png differ diff --git a/images/colors/0038aa.png b/images/colors/0038aa.png new file mode 100644 index 0000000..9f085c8 Binary files /dev/null and b/images/colors/0038aa.png differ diff --git a/images/colors/0038c6.png b/images/colors/0038c6.png new file mode 100644 index 0000000..0b72efb Binary files /dev/null and b/images/colors/0038c6.png differ diff --git a/images/colors/0038e2.png b/images/colors/0038e2.png new file mode 100644 index 0000000..24309c2 Binary files /dev/null and b/images/colors/0038e2.png differ diff --git a/images/colors/0038ff.png b/images/colors/0038ff.png new file mode 100644 index 0000000..c28d05b Binary files /dev/null and b/images/colors/0038ff.png differ diff --git a/images/colors/005500.png b/images/colors/005500.png new file mode 100644 index 0000000..e80e6e2 Binary files /dev/null and b/images/colors/005500.png differ diff --git a/images/colors/00551c.png b/images/colors/00551c.png new file mode 100644 index 0000000..1a09909 Binary files /dev/null and b/images/colors/00551c.png differ diff --git a/images/colors/005538.png b/images/colors/005538.png new file mode 100644 index 0000000..1bc52b1 Binary files /dev/null and b/images/colors/005538.png differ diff --git a/images/colors/005555.png b/images/colors/005555.png new file mode 100644 index 0000000..24fafc0 Binary files /dev/null and b/images/colors/005555.png differ diff --git a/images/colors/005571.png b/images/colors/005571.png new file mode 100644 index 0000000..20037a8 Binary files /dev/null and b/images/colors/005571.png differ diff --git a/images/colors/00558d.png b/images/colors/00558d.png new file mode 100644 index 0000000..ca98363 Binary files /dev/null and b/images/colors/00558d.png differ diff --git a/images/colors/0055aa.png b/images/colors/0055aa.png new file mode 100644 index 0000000..545e85a Binary files /dev/null and b/images/colors/0055aa.png differ diff --git a/images/colors/0055c6.png b/images/colors/0055c6.png new file mode 100644 index 0000000..e27f9c6 Binary files /dev/null and b/images/colors/0055c6.png differ diff --git a/images/colors/0055e2.png b/images/colors/0055e2.png new file mode 100644 index 0000000..bc9a2e2 Binary files /dev/null and b/images/colors/0055e2.png differ diff --git a/images/colors/0055ff.png b/images/colors/0055ff.png new file mode 100644 index 0000000..0c828a6 Binary files /dev/null and b/images/colors/0055ff.png differ diff --git a/images/colors/007100.png b/images/colors/007100.png new file mode 100644 index 0000000..f431c32 Binary files /dev/null and b/images/colors/007100.png differ diff --git a/images/colors/00711c.png b/images/colors/00711c.png new file mode 100644 index 0000000..45f6565 Binary files /dev/null and b/images/colors/00711c.png differ diff --git a/images/colors/007138.png b/images/colors/007138.png new file mode 100644 index 0000000..61b1290 Binary files /dev/null and b/images/colors/007138.png differ diff --git a/images/colors/007155.png b/images/colors/007155.png new file mode 100644 index 0000000..bafb858 Binary files /dev/null and b/images/colors/007155.png differ diff --git a/images/colors/007171.png b/images/colors/007171.png new file mode 100644 index 0000000..2f4967e Binary files /dev/null and b/images/colors/007171.png differ diff --git a/images/colors/00718d.png b/images/colors/00718d.png new file mode 100644 index 0000000..b729a70 Binary files /dev/null and b/images/colors/00718d.png differ diff --git a/images/colors/0071aa.png b/images/colors/0071aa.png new file mode 100644 index 0000000..f5b0f36 Binary files /dev/null and b/images/colors/0071aa.png differ diff --git a/images/colors/0071c6.png b/images/colors/0071c6.png new file mode 100644 index 0000000..5d69352 Binary files /dev/null and b/images/colors/0071c6.png differ diff --git a/images/colors/0071e2.png b/images/colors/0071e2.png new file mode 100644 index 0000000..13a0d7b Binary files /dev/null and b/images/colors/0071e2.png differ diff --git a/images/colors/0071ff.png b/images/colors/0071ff.png new file mode 100644 index 0000000..46b80d3 Binary files /dev/null and b/images/colors/0071ff.png differ diff --git a/images/colors/008d00.png b/images/colors/008d00.png new file mode 100644 index 0000000..3e47fe4 Binary files /dev/null and b/images/colors/008d00.png differ diff --git a/images/colors/008d1c.png b/images/colors/008d1c.png new file mode 100644 index 0000000..5fb04bf Binary files /dev/null and b/images/colors/008d1c.png differ diff --git a/images/colors/008d38.png b/images/colors/008d38.png new file mode 100644 index 0000000..0488cff Binary files /dev/null and b/images/colors/008d38.png differ diff --git a/images/colors/008d55.png b/images/colors/008d55.png new file mode 100644 index 0000000..3e7fe5b Binary files /dev/null and b/images/colors/008d55.png differ diff --git a/images/colors/008d71.png b/images/colors/008d71.png new file mode 100644 index 0000000..9a0b88e Binary files /dev/null and b/images/colors/008d71.png differ diff --git a/images/colors/008d8d.png b/images/colors/008d8d.png new file mode 100644 index 0000000..bd5e14d Binary files /dev/null and b/images/colors/008d8d.png differ diff --git a/images/colors/008daa.png b/images/colors/008daa.png new file mode 100644 index 0000000..edc3eaa Binary files /dev/null and b/images/colors/008daa.png differ diff --git a/images/colors/008dc6.png b/images/colors/008dc6.png new file mode 100644 index 0000000..484a8fe Binary files /dev/null and b/images/colors/008dc6.png differ diff --git a/images/colors/008de2.png b/images/colors/008de2.png new file mode 100644 index 0000000..65f971d Binary files /dev/null and b/images/colors/008de2.png differ diff --git a/images/colors/008dff.png b/images/colors/008dff.png new file mode 100644 index 0000000..ba3a630 Binary files /dev/null and b/images/colors/008dff.png differ diff --git a/images/colors/00aa00.png b/images/colors/00aa00.png new file mode 100644 index 0000000..850c9cd Binary files /dev/null and b/images/colors/00aa00.png differ diff --git a/images/colors/00aa1c.png b/images/colors/00aa1c.png new file mode 100644 index 0000000..ee8385f Binary files /dev/null and b/images/colors/00aa1c.png differ diff --git a/images/colors/00aa38.png b/images/colors/00aa38.png new file mode 100644 index 0000000..ae06d36 Binary files /dev/null and b/images/colors/00aa38.png differ diff --git a/images/colors/00aa55.png b/images/colors/00aa55.png new file mode 100644 index 0000000..5dd0d27 Binary files /dev/null and b/images/colors/00aa55.png differ diff --git a/images/colors/00aa71.png b/images/colors/00aa71.png new file mode 100644 index 0000000..522a489 Binary files /dev/null and b/images/colors/00aa71.png differ diff --git a/images/colors/00aa8d.png b/images/colors/00aa8d.png new file mode 100644 index 0000000..1394dca Binary files /dev/null and b/images/colors/00aa8d.png differ diff --git a/images/colors/00aaaa.png b/images/colors/00aaaa.png new file mode 100644 index 0000000..657d664 Binary files /dev/null and b/images/colors/00aaaa.png differ diff --git a/images/colors/00aac6.png b/images/colors/00aac6.png new file mode 100644 index 0000000..f04c923 Binary files /dev/null and b/images/colors/00aac6.png differ diff --git a/images/colors/00aae2.png b/images/colors/00aae2.png new file mode 100644 index 0000000..94a028b Binary files /dev/null and b/images/colors/00aae2.png differ diff --git a/images/colors/00aaff.png b/images/colors/00aaff.png new file mode 100644 index 0000000..7f6b36f Binary files /dev/null and b/images/colors/00aaff.png differ diff --git a/images/colors/00c600.png b/images/colors/00c600.png new file mode 100644 index 0000000..067b82a Binary files /dev/null and b/images/colors/00c600.png differ diff --git a/images/colors/00c61c.png b/images/colors/00c61c.png new file mode 100644 index 0000000..91d3b42 Binary files /dev/null and b/images/colors/00c61c.png differ diff --git a/images/colors/00c638.png b/images/colors/00c638.png new file mode 100644 index 0000000..f9afb7f Binary files /dev/null and b/images/colors/00c638.png differ diff --git a/images/colors/00c655.png b/images/colors/00c655.png new file mode 100644 index 0000000..ba599db Binary files /dev/null and b/images/colors/00c655.png differ diff --git a/images/colors/00c671.png b/images/colors/00c671.png new file mode 100644 index 0000000..2d0a522 Binary files /dev/null and b/images/colors/00c671.png differ diff --git a/images/colors/00c68d.png b/images/colors/00c68d.png new file mode 100644 index 0000000..4c814d3 Binary files /dev/null and b/images/colors/00c68d.png differ diff --git a/images/colors/00c6aa.png b/images/colors/00c6aa.png new file mode 100644 index 0000000..c6e2b21 Binary files /dev/null and b/images/colors/00c6aa.png differ diff --git a/images/colors/00c6c6.png b/images/colors/00c6c6.png new file mode 100644 index 0000000..1215b63 Binary files /dev/null and b/images/colors/00c6c6.png differ diff --git a/images/colors/00c6e2.png b/images/colors/00c6e2.png new file mode 100644 index 0000000..983c282 Binary files /dev/null and b/images/colors/00c6e2.png differ diff --git a/images/colors/00c6ff.png b/images/colors/00c6ff.png new file mode 100644 index 0000000..0fdac53 Binary files /dev/null and b/images/colors/00c6ff.png differ diff --git a/images/colors/00e200.png b/images/colors/00e200.png new file mode 100644 index 0000000..2b7530d Binary files /dev/null and b/images/colors/00e200.png differ diff --git a/images/colors/00e21c.png b/images/colors/00e21c.png new file mode 100644 index 0000000..df971be Binary files /dev/null and b/images/colors/00e21c.png differ diff --git a/images/colors/00e238.png b/images/colors/00e238.png new file mode 100644 index 0000000..9809ca6 Binary files /dev/null and b/images/colors/00e238.png differ diff --git a/images/colors/00e255.png b/images/colors/00e255.png new file mode 100644 index 0000000..a7057b2 Binary files /dev/null and b/images/colors/00e255.png differ diff --git a/images/colors/00e271.png b/images/colors/00e271.png new file mode 100644 index 0000000..edcefeb Binary files /dev/null and b/images/colors/00e271.png differ diff --git a/images/colors/00e28d.png b/images/colors/00e28d.png new file mode 100644 index 0000000..7fd3db2 Binary files /dev/null and b/images/colors/00e28d.png differ diff --git a/images/colors/00e2aa.png b/images/colors/00e2aa.png new file mode 100644 index 0000000..05dffd5 Binary files /dev/null and b/images/colors/00e2aa.png differ diff --git a/images/colors/00e2c6.png b/images/colors/00e2c6.png new file mode 100644 index 0000000..30ea7f6 Binary files /dev/null and b/images/colors/00e2c6.png differ diff --git a/images/colors/00e2e2.png b/images/colors/00e2e2.png new file mode 100644 index 0000000..4753377 Binary files /dev/null and b/images/colors/00e2e2.png differ diff --git a/images/colors/00e2ff.png b/images/colors/00e2ff.png new file mode 100644 index 0000000..8e43eb4 Binary files /dev/null and b/images/colors/00e2ff.png differ diff --git a/images/colors/00ff00.png b/images/colors/00ff00.png new file mode 100644 index 0000000..230537a Binary files /dev/null and b/images/colors/00ff00.png differ diff --git a/images/colors/00ff1c.png b/images/colors/00ff1c.png new file mode 100644 index 0000000..3fbc769 Binary files /dev/null and b/images/colors/00ff1c.png differ diff --git a/images/colors/00ff38.png b/images/colors/00ff38.png new file mode 100644 index 0000000..6d45a81 Binary files /dev/null and b/images/colors/00ff38.png differ diff --git a/images/colors/00ff55.png b/images/colors/00ff55.png new file mode 100644 index 0000000..2f92402 Binary files /dev/null and b/images/colors/00ff55.png differ diff --git a/images/colors/00ff71.png b/images/colors/00ff71.png new file mode 100644 index 0000000..6252866 Binary files /dev/null and b/images/colors/00ff71.png differ diff --git a/images/colors/00ff8d.png b/images/colors/00ff8d.png new file mode 100644 index 0000000..7f7937f Binary files /dev/null and b/images/colors/00ff8d.png differ diff --git a/images/colors/00ffaa.png b/images/colors/00ffaa.png new file mode 100644 index 0000000..ed856a1 Binary files /dev/null and b/images/colors/00ffaa.png differ diff --git a/images/colors/00ffc6.png b/images/colors/00ffc6.png new file mode 100644 index 0000000..c440cfc Binary files /dev/null and b/images/colors/00ffc6.png differ diff --git a/images/colors/00ffe2.png b/images/colors/00ffe2.png new file mode 100644 index 0000000..c04d673 Binary files /dev/null and b/images/colors/00ffe2.png differ diff --git a/images/colors/00ffff.png b/images/colors/00ffff.png new file mode 100644 index 0000000..1ad4328 Binary files /dev/null and b/images/colors/00ffff.png differ diff --git a/images/colors/1c0000.png b/images/colors/1c0000.png new file mode 100644 index 0000000..083c3cd Binary files /dev/null and b/images/colors/1c0000.png differ diff --git a/images/colors/1c001c.png b/images/colors/1c001c.png new file mode 100644 index 0000000..e740593 Binary files /dev/null and b/images/colors/1c001c.png differ diff --git a/images/colors/1c0038.png b/images/colors/1c0038.png new file mode 100644 index 0000000..a77ee5a Binary files /dev/null and b/images/colors/1c0038.png differ diff --git a/images/colors/1c0055.png b/images/colors/1c0055.png new file mode 100644 index 0000000..14d6358 Binary files /dev/null and b/images/colors/1c0055.png differ diff --git a/images/colors/1c0071.png b/images/colors/1c0071.png new file mode 100644 index 0000000..d244a0b Binary files /dev/null and b/images/colors/1c0071.png differ diff --git a/images/colors/1c008d.png b/images/colors/1c008d.png new file mode 100644 index 0000000..27d6734 Binary files /dev/null and b/images/colors/1c008d.png differ diff --git a/images/colors/1c00aa.png b/images/colors/1c00aa.png new file mode 100644 index 0000000..5ed1e43 Binary files /dev/null and b/images/colors/1c00aa.png differ diff --git a/images/colors/1c00c6.png b/images/colors/1c00c6.png new file mode 100644 index 0000000..97f71b6 Binary files /dev/null and b/images/colors/1c00c6.png differ diff --git a/images/colors/1c00e2.png b/images/colors/1c00e2.png new file mode 100644 index 0000000..dae67fa Binary files /dev/null and b/images/colors/1c00e2.png differ diff --git a/images/colors/1c00ff.png b/images/colors/1c00ff.png new file mode 100644 index 0000000..eadcd4d Binary files /dev/null and b/images/colors/1c00ff.png differ diff --git a/images/colors/1c1c00.png b/images/colors/1c1c00.png new file mode 100644 index 0000000..4b4401a Binary files /dev/null and b/images/colors/1c1c00.png differ diff --git a/images/colors/1c1c1c.png b/images/colors/1c1c1c.png new file mode 100644 index 0000000..a22deda Binary files /dev/null and b/images/colors/1c1c1c.png differ diff --git a/images/colors/1c1c38.png b/images/colors/1c1c38.png new file mode 100644 index 0000000..0b03516 Binary files /dev/null and b/images/colors/1c1c38.png differ diff --git a/images/colors/1c1c55.png b/images/colors/1c1c55.png new file mode 100644 index 0000000..315df68 Binary files /dev/null and b/images/colors/1c1c55.png differ diff --git a/images/colors/1c1c71.png b/images/colors/1c1c71.png new file mode 100644 index 0000000..2a93a52 Binary files /dev/null and b/images/colors/1c1c71.png differ diff --git a/images/colors/1c1c8d.png b/images/colors/1c1c8d.png new file mode 100644 index 0000000..c0d3fef Binary files /dev/null and b/images/colors/1c1c8d.png differ diff --git a/images/colors/1c1caa.png b/images/colors/1c1caa.png new file mode 100644 index 0000000..e5b4c72 Binary files /dev/null and b/images/colors/1c1caa.png differ diff --git a/images/colors/1c1cc6.png b/images/colors/1c1cc6.png new file mode 100644 index 0000000..9abfad9 Binary files /dev/null and b/images/colors/1c1cc6.png differ diff --git a/images/colors/1c1ce2.png b/images/colors/1c1ce2.png new file mode 100644 index 0000000..f967759 Binary files /dev/null and b/images/colors/1c1ce2.png differ diff --git a/images/colors/1c1cff.png b/images/colors/1c1cff.png new file mode 100644 index 0000000..0734554 Binary files /dev/null and b/images/colors/1c1cff.png differ diff --git a/images/colors/1c3800.png b/images/colors/1c3800.png new file mode 100644 index 0000000..92d4710 Binary files /dev/null and b/images/colors/1c3800.png differ diff --git a/images/colors/1c381c.png b/images/colors/1c381c.png new file mode 100644 index 0000000..a9d2c1e Binary files /dev/null and b/images/colors/1c381c.png differ diff --git a/images/colors/1c3838.png b/images/colors/1c3838.png new file mode 100644 index 0000000..1822354 Binary files /dev/null and b/images/colors/1c3838.png differ diff --git a/images/colors/1c3855.png b/images/colors/1c3855.png new file mode 100644 index 0000000..6225bfb Binary files /dev/null and b/images/colors/1c3855.png differ diff --git a/images/colors/1c3871.png b/images/colors/1c3871.png new file mode 100644 index 0000000..9cddd4a Binary files /dev/null and b/images/colors/1c3871.png differ diff --git a/images/colors/1c388d.png b/images/colors/1c388d.png new file mode 100644 index 0000000..ba86f33 Binary files /dev/null and b/images/colors/1c388d.png differ diff --git a/images/colors/1c38aa.png b/images/colors/1c38aa.png new file mode 100644 index 0000000..19713d5 Binary files /dev/null and b/images/colors/1c38aa.png differ diff --git a/images/colors/1c38c6.png b/images/colors/1c38c6.png new file mode 100644 index 0000000..5a741fa Binary files /dev/null and b/images/colors/1c38c6.png differ diff --git a/images/colors/1c38e2.png b/images/colors/1c38e2.png new file mode 100644 index 0000000..8a8b1b4 Binary files /dev/null and b/images/colors/1c38e2.png differ diff --git a/images/colors/1c38ff.png b/images/colors/1c38ff.png new file mode 100644 index 0000000..1687343 Binary files /dev/null and b/images/colors/1c38ff.png differ diff --git a/images/colors/1c5500.png b/images/colors/1c5500.png new file mode 100644 index 0000000..a822aea Binary files /dev/null and b/images/colors/1c5500.png differ diff --git a/images/colors/1c551c.png b/images/colors/1c551c.png new file mode 100644 index 0000000..3c9a43a Binary files /dev/null and b/images/colors/1c551c.png differ diff --git a/images/colors/1c5538.png b/images/colors/1c5538.png new file mode 100644 index 0000000..36062e0 Binary files /dev/null and b/images/colors/1c5538.png differ diff --git a/images/colors/1c5555.png b/images/colors/1c5555.png new file mode 100644 index 0000000..9b44161 Binary files /dev/null and b/images/colors/1c5555.png differ diff --git a/images/colors/1c5571.png b/images/colors/1c5571.png new file mode 100644 index 0000000..4c29e5a Binary files /dev/null and b/images/colors/1c5571.png differ diff --git a/images/colors/1c558d.png b/images/colors/1c558d.png new file mode 100644 index 0000000..94b65a2 Binary files /dev/null and b/images/colors/1c558d.png differ diff --git a/images/colors/1c55aa.png b/images/colors/1c55aa.png new file mode 100644 index 0000000..9a6a099 Binary files /dev/null and b/images/colors/1c55aa.png differ diff --git a/images/colors/1c55c6.png b/images/colors/1c55c6.png new file mode 100644 index 0000000..768ad73 Binary files /dev/null and b/images/colors/1c55c6.png differ diff --git a/images/colors/1c55e2.png b/images/colors/1c55e2.png new file mode 100644 index 0000000..afe25dd Binary files /dev/null and b/images/colors/1c55e2.png differ diff --git a/images/colors/1c55ff.png b/images/colors/1c55ff.png new file mode 100644 index 0000000..c55f2cd Binary files /dev/null and b/images/colors/1c55ff.png differ diff --git a/images/colors/1c7100.png b/images/colors/1c7100.png new file mode 100644 index 0000000..ee78bbb Binary files /dev/null and b/images/colors/1c7100.png differ diff --git a/images/colors/1c711c.png b/images/colors/1c711c.png new file mode 100644 index 0000000..d971ff1 Binary files /dev/null and b/images/colors/1c711c.png differ diff --git a/images/colors/1c7138.png b/images/colors/1c7138.png new file mode 100644 index 0000000..8b7c44d Binary files /dev/null and b/images/colors/1c7138.png differ diff --git a/images/colors/1c7155.png b/images/colors/1c7155.png new file mode 100644 index 0000000..05bb234 Binary files /dev/null and b/images/colors/1c7155.png differ diff --git a/images/colors/1c7171.png b/images/colors/1c7171.png new file mode 100644 index 0000000..cf915a6 Binary files /dev/null and b/images/colors/1c7171.png differ diff --git a/images/colors/1c718d.png b/images/colors/1c718d.png new file mode 100644 index 0000000..37a413f Binary files /dev/null and b/images/colors/1c718d.png differ diff --git a/images/colors/1c71aa.png b/images/colors/1c71aa.png new file mode 100644 index 0000000..a0a0bb0 Binary files /dev/null and b/images/colors/1c71aa.png differ diff --git a/images/colors/1c71c6.png b/images/colors/1c71c6.png new file mode 100644 index 0000000..b5f2ea9 Binary files /dev/null and b/images/colors/1c71c6.png differ diff --git a/images/colors/1c71e2.png b/images/colors/1c71e2.png new file mode 100644 index 0000000..f368c96 Binary files /dev/null and b/images/colors/1c71e2.png differ diff --git a/images/colors/1c71ff.png b/images/colors/1c71ff.png new file mode 100644 index 0000000..0a40b29 Binary files /dev/null and b/images/colors/1c71ff.png differ diff --git a/images/colors/1c8d00.png b/images/colors/1c8d00.png new file mode 100644 index 0000000..895caf2 Binary files /dev/null and b/images/colors/1c8d00.png differ diff --git a/images/colors/1c8d1c.png b/images/colors/1c8d1c.png new file mode 100644 index 0000000..29f45e5 Binary files /dev/null and b/images/colors/1c8d1c.png differ diff --git a/images/colors/1c8d38.png b/images/colors/1c8d38.png new file mode 100644 index 0000000..3d39824 Binary files /dev/null and b/images/colors/1c8d38.png differ diff --git a/images/colors/1c8d55.png b/images/colors/1c8d55.png new file mode 100644 index 0000000..a449e19 Binary files /dev/null and b/images/colors/1c8d55.png differ diff --git a/images/colors/1c8d71.png b/images/colors/1c8d71.png new file mode 100644 index 0000000..4d3f827 Binary files /dev/null and b/images/colors/1c8d71.png differ diff --git a/images/colors/1c8d8d.png b/images/colors/1c8d8d.png new file mode 100644 index 0000000..d62e0d5 Binary files /dev/null and b/images/colors/1c8d8d.png differ diff --git a/images/colors/1c8daa.png b/images/colors/1c8daa.png new file mode 100644 index 0000000..d3c4402 Binary files /dev/null and b/images/colors/1c8daa.png differ diff --git a/images/colors/1c8dc6.png b/images/colors/1c8dc6.png new file mode 100644 index 0000000..b9a2375 Binary files /dev/null and b/images/colors/1c8dc6.png differ diff --git a/images/colors/1c8de2.png b/images/colors/1c8de2.png new file mode 100644 index 0000000..8fd81b3 Binary files /dev/null and b/images/colors/1c8de2.png differ diff --git a/images/colors/1c8dff.png b/images/colors/1c8dff.png new file mode 100644 index 0000000..eee8072 Binary files /dev/null and b/images/colors/1c8dff.png differ diff --git a/images/colors/1caa00.png b/images/colors/1caa00.png new file mode 100644 index 0000000..cb18204 Binary files /dev/null and b/images/colors/1caa00.png differ diff --git a/images/colors/1caa1c.png b/images/colors/1caa1c.png new file mode 100644 index 0000000..f2a58b2 Binary files /dev/null and b/images/colors/1caa1c.png differ diff --git a/images/colors/1caa38.png b/images/colors/1caa38.png new file mode 100644 index 0000000..f65283e Binary files /dev/null and b/images/colors/1caa38.png differ diff --git a/images/colors/1caa55.png b/images/colors/1caa55.png new file mode 100644 index 0000000..e207936 Binary files /dev/null and b/images/colors/1caa55.png differ diff --git a/images/colors/1caa71.png b/images/colors/1caa71.png new file mode 100644 index 0000000..8b09797 Binary files /dev/null and b/images/colors/1caa71.png differ diff --git a/images/colors/1caa8d.png b/images/colors/1caa8d.png new file mode 100644 index 0000000..6744dee Binary files /dev/null and b/images/colors/1caa8d.png differ diff --git a/images/colors/1caaaa.png b/images/colors/1caaaa.png new file mode 100644 index 0000000..1a1e030 Binary files /dev/null and b/images/colors/1caaaa.png differ diff --git a/images/colors/1caac6.png b/images/colors/1caac6.png new file mode 100644 index 0000000..7761c8e Binary files /dev/null and b/images/colors/1caac6.png differ diff --git a/images/colors/1caae2.png b/images/colors/1caae2.png new file mode 100644 index 0000000..44bd5bd Binary files /dev/null and b/images/colors/1caae2.png differ diff --git a/images/colors/1caaff.png b/images/colors/1caaff.png new file mode 100644 index 0000000..2c20c47 Binary files /dev/null and b/images/colors/1caaff.png differ diff --git a/images/colors/1cc600.png b/images/colors/1cc600.png new file mode 100644 index 0000000..fc24cd2 Binary files /dev/null and b/images/colors/1cc600.png differ diff --git a/images/colors/1cc61c.png b/images/colors/1cc61c.png new file mode 100644 index 0000000..0d9af9f Binary files /dev/null and b/images/colors/1cc61c.png differ diff --git a/images/colors/1cc638.png b/images/colors/1cc638.png new file mode 100644 index 0000000..09506f9 Binary files /dev/null and b/images/colors/1cc638.png differ diff --git a/images/colors/1cc655.png b/images/colors/1cc655.png new file mode 100644 index 0000000..72951c5 Binary files /dev/null and b/images/colors/1cc655.png differ diff --git a/images/colors/1cc671.png b/images/colors/1cc671.png new file mode 100644 index 0000000..1ccea08 Binary files /dev/null and b/images/colors/1cc671.png differ diff --git a/images/colors/1cc68d.png b/images/colors/1cc68d.png new file mode 100644 index 0000000..038b6d6 Binary files /dev/null and b/images/colors/1cc68d.png differ diff --git a/images/colors/1cc6aa.png b/images/colors/1cc6aa.png new file mode 100644 index 0000000..14769f4 Binary files /dev/null and b/images/colors/1cc6aa.png differ diff --git a/images/colors/1cc6c6.png b/images/colors/1cc6c6.png new file mode 100644 index 0000000..2e5d599 Binary files /dev/null and b/images/colors/1cc6c6.png differ diff --git a/images/colors/1cc6e2.png b/images/colors/1cc6e2.png new file mode 100644 index 0000000..3236bc3 Binary files /dev/null and b/images/colors/1cc6e2.png differ diff --git a/images/colors/1cc6ff.png b/images/colors/1cc6ff.png new file mode 100644 index 0000000..d47798e Binary files /dev/null and b/images/colors/1cc6ff.png differ diff --git a/images/colors/1ce200.png b/images/colors/1ce200.png new file mode 100644 index 0000000..cf386d7 Binary files /dev/null and b/images/colors/1ce200.png differ diff --git a/images/colors/1ce21c.png b/images/colors/1ce21c.png new file mode 100644 index 0000000..aa44629 Binary files /dev/null and b/images/colors/1ce21c.png differ diff --git a/images/colors/1ce238.png b/images/colors/1ce238.png new file mode 100644 index 0000000..7b86b06 Binary files /dev/null and b/images/colors/1ce238.png differ diff --git a/images/colors/1ce255.png b/images/colors/1ce255.png new file mode 100644 index 0000000..f5fd90f Binary files /dev/null and b/images/colors/1ce255.png differ diff --git a/images/colors/1ce271.png b/images/colors/1ce271.png new file mode 100644 index 0000000..67aad57 Binary files /dev/null and b/images/colors/1ce271.png differ diff --git a/images/colors/1ce28d.png b/images/colors/1ce28d.png new file mode 100644 index 0000000..4eeebe9 Binary files /dev/null and b/images/colors/1ce28d.png differ diff --git a/images/colors/1ce2aa.png b/images/colors/1ce2aa.png new file mode 100644 index 0000000..e5f6426 Binary files /dev/null and b/images/colors/1ce2aa.png differ diff --git a/images/colors/1ce2c6.png b/images/colors/1ce2c6.png new file mode 100644 index 0000000..3ad9874 Binary files /dev/null and b/images/colors/1ce2c6.png differ diff --git a/images/colors/1ce2e2.png b/images/colors/1ce2e2.png new file mode 100644 index 0000000..7e2aa85 Binary files /dev/null and b/images/colors/1ce2e2.png differ diff --git a/images/colors/1ce2ff.png b/images/colors/1ce2ff.png new file mode 100644 index 0000000..7f583ab Binary files /dev/null and b/images/colors/1ce2ff.png differ diff --git a/images/colors/1cff00.png b/images/colors/1cff00.png new file mode 100644 index 0000000..ca0c45b Binary files /dev/null and b/images/colors/1cff00.png differ diff --git a/images/colors/1cff1c.png b/images/colors/1cff1c.png new file mode 100644 index 0000000..66a4a1e Binary files /dev/null and b/images/colors/1cff1c.png differ diff --git a/images/colors/1cff38.png b/images/colors/1cff38.png new file mode 100644 index 0000000..02eaf17 Binary files /dev/null and b/images/colors/1cff38.png differ diff --git a/images/colors/1cff55.png b/images/colors/1cff55.png new file mode 100644 index 0000000..d6570e0 Binary files /dev/null and b/images/colors/1cff55.png differ diff --git a/images/colors/1cff71.png b/images/colors/1cff71.png new file mode 100644 index 0000000..2139082 Binary files /dev/null and b/images/colors/1cff71.png differ diff --git a/images/colors/1cff8d.png b/images/colors/1cff8d.png new file mode 100644 index 0000000..d700ef6 Binary files /dev/null and b/images/colors/1cff8d.png differ diff --git a/images/colors/1cffaa.png b/images/colors/1cffaa.png new file mode 100644 index 0000000..be8077b Binary files /dev/null and b/images/colors/1cffaa.png differ diff --git a/images/colors/1cffc6.png b/images/colors/1cffc6.png new file mode 100644 index 0000000..29338bd Binary files /dev/null and b/images/colors/1cffc6.png differ diff --git a/images/colors/1cffe2.png b/images/colors/1cffe2.png new file mode 100644 index 0000000..23f742d Binary files /dev/null and b/images/colors/1cffe2.png differ diff --git a/images/colors/1cffff.png b/images/colors/1cffff.png new file mode 100644 index 0000000..0293d69 Binary files /dev/null and b/images/colors/1cffff.png differ diff --git a/images/colors/380000.png b/images/colors/380000.png new file mode 100644 index 0000000..d21ee5a Binary files /dev/null and b/images/colors/380000.png differ diff --git a/images/colors/38001c.png b/images/colors/38001c.png new file mode 100644 index 0000000..126e241 Binary files /dev/null and b/images/colors/38001c.png differ diff --git a/images/colors/380038.png b/images/colors/380038.png new file mode 100644 index 0000000..e364cee Binary files /dev/null and b/images/colors/380038.png differ diff --git a/images/colors/380055.png b/images/colors/380055.png new file mode 100644 index 0000000..69682c3 Binary files /dev/null and b/images/colors/380055.png differ diff --git a/images/colors/380071.png b/images/colors/380071.png new file mode 100644 index 0000000..2131a53 Binary files /dev/null and b/images/colors/380071.png differ diff --git a/images/colors/38008d.png b/images/colors/38008d.png new file mode 100644 index 0000000..f5f9ad2 Binary files /dev/null and b/images/colors/38008d.png differ diff --git a/images/colors/3800aa.png b/images/colors/3800aa.png new file mode 100644 index 0000000..f97bb4f Binary files /dev/null and b/images/colors/3800aa.png differ diff --git a/images/colors/3800c6.png b/images/colors/3800c6.png new file mode 100644 index 0000000..a992700 Binary files /dev/null and b/images/colors/3800c6.png differ diff --git a/images/colors/3800e2.png b/images/colors/3800e2.png new file mode 100644 index 0000000..6fc4ea2 Binary files /dev/null and b/images/colors/3800e2.png differ diff --git a/images/colors/3800ff.png b/images/colors/3800ff.png new file mode 100644 index 0000000..60dc669 Binary files /dev/null and b/images/colors/3800ff.png differ diff --git a/images/colors/381c00.png b/images/colors/381c00.png new file mode 100644 index 0000000..03b894b Binary files /dev/null and b/images/colors/381c00.png differ diff --git a/images/colors/381c1c.png b/images/colors/381c1c.png new file mode 100644 index 0000000..ffa76f7 Binary files /dev/null and b/images/colors/381c1c.png differ diff --git a/images/colors/381c38.png b/images/colors/381c38.png new file mode 100644 index 0000000..e2f4fca Binary files /dev/null and b/images/colors/381c38.png differ diff --git a/images/colors/381c55.png b/images/colors/381c55.png new file mode 100644 index 0000000..277cc96 Binary files /dev/null and b/images/colors/381c55.png differ diff --git a/images/colors/381c71.png b/images/colors/381c71.png new file mode 100644 index 0000000..6524aab Binary files /dev/null and b/images/colors/381c71.png differ diff --git a/images/colors/381c8d.png b/images/colors/381c8d.png new file mode 100644 index 0000000..f92f2c7 Binary files /dev/null and b/images/colors/381c8d.png differ diff --git a/images/colors/381caa.png b/images/colors/381caa.png new file mode 100644 index 0000000..61d1052 Binary files /dev/null and b/images/colors/381caa.png differ diff --git a/images/colors/381cc6.png b/images/colors/381cc6.png new file mode 100644 index 0000000..15b76e1 Binary files /dev/null and b/images/colors/381cc6.png differ diff --git a/images/colors/381ce2.png b/images/colors/381ce2.png new file mode 100644 index 0000000..fcfd108 Binary files /dev/null and b/images/colors/381ce2.png differ diff --git a/images/colors/381cff.png b/images/colors/381cff.png new file mode 100644 index 0000000..566b94e Binary files /dev/null and b/images/colors/381cff.png differ diff --git a/images/colors/383800.png b/images/colors/383800.png new file mode 100644 index 0000000..a3cc6cc Binary files /dev/null and b/images/colors/383800.png differ diff --git a/images/colors/38381c.png b/images/colors/38381c.png new file mode 100644 index 0000000..1b8c0bd Binary files /dev/null and b/images/colors/38381c.png differ diff --git a/images/colors/383838.png b/images/colors/383838.png new file mode 100644 index 0000000..53c51c8 Binary files /dev/null and b/images/colors/383838.png differ diff --git a/images/colors/383855.png b/images/colors/383855.png new file mode 100644 index 0000000..9694773 Binary files /dev/null and b/images/colors/383855.png differ diff --git a/images/colors/383871.png b/images/colors/383871.png new file mode 100644 index 0000000..18d3eb7 Binary files /dev/null and b/images/colors/383871.png differ diff --git a/images/colors/38388d.png b/images/colors/38388d.png new file mode 100644 index 0000000..a3f4adc Binary files /dev/null and b/images/colors/38388d.png differ diff --git a/images/colors/3838aa.png b/images/colors/3838aa.png new file mode 100644 index 0000000..652284d Binary files /dev/null and b/images/colors/3838aa.png differ diff --git a/images/colors/3838c6.png b/images/colors/3838c6.png new file mode 100644 index 0000000..a1aee8c Binary files /dev/null and b/images/colors/3838c6.png differ diff --git a/images/colors/3838e2.png b/images/colors/3838e2.png new file mode 100644 index 0000000..9dec691 Binary files /dev/null and b/images/colors/3838e2.png differ diff --git a/images/colors/3838ff.png b/images/colors/3838ff.png new file mode 100644 index 0000000..f193516 Binary files /dev/null and b/images/colors/3838ff.png differ diff --git a/images/colors/385500.png b/images/colors/385500.png new file mode 100644 index 0000000..ae6b326 Binary files /dev/null and b/images/colors/385500.png differ diff --git a/images/colors/38551c.png b/images/colors/38551c.png new file mode 100644 index 0000000..ce2851e Binary files /dev/null and b/images/colors/38551c.png differ diff --git a/images/colors/385538.png b/images/colors/385538.png new file mode 100644 index 0000000..f60edfe Binary files /dev/null and b/images/colors/385538.png differ diff --git a/images/colors/385555.png b/images/colors/385555.png new file mode 100644 index 0000000..6004fec Binary files /dev/null and b/images/colors/385555.png differ diff --git a/images/colors/385571.png b/images/colors/385571.png new file mode 100644 index 0000000..a77c89d Binary files /dev/null and b/images/colors/385571.png differ diff --git a/images/colors/38558d.png b/images/colors/38558d.png new file mode 100644 index 0000000..d8f5407 Binary files /dev/null and b/images/colors/38558d.png differ diff --git a/images/colors/3855aa.png b/images/colors/3855aa.png new file mode 100644 index 0000000..63dbe39 Binary files /dev/null and b/images/colors/3855aa.png differ diff --git a/images/colors/3855c6.png b/images/colors/3855c6.png new file mode 100644 index 0000000..d09eb39 Binary files /dev/null and b/images/colors/3855c6.png differ diff --git a/images/colors/3855e2.png b/images/colors/3855e2.png new file mode 100644 index 0000000..7640ae1 Binary files /dev/null and b/images/colors/3855e2.png differ diff --git a/images/colors/3855ff.png b/images/colors/3855ff.png new file mode 100644 index 0000000..c9340ae Binary files /dev/null and b/images/colors/3855ff.png differ diff --git a/images/colors/387100.png b/images/colors/387100.png new file mode 100644 index 0000000..33ba211 Binary files /dev/null and b/images/colors/387100.png differ diff --git a/images/colors/38711c.png b/images/colors/38711c.png new file mode 100644 index 0000000..7de69a4 Binary files /dev/null and b/images/colors/38711c.png differ diff --git a/images/colors/387138.png b/images/colors/387138.png new file mode 100644 index 0000000..0f1ca04 Binary files /dev/null and b/images/colors/387138.png differ diff --git a/images/colors/387155.png b/images/colors/387155.png new file mode 100644 index 0000000..767c200 Binary files /dev/null and b/images/colors/387155.png differ diff --git a/images/colors/387171.png b/images/colors/387171.png new file mode 100644 index 0000000..3603e2f Binary files /dev/null and b/images/colors/387171.png differ diff --git a/images/colors/38718d.png b/images/colors/38718d.png new file mode 100644 index 0000000..9883bc9 Binary files /dev/null and b/images/colors/38718d.png differ diff --git a/images/colors/3871aa.png b/images/colors/3871aa.png new file mode 100644 index 0000000..edc42d5 Binary files /dev/null and b/images/colors/3871aa.png differ diff --git a/images/colors/3871c6.png b/images/colors/3871c6.png new file mode 100644 index 0000000..ffe6d38 Binary files /dev/null and b/images/colors/3871c6.png differ diff --git a/images/colors/3871e2.png b/images/colors/3871e2.png new file mode 100644 index 0000000..57ced67 Binary files /dev/null and b/images/colors/3871e2.png differ diff --git a/images/colors/3871ff.png b/images/colors/3871ff.png new file mode 100644 index 0000000..ea56952 Binary files /dev/null and b/images/colors/3871ff.png differ diff --git a/images/colors/388d00.png b/images/colors/388d00.png new file mode 100644 index 0000000..1f9e97e Binary files /dev/null and b/images/colors/388d00.png differ diff --git a/images/colors/388d1c.png b/images/colors/388d1c.png new file mode 100644 index 0000000..7bd5c96 Binary files /dev/null and b/images/colors/388d1c.png differ diff --git a/images/colors/388d38.png b/images/colors/388d38.png new file mode 100644 index 0000000..d819828 Binary files /dev/null and b/images/colors/388d38.png differ diff --git a/images/colors/388d55.png b/images/colors/388d55.png new file mode 100644 index 0000000..67a52b0 Binary files /dev/null and b/images/colors/388d55.png differ diff --git a/images/colors/388d71.png b/images/colors/388d71.png new file mode 100644 index 0000000..3e980b6 Binary files /dev/null and b/images/colors/388d71.png differ diff --git a/images/colors/388d8d.png b/images/colors/388d8d.png new file mode 100644 index 0000000..5cfedd0 Binary files /dev/null and b/images/colors/388d8d.png differ diff --git a/images/colors/388daa.png b/images/colors/388daa.png new file mode 100644 index 0000000..870584a Binary files /dev/null and b/images/colors/388daa.png differ diff --git a/images/colors/388dc6.png b/images/colors/388dc6.png new file mode 100644 index 0000000..acffa9c Binary files /dev/null and b/images/colors/388dc6.png differ diff --git a/images/colors/388de2.png b/images/colors/388de2.png new file mode 100644 index 0000000..dc05dff Binary files /dev/null and b/images/colors/388de2.png differ diff --git a/images/colors/388dff.png b/images/colors/388dff.png new file mode 100644 index 0000000..57b5630 Binary files /dev/null and b/images/colors/388dff.png differ diff --git a/images/colors/38aa00.png b/images/colors/38aa00.png new file mode 100644 index 0000000..b836e67 Binary files /dev/null and b/images/colors/38aa00.png differ diff --git a/images/colors/38aa1c.png b/images/colors/38aa1c.png new file mode 100644 index 0000000..083558b Binary files /dev/null and b/images/colors/38aa1c.png differ diff --git a/images/colors/38aa38.png b/images/colors/38aa38.png new file mode 100644 index 0000000..2150b2f Binary files /dev/null and b/images/colors/38aa38.png differ diff --git a/images/colors/38aa55.png b/images/colors/38aa55.png new file mode 100644 index 0000000..661239a Binary files /dev/null and b/images/colors/38aa55.png differ diff --git a/images/colors/38aa71.png b/images/colors/38aa71.png new file mode 100644 index 0000000..591b4f5 Binary files /dev/null and b/images/colors/38aa71.png differ diff --git a/images/colors/38aa8d.png b/images/colors/38aa8d.png new file mode 100644 index 0000000..d4acef1 Binary files /dev/null and b/images/colors/38aa8d.png differ diff --git a/images/colors/38aaaa.png b/images/colors/38aaaa.png new file mode 100644 index 0000000..323b29e Binary files /dev/null and b/images/colors/38aaaa.png differ diff --git a/images/colors/38aac6.png b/images/colors/38aac6.png new file mode 100644 index 0000000..532af16 Binary files /dev/null and b/images/colors/38aac6.png differ diff --git a/images/colors/38aae2.png b/images/colors/38aae2.png new file mode 100644 index 0000000..bb70a4c Binary files /dev/null and b/images/colors/38aae2.png differ diff --git a/images/colors/38aaff.png b/images/colors/38aaff.png new file mode 100644 index 0000000..7a8b115 Binary files /dev/null and b/images/colors/38aaff.png differ diff --git a/images/colors/38c600.png b/images/colors/38c600.png new file mode 100644 index 0000000..8282203 Binary files /dev/null and b/images/colors/38c600.png differ diff --git a/images/colors/38c61c.png b/images/colors/38c61c.png new file mode 100644 index 0000000..b8b5bfa Binary files /dev/null and b/images/colors/38c61c.png differ diff --git a/images/colors/38c638.png b/images/colors/38c638.png new file mode 100644 index 0000000..83abee9 Binary files /dev/null and b/images/colors/38c638.png differ diff --git a/images/colors/38c655.png b/images/colors/38c655.png new file mode 100644 index 0000000..d3d2b2a Binary files /dev/null and b/images/colors/38c655.png differ diff --git a/images/colors/38c671.png b/images/colors/38c671.png new file mode 100644 index 0000000..4cc0f57 Binary files /dev/null and b/images/colors/38c671.png differ diff --git a/images/colors/38c68d.png b/images/colors/38c68d.png new file mode 100644 index 0000000..f84a85a Binary files /dev/null and b/images/colors/38c68d.png differ diff --git a/images/colors/38c6aa.png b/images/colors/38c6aa.png new file mode 100644 index 0000000..b1fad19 Binary files /dev/null and b/images/colors/38c6aa.png differ diff --git a/images/colors/38c6c6.png b/images/colors/38c6c6.png new file mode 100644 index 0000000..9fda055 Binary files /dev/null and b/images/colors/38c6c6.png differ diff --git a/images/colors/38c6e2.png b/images/colors/38c6e2.png new file mode 100644 index 0000000..9510c9a Binary files /dev/null and b/images/colors/38c6e2.png differ diff --git a/images/colors/38c6ff.png b/images/colors/38c6ff.png new file mode 100644 index 0000000..4b34c58 Binary files /dev/null and b/images/colors/38c6ff.png differ diff --git a/images/colors/38e200.png b/images/colors/38e200.png new file mode 100644 index 0000000..a4b538b Binary files /dev/null and b/images/colors/38e200.png differ diff --git a/images/colors/38e21c.png b/images/colors/38e21c.png new file mode 100644 index 0000000..4e1a5b3 Binary files /dev/null and b/images/colors/38e21c.png differ diff --git a/images/colors/38e238.png b/images/colors/38e238.png new file mode 100644 index 0000000..e0ecad6 Binary files /dev/null and b/images/colors/38e238.png differ diff --git a/images/colors/38e255.png b/images/colors/38e255.png new file mode 100644 index 0000000..56520cb Binary files /dev/null and b/images/colors/38e255.png differ diff --git a/images/colors/38e271.png b/images/colors/38e271.png new file mode 100644 index 0000000..9901768 Binary files /dev/null and b/images/colors/38e271.png differ diff --git a/images/colors/38e28d.png b/images/colors/38e28d.png new file mode 100644 index 0000000..d17e371 Binary files /dev/null and b/images/colors/38e28d.png differ diff --git a/images/colors/38e2aa.png b/images/colors/38e2aa.png new file mode 100644 index 0000000..c70a936 Binary files /dev/null and b/images/colors/38e2aa.png differ diff --git a/images/colors/38e2c6.png b/images/colors/38e2c6.png new file mode 100644 index 0000000..8e33f9e Binary files /dev/null and b/images/colors/38e2c6.png differ diff --git a/images/colors/38e2e2.png b/images/colors/38e2e2.png new file mode 100644 index 0000000..f1c6e59 Binary files /dev/null and b/images/colors/38e2e2.png differ diff --git a/images/colors/38e2ff.png b/images/colors/38e2ff.png new file mode 100644 index 0000000..0c94650 Binary files /dev/null and b/images/colors/38e2ff.png differ diff --git a/images/colors/38ff00.png b/images/colors/38ff00.png new file mode 100644 index 0000000..83d34e6 Binary files /dev/null and b/images/colors/38ff00.png differ diff --git a/images/colors/38ff1c.png b/images/colors/38ff1c.png new file mode 100644 index 0000000..d9d7b97 Binary files /dev/null and b/images/colors/38ff1c.png differ diff --git a/images/colors/38ff38.png b/images/colors/38ff38.png new file mode 100644 index 0000000..cda02b2 Binary files /dev/null and b/images/colors/38ff38.png differ diff --git a/images/colors/38ff55.png b/images/colors/38ff55.png new file mode 100644 index 0000000..d9f16ca Binary files /dev/null and b/images/colors/38ff55.png differ diff --git a/images/colors/38ff71.png b/images/colors/38ff71.png new file mode 100644 index 0000000..5bc10d5 Binary files /dev/null and b/images/colors/38ff71.png differ diff --git a/images/colors/38ff8d.png b/images/colors/38ff8d.png new file mode 100644 index 0000000..65137ab Binary files /dev/null and b/images/colors/38ff8d.png differ diff --git a/images/colors/38ffaa.png b/images/colors/38ffaa.png new file mode 100644 index 0000000..d803c0b Binary files /dev/null and b/images/colors/38ffaa.png differ diff --git a/images/colors/38ffc6.png b/images/colors/38ffc6.png new file mode 100644 index 0000000..8a49f6e Binary files /dev/null and b/images/colors/38ffc6.png differ diff --git a/images/colors/38ffe2.png b/images/colors/38ffe2.png new file mode 100644 index 0000000..49079f8 Binary files /dev/null and b/images/colors/38ffe2.png differ diff --git a/images/colors/38ffff.png b/images/colors/38ffff.png new file mode 100644 index 0000000..24962ae Binary files /dev/null and b/images/colors/38ffff.png differ diff --git a/images/colors/550000.png b/images/colors/550000.png new file mode 100644 index 0000000..a3320af Binary files /dev/null and b/images/colors/550000.png differ diff --git a/images/colors/55001c.png b/images/colors/55001c.png new file mode 100644 index 0000000..5342f92 Binary files /dev/null and b/images/colors/55001c.png differ diff --git a/images/colors/550038.png b/images/colors/550038.png new file mode 100644 index 0000000..6460418 Binary files /dev/null and b/images/colors/550038.png differ diff --git a/images/colors/550055.png b/images/colors/550055.png new file mode 100644 index 0000000..35852ec Binary files /dev/null and b/images/colors/550055.png differ diff --git a/images/colors/550071.png b/images/colors/550071.png new file mode 100644 index 0000000..6273d49 Binary files /dev/null and b/images/colors/550071.png differ diff --git a/images/colors/55008d.png b/images/colors/55008d.png new file mode 100644 index 0000000..b45b532 Binary files /dev/null and b/images/colors/55008d.png differ diff --git a/images/colors/5500aa.png b/images/colors/5500aa.png new file mode 100644 index 0000000..10b30b7 Binary files /dev/null and b/images/colors/5500aa.png differ diff --git a/images/colors/5500c6.png b/images/colors/5500c6.png new file mode 100644 index 0000000..4e7f1a6 Binary files /dev/null and b/images/colors/5500c6.png differ diff --git a/images/colors/5500e2.png b/images/colors/5500e2.png new file mode 100644 index 0000000..3370b60 Binary files /dev/null and b/images/colors/5500e2.png differ diff --git a/images/colors/5500ff.png b/images/colors/5500ff.png new file mode 100644 index 0000000..c44b3f7 Binary files /dev/null and b/images/colors/5500ff.png differ diff --git a/images/colors/551c00.png b/images/colors/551c00.png new file mode 100644 index 0000000..33e9665 Binary files /dev/null and b/images/colors/551c00.png differ diff --git a/images/colors/551c1c.png b/images/colors/551c1c.png new file mode 100644 index 0000000..0b23700 Binary files /dev/null and b/images/colors/551c1c.png differ diff --git a/images/colors/551c38.png b/images/colors/551c38.png new file mode 100644 index 0000000..98edb40 Binary files /dev/null and b/images/colors/551c38.png differ diff --git a/images/colors/551c55.png b/images/colors/551c55.png new file mode 100644 index 0000000..efc5d7e Binary files /dev/null and b/images/colors/551c55.png differ diff --git a/images/colors/551c71.png b/images/colors/551c71.png new file mode 100644 index 0000000..2e6c3af Binary files /dev/null and b/images/colors/551c71.png differ diff --git a/images/colors/551c8d.png b/images/colors/551c8d.png new file mode 100644 index 0000000..d86c1df Binary files /dev/null and b/images/colors/551c8d.png differ diff --git a/images/colors/551caa.png b/images/colors/551caa.png new file mode 100644 index 0000000..a1b7602 Binary files /dev/null and b/images/colors/551caa.png differ diff --git a/images/colors/551cc6.png b/images/colors/551cc6.png new file mode 100644 index 0000000..48160c2 Binary files /dev/null and b/images/colors/551cc6.png differ diff --git a/images/colors/551ce2.png b/images/colors/551ce2.png new file mode 100644 index 0000000..652013a Binary files /dev/null and b/images/colors/551ce2.png differ diff --git a/images/colors/551cff.png b/images/colors/551cff.png new file mode 100644 index 0000000..d8052f0 Binary files /dev/null and b/images/colors/551cff.png differ diff --git a/images/colors/553800.png b/images/colors/553800.png new file mode 100644 index 0000000..b3cef86 Binary files /dev/null and b/images/colors/553800.png differ diff --git a/images/colors/55381c.png b/images/colors/55381c.png new file mode 100644 index 0000000..c2181a0 Binary files /dev/null and b/images/colors/55381c.png differ diff --git a/images/colors/553838.png b/images/colors/553838.png new file mode 100644 index 0000000..7831285 Binary files /dev/null and b/images/colors/553838.png differ diff --git a/images/colors/553855.png b/images/colors/553855.png new file mode 100644 index 0000000..f4ab408 Binary files /dev/null and b/images/colors/553855.png differ diff --git a/images/colors/553871.png b/images/colors/553871.png new file mode 100644 index 0000000..78a7902 Binary files /dev/null and b/images/colors/553871.png differ diff --git a/images/colors/55388d.png b/images/colors/55388d.png new file mode 100644 index 0000000..9a29f33 Binary files /dev/null and b/images/colors/55388d.png differ diff --git a/images/colors/5538aa.png b/images/colors/5538aa.png new file mode 100644 index 0000000..573cb1b Binary files /dev/null and b/images/colors/5538aa.png differ diff --git a/images/colors/5538c6.png b/images/colors/5538c6.png new file mode 100644 index 0000000..2db5163 Binary files /dev/null and b/images/colors/5538c6.png differ diff --git a/images/colors/5538e2.png b/images/colors/5538e2.png new file mode 100644 index 0000000..cc5f963 Binary files /dev/null and b/images/colors/5538e2.png differ diff --git a/images/colors/5538ff.png b/images/colors/5538ff.png new file mode 100644 index 0000000..9f23f04 Binary files /dev/null and b/images/colors/5538ff.png differ diff --git a/images/colors/555500.png b/images/colors/555500.png new file mode 100644 index 0000000..573d8b5 Binary files /dev/null and b/images/colors/555500.png differ diff --git a/images/colors/55551c.png b/images/colors/55551c.png new file mode 100644 index 0000000..149d74c Binary files /dev/null and b/images/colors/55551c.png differ diff --git a/images/colors/555538.png b/images/colors/555538.png new file mode 100644 index 0000000..9d61626 Binary files /dev/null and b/images/colors/555538.png differ diff --git a/images/colors/555555.png b/images/colors/555555.png new file mode 100644 index 0000000..43f53b4 Binary files /dev/null and b/images/colors/555555.png differ diff --git a/images/colors/555571.png b/images/colors/555571.png new file mode 100644 index 0000000..8a4d378 Binary files /dev/null and b/images/colors/555571.png differ diff --git a/images/colors/55558d.png b/images/colors/55558d.png new file mode 100644 index 0000000..d0dcb43 Binary files /dev/null and b/images/colors/55558d.png differ diff --git a/images/colors/5555aa.png b/images/colors/5555aa.png new file mode 100644 index 0000000..3a0194b Binary files /dev/null and b/images/colors/5555aa.png differ diff --git a/images/colors/5555c6.png b/images/colors/5555c6.png new file mode 100644 index 0000000..4ff6ce2 Binary files /dev/null and b/images/colors/5555c6.png differ diff --git a/images/colors/5555e2.png b/images/colors/5555e2.png new file mode 100644 index 0000000..3459329 Binary files /dev/null and b/images/colors/5555e2.png differ diff --git a/images/colors/5555ff.png b/images/colors/5555ff.png new file mode 100644 index 0000000..59fb3e3 Binary files /dev/null and b/images/colors/5555ff.png differ diff --git a/images/colors/557100.png b/images/colors/557100.png new file mode 100644 index 0000000..3b897a8 Binary files /dev/null and b/images/colors/557100.png differ diff --git a/images/colors/55711c.png b/images/colors/55711c.png new file mode 100644 index 0000000..beb03ff Binary files /dev/null and b/images/colors/55711c.png differ diff --git a/images/colors/557138.png b/images/colors/557138.png new file mode 100644 index 0000000..85b95df Binary files /dev/null and b/images/colors/557138.png differ diff --git a/images/colors/557155.png b/images/colors/557155.png new file mode 100644 index 0000000..ccb166b Binary files /dev/null and b/images/colors/557155.png differ diff --git a/images/colors/557171.png b/images/colors/557171.png new file mode 100644 index 0000000..7f2eaf0 Binary files /dev/null and b/images/colors/557171.png differ diff --git a/images/colors/55718d.png b/images/colors/55718d.png new file mode 100644 index 0000000..a6f3881 Binary files /dev/null and b/images/colors/55718d.png differ diff --git a/images/colors/5571aa.png b/images/colors/5571aa.png new file mode 100644 index 0000000..1bf19b4 Binary files /dev/null and b/images/colors/5571aa.png differ diff --git a/images/colors/5571c6.png b/images/colors/5571c6.png new file mode 100644 index 0000000..028651e Binary files /dev/null and b/images/colors/5571c6.png differ diff --git a/images/colors/5571e2.png b/images/colors/5571e2.png new file mode 100644 index 0000000..e80b687 Binary files /dev/null and b/images/colors/5571e2.png differ diff --git a/images/colors/5571ff.png b/images/colors/5571ff.png new file mode 100644 index 0000000..e9d139e Binary files /dev/null and b/images/colors/5571ff.png differ diff --git a/images/colors/558d00.png b/images/colors/558d00.png new file mode 100644 index 0000000..c7b0990 Binary files /dev/null and b/images/colors/558d00.png differ diff --git a/images/colors/558d1c.png b/images/colors/558d1c.png new file mode 100644 index 0000000..8d35818 Binary files /dev/null and b/images/colors/558d1c.png differ diff --git a/images/colors/558d38.png b/images/colors/558d38.png new file mode 100644 index 0000000..145eac1 Binary files /dev/null and b/images/colors/558d38.png differ diff --git a/images/colors/558d55.png b/images/colors/558d55.png new file mode 100644 index 0000000..05463c8 Binary files /dev/null and b/images/colors/558d55.png differ diff --git a/images/colors/558d71.png b/images/colors/558d71.png new file mode 100644 index 0000000..76f2c7d Binary files /dev/null and b/images/colors/558d71.png differ diff --git a/images/colors/558d8d.png b/images/colors/558d8d.png new file mode 100644 index 0000000..5e91cba Binary files /dev/null and b/images/colors/558d8d.png differ diff --git a/images/colors/558daa.png b/images/colors/558daa.png new file mode 100644 index 0000000..38066a3 Binary files /dev/null and b/images/colors/558daa.png differ diff --git a/images/colors/558dc6.png b/images/colors/558dc6.png new file mode 100644 index 0000000..f4fd68a Binary files /dev/null and b/images/colors/558dc6.png differ diff --git a/images/colors/558de2.png b/images/colors/558de2.png new file mode 100644 index 0000000..f73de24 Binary files /dev/null and b/images/colors/558de2.png differ diff --git a/images/colors/558dff.png b/images/colors/558dff.png new file mode 100644 index 0000000..582cec6 Binary files /dev/null and b/images/colors/558dff.png differ diff --git a/images/colors/55aa00.png b/images/colors/55aa00.png new file mode 100644 index 0000000..aa2c6d7 Binary files /dev/null and b/images/colors/55aa00.png differ diff --git a/images/colors/55aa1c.png b/images/colors/55aa1c.png new file mode 100644 index 0000000..adb1ab7 Binary files /dev/null and b/images/colors/55aa1c.png differ diff --git a/images/colors/55aa38.png b/images/colors/55aa38.png new file mode 100644 index 0000000..fe4e64f Binary files /dev/null and b/images/colors/55aa38.png differ diff --git a/images/colors/55aa55.png b/images/colors/55aa55.png new file mode 100644 index 0000000..740acc5 Binary files /dev/null and b/images/colors/55aa55.png differ diff --git a/images/colors/55aa71.png b/images/colors/55aa71.png new file mode 100644 index 0000000..4706e17 Binary files /dev/null and b/images/colors/55aa71.png differ diff --git a/images/colors/55aa8d.png b/images/colors/55aa8d.png new file mode 100644 index 0000000..3272f07 Binary files /dev/null and b/images/colors/55aa8d.png differ diff --git a/images/colors/55aaaa.png b/images/colors/55aaaa.png new file mode 100644 index 0000000..dd4829b Binary files /dev/null and b/images/colors/55aaaa.png differ diff --git a/images/colors/55aac6.png b/images/colors/55aac6.png new file mode 100644 index 0000000..4288e90 Binary files /dev/null and b/images/colors/55aac6.png differ diff --git a/images/colors/55aae2.png b/images/colors/55aae2.png new file mode 100644 index 0000000..a7b5997 Binary files /dev/null and b/images/colors/55aae2.png differ diff --git a/images/colors/55aaff.png b/images/colors/55aaff.png new file mode 100644 index 0000000..466db2d Binary files /dev/null and b/images/colors/55aaff.png differ diff --git a/images/colors/55c600.png b/images/colors/55c600.png new file mode 100644 index 0000000..62a09a0 Binary files /dev/null and b/images/colors/55c600.png differ diff --git a/images/colors/55c61c.png b/images/colors/55c61c.png new file mode 100644 index 0000000..3be0c97 Binary files /dev/null and b/images/colors/55c61c.png differ diff --git a/images/colors/55c638.png b/images/colors/55c638.png new file mode 100644 index 0000000..ecc02be Binary files /dev/null and b/images/colors/55c638.png differ diff --git a/images/colors/55c655.png b/images/colors/55c655.png new file mode 100644 index 0000000..806b55d Binary files /dev/null and b/images/colors/55c655.png differ diff --git a/images/colors/55c671.png b/images/colors/55c671.png new file mode 100644 index 0000000..cce5d0b Binary files /dev/null and b/images/colors/55c671.png differ diff --git a/images/colors/55c68d.png b/images/colors/55c68d.png new file mode 100644 index 0000000..ac0f7f6 Binary files /dev/null and b/images/colors/55c68d.png differ diff --git a/images/colors/55c6aa.png b/images/colors/55c6aa.png new file mode 100644 index 0000000..dae8e32 Binary files /dev/null and b/images/colors/55c6aa.png differ diff --git a/images/colors/55c6c6.png b/images/colors/55c6c6.png new file mode 100644 index 0000000..06537a4 Binary files /dev/null and b/images/colors/55c6c6.png differ diff --git a/images/colors/55c6e2.png b/images/colors/55c6e2.png new file mode 100644 index 0000000..6e43d0d Binary files /dev/null and b/images/colors/55c6e2.png differ diff --git a/images/colors/55c6ff.png b/images/colors/55c6ff.png new file mode 100644 index 0000000..e3c9337 Binary files /dev/null and b/images/colors/55c6ff.png differ diff --git a/images/colors/55e200.png b/images/colors/55e200.png new file mode 100644 index 0000000..bb972a1 Binary files /dev/null and b/images/colors/55e200.png differ diff --git a/images/colors/55e21c.png b/images/colors/55e21c.png new file mode 100644 index 0000000..5083d5b Binary files /dev/null and b/images/colors/55e21c.png differ diff --git a/images/colors/55e238.png b/images/colors/55e238.png new file mode 100644 index 0000000..3b5a07d Binary files /dev/null and b/images/colors/55e238.png differ diff --git a/images/colors/55e255.png b/images/colors/55e255.png new file mode 100644 index 0000000..8836c25 Binary files /dev/null and b/images/colors/55e255.png differ diff --git a/images/colors/55e271.png b/images/colors/55e271.png new file mode 100644 index 0000000..378fcb2 Binary files /dev/null and b/images/colors/55e271.png differ diff --git a/images/colors/55e28d.png b/images/colors/55e28d.png new file mode 100644 index 0000000..e9a1193 Binary files /dev/null and b/images/colors/55e28d.png differ diff --git a/images/colors/55e2aa.png b/images/colors/55e2aa.png new file mode 100644 index 0000000..192ae0d Binary files /dev/null and b/images/colors/55e2aa.png differ diff --git a/images/colors/55e2c6.png b/images/colors/55e2c6.png new file mode 100644 index 0000000..8f6d31b Binary files /dev/null and b/images/colors/55e2c6.png differ diff --git a/images/colors/55e2e2.png b/images/colors/55e2e2.png new file mode 100644 index 0000000..8d1877e Binary files /dev/null and b/images/colors/55e2e2.png differ diff --git a/images/colors/55e2ff.png b/images/colors/55e2ff.png new file mode 100644 index 0000000..4bdd9f4 Binary files /dev/null and b/images/colors/55e2ff.png differ diff --git a/images/colors/55ff00.png b/images/colors/55ff00.png new file mode 100644 index 0000000..41ee183 Binary files /dev/null and b/images/colors/55ff00.png differ diff --git a/images/colors/55ff1c.png b/images/colors/55ff1c.png new file mode 100644 index 0000000..c463192 Binary files /dev/null and b/images/colors/55ff1c.png differ diff --git a/images/colors/55ff38.png b/images/colors/55ff38.png new file mode 100644 index 0000000..a622439 Binary files /dev/null and b/images/colors/55ff38.png differ diff --git a/images/colors/55ff55.png b/images/colors/55ff55.png new file mode 100644 index 0000000..fc25bb5 Binary files /dev/null and b/images/colors/55ff55.png differ diff --git a/images/colors/55ff71.png b/images/colors/55ff71.png new file mode 100644 index 0000000..79cb2ee Binary files /dev/null and b/images/colors/55ff71.png differ diff --git a/images/colors/55ff8d.png b/images/colors/55ff8d.png new file mode 100644 index 0000000..3330d1b Binary files /dev/null and b/images/colors/55ff8d.png differ diff --git a/images/colors/55ffaa.png b/images/colors/55ffaa.png new file mode 100644 index 0000000..70c2969 Binary files /dev/null and b/images/colors/55ffaa.png differ diff --git a/images/colors/55ffc6.png b/images/colors/55ffc6.png new file mode 100644 index 0000000..4b0f895 Binary files /dev/null and b/images/colors/55ffc6.png differ diff --git a/images/colors/55ffe2.png b/images/colors/55ffe2.png new file mode 100644 index 0000000..79f261c Binary files /dev/null and b/images/colors/55ffe2.png differ diff --git a/images/colors/55ffff.png b/images/colors/55ffff.png new file mode 100644 index 0000000..7ce8b8d Binary files /dev/null and b/images/colors/55ffff.png differ diff --git a/images/colors/710000.png b/images/colors/710000.png new file mode 100644 index 0000000..6678e84 Binary files /dev/null and b/images/colors/710000.png differ diff --git a/images/colors/71001c.png b/images/colors/71001c.png new file mode 100644 index 0000000..5c4cca1 Binary files /dev/null and b/images/colors/71001c.png differ diff --git a/images/colors/710038.png b/images/colors/710038.png new file mode 100644 index 0000000..7655622 Binary files /dev/null and b/images/colors/710038.png differ diff --git a/images/colors/710055.png b/images/colors/710055.png new file mode 100644 index 0000000..0cad6bb Binary files /dev/null and b/images/colors/710055.png differ diff --git a/images/colors/710071.png b/images/colors/710071.png new file mode 100644 index 0000000..b9d569b Binary files /dev/null and b/images/colors/710071.png differ diff --git a/images/colors/71008d.png b/images/colors/71008d.png new file mode 100644 index 0000000..22eb7c5 Binary files /dev/null and b/images/colors/71008d.png differ diff --git a/images/colors/7100aa.png b/images/colors/7100aa.png new file mode 100644 index 0000000..e8f0077 Binary files /dev/null and b/images/colors/7100aa.png differ diff --git a/images/colors/7100c6.png b/images/colors/7100c6.png new file mode 100644 index 0000000..295c760 Binary files /dev/null and b/images/colors/7100c6.png differ diff --git a/images/colors/7100e2.png b/images/colors/7100e2.png new file mode 100644 index 0000000..863b4a8 Binary files /dev/null and b/images/colors/7100e2.png differ diff --git a/images/colors/7100ff.png b/images/colors/7100ff.png new file mode 100644 index 0000000..189d710 Binary files /dev/null and b/images/colors/7100ff.png differ diff --git a/images/colors/711c00.png b/images/colors/711c00.png new file mode 100644 index 0000000..6d52776 Binary files /dev/null and b/images/colors/711c00.png differ diff --git a/images/colors/711c1c.png b/images/colors/711c1c.png new file mode 100644 index 0000000..78ce731 Binary files /dev/null and b/images/colors/711c1c.png differ diff --git a/images/colors/711c38.png b/images/colors/711c38.png new file mode 100644 index 0000000..773153e Binary files /dev/null and b/images/colors/711c38.png differ diff --git a/images/colors/711c55.png b/images/colors/711c55.png new file mode 100644 index 0000000..350cc95 Binary files /dev/null and b/images/colors/711c55.png differ diff --git a/images/colors/711c71.png b/images/colors/711c71.png new file mode 100644 index 0000000..f5bc803 Binary files /dev/null and b/images/colors/711c71.png differ diff --git a/images/colors/711c8d.png b/images/colors/711c8d.png new file mode 100644 index 0000000..38a69f3 Binary files /dev/null and b/images/colors/711c8d.png differ diff --git a/images/colors/711caa.png b/images/colors/711caa.png new file mode 100644 index 0000000..7caf0ea Binary files /dev/null and b/images/colors/711caa.png differ diff --git a/images/colors/711cc6.png b/images/colors/711cc6.png new file mode 100644 index 0000000..6ba3daf Binary files /dev/null and b/images/colors/711cc6.png differ diff --git a/images/colors/711ce2.png b/images/colors/711ce2.png new file mode 100644 index 0000000..50f89a0 Binary files /dev/null and b/images/colors/711ce2.png differ diff --git a/images/colors/711cff.png b/images/colors/711cff.png new file mode 100644 index 0000000..cf5e414 Binary files /dev/null and b/images/colors/711cff.png differ diff --git a/images/colors/713800.png b/images/colors/713800.png new file mode 100644 index 0000000..2250fca Binary files /dev/null and b/images/colors/713800.png differ diff --git a/images/colors/71381c.png b/images/colors/71381c.png new file mode 100644 index 0000000..1bde74f Binary files /dev/null and b/images/colors/71381c.png differ diff --git a/images/colors/713838.png b/images/colors/713838.png new file mode 100644 index 0000000..c16d0c7 Binary files /dev/null and b/images/colors/713838.png differ diff --git a/images/colors/713855.png b/images/colors/713855.png new file mode 100644 index 0000000..eda97d2 Binary files /dev/null and b/images/colors/713855.png differ diff --git a/images/colors/713871.png b/images/colors/713871.png new file mode 100644 index 0000000..29ca59d Binary files /dev/null and b/images/colors/713871.png differ diff --git a/images/colors/71388d.png b/images/colors/71388d.png new file mode 100644 index 0000000..31f142c Binary files /dev/null and b/images/colors/71388d.png differ diff --git a/images/colors/7138aa.png b/images/colors/7138aa.png new file mode 100644 index 0000000..f810d50 Binary files /dev/null and b/images/colors/7138aa.png differ diff --git a/images/colors/7138c6.png b/images/colors/7138c6.png new file mode 100644 index 0000000..ea288f4 Binary files /dev/null and b/images/colors/7138c6.png differ diff --git a/images/colors/7138e2.png b/images/colors/7138e2.png new file mode 100644 index 0000000..32158aa Binary files /dev/null and b/images/colors/7138e2.png differ diff --git a/images/colors/7138ff.png b/images/colors/7138ff.png new file mode 100644 index 0000000..5d03b38 Binary files /dev/null and b/images/colors/7138ff.png differ diff --git a/images/colors/715500.png b/images/colors/715500.png new file mode 100644 index 0000000..c50c9f5 Binary files /dev/null and b/images/colors/715500.png differ diff --git a/images/colors/71551c.png b/images/colors/71551c.png new file mode 100644 index 0000000..496c646 Binary files /dev/null and b/images/colors/71551c.png differ diff --git a/images/colors/715538.png b/images/colors/715538.png new file mode 100644 index 0000000..ba269ab Binary files /dev/null and b/images/colors/715538.png differ diff --git a/images/colors/715555.png b/images/colors/715555.png new file mode 100644 index 0000000..73f0765 Binary files /dev/null and b/images/colors/715555.png differ diff --git a/images/colors/715571.png b/images/colors/715571.png new file mode 100644 index 0000000..ff553c9 Binary files /dev/null and b/images/colors/715571.png differ diff --git a/images/colors/71558d.png b/images/colors/71558d.png new file mode 100644 index 0000000..0b9e189 Binary files /dev/null and b/images/colors/71558d.png differ diff --git a/images/colors/7155aa.png b/images/colors/7155aa.png new file mode 100644 index 0000000..83b1294 Binary files /dev/null and b/images/colors/7155aa.png differ diff --git a/images/colors/7155c6.png b/images/colors/7155c6.png new file mode 100644 index 0000000..0088151 Binary files /dev/null and b/images/colors/7155c6.png differ diff --git a/images/colors/7155e2.png b/images/colors/7155e2.png new file mode 100644 index 0000000..51d8c92 Binary files /dev/null and b/images/colors/7155e2.png differ diff --git a/images/colors/7155ff.png b/images/colors/7155ff.png new file mode 100644 index 0000000..7c025bf Binary files /dev/null and b/images/colors/7155ff.png differ diff --git a/images/colors/717100.png b/images/colors/717100.png new file mode 100644 index 0000000..99f0128 Binary files /dev/null and b/images/colors/717100.png differ diff --git a/images/colors/71711c.png b/images/colors/71711c.png new file mode 100644 index 0000000..be8abef Binary files /dev/null and b/images/colors/71711c.png differ diff --git a/images/colors/717138.png b/images/colors/717138.png new file mode 100644 index 0000000..5fff8d7 Binary files /dev/null and b/images/colors/717138.png differ diff --git a/images/colors/717155.png b/images/colors/717155.png new file mode 100644 index 0000000..2ac3a69 Binary files /dev/null and b/images/colors/717155.png differ diff --git a/images/colors/717171.png b/images/colors/717171.png new file mode 100644 index 0000000..020a482 Binary files /dev/null and b/images/colors/717171.png differ diff --git a/images/colors/71718d.png b/images/colors/71718d.png new file mode 100644 index 0000000..7fdd242 Binary files /dev/null and b/images/colors/71718d.png differ diff --git a/images/colors/7171aa.png b/images/colors/7171aa.png new file mode 100644 index 0000000..9bcc7a3 Binary files /dev/null and b/images/colors/7171aa.png differ diff --git a/images/colors/7171c6.png b/images/colors/7171c6.png new file mode 100644 index 0000000..8679511 Binary files /dev/null and b/images/colors/7171c6.png differ diff --git a/images/colors/7171e2.png b/images/colors/7171e2.png new file mode 100644 index 0000000..4c93e2d Binary files /dev/null and b/images/colors/7171e2.png differ diff --git a/images/colors/7171ff.png b/images/colors/7171ff.png new file mode 100644 index 0000000..db6193b Binary files /dev/null and b/images/colors/7171ff.png differ diff --git a/images/colors/718d00.png b/images/colors/718d00.png new file mode 100644 index 0000000..c036f89 Binary files /dev/null and b/images/colors/718d00.png differ diff --git a/images/colors/718d1c.png b/images/colors/718d1c.png new file mode 100644 index 0000000..06447e5 Binary files /dev/null and b/images/colors/718d1c.png differ diff --git a/images/colors/718d38.png b/images/colors/718d38.png new file mode 100644 index 0000000..f640ab3 Binary files /dev/null and b/images/colors/718d38.png differ diff --git a/images/colors/718d55.png b/images/colors/718d55.png new file mode 100644 index 0000000..ab70901 Binary files /dev/null and b/images/colors/718d55.png differ diff --git a/images/colors/718d71.png b/images/colors/718d71.png new file mode 100644 index 0000000..3fa43c9 Binary files /dev/null and b/images/colors/718d71.png differ diff --git a/images/colors/718d8d.png b/images/colors/718d8d.png new file mode 100644 index 0000000..1393d8a Binary files /dev/null and b/images/colors/718d8d.png differ diff --git a/images/colors/718daa.png b/images/colors/718daa.png new file mode 100644 index 0000000..3050e71 Binary files /dev/null and b/images/colors/718daa.png differ diff --git a/images/colors/718dc6.png b/images/colors/718dc6.png new file mode 100644 index 0000000..fa8eee4 Binary files /dev/null and b/images/colors/718dc6.png differ diff --git a/images/colors/718de2.png b/images/colors/718de2.png new file mode 100644 index 0000000..1c29ec6 Binary files /dev/null and b/images/colors/718de2.png differ diff --git a/images/colors/718dff.png b/images/colors/718dff.png new file mode 100644 index 0000000..051c339 Binary files /dev/null and b/images/colors/718dff.png differ diff --git a/images/colors/71aa00.png b/images/colors/71aa00.png new file mode 100644 index 0000000..ebb8303 Binary files /dev/null and b/images/colors/71aa00.png differ diff --git a/images/colors/71aa1c.png b/images/colors/71aa1c.png new file mode 100644 index 0000000..c1ee5c4 Binary files /dev/null and b/images/colors/71aa1c.png differ diff --git a/images/colors/71aa38.png b/images/colors/71aa38.png new file mode 100644 index 0000000..d7dc636 Binary files /dev/null and b/images/colors/71aa38.png differ diff --git a/images/colors/71aa55.png b/images/colors/71aa55.png new file mode 100644 index 0000000..33def73 Binary files /dev/null and b/images/colors/71aa55.png differ diff --git a/images/colors/71aa71.png b/images/colors/71aa71.png new file mode 100644 index 0000000..4eeba19 Binary files /dev/null and b/images/colors/71aa71.png differ diff --git a/images/colors/71aa8d.png b/images/colors/71aa8d.png new file mode 100644 index 0000000..aa9a74c Binary files /dev/null and b/images/colors/71aa8d.png differ diff --git a/images/colors/71aaaa.png b/images/colors/71aaaa.png new file mode 100644 index 0000000..d0da696 Binary files /dev/null and b/images/colors/71aaaa.png differ diff --git a/images/colors/71aac6.png b/images/colors/71aac6.png new file mode 100644 index 0000000..a6de2b5 Binary files /dev/null and b/images/colors/71aac6.png differ diff --git a/images/colors/71aae2.png b/images/colors/71aae2.png new file mode 100644 index 0000000..0ff207a Binary files /dev/null and b/images/colors/71aae2.png differ diff --git a/images/colors/71aaff.png b/images/colors/71aaff.png new file mode 100644 index 0000000..9b1ca81 Binary files /dev/null and b/images/colors/71aaff.png differ diff --git a/images/colors/71c600.png b/images/colors/71c600.png new file mode 100644 index 0000000..49a12ff Binary files /dev/null and b/images/colors/71c600.png differ diff --git a/images/colors/71c61c.png b/images/colors/71c61c.png new file mode 100644 index 0000000..56fb631 Binary files /dev/null and b/images/colors/71c61c.png differ diff --git a/images/colors/71c638.png b/images/colors/71c638.png new file mode 100644 index 0000000..e816dee Binary files /dev/null and b/images/colors/71c638.png differ diff --git a/images/colors/71c655.png b/images/colors/71c655.png new file mode 100644 index 0000000..be85df5 Binary files /dev/null and b/images/colors/71c655.png differ diff --git a/images/colors/71c671.png b/images/colors/71c671.png new file mode 100644 index 0000000..65161f8 Binary files /dev/null and b/images/colors/71c671.png differ diff --git a/images/colors/71c68d.png b/images/colors/71c68d.png new file mode 100644 index 0000000..04332c4 Binary files /dev/null and b/images/colors/71c68d.png differ diff --git a/images/colors/71c6aa.png b/images/colors/71c6aa.png new file mode 100644 index 0000000..0de2836 Binary files /dev/null and b/images/colors/71c6aa.png differ diff --git a/images/colors/71c6c6.png b/images/colors/71c6c6.png new file mode 100644 index 0000000..c2b4f7b Binary files /dev/null and b/images/colors/71c6c6.png differ diff --git a/images/colors/71c6e2.png b/images/colors/71c6e2.png new file mode 100644 index 0000000..688a89e Binary files /dev/null and b/images/colors/71c6e2.png differ diff --git a/images/colors/71c6ff.png b/images/colors/71c6ff.png new file mode 100644 index 0000000..4f9d0a9 Binary files /dev/null and b/images/colors/71c6ff.png differ diff --git a/images/colors/71e200.png b/images/colors/71e200.png new file mode 100644 index 0000000..a8e0e47 Binary files /dev/null and b/images/colors/71e200.png differ diff --git a/images/colors/71e21c.png b/images/colors/71e21c.png new file mode 100644 index 0000000..145c817 Binary files /dev/null and b/images/colors/71e21c.png differ diff --git a/images/colors/71e238.png b/images/colors/71e238.png new file mode 100644 index 0000000..141260a Binary files /dev/null and b/images/colors/71e238.png differ diff --git a/images/colors/71e255.png b/images/colors/71e255.png new file mode 100644 index 0000000..b408c1c Binary files /dev/null and b/images/colors/71e255.png differ diff --git a/images/colors/71e271.png b/images/colors/71e271.png new file mode 100644 index 0000000..7352aca Binary files /dev/null and b/images/colors/71e271.png differ diff --git a/images/colors/71e28d.png b/images/colors/71e28d.png new file mode 100644 index 0000000..f764d65 Binary files /dev/null and b/images/colors/71e28d.png differ diff --git a/images/colors/71e2aa.png b/images/colors/71e2aa.png new file mode 100644 index 0000000..4111667 Binary files /dev/null and b/images/colors/71e2aa.png differ diff --git a/images/colors/71e2c6.png b/images/colors/71e2c6.png new file mode 100644 index 0000000..4fc6137 Binary files /dev/null and b/images/colors/71e2c6.png differ diff --git a/images/colors/71e2e2.png b/images/colors/71e2e2.png new file mode 100644 index 0000000..d503d68 Binary files /dev/null and b/images/colors/71e2e2.png differ diff --git a/images/colors/71e2ff.png b/images/colors/71e2ff.png new file mode 100644 index 0000000..32db56c Binary files /dev/null and b/images/colors/71e2ff.png differ diff --git a/images/colors/71ff00.png b/images/colors/71ff00.png new file mode 100644 index 0000000..deac9b0 Binary files /dev/null and b/images/colors/71ff00.png differ diff --git a/images/colors/71ff1c.png b/images/colors/71ff1c.png new file mode 100644 index 0000000..3369ee4 Binary files /dev/null and b/images/colors/71ff1c.png differ diff --git a/images/colors/71ff38.png b/images/colors/71ff38.png new file mode 100644 index 0000000..079e753 Binary files /dev/null and b/images/colors/71ff38.png differ diff --git a/images/colors/71ff55.png b/images/colors/71ff55.png new file mode 100644 index 0000000..c76671a Binary files /dev/null and b/images/colors/71ff55.png differ diff --git a/images/colors/71ff71.png b/images/colors/71ff71.png new file mode 100644 index 0000000..fd62723 Binary files /dev/null and b/images/colors/71ff71.png differ diff --git a/images/colors/71ff8d.png b/images/colors/71ff8d.png new file mode 100644 index 0000000..7435167 Binary files /dev/null and b/images/colors/71ff8d.png differ diff --git a/images/colors/71ffaa.png b/images/colors/71ffaa.png new file mode 100644 index 0000000..d1e52e2 Binary files /dev/null and b/images/colors/71ffaa.png differ diff --git a/images/colors/71ffc6.png b/images/colors/71ffc6.png new file mode 100644 index 0000000..d189c09 Binary files /dev/null and b/images/colors/71ffc6.png differ diff --git a/images/colors/71ffe2.png b/images/colors/71ffe2.png new file mode 100644 index 0000000..a6ff519 Binary files /dev/null and b/images/colors/71ffe2.png differ diff --git a/images/colors/71ffff.png b/images/colors/71ffff.png new file mode 100644 index 0000000..a394e61 Binary files /dev/null and b/images/colors/71ffff.png differ diff --git a/images/colors/8d0000.png b/images/colors/8d0000.png new file mode 100644 index 0000000..7301025 Binary files /dev/null and b/images/colors/8d0000.png differ diff --git a/images/colors/8d001c.png b/images/colors/8d001c.png new file mode 100644 index 0000000..8740009 Binary files /dev/null and b/images/colors/8d001c.png differ diff --git a/images/colors/8d0038.png b/images/colors/8d0038.png new file mode 100644 index 0000000..f0e807f Binary files /dev/null and b/images/colors/8d0038.png differ diff --git a/images/colors/8d0055.png b/images/colors/8d0055.png new file mode 100644 index 0000000..b01f295 Binary files /dev/null and b/images/colors/8d0055.png differ diff --git a/images/colors/8d0071.png b/images/colors/8d0071.png new file mode 100644 index 0000000..bb16d9b Binary files /dev/null and b/images/colors/8d0071.png differ diff --git a/images/colors/8d008d.png b/images/colors/8d008d.png new file mode 100644 index 0000000..f1231c3 Binary files /dev/null and b/images/colors/8d008d.png differ diff --git a/images/colors/8d00aa.png b/images/colors/8d00aa.png new file mode 100644 index 0000000..6db616e Binary files /dev/null and b/images/colors/8d00aa.png differ diff --git a/images/colors/8d00c6.png b/images/colors/8d00c6.png new file mode 100644 index 0000000..1123c60 Binary files /dev/null and b/images/colors/8d00c6.png differ diff --git a/images/colors/8d00e2.png b/images/colors/8d00e2.png new file mode 100644 index 0000000..330970c Binary files /dev/null and b/images/colors/8d00e2.png differ diff --git a/images/colors/8d00ff.png b/images/colors/8d00ff.png new file mode 100644 index 0000000..5b9c5cc Binary files /dev/null and b/images/colors/8d00ff.png differ diff --git a/images/colors/8d1c00.png b/images/colors/8d1c00.png new file mode 100644 index 0000000..782eaaa Binary files /dev/null and b/images/colors/8d1c00.png differ diff --git a/images/colors/8d1c1c.png b/images/colors/8d1c1c.png new file mode 100644 index 0000000..a9fb979 Binary files /dev/null and b/images/colors/8d1c1c.png differ diff --git a/images/colors/8d1c38.png b/images/colors/8d1c38.png new file mode 100644 index 0000000..32c376d Binary files /dev/null and b/images/colors/8d1c38.png differ diff --git a/images/colors/8d1c55.png b/images/colors/8d1c55.png new file mode 100644 index 0000000..ee24471 Binary files /dev/null and b/images/colors/8d1c55.png differ diff --git a/images/colors/8d1c71.png b/images/colors/8d1c71.png new file mode 100644 index 0000000..6ea6a1b Binary files /dev/null and b/images/colors/8d1c71.png differ diff --git a/images/colors/8d1c8d.png b/images/colors/8d1c8d.png new file mode 100644 index 0000000..cfcd0ab Binary files /dev/null and b/images/colors/8d1c8d.png differ diff --git a/images/colors/8d1caa.png b/images/colors/8d1caa.png new file mode 100644 index 0000000..fcf9676 Binary files /dev/null and b/images/colors/8d1caa.png differ diff --git a/images/colors/8d1cc6.png b/images/colors/8d1cc6.png new file mode 100644 index 0000000..e09ebdf Binary files /dev/null and b/images/colors/8d1cc6.png differ diff --git a/images/colors/8d1ce2.png b/images/colors/8d1ce2.png new file mode 100644 index 0000000..8e9976c Binary files /dev/null and b/images/colors/8d1ce2.png differ diff --git a/images/colors/8d1cff.png b/images/colors/8d1cff.png new file mode 100644 index 0000000..0ee2bc7 Binary files /dev/null and b/images/colors/8d1cff.png differ diff --git a/images/colors/8d3800.png b/images/colors/8d3800.png new file mode 100644 index 0000000..e937fb4 Binary files /dev/null and b/images/colors/8d3800.png differ diff --git a/images/colors/8d381c.png b/images/colors/8d381c.png new file mode 100644 index 0000000..8154ca2 Binary files /dev/null and b/images/colors/8d381c.png differ diff --git a/images/colors/8d3838.png b/images/colors/8d3838.png new file mode 100644 index 0000000..149dd38 Binary files /dev/null and b/images/colors/8d3838.png differ diff --git a/images/colors/8d3855.png b/images/colors/8d3855.png new file mode 100644 index 0000000..089f4ba Binary files /dev/null and b/images/colors/8d3855.png differ diff --git a/images/colors/8d3871.png b/images/colors/8d3871.png new file mode 100644 index 0000000..67ad9e3 Binary files /dev/null and b/images/colors/8d3871.png differ diff --git a/images/colors/8d388d.png b/images/colors/8d388d.png new file mode 100644 index 0000000..225dc04 Binary files /dev/null and b/images/colors/8d388d.png differ diff --git a/images/colors/8d38aa.png b/images/colors/8d38aa.png new file mode 100644 index 0000000..c11fa0d Binary files /dev/null and b/images/colors/8d38aa.png differ diff --git a/images/colors/8d38c6.png b/images/colors/8d38c6.png new file mode 100644 index 0000000..bdeab9c Binary files /dev/null and b/images/colors/8d38c6.png differ diff --git a/images/colors/8d38e2.png b/images/colors/8d38e2.png new file mode 100644 index 0000000..306f29a Binary files /dev/null and b/images/colors/8d38e2.png differ diff --git a/images/colors/8d38ff.png b/images/colors/8d38ff.png new file mode 100644 index 0000000..f297deb Binary files /dev/null and b/images/colors/8d38ff.png differ diff --git a/images/colors/8d5500.png b/images/colors/8d5500.png new file mode 100644 index 0000000..ad0b43f Binary files /dev/null and b/images/colors/8d5500.png differ diff --git a/images/colors/8d551c.png b/images/colors/8d551c.png new file mode 100644 index 0000000..057cc66 Binary files /dev/null and b/images/colors/8d551c.png differ diff --git a/images/colors/8d5538.png b/images/colors/8d5538.png new file mode 100644 index 0000000..181431b Binary files /dev/null and b/images/colors/8d5538.png differ diff --git a/images/colors/8d5555.png b/images/colors/8d5555.png new file mode 100644 index 0000000..1a62e09 Binary files /dev/null and b/images/colors/8d5555.png differ diff --git a/images/colors/8d5571.png b/images/colors/8d5571.png new file mode 100644 index 0000000..e5e7726 Binary files /dev/null and b/images/colors/8d5571.png differ diff --git a/images/colors/8d558d.png b/images/colors/8d558d.png new file mode 100644 index 0000000..29cb262 Binary files /dev/null and b/images/colors/8d558d.png differ diff --git a/images/colors/8d55aa.png b/images/colors/8d55aa.png new file mode 100644 index 0000000..80b6bad Binary files /dev/null and b/images/colors/8d55aa.png differ diff --git a/images/colors/8d55c6.png b/images/colors/8d55c6.png new file mode 100644 index 0000000..cd66071 Binary files /dev/null and b/images/colors/8d55c6.png differ diff --git a/images/colors/8d55e2.png b/images/colors/8d55e2.png new file mode 100644 index 0000000..022382f Binary files /dev/null and b/images/colors/8d55e2.png differ diff --git a/images/colors/8d55ff.png b/images/colors/8d55ff.png new file mode 100644 index 0000000..bbe0f37 Binary files /dev/null and b/images/colors/8d55ff.png differ diff --git a/images/colors/8d7100.png b/images/colors/8d7100.png new file mode 100644 index 0000000..cb3753d Binary files /dev/null and b/images/colors/8d7100.png differ diff --git a/images/colors/8d711c.png b/images/colors/8d711c.png new file mode 100644 index 0000000..2993994 Binary files /dev/null and b/images/colors/8d711c.png differ diff --git a/images/colors/8d7138.png b/images/colors/8d7138.png new file mode 100644 index 0000000..b797991 Binary files /dev/null and b/images/colors/8d7138.png differ diff --git a/images/colors/8d7155.png b/images/colors/8d7155.png new file mode 100644 index 0000000..485b4f1 Binary files /dev/null and b/images/colors/8d7155.png differ diff --git a/images/colors/8d7171.png b/images/colors/8d7171.png new file mode 100644 index 0000000..e6e205e Binary files /dev/null and b/images/colors/8d7171.png differ diff --git a/images/colors/8d718d.png b/images/colors/8d718d.png new file mode 100644 index 0000000..e25d6e5 Binary files /dev/null and b/images/colors/8d718d.png differ diff --git a/images/colors/8d71aa.png b/images/colors/8d71aa.png new file mode 100644 index 0000000..c74cef2 Binary files /dev/null and b/images/colors/8d71aa.png differ diff --git a/images/colors/8d71c6.png b/images/colors/8d71c6.png new file mode 100644 index 0000000..29ea70a Binary files /dev/null and b/images/colors/8d71c6.png differ diff --git a/images/colors/8d71e2.png b/images/colors/8d71e2.png new file mode 100644 index 0000000..f175ef3 Binary files /dev/null and b/images/colors/8d71e2.png differ diff --git a/images/colors/8d71ff.png b/images/colors/8d71ff.png new file mode 100644 index 0000000..0e37b09 Binary files /dev/null and b/images/colors/8d71ff.png differ diff --git a/images/colors/8d8d00.png b/images/colors/8d8d00.png new file mode 100644 index 0000000..496d057 Binary files /dev/null and b/images/colors/8d8d00.png differ diff --git a/images/colors/8d8d1c.png b/images/colors/8d8d1c.png new file mode 100644 index 0000000..73a3bc2 Binary files /dev/null and b/images/colors/8d8d1c.png differ diff --git a/images/colors/8d8d38.png b/images/colors/8d8d38.png new file mode 100644 index 0000000..be8a369 Binary files /dev/null and b/images/colors/8d8d38.png differ diff --git a/images/colors/8d8d55.png b/images/colors/8d8d55.png new file mode 100644 index 0000000..f3bb826 Binary files /dev/null and b/images/colors/8d8d55.png differ diff --git a/images/colors/8d8d71.png b/images/colors/8d8d71.png new file mode 100644 index 0000000..b24c520 Binary files /dev/null and b/images/colors/8d8d71.png differ diff --git a/images/colors/8d8d8d.png b/images/colors/8d8d8d.png new file mode 100644 index 0000000..669e150 Binary files /dev/null and b/images/colors/8d8d8d.png differ diff --git a/images/colors/8d8daa.png b/images/colors/8d8daa.png new file mode 100644 index 0000000..f1d98f0 Binary files /dev/null and b/images/colors/8d8daa.png differ diff --git a/images/colors/8d8dc6.png b/images/colors/8d8dc6.png new file mode 100644 index 0000000..f464bca Binary files /dev/null and b/images/colors/8d8dc6.png differ diff --git a/images/colors/8d8de2.png b/images/colors/8d8de2.png new file mode 100644 index 0000000..d57b9d8 Binary files /dev/null and b/images/colors/8d8de2.png differ diff --git a/images/colors/8d8dff.png b/images/colors/8d8dff.png new file mode 100644 index 0000000..7bddd51 Binary files /dev/null and b/images/colors/8d8dff.png differ diff --git a/images/colors/8daa00.png b/images/colors/8daa00.png new file mode 100644 index 0000000..eb34e8c Binary files /dev/null and b/images/colors/8daa00.png differ diff --git a/images/colors/8daa1c.png b/images/colors/8daa1c.png new file mode 100644 index 0000000..dd93a4e Binary files /dev/null and b/images/colors/8daa1c.png differ diff --git a/images/colors/8daa38.png b/images/colors/8daa38.png new file mode 100644 index 0000000..18a0d7a Binary files /dev/null and b/images/colors/8daa38.png differ diff --git a/images/colors/8daa55.png b/images/colors/8daa55.png new file mode 100644 index 0000000..d4886aa Binary files /dev/null and b/images/colors/8daa55.png differ diff --git a/images/colors/8daa71.png b/images/colors/8daa71.png new file mode 100644 index 0000000..0981ee3 Binary files /dev/null and b/images/colors/8daa71.png differ diff --git a/images/colors/8daa8d.png b/images/colors/8daa8d.png new file mode 100644 index 0000000..d21a3de Binary files /dev/null and b/images/colors/8daa8d.png differ diff --git a/images/colors/8daaaa.png b/images/colors/8daaaa.png new file mode 100644 index 0000000..ba55ce1 Binary files /dev/null and b/images/colors/8daaaa.png differ diff --git a/images/colors/8daac6.png b/images/colors/8daac6.png new file mode 100644 index 0000000..3b42427 Binary files /dev/null and b/images/colors/8daac6.png differ diff --git a/images/colors/8daae2.png b/images/colors/8daae2.png new file mode 100644 index 0000000..0837c4f Binary files /dev/null and b/images/colors/8daae2.png differ diff --git a/images/colors/8daaff.png b/images/colors/8daaff.png new file mode 100644 index 0000000..6a3527d Binary files /dev/null and b/images/colors/8daaff.png differ diff --git a/images/colors/8dc600.png b/images/colors/8dc600.png new file mode 100644 index 0000000..c923a10 Binary files /dev/null and b/images/colors/8dc600.png differ diff --git a/images/colors/8dc61c.png b/images/colors/8dc61c.png new file mode 100644 index 0000000..1c636fc Binary files /dev/null and b/images/colors/8dc61c.png differ diff --git a/images/colors/8dc638.png b/images/colors/8dc638.png new file mode 100644 index 0000000..e629fa7 Binary files /dev/null and b/images/colors/8dc638.png differ diff --git a/images/colors/8dc655.png b/images/colors/8dc655.png new file mode 100644 index 0000000..98ed61a Binary files /dev/null and b/images/colors/8dc655.png differ diff --git a/images/colors/8dc671.png b/images/colors/8dc671.png new file mode 100644 index 0000000..b77eb80 Binary files /dev/null and b/images/colors/8dc671.png differ diff --git a/images/colors/8dc68d.png b/images/colors/8dc68d.png new file mode 100644 index 0000000..dada1be Binary files /dev/null and b/images/colors/8dc68d.png differ diff --git a/images/colors/8dc6aa.png b/images/colors/8dc6aa.png new file mode 100644 index 0000000..67b307d Binary files /dev/null and b/images/colors/8dc6aa.png differ diff --git a/images/colors/8dc6c6.png b/images/colors/8dc6c6.png new file mode 100644 index 0000000..3216548 Binary files /dev/null and b/images/colors/8dc6c6.png differ diff --git a/images/colors/8dc6e2.png b/images/colors/8dc6e2.png new file mode 100644 index 0000000..7bff395 Binary files /dev/null and b/images/colors/8dc6e2.png differ diff --git a/images/colors/8dc6ff.png b/images/colors/8dc6ff.png new file mode 100644 index 0000000..04aa730 Binary files /dev/null and b/images/colors/8dc6ff.png differ diff --git a/images/colors/8de200.png b/images/colors/8de200.png new file mode 100644 index 0000000..9576ba2 Binary files /dev/null and b/images/colors/8de200.png differ diff --git a/images/colors/8de21c.png b/images/colors/8de21c.png new file mode 100644 index 0000000..1932e85 Binary files /dev/null and b/images/colors/8de21c.png differ diff --git a/images/colors/8de238.png b/images/colors/8de238.png new file mode 100644 index 0000000..e5c28ff Binary files /dev/null and b/images/colors/8de238.png differ diff --git a/images/colors/8de255.png b/images/colors/8de255.png new file mode 100644 index 0000000..14ae1fa Binary files /dev/null and b/images/colors/8de255.png differ diff --git a/images/colors/8de271.png b/images/colors/8de271.png new file mode 100644 index 0000000..fd4c653 Binary files /dev/null and b/images/colors/8de271.png differ diff --git a/images/colors/8de28d.png b/images/colors/8de28d.png new file mode 100644 index 0000000..7464ba0 Binary files /dev/null and b/images/colors/8de28d.png differ diff --git a/images/colors/8de2aa.png b/images/colors/8de2aa.png new file mode 100644 index 0000000..c8b1cfc Binary files /dev/null and b/images/colors/8de2aa.png differ diff --git a/images/colors/8de2c6.png b/images/colors/8de2c6.png new file mode 100644 index 0000000..25a38f6 Binary files /dev/null and b/images/colors/8de2c6.png differ diff --git a/images/colors/8de2e2.png b/images/colors/8de2e2.png new file mode 100644 index 0000000..b2aa71b Binary files /dev/null and b/images/colors/8de2e2.png differ diff --git a/images/colors/8de2ff.png b/images/colors/8de2ff.png new file mode 100644 index 0000000..f0d8fab Binary files /dev/null and b/images/colors/8de2ff.png differ diff --git a/images/colors/8dff00.png b/images/colors/8dff00.png new file mode 100644 index 0000000..c46c34d Binary files /dev/null and b/images/colors/8dff00.png differ diff --git a/images/colors/8dff1c.png b/images/colors/8dff1c.png new file mode 100644 index 0000000..f5e27a4 Binary files /dev/null and b/images/colors/8dff1c.png differ diff --git a/images/colors/8dff38.png b/images/colors/8dff38.png new file mode 100644 index 0000000..79887cf Binary files /dev/null and b/images/colors/8dff38.png differ diff --git a/images/colors/8dff55.png b/images/colors/8dff55.png new file mode 100644 index 0000000..ac89eaa Binary files /dev/null and b/images/colors/8dff55.png differ diff --git a/images/colors/8dff71.png b/images/colors/8dff71.png new file mode 100644 index 0000000..c4d1e1b Binary files /dev/null and b/images/colors/8dff71.png differ diff --git a/images/colors/8dff8d.png b/images/colors/8dff8d.png new file mode 100644 index 0000000..99eeff3 Binary files /dev/null and b/images/colors/8dff8d.png differ diff --git a/images/colors/8dffaa.png b/images/colors/8dffaa.png new file mode 100644 index 0000000..844cf84 Binary files /dev/null and b/images/colors/8dffaa.png differ diff --git a/images/colors/8dffc6.png b/images/colors/8dffc6.png new file mode 100644 index 0000000..25e88c4 Binary files /dev/null and b/images/colors/8dffc6.png differ diff --git a/images/colors/8dffe2.png b/images/colors/8dffe2.png new file mode 100644 index 0000000..45328c3 Binary files /dev/null and b/images/colors/8dffe2.png differ diff --git a/images/colors/8dffff.png b/images/colors/8dffff.png new file mode 100644 index 0000000..b31cbf8 Binary files /dev/null and b/images/colors/8dffff.png differ diff --git a/images/colors/aa0000.png b/images/colors/aa0000.png new file mode 100644 index 0000000..362bdc4 Binary files /dev/null and b/images/colors/aa0000.png differ diff --git a/images/colors/aa001c.png b/images/colors/aa001c.png new file mode 100644 index 0000000..c0b79db Binary files /dev/null and b/images/colors/aa001c.png differ diff --git a/images/colors/aa0038.png b/images/colors/aa0038.png new file mode 100644 index 0000000..29837c7 Binary files /dev/null and b/images/colors/aa0038.png differ diff --git a/images/colors/aa0055.png b/images/colors/aa0055.png new file mode 100644 index 0000000..4d9cc92 Binary files /dev/null and b/images/colors/aa0055.png differ diff --git a/images/colors/aa0071.png b/images/colors/aa0071.png new file mode 100644 index 0000000..a978395 Binary files /dev/null and b/images/colors/aa0071.png differ diff --git a/images/colors/aa008d.png b/images/colors/aa008d.png new file mode 100644 index 0000000..a825e5d Binary files /dev/null and b/images/colors/aa008d.png differ diff --git a/images/colors/aa00aa.png b/images/colors/aa00aa.png new file mode 100644 index 0000000..e2e8a40 Binary files /dev/null and b/images/colors/aa00aa.png differ diff --git a/images/colors/aa00c6.png b/images/colors/aa00c6.png new file mode 100644 index 0000000..d2c1c86 Binary files /dev/null and b/images/colors/aa00c6.png differ diff --git a/images/colors/aa00e2.png b/images/colors/aa00e2.png new file mode 100644 index 0000000..0b5524c Binary files /dev/null and b/images/colors/aa00e2.png differ diff --git a/images/colors/aa00ff.png b/images/colors/aa00ff.png new file mode 100644 index 0000000..4e2a645 Binary files /dev/null and b/images/colors/aa00ff.png differ diff --git a/images/colors/aa1c00.png b/images/colors/aa1c00.png new file mode 100644 index 0000000..455458f Binary files /dev/null and b/images/colors/aa1c00.png differ diff --git a/images/colors/aa1c1c.png b/images/colors/aa1c1c.png new file mode 100644 index 0000000..841e07d Binary files /dev/null and b/images/colors/aa1c1c.png differ diff --git a/images/colors/aa1c38.png b/images/colors/aa1c38.png new file mode 100644 index 0000000..2ac858e Binary files /dev/null and b/images/colors/aa1c38.png differ diff --git a/images/colors/aa1c55.png b/images/colors/aa1c55.png new file mode 100644 index 0000000..091c5fa Binary files /dev/null and b/images/colors/aa1c55.png differ diff --git a/images/colors/aa1c71.png b/images/colors/aa1c71.png new file mode 100644 index 0000000..a655bbe Binary files /dev/null and b/images/colors/aa1c71.png differ diff --git a/images/colors/aa1c8d.png b/images/colors/aa1c8d.png new file mode 100644 index 0000000..bc06ec2 Binary files /dev/null and b/images/colors/aa1c8d.png differ diff --git a/images/colors/aa1caa.png b/images/colors/aa1caa.png new file mode 100644 index 0000000..42727e4 Binary files /dev/null and b/images/colors/aa1caa.png differ diff --git a/images/colors/aa1cc6.png b/images/colors/aa1cc6.png new file mode 100644 index 0000000..75699d7 Binary files /dev/null and b/images/colors/aa1cc6.png differ diff --git a/images/colors/aa1ce2.png b/images/colors/aa1ce2.png new file mode 100644 index 0000000..0d3581c Binary files /dev/null and b/images/colors/aa1ce2.png differ diff --git a/images/colors/aa1cff.png b/images/colors/aa1cff.png new file mode 100644 index 0000000..5324e60 Binary files /dev/null and b/images/colors/aa1cff.png differ diff --git a/images/colors/aa3800.png b/images/colors/aa3800.png new file mode 100644 index 0000000..8f2d49e Binary files /dev/null and b/images/colors/aa3800.png differ diff --git a/images/colors/aa381c.png b/images/colors/aa381c.png new file mode 100644 index 0000000..1dabd15 Binary files /dev/null and b/images/colors/aa381c.png differ diff --git a/images/colors/aa3838.png b/images/colors/aa3838.png new file mode 100644 index 0000000..085c56b Binary files /dev/null and b/images/colors/aa3838.png differ diff --git a/images/colors/aa3855.png b/images/colors/aa3855.png new file mode 100644 index 0000000..51a578f Binary files /dev/null and b/images/colors/aa3855.png differ diff --git a/images/colors/aa3871.png b/images/colors/aa3871.png new file mode 100644 index 0000000..4c4c446 Binary files /dev/null and b/images/colors/aa3871.png differ diff --git a/images/colors/aa388d.png b/images/colors/aa388d.png new file mode 100644 index 0000000..5bd0f94 Binary files /dev/null and b/images/colors/aa388d.png differ diff --git a/images/colors/aa38aa.png b/images/colors/aa38aa.png new file mode 100644 index 0000000..cbe4c66 Binary files /dev/null and b/images/colors/aa38aa.png differ diff --git a/images/colors/aa38c6.png b/images/colors/aa38c6.png new file mode 100644 index 0000000..f00ea0e Binary files /dev/null and b/images/colors/aa38c6.png differ diff --git a/images/colors/aa38e2.png b/images/colors/aa38e2.png new file mode 100644 index 0000000..ca87d62 Binary files /dev/null and b/images/colors/aa38e2.png differ diff --git a/images/colors/aa38ff.png b/images/colors/aa38ff.png new file mode 100644 index 0000000..83ef96d Binary files /dev/null and b/images/colors/aa38ff.png differ diff --git a/images/colors/aa5500.png b/images/colors/aa5500.png new file mode 100644 index 0000000..82394a6 Binary files /dev/null and b/images/colors/aa5500.png differ diff --git a/images/colors/aa551c.png b/images/colors/aa551c.png new file mode 100644 index 0000000..3c53868 Binary files /dev/null and b/images/colors/aa551c.png differ diff --git a/images/colors/aa5538.png b/images/colors/aa5538.png new file mode 100644 index 0000000..c25ce89 Binary files /dev/null and b/images/colors/aa5538.png differ diff --git a/images/colors/aa5555.png b/images/colors/aa5555.png new file mode 100644 index 0000000..ef9cd57 Binary files /dev/null and b/images/colors/aa5555.png differ diff --git a/images/colors/aa5571.png b/images/colors/aa5571.png new file mode 100644 index 0000000..ace67e9 Binary files /dev/null and b/images/colors/aa5571.png differ diff --git a/images/colors/aa558d.png b/images/colors/aa558d.png new file mode 100644 index 0000000..9336426 Binary files /dev/null and b/images/colors/aa558d.png differ diff --git a/images/colors/aa55aa.png b/images/colors/aa55aa.png new file mode 100644 index 0000000..7fcbfeb Binary files /dev/null and b/images/colors/aa55aa.png differ diff --git a/images/colors/aa55c6.png b/images/colors/aa55c6.png new file mode 100644 index 0000000..db4be15 Binary files /dev/null and b/images/colors/aa55c6.png differ diff --git a/images/colors/aa55e2.png b/images/colors/aa55e2.png new file mode 100644 index 0000000..24fc9bf Binary files /dev/null and b/images/colors/aa55e2.png differ diff --git a/images/colors/aa55ff.png b/images/colors/aa55ff.png new file mode 100644 index 0000000..af27c2e Binary files /dev/null and b/images/colors/aa55ff.png differ diff --git a/images/colors/aa7100.png b/images/colors/aa7100.png new file mode 100644 index 0000000..f1a2810 Binary files /dev/null and b/images/colors/aa7100.png differ diff --git a/images/colors/aa711c.png b/images/colors/aa711c.png new file mode 100644 index 0000000..26d38d6 Binary files /dev/null and b/images/colors/aa711c.png differ diff --git a/images/colors/aa7138.png b/images/colors/aa7138.png new file mode 100644 index 0000000..f75f2db Binary files /dev/null and b/images/colors/aa7138.png differ diff --git a/images/colors/aa7155.png b/images/colors/aa7155.png new file mode 100644 index 0000000..d3e6b9a Binary files /dev/null and b/images/colors/aa7155.png differ diff --git a/images/colors/aa7171.png b/images/colors/aa7171.png new file mode 100644 index 0000000..c346ddd Binary files /dev/null and b/images/colors/aa7171.png differ diff --git a/images/colors/aa718d.png b/images/colors/aa718d.png new file mode 100644 index 0000000..37c3a5a Binary files /dev/null and b/images/colors/aa718d.png differ diff --git a/images/colors/aa71aa.png b/images/colors/aa71aa.png new file mode 100644 index 0000000..bacb673 Binary files /dev/null and b/images/colors/aa71aa.png differ diff --git a/images/colors/aa71c6.png b/images/colors/aa71c6.png new file mode 100644 index 0000000..679e771 Binary files /dev/null and b/images/colors/aa71c6.png differ diff --git a/images/colors/aa71e2.png b/images/colors/aa71e2.png new file mode 100644 index 0000000..9ad7ba6 Binary files /dev/null and b/images/colors/aa71e2.png differ diff --git a/images/colors/aa71ff.png b/images/colors/aa71ff.png new file mode 100644 index 0000000..5715437 Binary files /dev/null and b/images/colors/aa71ff.png differ diff --git a/images/colors/aa8d00.png b/images/colors/aa8d00.png new file mode 100644 index 0000000..65264e0 Binary files /dev/null and b/images/colors/aa8d00.png differ diff --git a/images/colors/aa8d1c.png b/images/colors/aa8d1c.png new file mode 100644 index 0000000..2623a5e Binary files /dev/null and b/images/colors/aa8d1c.png differ diff --git a/images/colors/aa8d38.png b/images/colors/aa8d38.png new file mode 100644 index 0000000..9df477b Binary files /dev/null and b/images/colors/aa8d38.png differ diff --git a/images/colors/aa8d55.png b/images/colors/aa8d55.png new file mode 100644 index 0000000..3965e09 Binary files /dev/null and b/images/colors/aa8d55.png differ diff --git a/images/colors/aa8d71.png b/images/colors/aa8d71.png new file mode 100644 index 0000000..76e4bbf Binary files /dev/null and b/images/colors/aa8d71.png differ diff --git a/images/colors/aa8d8d.png b/images/colors/aa8d8d.png new file mode 100644 index 0000000..4ce53e9 Binary files /dev/null and b/images/colors/aa8d8d.png differ diff --git a/images/colors/aa8daa.png b/images/colors/aa8daa.png new file mode 100644 index 0000000..775897f Binary files /dev/null and b/images/colors/aa8daa.png differ diff --git a/images/colors/aa8dc6.png b/images/colors/aa8dc6.png new file mode 100644 index 0000000..bb54dc2 Binary files /dev/null and b/images/colors/aa8dc6.png differ diff --git a/images/colors/aa8de2.png b/images/colors/aa8de2.png new file mode 100644 index 0000000..cfc9145 Binary files /dev/null and b/images/colors/aa8de2.png differ diff --git a/images/colors/aa8dff.png b/images/colors/aa8dff.png new file mode 100644 index 0000000..39d4e1b Binary files /dev/null and b/images/colors/aa8dff.png differ diff --git a/images/colors/aaaa00.png b/images/colors/aaaa00.png new file mode 100644 index 0000000..0cf4994 Binary files /dev/null and b/images/colors/aaaa00.png differ diff --git a/images/colors/aaaa1c.png b/images/colors/aaaa1c.png new file mode 100644 index 0000000..fadc8ad Binary files /dev/null and b/images/colors/aaaa1c.png differ diff --git a/images/colors/aaaa38.png b/images/colors/aaaa38.png new file mode 100644 index 0000000..fc0dcbf Binary files /dev/null and b/images/colors/aaaa38.png differ diff --git a/images/colors/aaaa55.png b/images/colors/aaaa55.png new file mode 100644 index 0000000..c6e7617 Binary files /dev/null and b/images/colors/aaaa55.png differ diff --git a/images/colors/aaaa71.png b/images/colors/aaaa71.png new file mode 100644 index 0000000..901dbfd Binary files /dev/null and b/images/colors/aaaa71.png differ diff --git a/images/colors/aaaa8d.png b/images/colors/aaaa8d.png new file mode 100644 index 0000000..24384cc Binary files /dev/null and b/images/colors/aaaa8d.png differ diff --git a/images/colors/aaaaaa.png b/images/colors/aaaaaa.png new file mode 100644 index 0000000..be96ca1 Binary files /dev/null and b/images/colors/aaaaaa.png differ diff --git a/images/colors/aaaac6.png b/images/colors/aaaac6.png new file mode 100644 index 0000000..fa57c7e Binary files /dev/null and b/images/colors/aaaac6.png differ diff --git a/images/colors/aaaae2.png b/images/colors/aaaae2.png new file mode 100644 index 0000000..7e5fd77 Binary files /dev/null and b/images/colors/aaaae2.png differ diff --git a/images/colors/aaaaff.png b/images/colors/aaaaff.png new file mode 100644 index 0000000..82a181c Binary files /dev/null and b/images/colors/aaaaff.png differ diff --git a/images/colors/aac600.png b/images/colors/aac600.png new file mode 100644 index 0000000..24ee04d Binary files /dev/null and b/images/colors/aac600.png differ diff --git a/images/colors/aac61c.png b/images/colors/aac61c.png new file mode 100644 index 0000000..6fd7af5 Binary files /dev/null and b/images/colors/aac61c.png differ diff --git a/images/colors/aac638.png b/images/colors/aac638.png new file mode 100644 index 0000000..4c59aae Binary files /dev/null and b/images/colors/aac638.png differ diff --git a/images/colors/aac655.png b/images/colors/aac655.png new file mode 100644 index 0000000..4114c34 Binary files /dev/null and b/images/colors/aac655.png differ diff --git a/images/colors/aac671.png b/images/colors/aac671.png new file mode 100644 index 0000000..8949611 Binary files /dev/null and b/images/colors/aac671.png differ diff --git a/images/colors/aac68d.png b/images/colors/aac68d.png new file mode 100644 index 0000000..e6b91cf Binary files /dev/null and b/images/colors/aac68d.png differ diff --git a/images/colors/aac6aa.png b/images/colors/aac6aa.png new file mode 100644 index 0000000..d195672 Binary files /dev/null and b/images/colors/aac6aa.png differ diff --git a/images/colors/aac6c6.png b/images/colors/aac6c6.png new file mode 100644 index 0000000..ae78521 Binary files /dev/null and b/images/colors/aac6c6.png differ diff --git a/images/colors/aac6e2.png b/images/colors/aac6e2.png new file mode 100644 index 0000000..1ed07d0 Binary files /dev/null and b/images/colors/aac6e2.png differ diff --git a/images/colors/aac6ff.png b/images/colors/aac6ff.png new file mode 100644 index 0000000..2b093e7 Binary files /dev/null and b/images/colors/aac6ff.png differ diff --git a/images/colors/aae200.png b/images/colors/aae200.png new file mode 100644 index 0000000..ce8c186 Binary files /dev/null and b/images/colors/aae200.png differ diff --git a/images/colors/aae21c.png b/images/colors/aae21c.png new file mode 100644 index 0000000..980b7a6 Binary files /dev/null and b/images/colors/aae21c.png differ diff --git a/images/colors/aae238.png b/images/colors/aae238.png new file mode 100644 index 0000000..9024e75 Binary files /dev/null and b/images/colors/aae238.png differ diff --git a/images/colors/aae255.png b/images/colors/aae255.png new file mode 100644 index 0000000..6d667cd Binary files /dev/null and b/images/colors/aae255.png differ diff --git a/images/colors/aae271.png b/images/colors/aae271.png new file mode 100644 index 0000000..393a1da Binary files /dev/null and b/images/colors/aae271.png differ diff --git a/images/colors/aae28d.png b/images/colors/aae28d.png new file mode 100644 index 0000000..83ffe25 Binary files /dev/null and b/images/colors/aae28d.png differ diff --git a/images/colors/aae2aa.png b/images/colors/aae2aa.png new file mode 100644 index 0000000..31cb2d5 Binary files /dev/null and b/images/colors/aae2aa.png differ diff --git a/images/colors/aae2c6.png b/images/colors/aae2c6.png new file mode 100644 index 0000000..f094de3 Binary files /dev/null and b/images/colors/aae2c6.png differ diff --git a/images/colors/aae2e2.png b/images/colors/aae2e2.png new file mode 100644 index 0000000..2a7784f Binary files /dev/null and b/images/colors/aae2e2.png differ diff --git a/images/colors/aae2ff.png b/images/colors/aae2ff.png new file mode 100644 index 0000000..57d8bed Binary files /dev/null and b/images/colors/aae2ff.png differ diff --git a/images/colors/aaff00.png b/images/colors/aaff00.png new file mode 100644 index 0000000..c4fc20c Binary files /dev/null and b/images/colors/aaff00.png differ diff --git a/images/colors/aaff1c.png b/images/colors/aaff1c.png new file mode 100644 index 0000000..1478424 Binary files /dev/null and b/images/colors/aaff1c.png differ diff --git a/images/colors/aaff38.png b/images/colors/aaff38.png new file mode 100644 index 0000000..f39f5dd Binary files /dev/null and b/images/colors/aaff38.png differ diff --git a/images/colors/aaff55.png b/images/colors/aaff55.png new file mode 100644 index 0000000..ad2fb49 Binary files /dev/null and b/images/colors/aaff55.png differ diff --git a/images/colors/aaff71.png b/images/colors/aaff71.png new file mode 100644 index 0000000..5a446a1 Binary files /dev/null and b/images/colors/aaff71.png differ diff --git a/images/colors/aaff8d.png b/images/colors/aaff8d.png new file mode 100644 index 0000000..731d470 Binary files /dev/null and b/images/colors/aaff8d.png differ diff --git a/images/colors/aaffaa.png b/images/colors/aaffaa.png new file mode 100644 index 0000000..a1d8a8f Binary files /dev/null and b/images/colors/aaffaa.png differ diff --git a/images/colors/aaffc6.png b/images/colors/aaffc6.png new file mode 100644 index 0000000..4912b5d Binary files /dev/null and b/images/colors/aaffc6.png differ diff --git a/images/colors/aaffe2.png b/images/colors/aaffe2.png new file mode 100644 index 0000000..83bdee3 Binary files /dev/null and b/images/colors/aaffe2.png differ diff --git a/images/colors/aaffff.png b/images/colors/aaffff.png new file mode 100644 index 0000000..062f51d Binary files /dev/null and b/images/colors/aaffff.png differ diff --git a/images/colors/c60000.png b/images/colors/c60000.png new file mode 100644 index 0000000..d514079 Binary files /dev/null and b/images/colors/c60000.png differ diff --git a/images/colors/c6001c.png b/images/colors/c6001c.png new file mode 100644 index 0000000..1dfce33 Binary files /dev/null and b/images/colors/c6001c.png differ diff --git a/images/colors/c60038.png b/images/colors/c60038.png new file mode 100644 index 0000000..0cb1bec Binary files /dev/null and b/images/colors/c60038.png differ diff --git a/images/colors/c60055.png b/images/colors/c60055.png new file mode 100644 index 0000000..ff54e10 Binary files /dev/null and b/images/colors/c60055.png differ diff --git a/images/colors/c60071.png b/images/colors/c60071.png new file mode 100644 index 0000000..72200e3 Binary files /dev/null and b/images/colors/c60071.png differ diff --git a/images/colors/c6008d.png b/images/colors/c6008d.png new file mode 100644 index 0000000..08ab78e Binary files /dev/null and b/images/colors/c6008d.png differ diff --git a/images/colors/c600aa.png b/images/colors/c600aa.png new file mode 100644 index 0000000..d6c4771 Binary files /dev/null and b/images/colors/c600aa.png differ diff --git a/images/colors/c600c6.png b/images/colors/c600c6.png new file mode 100644 index 0000000..152fd4c Binary files /dev/null and b/images/colors/c600c6.png differ diff --git a/images/colors/c600e2.png b/images/colors/c600e2.png new file mode 100644 index 0000000..4cfcfd4 Binary files /dev/null and b/images/colors/c600e2.png differ diff --git a/images/colors/c600ff.png b/images/colors/c600ff.png new file mode 100644 index 0000000..c3af655 Binary files /dev/null and b/images/colors/c600ff.png differ diff --git a/images/colors/c61c00.png b/images/colors/c61c00.png new file mode 100644 index 0000000..0600014 Binary files /dev/null and b/images/colors/c61c00.png differ diff --git a/images/colors/c61c1c.png b/images/colors/c61c1c.png new file mode 100644 index 0000000..9564441 Binary files /dev/null and b/images/colors/c61c1c.png differ diff --git a/images/colors/c61c38.png b/images/colors/c61c38.png new file mode 100644 index 0000000..c5786c5 Binary files /dev/null and b/images/colors/c61c38.png differ diff --git a/images/colors/c61c55.png b/images/colors/c61c55.png new file mode 100644 index 0000000..9906f2a Binary files /dev/null and b/images/colors/c61c55.png differ diff --git a/images/colors/c61c71.png b/images/colors/c61c71.png new file mode 100644 index 0000000..0821887 Binary files /dev/null and b/images/colors/c61c71.png differ diff --git a/images/colors/c61c8d.png b/images/colors/c61c8d.png new file mode 100644 index 0000000..cc012a2 Binary files /dev/null and b/images/colors/c61c8d.png differ diff --git a/images/colors/c61caa.png b/images/colors/c61caa.png new file mode 100644 index 0000000..d234a4a Binary files /dev/null and b/images/colors/c61caa.png differ diff --git a/images/colors/c61cc6.png b/images/colors/c61cc6.png new file mode 100644 index 0000000..c5294a9 Binary files /dev/null and b/images/colors/c61cc6.png differ diff --git a/images/colors/c61ce2.png b/images/colors/c61ce2.png new file mode 100644 index 0000000..0cf4adc Binary files /dev/null and b/images/colors/c61ce2.png differ diff --git a/images/colors/c61cff.png b/images/colors/c61cff.png new file mode 100644 index 0000000..71fd075 Binary files /dev/null and b/images/colors/c61cff.png differ diff --git a/images/colors/c63800.png b/images/colors/c63800.png new file mode 100644 index 0000000..437ffe7 Binary files /dev/null and b/images/colors/c63800.png differ diff --git a/images/colors/c6381c.png b/images/colors/c6381c.png new file mode 100644 index 0000000..bdf68d5 Binary files /dev/null and b/images/colors/c6381c.png differ diff --git a/images/colors/c63838.png b/images/colors/c63838.png new file mode 100644 index 0000000..9e6d61f Binary files /dev/null and b/images/colors/c63838.png differ diff --git a/images/colors/c63855.png b/images/colors/c63855.png new file mode 100644 index 0000000..ecfac6f Binary files /dev/null and b/images/colors/c63855.png differ diff --git a/images/colors/c63871.png b/images/colors/c63871.png new file mode 100644 index 0000000..3be6680 Binary files /dev/null and b/images/colors/c63871.png differ diff --git a/images/colors/c6388d.png b/images/colors/c6388d.png new file mode 100644 index 0000000..2d07359 Binary files /dev/null and b/images/colors/c6388d.png differ diff --git a/images/colors/c638aa.png b/images/colors/c638aa.png new file mode 100644 index 0000000..454ed16 Binary files /dev/null and b/images/colors/c638aa.png differ diff --git a/images/colors/c638c6.png b/images/colors/c638c6.png new file mode 100644 index 0000000..bdf7c19 Binary files /dev/null and b/images/colors/c638c6.png differ diff --git a/images/colors/c638e2.png b/images/colors/c638e2.png new file mode 100644 index 0000000..62a6786 Binary files /dev/null and b/images/colors/c638e2.png differ diff --git a/images/colors/c638ff.png b/images/colors/c638ff.png new file mode 100644 index 0000000..63ed959 Binary files /dev/null and b/images/colors/c638ff.png differ diff --git a/images/colors/c65500.png b/images/colors/c65500.png new file mode 100644 index 0000000..e9b53cc Binary files /dev/null and b/images/colors/c65500.png differ diff --git a/images/colors/c6551c.png b/images/colors/c6551c.png new file mode 100644 index 0000000..0bd40f0 Binary files /dev/null and b/images/colors/c6551c.png differ diff --git a/images/colors/c65538.png b/images/colors/c65538.png new file mode 100644 index 0000000..cb2ce5f Binary files /dev/null and b/images/colors/c65538.png differ diff --git a/images/colors/c65555.png b/images/colors/c65555.png new file mode 100644 index 0000000..0e2cdaf Binary files /dev/null and b/images/colors/c65555.png differ diff --git a/images/colors/c65571.png b/images/colors/c65571.png new file mode 100644 index 0000000..c045283 Binary files /dev/null and b/images/colors/c65571.png differ diff --git a/images/colors/c6558d.png b/images/colors/c6558d.png new file mode 100644 index 0000000..6270d0c Binary files /dev/null and b/images/colors/c6558d.png differ diff --git a/images/colors/c655aa.png b/images/colors/c655aa.png new file mode 100644 index 0000000..74fead9 Binary files /dev/null and b/images/colors/c655aa.png differ diff --git a/images/colors/c655c6.png b/images/colors/c655c6.png new file mode 100644 index 0000000..f3bb7b3 Binary files /dev/null and b/images/colors/c655c6.png differ diff --git a/images/colors/c655e2.png b/images/colors/c655e2.png new file mode 100644 index 0000000..95af004 Binary files /dev/null and b/images/colors/c655e2.png differ diff --git a/images/colors/c655ff.png b/images/colors/c655ff.png new file mode 100644 index 0000000..b372ec6 Binary files /dev/null and b/images/colors/c655ff.png differ diff --git a/images/colors/c67100.png b/images/colors/c67100.png new file mode 100644 index 0000000..3326348 Binary files /dev/null and b/images/colors/c67100.png differ diff --git a/images/colors/c6711c.png b/images/colors/c6711c.png new file mode 100644 index 0000000..a62c860 Binary files /dev/null and b/images/colors/c6711c.png differ diff --git a/images/colors/c67138.png b/images/colors/c67138.png new file mode 100644 index 0000000..1d9e741 Binary files /dev/null and b/images/colors/c67138.png differ diff --git a/images/colors/c67155.png b/images/colors/c67155.png new file mode 100644 index 0000000..7730b3e Binary files /dev/null and b/images/colors/c67155.png differ diff --git a/images/colors/c67171.png b/images/colors/c67171.png new file mode 100644 index 0000000..c1fd094 Binary files /dev/null and b/images/colors/c67171.png differ diff --git a/images/colors/c6718d.png b/images/colors/c6718d.png new file mode 100644 index 0000000..f506c2d Binary files /dev/null and b/images/colors/c6718d.png differ diff --git a/images/colors/c671aa.png b/images/colors/c671aa.png new file mode 100644 index 0000000..d1c623c Binary files /dev/null and b/images/colors/c671aa.png differ diff --git a/images/colors/c671c6.png b/images/colors/c671c6.png new file mode 100644 index 0000000..e0db514 Binary files /dev/null and b/images/colors/c671c6.png differ diff --git a/images/colors/c671e2.png b/images/colors/c671e2.png new file mode 100644 index 0000000..57b33ad Binary files /dev/null and b/images/colors/c671e2.png differ diff --git a/images/colors/c671ff.png b/images/colors/c671ff.png new file mode 100644 index 0000000..457c022 Binary files /dev/null and b/images/colors/c671ff.png differ diff --git a/images/colors/c68d00.png b/images/colors/c68d00.png new file mode 100644 index 0000000..aac0b0e Binary files /dev/null and b/images/colors/c68d00.png differ diff --git a/images/colors/c68d1c.png b/images/colors/c68d1c.png new file mode 100644 index 0000000..777e14b Binary files /dev/null and b/images/colors/c68d1c.png differ diff --git a/images/colors/c68d38.png b/images/colors/c68d38.png new file mode 100644 index 0000000..9f69788 Binary files /dev/null and b/images/colors/c68d38.png differ diff --git a/images/colors/c68d55.png b/images/colors/c68d55.png new file mode 100644 index 0000000..42f28e4 Binary files /dev/null and b/images/colors/c68d55.png differ diff --git a/images/colors/c68d71.png b/images/colors/c68d71.png new file mode 100644 index 0000000..67c7071 Binary files /dev/null and b/images/colors/c68d71.png differ diff --git a/images/colors/c68d8d.png b/images/colors/c68d8d.png new file mode 100644 index 0000000..d38b094 Binary files /dev/null and b/images/colors/c68d8d.png differ diff --git a/images/colors/c68daa.png b/images/colors/c68daa.png new file mode 100644 index 0000000..500faa8 Binary files /dev/null and b/images/colors/c68daa.png differ diff --git a/images/colors/c68dc6.png b/images/colors/c68dc6.png new file mode 100644 index 0000000..57bf120 Binary files /dev/null and b/images/colors/c68dc6.png differ diff --git a/images/colors/c68de2.png b/images/colors/c68de2.png new file mode 100644 index 0000000..b7c4c4f Binary files /dev/null and b/images/colors/c68de2.png differ diff --git a/images/colors/c68dff.png b/images/colors/c68dff.png new file mode 100644 index 0000000..270d9e8 Binary files /dev/null and b/images/colors/c68dff.png differ diff --git a/images/colors/c6aa00.png b/images/colors/c6aa00.png new file mode 100644 index 0000000..0d1dc36 Binary files /dev/null and b/images/colors/c6aa00.png differ diff --git a/images/colors/c6aa1c.png b/images/colors/c6aa1c.png new file mode 100644 index 0000000..b9bb745 Binary files /dev/null and b/images/colors/c6aa1c.png differ diff --git a/images/colors/c6aa38.png b/images/colors/c6aa38.png new file mode 100644 index 0000000..e38c43e Binary files /dev/null and b/images/colors/c6aa38.png differ diff --git a/images/colors/c6aa55.png b/images/colors/c6aa55.png new file mode 100644 index 0000000..8d74d34 Binary files /dev/null and b/images/colors/c6aa55.png differ diff --git a/images/colors/c6aa71.png b/images/colors/c6aa71.png new file mode 100644 index 0000000..d6d2c83 Binary files /dev/null and b/images/colors/c6aa71.png differ diff --git a/images/colors/c6aa8d.png b/images/colors/c6aa8d.png new file mode 100644 index 0000000..10394eb Binary files /dev/null and b/images/colors/c6aa8d.png differ diff --git a/images/colors/c6aaaa.png b/images/colors/c6aaaa.png new file mode 100644 index 0000000..5f3dbf4 Binary files /dev/null and b/images/colors/c6aaaa.png differ diff --git a/images/colors/c6aac6.png b/images/colors/c6aac6.png new file mode 100644 index 0000000..852cc63 Binary files /dev/null and b/images/colors/c6aac6.png differ diff --git a/images/colors/c6aae2.png b/images/colors/c6aae2.png new file mode 100644 index 0000000..9eb4f18 Binary files /dev/null and b/images/colors/c6aae2.png differ diff --git a/images/colors/c6aaff.png b/images/colors/c6aaff.png new file mode 100644 index 0000000..94e255b Binary files /dev/null and b/images/colors/c6aaff.png differ diff --git a/images/colors/c6c600.png b/images/colors/c6c600.png new file mode 100644 index 0000000..b9b64c9 Binary files /dev/null and b/images/colors/c6c600.png differ diff --git a/images/colors/c6c61c.png b/images/colors/c6c61c.png new file mode 100644 index 0000000..42c5067 Binary files /dev/null and b/images/colors/c6c61c.png differ diff --git a/images/colors/c6c638.png b/images/colors/c6c638.png new file mode 100644 index 0000000..5763bf6 Binary files /dev/null and b/images/colors/c6c638.png differ diff --git a/images/colors/c6c655.png b/images/colors/c6c655.png new file mode 100644 index 0000000..f24af4b Binary files /dev/null and b/images/colors/c6c655.png differ diff --git a/images/colors/c6c671.png b/images/colors/c6c671.png new file mode 100644 index 0000000..920c35d Binary files /dev/null and b/images/colors/c6c671.png differ diff --git a/images/colors/c6c68d.png b/images/colors/c6c68d.png new file mode 100644 index 0000000..ae79ba6 Binary files /dev/null and b/images/colors/c6c68d.png differ diff --git a/images/colors/c6c6aa.png b/images/colors/c6c6aa.png new file mode 100644 index 0000000..6e001d6 Binary files /dev/null and b/images/colors/c6c6aa.png differ diff --git a/images/colors/c6c6c6.png b/images/colors/c6c6c6.png new file mode 100644 index 0000000..eeae539 Binary files /dev/null and b/images/colors/c6c6c6.png differ diff --git a/images/colors/c6c6e2.png b/images/colors/c6c6e2.png new file mode 100644 index 0000000..0c3663a Binary files /dev/null and b/images/colors/c6c6e2.png differ diff --git a/images/colors/c6c6ff.png b/images/colors/c6c6ff.png new file mode 100644 index 0000000..b2a51db Binary files /dev/null and b/images/colors/c6c6ff.png differ diff --git a/images/colors/c6e200.png b/images/colors/c6e200.png new file mode 100644 index 0000000..4a8b8e8 Binary files /dev/null and b/images/colors/c6e200.png differ diff --git a/images/colors/c6e21c.png b/images/colors/c6e21c.png new file mode 100644 index 0000000..2c877ea Binary files /dev/null and b/images/colors/c6e21c.png differ diff --git a/images/colors/c6e238.png b/images/colors/c6e238.png new file mode 100644 index 0000000..77b9a4f Binary files /dev/null and b/images/colors/c6e238.png differ diff --git a/images/colors/c6e255.png b/images/colors/c6e255.png new file mode 100644 index 0000000..7bc2785 Binary files /dev/null and b/images/colors/c6e255.png differ diff --git a/images/colors/c6e271.png b/images/colors/c6e271.png new file mode 100644 index 0000000..a167a59 Binary files /dev/null and b/images/colors/c6e271.png differ diff --git a/images/colors/c6e28d.png b/images/colors/c6e28d.png new file mode 100644 index 0000000..209cb03 Binary files /dev/null and b/images/colors/c6e28d.png differ diff --git a/images/colors/c6e2aa.png b/images/colors/c6e2aa.png new file mode 100644 index 0000000..d62f795 Binary files /dev/null and b/images/colors/c6e2aa.png differ diff --git a/images/colors/c6e2c6.png b/images/colors/c6e2c6.png new file mode 100644 index 0000000..93abe62 Binary files /dev/null and b/images/colors/c6e2c6.png differ diff --git a/images/colors/c6e2e2.png b/images/colors/c6e2e2.png new file mode 100644 index 0000000..06007d9 Binary files /dev/null and b/images/colors/c6e2e2.png differ diff --git a/images/colors/c6e2ff.png b/images/colors/c6e2ff.png new file mode 100644 index 0000000..7a3f4ca Binary files /dev/null and b/images/colors/c6e2ff.png differ diff --git a/images/colors/c6ff00.png b/images/colors/c6ff00.png new file mode 100644 index 0000000..3f20bb7 Binary files /dev/null and b/images/colors/c6ff00.png differ diff --git a/images/colors/c6ff1c.png b/images/colors/c6ff1c.png new file mode 100644 index 0000000..7199451 Binary files /dev/null and b/images/colors/c6ff1c.png differ diff --git a/images/colors/c6ff38.png b/images/colors/c6ff38.png new file mode 100644 index 0000000..657767b Binary files /dev/null and b/images/colors/c6ff38.png differ diff --git a/images/colors/c6ff55.png b/images/colors/c6ff55.png new file mode 100644 index 0000000..565eba9 Binary files /dev/null and b/images/colors/c6ff55.png differ diff --git a/images/colors/c6ff71.png b/images/colors/c6ff71.png new file mode 100644 index 0000000..49a831d Binary files /dev/null and b/images/colors/c6ff71.png differ diff --git a/images/colors/c6ff8d.png b/images/colors/c6ff8d.png new file mode 100644 index 0000000..14355fd Binary files /dev/null and b/images/colors/c6ff8d.png differ diff --git a/images/colors/c6ffaa.png b/images/colors/c6ffaa.png new file mode 100644 index 0000000..57cd055 Binary files /dev/null and b/images/colors/c6ffaa.png differ diff --git a/images/colors/c6ffc6.png b/images/colors/c6ffc6.png new file mode 100644 index 0000000..c4a4852 Binary files /dev/null and b/images/colors/c6ffc6.png differ diff --git a/images/colors/c6ffe2.png b/images/colors/c6ffe2.png new file mode 100644 index 0000000..e8fe831 Binary files /dev/null and b/images/colors/c6ffe2.png differ diff --git a/images/colors/c6ffff.png b/images/colors/c6ffff.png new file mode 100644 index 0000000..cc2786d Binary files /dev/null and b/images/colors/c6ffff.png differ diff --git a/images/colors/e20000.png b/images/colors/e20000.png new file mode 100644 index 0000000..72ce7fc Binary files /dev/null and b/images/colors/e20000.png differ diff --git a/images/colors/e2001c.png b/images/colors/e2001c.png new file mode 100644 index 0000000..a60e4fc Binary files /dev/null and b/images/colors/e2001c.png differ diff --git a/images/colors/e20038.png b/images/colors/e20038.png new file mode 100644 index 0000000..db43624 Binary files /dev/null and b/images/colors/e20038.png differ diff --git a/images/colors/e20055.png b/images/colors/e20055.png new file mode 100644 index 0000000..d6f7dd6 Binary files /dev/null and b/images/colors/e20055.png differ diff --git a/images/colors/e20071.png b/images/colors/e20071.png new file mode 100644 index 0000000..70fad7e Binary files /dev/null and b/images/colors/e20071.png differ diff --git a/images/colors/e2008d.png b/images/colors/e2008d.png new file mode 100644 index 0000000..1db995a Binary files /dev/null and b/images/colors/e2008d.png differ diff --git a/images/colors/e200aa.png b/images/colors/e200aa.png new file mode 100644 index 0000000..5348716 Binary files /dev/null and b/images/colors/e200aa.png differ diff --git a/images/colors/e200c6.png b/images/colors/e200c6.png new file mode 100644 index 0000000..2b4dbfc Binary files /dev/null and b/images/colors/e200c6.png differ diff --git a/images/colors/e200e2.png b/images/colors/e200e2.png new file mode 100644 index 0000000..967965f Binary files /dev/null and b/images/colors/e200e2.png differ diff --git a/images/colors/e200ff.png b/images/colors/e200ff.png new file mode 100644 index 0000000..e0e5be3 Binary files /dev/null and b/images/colors/e200ff.png differ diff --git a/images/colors/e21c00.png b/images/colors/e21c00.png new file mode 100644 index 0000000..47b4006 Binary files /dev/null and b/images/colors/e21c00.png differ diff --git a/images/colors/e21c1c.png b/images/colors/e21c1c.png new file mode 100644 index 0000000..69a13ad Binary files /dev/null and b/images/colors/e21c1c.png differ diff --git a/images/colors/e21c38.png b/images/colors/e21c38.png new file mode 100644 index 0000000..e9530ca Binary files /dev/null and b/images/colors/e21c38.png differ diff --git a/images/colors/e21c55.png b/images/colors/e21c55.png new file mode 100644 index 0000000..068bedf Binary files /dev/null and b/images/colors/e21c55.png differ diff --git a/images/colors/e21c71.png b/images/colors/e21c71.png new file mode 100644 index 0000000..c96264a Binary files /dev/null and b/images/colors/e21c71.png differ diff --git a/images/colors/e21c8d.png b/images/colors/e21c8d.png new file mode 100644 index 0000000..559f047 Binary files /dev/null and b/images/colors/e21c8d.png differ diff --git a/images/colors/e21caa.png b/images/colors/e21caa.png new file mode 100644 index 0000000..af92433 Binary files /dev/null and b/images/colors/e21caa.png differ diff --git a/images/colors/e21cc6.png b/images/colors/e21cc6.png new file mode 100644 index 0000000..ed856b8 Binary files /dev/null and b/images/colors/e21cc6.png differ diff --git a/images/colors/e21ce2.png b/images/colors/e21ce2.png new file mode 100644 index 0000000..41cd7b0 Binary files /dev/null and b/images/colors/e21ce2.png differ diff --git a/images/colors/e21cff.png b/images/colors/e21cff.png new file mode 100644 index 0000000..e79ad1b Binary files /dev/null and b/images/colors/e21cff.png differ diff --git a/images/colors/e23800.png b/images/colors/e23800.png new file mode 100644 index 0000000..b3d46d8 Binary files /dev/null and b/images/colors/e23800.png differ diff --git a/images/colors/e2381c.png b/images/colors/e2381c.png new file mode 100644 index 0000000..2135188 Binary files /dev/null and b/images/colors/e2381c.png differ diff --git a/images/colors/e23838.png b/images/colors/e23838.png new file mode 100644 index 0000000..d518b45 Binary files /dev/null and b/images/colors/e23838.png differ diff --git a/images/colors/e23855.png b/images/colors/e23855.png new file mode 100644 index 0000000..b7a2a5f Binary files /dev/null and b/images/colors/e23855.png differ diff --git a/images/colors/e23871.png b/images/colors/e23871.png new file mode 100644 index 0000000..459e507 Binary files /dev/null and b/images/colors/e23871.png differ diff --git a/images/colors/e2388d.png b/images/colors/e2388d.png new file mode 100644 index 0000000..0842449 Binary files /dev/null and b/images/colors/e2388d.png differ diff --git a/images/colors/e238aa.png b/images/colors/e238aa.png new file mode 100644 index 0000000..b9715d9 Binary files /dev/null and b/images/colors/e238aa.png differ diff --git a/images/colors/e238c6.png b/images/colors/e238c6.png new file mode 100644 index 0000000..d860ee3 Binary files /dev/null and b/images/colors/e238c6.png differ diff --git a/images/colors/e238e2.png b/images/colors/e238e2.png new file mode 100644 index 0000000..e820954 Binary files /dev/null and b/images/colors/e238e2.png differ diff --git a/images/colors/e238ff.png b/images/colors/e238ff.png new file mode 100644 index 0000000..7d2afd3 Binary files /dev/null and b/images/colors/e238ff.png differ diff --git a/images/colors/e25500.png b/images/colors/e25500.png new file mode 100644 index 0000000..ea3e4ea Binary files /dev/null and b/images/colors/e25500.png differ diff --git a/images/colors/e2551c.png b/images/colors/e2551c.png new file mode 100644 index 0000000..f50f3a5 Binary files /dev/null and b/images/colors/e2551c.png differ diff --git a/images/colors/e25538.png b/images/colors/e25538.png new file mode 100644 index 0000000..d26c959 Binary files /dev/null and b/images/colors/e25538.png differ diff --git a/images/colors/e25555.png b/images/colors/e25555.png new file mode 100644 index 0000000..84501d3 Binary files /dev/null and b/images/colors/e25555.png differ diff --git a/images/colors/e25571.png b/images/colors/e25571.png new file mode 100644 index 0000000..1c30df7 Binary files /dev/null and b/images/colors/e25571.png differ diff --git a/images/colors/e2558d.png b/images/colors/e2558d.png new file mode 100644 index 0000000..c27fe76 Binary files /dev/null and b/images/colors/e2558d.png differ diff --git a/images/colors/e255aa.png b/images/colors/e255aa.png new file mode 100644 index 0000000..189cc88 Binary files /dev/null and b/images/colors/e255aa.png differ diff --git a/images/colors/e255c6.png b/images/colors/e255c6.png new file mode 100644 index 0000000..6e4b4b3 Binary files /dev/null and b/images/colors/e255c6.png differ diff --git a/images/colors/e255e2.png b/images/colors/e255e2.png new file mode 100644 index 0000000..14f38b2 Binary files /dev/null and b/images/colors/e255e2.png differ diff --git a/images/colors/e255ff.png b/images/colors/e255ff.png new file mode 100644 index 0000000..30b8edd Binary files /dev/null and b/images/colors/e255ff.png differ diff --git a/images/colors/e27100.png b/images/colors/e27100.png new file mode 100644 index 0000000..dc22269 Binary files /dev/null and b/images/colors/e27100.png differ diff --git a/images/colors/e2711c.png b/images/colors/e2711c.png new file mode 100644 index 0000000..e88442d Binary files /dev/null and b/images/colors/e2711c.png differ diff --git a/images/colors/e27138.png b/images/colors/e27138.png new file mode 100644 index 0000000..f1f0ca5 Binary files /dev/null and b/images/colors/e27138.png differ diff --git a/images/colors/e27155.png b/images/colors/e27155.png new file mode 100644 index 0000000..6cc107e Binary files /dev/null and b/images/colors/e27155.png differ diff --git a/images/colors/e27171.png b/images/colors/e27171.png new file mode 100644 index 0000000..e01ba1f Binary files /dev/null and b/images/colors/e27171.png differ diff --git a/images/colors/e2718d.png b/images/colors/e2718d.png new file mode 100644 index 0000000..bc703ba Binary files /dev/null and b/images/colors/e2718d.png differ diff --git a/images/colors/e271aa.png b/images/colors/e271aa.png new file mode 100644 index 0000000..3e0ffd0 Binary files /dev/null and b/images/colors/e271aa.png differ diff --git a/images/colors/e271c6.png b/images/colors/e271c6.png new file mode 100644 index 0000000..4f7a1a8 Binary files /dev/null and b/images/colors/e271c6.png differ diff --git a/images/colors/e271e2.png b/images/colors/e271e2.png new file mode 100644 index 0000000..18e8132 Binary files /dev/null and b/images/colors/e271e2.png differ diff --git a/images/colors/e271ff.png b/images/colors/e271ff.png new file mode 100644 index 0000000..74a534f Binary files /dev/null and b/images/colors/e271ff.png differ diff --git a/images/colors/e28d00.png b/images/colors/e28d00.png new file mode 100644 index 0000000..5d2883f Binary files /dev/null and b/images/colors/e28d00.png differ diff --git a/images/colors/e28d1c.png b/images/colors/e28d1c.png new file mode 100644 index 0000000..ad0be9e Binary files /dev/null and b/images/colors/e28d1c.png differ diff --git a/images/colors/e28d38.png b/images/colors/e28d38.png new file mode 100644 index 0000000..90062bc Binary files /dev/null and b/images/colors/e28d38.png differ diff --git a/images/colors/e28d55.png b/images/colors/e28d55.png new file mode 100644 index 0000000..d318699 Binary files /dev/null and b/images/colors/e28d55.png differ diff --git a/images/colors/e28d71.png b/images/colors/e28d71.png new file mode 100644 index 0000000..55cd8f1 Binary files /dev/null and b/images/colors/e28d71.png differ diff --git a/images/colors/e28d8d.png b/images/colors/e28d8d.png new file mode 100644 index 0000000..5eba863 Binary files /dev/null and b/images/colors/e28d8d.png differ diff --git a/images/colors/e28daa.png b/images/colors/e28daa.png new file mode 100644 index 0000000..0d74765 Binary files /dev/null and b/images/colors/e28daa.png differ diff --git a/images/colors/e28dc6.png b/images/colors/e28dc6.png new file mode 100644 index 0000000..90e843e Binary files /dev/null and b/images/colors/e28dc6.png differ diff --git a/images/colors/e28de2.png b/images/colors/e28de2.png new file mode 100644 index 0000000..9e4d10e Binary files /dev/null and b/images/colors/e28de2.png differ diff --git a/images/colors/e28dff.png b/images/colors/e28dff.png new file mode 100644 index 0000000..7e8934a Binary files /dev/null and b/images/colors/e28dff.png differ diff --git a/images/colors/e2aa00.png b/images/colors/e2aa00.png new file mode 100644 index 0000000..b585998 Binary files /dev/null and b/images/colors/e2aa00.png differ diff --git a/images/colors/e2aa1c.png b/images/colors/e2aa1c.png new file mode 100644 index 0000000..af3c567 Binary files /dev/null and b/images/colors/e2aa1c.png differ diff --git a/images/colors/e2aa38.png b/images/colors/e2aa38.png new file mode 100644 index 0000000..7fae92f Binary files /dev/null and b/images/colors/e2aa38.png differ diff --git a/images/colors/e2aa55.png b/images/colors/e2aa55.png new file mode 100644 index 0000000..de2b290 Binary files /dev/null and b/images/colors/e2aa55.png differ diff --git a/images/colors/e2aa71.png b/images/colors/e2aa71.png new file mode 100644 index 0000000..02f8059 Binary files /dev/null and b/images/colors/e2aa71.png differ diff --git a/images/colors/e2aa8d.png b/images/colors/e2aa8d.png new file mode 100644 index 0000000..e99b2c8 Binary files /dev/null and b/images/colors/e2aa8d.png differ diff --git a/images/colors/e2aaaa.png b/images/colors/e2aaaa.png new file mode 100644 index 0000000..b8cb3ec Binary files /dev/null and b/images/colors/e2aaaa.png differ diff --git a/images/colors/e2aac6.png b/images/colors/e2aac6.png new file mode 100644 index 0000000..426c341 Binary files /dev/null and b/images/colors/e2aac6.png differ diff --git a/images/colors/e2aae2.png b/images/colors/e2aae2.png new file mode 100644 index 0000000..97c6bfa Binary files /dev/null and b/images/colors/e2aae2.png differ diff --git a/images/colors/e2aaff.png b/images/colors/e2aaff.png new file mode 100644 index 0000000..6fe2562 Binary files /dev/null and b/images/colors/e2aaff.png differ diff --git a/images/colors/e2c600.png b/images/colors/e2c600.png new file mode 100644 index 0000000..dd3eeee Binary files /dev/null and b/images/colors/e2c600.png differ diff --git a/images/colors/e2c61c.png b/images/colors/e2c61c.png new file mode 100644 index 0000000..91937de Binary files /dev/null and b/images/colors/e2c61c.png differ diff --git a/images/colors/e2c638.png b/images/colors/e2c638.png new file mode 100644 index 0000000..1486ad3 Binary files /dev/null and b/images/colors/e2c638.png differ diff --git a/images/colors/e2c655.png b/images/colors/e2c655.png new file mode 100644 index 0000000..5880485 Binary files /dev/null and b/images/colors/e2c655.png differ diff --git a/images/colors/e2c671.png b/images/colors/e2c671.png new file mode 100644 index 0000000..da91e03 Binary files /dev/null and b/images/colors/e2c671.png differ diff --git a/images/colors/e2c68d.png b/images/colors/e2c68d.png new file mode 100644 index 0000000..8d1e2e1 Binary files /dev/null and b/images/colors/e2c68d.png differ diff --git a/images/colors/e2c6aa.png b/images/colors/e2c6aa.png new file mode 100644 index 0000000..a15b4f7 Binary files /dev/null and b/images/colors/e2c6aa.png differ diff --git a/images/colors/e2c6c6.png b/images/colors/e2c6c6.png new file mode 100644 index 0000000..7b578ec Binary files /dev/null and b/images/colors/e2c6c6.png differ diff --git a/images/colors/e2c6e2.png b/images/colors/e2c6e2.png new file mode 100644 index 0000000..d3a39fc Binary files /dev/null and b/images/colors/e2c6e2.png differ diff --git a/images/colors/e2c6ff.png b/images/colors/e2c6ff.png new file mode 100644 index 0000000..d267f05 Binary files /dev/null and b/images/colors/e2c6ff.png differ diff --git a/images/colors/e2e200.png b/images/colors/e2e200.png new file mode 100644 index 0000000..4f42ee5 Binary files /dev/null and b/images/colors/e2e200.png differ diff --git a/images/colors/e2e21c.png b/images/colors/e2e21c.png new file mode 100644 index 0000000..deef4e3 Binary files /dev/null and b/images/colors/e2e21c.png differ diff --git a/images/colors/e2e238.png b/images/colors/e2e238.png new file mode 100644 index 0000000..2c2e7ae Binary files /dev/null and b/images/colors/e2e238.png differ diff --git a/images/colors/e2e255.png b/images/colors/e2e255.png new file mode 100644 index 0000000..d7e75ff Binary files /dev/null and b/images/colors/e2e255.png differ diff --git a/images/colors/e2e271.png b/images/colors/e2e271.png new file mode 100644 index 0000000..f196153 Binary files /dev/null and b/images/colors/e2e271.png differ diff --git a/images/colors/e2e28d.png b/images/colors/e2e28d.png new file mode 100644 index 0000000..7baf2c2 Binary files /dev/null and b/images/colors/e2e28d.png differ diff --git a/images/colors/e2e2aa.png b/images/colors/e2e2aa.png new file mode 100644 index 0000000..fb054f3 Binary files /dev/null and b/images/colors/e2e2aa.png differ diff --git a/images/colors/e2e2c6.png b/images/colors/e2e2c6.png new file mode 100644 index 0000000..99e8b24 Binary files /dev/null and b/images/colors/e2e2c6.png differ diff --git a/images/colors/e2e2e2.png b/images/colors/e2e2e2.png new file mode 100644 index 0000000..edc3685 Binary files /dev/null and b/images/colors/e2e2e2.png differ diff --git a/images/colors/e2e2ff.png b/images/colors/e2e2ff.png new file mode 100644 index 0000000..86e4c0c Binary files /dev/null and b/images/colors/e2e2ff.png differ diff --git a/images/colors/e2ff00.png b/images/colors/e2ff00.png new file mode 100644 index 0000000..c6e499f Binary files /dev/null and b/images/colors/e2ff00.png differ diff --git a/images/colors/e2ff1c.png b/images/colors/e2ff1c.png new file mode 100644 index 0000000..2ba65ec Binary files /dev/null and b/images/colors/e2ff1c.png differ diff --git a/images/colors/e2ff38.png b/images/colors/e2ff38.png new file mode 100644 index 0000000..d0d77c5 Binary files /dev/null and b/images/colors/e2ff38.png differ diff --git a/images/colors/e2ff55.png b/images/colors/e2ff55.png new file mode 100644 index 0000000..c6d53de Binary files /dev/null and b/images/colors/e2ff55.png differ diff --git a/images/colors/e2ff71.png b/images/colors/e2ff71.png new file mode 100644 index 0000000..f0e0523 Binary files /dev/null and b/images/colors/e2ff71.png differ diff --git a/images/colors/e2ff8d.png b/images/colors/e2ff8d.png new file mode 100644 index 0000000..48dd471 Binary files /dev/null and b/images/colors/e2ff8d.png differ diff --git a/images/colors/e2ffaa.png b/images/colors/e2ffaa.png new file mode 100644 index 0000000..b0f836b Binary files /dev/null and b/images/colors/e2ffaa.png differ diff --git a/images/colors/e2ffc6.png b/images/colors/e2ffc6.png new file mode 100644 index 0000000..d2932b7 Binary files /dev/null and b/images/colors/e2ffc6.png differ diff --git a/images/colors/e2ffe2.png b/images/colors/e2ffe2.png new file mode 100644 index 0000000..f949fe6 Binary files /dev/null and b/images/colors/e2ffe2.png differ diff --git a/images/colors/e2ffff.png b/images/colors/e2ffff.png new file mode 100644 index 0000000..f14508c Binary files /dev/null and b/images/colors/e2ffff.png differ diff --git a/images/colors/ff0000.png b/images/colors/ff0000.png new file mode 100644 index 0000000..b5e8e02 Binary files /dev/null and b/images/colors/ff0000.png differ diff --git a/images/colors/ff001c.png b/images/colors/ff001c.png new file mode 100644 index 0000000..8779024 Binary files /dev/null and b/images/colors/ff001c.png differ diff --git a/images/colors/ff0038.png b/images/colors/ff0038.png new file mode 100644 index 0000000..c907eef Binary files /dev/null and b/images/colors/ff0038.png differ diff --git a/images/colors/ff0055.png b/images/colors/ff0055.png new file mode 100644 index 0000000..3b254cc Binary files /dev/null and b/images/colors/ff0055.png differ diff --git a/images/colors/ff0071.png b/images/colors/ff0071.png new file mode 100644 index 0000000..eb04e87 Binary files /dev/null and b/images/colors/ff0071.png differ diff --git a/images/colors/ff008d.png b/images/colors/ff008d.png new file mode 100644 index 0000000..f6a86b8 Binary files /dev/null and b/images/colors/ff008d.png differ diff --git a/images/colors/ff00aa.png b/images/colors/ff00aa.png new file mode 100644 index 0000000..40f5bf5 Binary files /dev/null and b/images/colors/ff00aa.png differ diff --git a/images/colors/ff00c6.png b/images/colors/ff00c6.png new file mode 100644 index 0000000..aad9771 Binary files /dev/null and b/images/colors/ff00c6.png differ diff --git a/images/colors/ff00e2.png b/images/colors/ff00e2.png new file mode 100644 index 0000000..1bc05fc Binary files /dev/null and b/images/colors/ff00e2.png differ diff --git a/images/colors/ff00ff.png b/images/colors/ff00ff.png new file mode 100644 index 0000000..cffa0be Binary files /dev/null and b/images/colors/ff00ff.png differ diff --git a/images/colors/ff1c00.png b/images/colors/ff1c00.png new file mode 100644 index 0000000..1ab8ad5 Binary files /dev/null and b/images/colors/ff1c00.png differ diff --git a/images/colors/ff1c1c.png b/images/colors/ff1c1c.png new file mode 100644 index 0000000..d69c663 Binary files /dev/null and b/images/colors/ff1c1c.png differ diff --git a/images/colors/ff1c38.png b/images/colors/ff1c38.png new file mode 100644 index 0000000..6b6ecec Binary files /dev/null and b/images/colors/ff1c38.png differ diff --git a/images/colors/ff1c55.png b/images/colors/ff1c55.png new file mode 100644 index 0000000..e2207e3 Binary files /dev/null and b/images/colors/ff1c55.png differ diff --git a/images/colors/ff1c71.png b/images/colors/ff1c71.png new file mode 100644 index 0000000..0b93c3d Binary files /dev/null and b/images/colors/ff1c71.png differ diff --git a/images/colors/ff1c8d.png b/images/colors/ff1c8d.png new file mode 100644 index 0000000..b08ab9d Binary files /dev/null and b/images/colors/ff1c8d.png differ diff --git a/images/colors/ff1caa.png b/images/colors/ff1caa.png new file mode 100644 index 0000000..1ab0661 Binary files /dev/null and b/images/colors/ff1caa.png differ diff --git a/images/colors/ff1cc6.png b/images/colors/ff1cc6.png new file mode 100644 index 0000000..bcd802e Binary files /dev/null and b/images/colors/ff1cc6.png differ diff --git a/images/colors/ff1ce2.png b/images/colors/ff1ce2.png new file mode 100644 index 0000000..9f9b66f Binary files /dev/null and b/images/colors/ff1ce2.png differ diff --git a/images/colors/ff1cff.png b/images/colors/ff1cff.png new file mode 100644 index 0000000..4619e0d Binary files /dev/null and b/images/colors/ff1cff.png differ diff --git a/images/colors/ff3800.png b/images/colors/ff3800.png new file mode 100644 index 0000000..b9965fe Binary files /dev/null and b/images/colors/ff3800.png differ diff --git a/images/colors/ff381c.png b/images/colors/ff381c.png new file mode 100644 index 0000000..94cb3d4 Binary files /dev/null and b/images/colors/ff381c.png differ diff --git a/images/colors/ff3838.png b/images/colors/ff3838.png new file mode 100644 index 0000000..42aea76 Binary files /dev/null and b/images/colors/ff3838.png differ diff --git a/images/colors/ff3855.png b/images/colors/ff3855.png new file mode 100644 index 0000000..8f41f27 Binary files /dev/null and b/images/colors/ff3855.png differ diff --git a/images/colors/ff3871.png b/images/colors/ff3871.png new file mode 100644 index 0000000..c64a2ea Binary files /dev/null and b/images/colors/ff3871.png differ diff --git a/images/colors/ff388d.png b/images/colors/ff388d.png new file mode 100644 index 0000000..edd2edf Binary files /dev/null and b/images/colors/ff388d.png differ diff --git a/images/colors/ff38aa.png b/images/colors/ff38aa.png new file mode 100644 index 0000000..694cc76 Binary files /dev/null and b/images/colors/ff38aa.png differ diff --git a/images/colors/ff38c6.png b/images/colors/ff38c6.png new file mode 100644 index 0000000..5290d3c Binary files /dev/null and b/images/colors/ff38c6.png differ diff --git a/images/colors/ff38e2.png b/images/colors/ff38e2.png new file mode 100644 index 0000000..f220ca4 Binary files /dev/null and b/images/colors/ff38e2.png differ diff --git a/images/colors/ff38ff.png b/images/colors/ff38ff.png new file mode 100644 index 0000000..1f674e7 Binary files /dev/null and b/images/colors/ff38ff.png differ diff --git a/images/colors/ff5500.png b/images/colors/ff5500.png new file mode 100644 index 0000000..9574507 Binary files /dev/null and b/images/colors/ff5500.png differ diff --git a/images/colors/ff551c.png b/images/colors/ff551c.png new file mode 100644 index 0000000..abe4841 Binary files /dev/null and b/images/colors/ff551c.png differ diff --git a/images/colors/ff5538.png b/images/colors/ff5538.png new file mode 100644 index 0000000..59b36af Binary files /dev/null and b/images/colors/ff5538.png differ diff --git a/images/colors/ff5555.png b/images/colors/ff5555.png new file mode 100644 index 0000000..9cb6c7f Binary files /dev/null and b/images/colors/ff5555.png differ diff --git a/images/colors/ff5571.png b/images/colors/ff5571.png new file mode 100644 index 0000000..960c9dc Binary files /dev/null and b/images/colors/ff5571.png differ diff --git a/images/colors/ff558d.png b/images/colors/ff558d.png new file mode 100644 index 0000000..45eb265 Binary files /dev/null and b/images/colors/ff558d.png differ diff --git a/images/colors/ff55aa.png b/images/colors/ff55aa.png new file mode 100644 index 0000000..3b47d9d Binary files /dev/null and b/images/colors/ff55aa.png differ diff --git a/images/colors/ff55c6.png b/images/colors/ff55c6.png new file mode 100644 index 0000000..9c5d955 Binary files /dev/null and b/images/colors/ff55c6.png differ diff --git a/images/colors/ff55e2.png b/images/colors/ff55e2.png new file mode 100644 index 0000000..a9de870 Binary files /dev/null and b/images/colors/ff55e2.png differ diff --git a/images/colors/ff55ff.png b/images/colors/ff55ff.png new file mode 100644 index 0000000..a80b2de Binary files /dev/null and b/images/colors/ff55ff.png differ diff --git a/images/colors/ff7100.png b/images/colors/ff7100.png new file mode 100644 index 0000000..b537f00 Binary files /dev/null and b/images/colors/ff7100.png differ diff --git a/images/colors/ff711c.png b/images/colors/ff711c.png new file mode 100644 index 0000000..517f7b6 Binary files /dev/null and b/images/colors/ff711c.png differ diff --git a/images/colors/ff7138.png b/images/colors/ff7138.png new file mode 100644 index 0000000..ba89550 Binary files /dev/null and b/images/colors/ff7138.png differ diff --git a/images/colors/ff7155.png b/images/colors/ff7155.png new file mode 100644 index 0000000..4371178 Binary files /dev/null and b/images/colors/ff7155.png differ diff --git a/images/colors/ff7171.png b/images/colors/ff7171.png new file mode 100644 index 0000000..f2c4a9b Binary files /dev/null and b/images/colors/ff7171.png differ diff --git a/images/colors/ff718d.png b/images/colors/ff718d.png new file mode 100644 index 0000000..71d11ac Binary files /dev/null and b/images/colors/ff718d.png differ diff --git a/images/colors/ff71aa.png b/images/colors/ff71aa.png new file mode 100644 index 0000000..e308c79 Binary files /dev/null and b/images/colors/ff71aa.png differ diff --git a/images/colors/ff71c6.png b/images/colors/ff71c6.png new file mode 100644 index 0000000..c4c07f5 Binary files /dev/null and b/images/colors/ff71c6.png differ diff --git a/images/colors/ff71e2.png b/images/colors/ff71e2.png new file mode 100644 index 0000000..fea0320 Binary files /dev/null and b/images/colors/ff71e2.png differ diff --git a/images/colors/ff71ff.png b/images/colors/ff71ff.png new file mode 100644 index 0000000..7cdb3eb Binary files /dev/null and b/images/colors/ff71ff.png differ diff --git a/images/colors/ff8d00.png b/images/colors/ff8d00.png new file mode 100644 index 0000000..46bb534 Binary files /dev/null and b/images/colors/ff8d00.png differ diff --git a/images/colors/ff8d1c.png b/images/colors/ff8d1c.png new file mode 100644 index 0000000..0bde086 Binary files /dev/null and b/images/colors/ff8d1c.png differ diff --git a/images/colors/ff8d38.png b/images/colors/ff8d38.png new file mode 100644 index 0000000..aa54a7a Binary files /dev/null and b/images/colors/ff8d38.png differ diff --git a/images/colors/ff8d55.png b/images/colors/ff8d55.png new file mode 100644 index 0000000..52873da Binary files /dev/null and b/images/colors/ff8d55.png differ diff --git a/images/colors/ff8d71.png b/images/colors/ff8d71.png new file mode 100644 index 0000000..dd2fe75 Binary files /dev/null and b/images/colors/ff8d71.png differ diff --git a/images/colors/ff8d8d.png b/images/colors/ff8d8d.png new file mode 100644 index 0000000..d6d5f15 Binary files /dev/null and b/images/colors/ff8d8d.png differ diff --git a/images/colors/ff8daa.png b/images/colors/ff8daa.png new file mode 100644 index 0000000..fca6731 Binary files /dev/null and b/images/colors/ff8daa.png differ diff --git a/images/colors/ff8dc6.png b/images/colors/ff8dc6.png new file mode 100644 index 0000000..db62f9a Binary files /dev/null and b/images/colors/ff8dc6.png differ diff --git a/images/colors/ff8de2.png b/images/colors/ff8de2.png new file mode 100644 index 0000000..0f537e5 Binary files /dev/null and b/images/colors/ff8de2.png differ diff --git a/images/colors/ff8dff.png b/images/colors/ff8dff.png new file mode 100644 index 0000000..31458f5 Binary files /dev/null and b/images/colors/ff8dff.png differ diff --git a/images/colors/ffaa00.png b/images/colors/ffaa00.png new file mode 100644 index 0000000..c5b19dd Binary files /dev/null and b/images/colors/ffaa00.png differ diff --git a/images/colors/ffaa1c.png b/images/colors/ffaa1c.png new file mode 100644 index 0000000..f7f0ef1 Binary files /dev/null and b/images/colors/ffaa1c.png differ diff --git a/images/colors/ffaa38.png b/images/colors/ffaa38.png new file mode 100644 index 0000000..a18c11b Binary files /dev/null and b/images/colors/ffaa38.png differ diff --git a/images/colors/ffaa55.png b/images/colors/ffaa55.png new file mode 100644 index 0000000..6811dfb Binary files /dev/null and b/images/colors/ffaa55.png differ diff --git a/images/colors/ffaa71.png b/images/colors/ffaa71.png new file mode 100644 index 0000000..c139dae Binary files /dev/null and b/images/colors/ffaa71.png differ diff --git a/images/colors/ffaa8d.png b/images/colors/ffaa8d.png new file mode 100644 index 0000000..5b730da Binary files /dev/null and b/images/colors/ffaa8d.png differ diff --git a/images/colors/ffaaaa.png b/images/colors/ffaaaa.png new file mode 100644 index 0000000..0a84b05 Binary files /dev/null and b/images/colors/ffaaaa.png differ diff --git a/images/colors/ffaac6.png b/images/colors/ffaac6.png new file mode 100644 index 0000000..d96290f Binary files /dev/null and b/images/colors/ffaac6.png differ diff --git a/images/colors/ffaae2.png b/images/colors/ffaae2.png new file mode 100644 index 0000000..2fe30fc Binary files /dev/null and b/images/colors/ffaae2.png differ diff --git a/images/colors/ffaaff.png b/images/colors/ffaaff.png new file mode 100644 index 0000000..cf49868 Binary files /dev/null and b/images/colors/ffaaff.png differ diff --git a/images/colors/ffc600.png b/images/colors/ffc600.png new file mode 100644 index 0000000..5493ef7 Binary files /dev/null and b/images/colors/ffc600.png differ diff --git a/images/colors/ffc61c.png b/images/colors/ffc61c.png new file mode 100644 index 0000000..b92a688 Binary files /dev/null and b/images/colors/ffc61c.png differ diff --git a/images/colors/ffc638.png b/images/colors/ffc638.png new file mode 100644 index 0000000..b55e3d4 Binary files /dev/null and b/images/colors/ffc638.png differ diff --git a/images/colors/ffc655.png b/images/colors/ffc655.png new file mode 100644 index 0000000..6faca7a Binary files /dev/null and b/images/colors/ffc655.png differ diff --git a/images/colors/ffc671.png b/images/colors/ffc671.png new file mode 100644 index 0000000..b82d4f9 Binary files /dev/null and b/images/colors/ffc671.png differ diff --git a/images/colors/ffc68d.png b/images/colors/ffc68d.png new file mode 100644 index 0000000..90c3547 Binary files /dev/null and b/images/colors/ffc68d.png differ diff --git a/images/colors/ffc6aa.png b/images/colors/ffc6aa.png new file mode 100644 index 0000000..0c78422 Binary files /dev/null and b/images/colors/ffc6aa.png differ diff --git a/images/colors/ffc6c6.png b/images/colors/ffc6c6.png new file mode 100644 index 0000000..99d9350 Binary files /dev/null and b/images/colors/ffc6c6.png differ diff --git a/images/colors/ffc6e2.png b/images/colors/ffc6e2.png new file mode 100644 index 0000000..45835f1 Binary files /dev/null and b/images/colors/ffc6e2.png differ diff --git a/images/colors/ffc6ff.png b/images/colors/ffc6ff.png new file mode 100644 index 0000000..e53221f Binary files /dev/null and b/images/colors/ffc6ff.png differ diff --git a/images/colors/ffe200.png b/images/colors/ffe200.png new file mode 100644 index 0000000..aa25da8 Binary files /dev/null and b/images/colors/ffe200.png differ diff --git a/images/colors/ffe21c.png b/images/colors/ffe21c.png new file mode 100644 index 0000000..b5050f7 Binary files /dev/null and b/images/colors/ffe21c.png differ diff --git a/images/colors/ffe238.png b/images/colors/ffe238.png new file mode 100644 index 0000000..44a7492 Binary files /dev/null and b/images/colors/ffe238.png differ diff --git a/images/colors/ffe255.png b/images/colors/ffe255.png new file mode 100644 index 0000000..58379bb Binary files /dev/null and b/images/colors/ffe255.png differ diff --git a/images/colors/ffe271.png b/images/colors/ffe271.png new file mode 100644 index 0000000..2589a94 Binary files /dev/null and b/images/colors/ffe271.png differ diff --git a/images/colors/ffe28d.png b/images/colors/ffe28d.png new file mode 100644 index 0000000..1eb91aa Binary files /dev/null and b/images/colors/ffe28d.png differ diff --git a/images/colors/ffe2aa.png b/images/colors/ffe2aa.png new file mode 100644 index 0000000..ad43eec Binary files /dev/null and b/images/colors/ffe2aa.png differ diff --git a/images/colors/ffe2c6.png b/images/colors/ffe2c6.png new file mode 100644 index 0000000..148fb27 Binary files /dev/null and b/images/colors/ffe2c6.png differ diff --git a/images/colors/ffe2e2.png b/images/colors/ffe2e2.png new file mode 100644 index 0000000..d4c3889 Binary files /dev/null and b/images/colors/ffe2e2.png differ diff --git a/images/colors/ffe2ff.png b/images/colors/ffe2ff.png new file mode 100644 index 0000000..d3d5929 Binary files /dev/null and b/images/colors/ffe2ff.png differ diff --git a/images/colors/ffff00.png b/images/colors/ffff00.png new file mode 100644 index 0000000..f8010f9 Binary files /dev/null and b/images/colors/ffff00.png differ diff --git a/images/colors/ffff1c.png b/images/colors/ffff1c.png new file mode 100644 index 0000000..032dff7 Binary files /dev/null and b/images/colors/ffff1c.png differ diff --git a/images/colors/ffff38.png b/images/colors/ffff38.png new file mode 100644 index 0000000..3eca0c4 Binary files /dev/null and b/images/colors/ffff38.png differ diff --git a/images/colors/ffff55.png b/images/colors/ffff55.png new file mode 100644 index 0000000..7fbb4a6 Binary files /dev/null and b/images/colors/ffff55.png differ diff --git a/images/colors/ffff71.png b/images/colors/ffff71.png new file mode 100644 index 0000000..9ce37cc Binary files /dev/null and b/images/colors/ffff71.png differ diff --git a/images/colors/ffff8d.png b/images/colors/ffff8d.png new file mode 100644 index 0000000..f181415 Binary files /dev/null and b/images/colors/ffff8d.png differ diff --git a/images/colors/ffffaa.png b/images/colors/ffffaa.png new file mode 100644 index 0000000..d3fb27b Binary files /dev/null and b/images/colors/ffffaa.png differ diff --git a/images/colors/ffffc6.png b/images/colors/ffffc6.png new file mode 100644 index 0000000..47a1fd4 Binary files /dev/null and b/images/colors/ffffc6.png differ diff --git a/images/colors/ffffe2.png b/images/colors/ffffe2.png new file mode 100644 index 0000000..50027ce Binary files /dev/null and b/images/colors/ffffe2.png differ diff --git a/images/colors/ffffff.png b/images/colors/ffffff.png new file mode 100644 index 0000000..cc9ec47 Binary files /dev/null and b/images/colors/ffffff.png differ diff --git a/mosaic.py b/mosaic.py index 6c5bda2..4e801b2 100644 --- a/mosaic.py +++ b/mosaic.py @@ -1,12 +1,18 @@ import sys import os, os.path -from PIL import Image, ImageOps +from PIL import Image, ImageOps, ImageStat from multiprocessing import Process, Queue, cpu_count +import numpy as np +from skimage.metrics import structural_similarity as ssim +import imagehash -# Change these 3 config parameters to suit your needs... +# Change these 4 config parameters to suit your needs... TILE_SIZE = 50 # height/width of mosaic tiles in pixels TILE_MATCH_RES = 5 # tile matching resolution (higher values give better fit but require more processing) ENLARGEMENT = 8 # the mosaic image will be this many times wider and taller than the original +ADJUST_COLORS = 1 # set non-zero value to adjust each tile's color balance to the target fragment + +REPORT_STATS = 0 # set non-zero value to print the similarity statistics in the end TILE_BLOCK_SIZE = TILE_SIZE / max(min(TILE_MATCH_RES, TILE_SIZE), 1) WORKER_COUNT = max(cpu_count() - 1, 1) @@ -140,19 +146,50 @@ def update(self): class MosaicImage: def __init__(self, original_img): + self.original_img = original_img self.image = Image.new(original_img.mode, original_img.size) self.x_tile_count = int(original_img.size[0] / TILE_SIZE) self.y_tile_count = int(original_img.size[1] / TILE_SIZE) self.total_tiles = self.x_tile_count * self.y_tile_count + def adjust_colors(self, tile_img, target_box): + target_fragment = self.original_img.crop(target_box) + tile_levels = ImageStat.Stat(tile_img).mean + target_levels = ImageStat.Stat(target_fragment).mean + + # Compute the color level scaling factors for R, G, B channels + level_factors = [1.0 if tile == 0 else trg / tile for trg, tile in zip(target_levels, tile_levels)] + # Construct the colors map suitable for Image.point() + levels_map = [min(255, int(i * level_factors[ch])) for ch in range(3) for i in range(256)] + + return tile_img.point(levels_map) + def add_tile(self, tile_data, coords): img = Image.new('RGB', (TILE_SIZE, TILE_SIZE)) img.putdata(tile_data) + if ADJUST_COLORS: + img = self.adjust_colors(img, coords) self.image.paste(img, coords) def save(self, path): self.image.save(path) +def mse(image1, image2): + arr1 = np.array(image1) + arr2 = np.array(image2) + return np.mean((arr1 - arr2) ** 2) + +def strucSimilarity(image1, image2): + arr1 = np.array(image1.convert('L')) + arr2 = np.array(image2.convert('L')) + score = ssim(arr1, arr2, win_size=5) + return score + +def hashDiff(image1, image2): + hash1 = imagehash.phash(image1) + hash2 = imagehash.phash(image2) + return abs(hash1 - hash2) + def build_mosaic(result_queue, all_tile_data_large, original_img_large): mosaic = MosaicImage(original_img_large) @@ -174,6 +211,11 @@ def build_mosaic(result_queue, all_tile_data_large, original_img_large): mosaic.save(OUT_FILE) print('\nFinished, output is in', OUT_FILE) + + if REPORT_STATS: + print("MSE: {:.2f}".format(mse(original_img_large, mosaic.image))) + print("Structural similarity: {:.2f}".format(strucSimilarity(original_img_large, mosaic.image))) + print("Perceptual hash difference: {:.2f}".format(hashDiff(original_img_large, mosaic.image))) def compose(original_img, tiles): print('Building mosaic, press Ctrl-C to abort...')