Fix next_level image quantization to preserve dark tones using fixed thresholds

This commit is contained in:
2026-06-23 22:12:43 +02:00
parent cb19677f98
commit d8fd7460ae
4 changed files with 267 additions and 277 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

+10 -24
View File
@@ -1,34 +1,20 @@
from PIL import Image from PIL import Image
import numpy as np import numpy as np
from scipy.cluster.vq import kmeans, vq
# Open original and convert to grayscale # Open original and convert to grayscale
img = Image.open('assets/next_level_original.png').convert('L') img = Image.open('assets/next_level_original.png').convert('L')
pixels = np.array(img, dtype=float) pixels = np.array(img, dtype=np.uint8)
# Flatten for clustering # Fixed thresholds for Game Boy colors
flat_pixels = pixels.flatten() quantized_pixels = np.zeros_like(pixels)
# Find 4 clusters # Map based on standard thresholds to preserve darkness
centroids, _ = kmeans(flat_pixels, 4) quantized_pixels[pixels < 40] = 0 # Black
quantized_pixels[(pixels >= 40) & (pixels < 128)] = 85 # Dark Gray
# Sort centroids by brightness (dark to light) quantized_pixels[(pixels >= 128) & (pixels < 200)] = 170 # Light Gray
sorted_centroids = np.sort(centroids) quantized_pixels[pixels >= 200] = 255 # White
# Map centroids to GB colors
# GB palette: 0=Black, 1=Dark Gray, 2=Light Gray, 3=White
gb_colors = np.array([0, 85, 170, 255])
# Find the closest centroid for each pixel
# Assign the corresponding GB color
quantized_pixels = np.zeros_like(flat_pixels, dtype=np.uint8)
for i, p in enumerate(flat_pixels):
dist = np.abs(sorted_centroids - p)
closest_idx = np.argmin(dist)
quantized_pixels[i] = gb_colors[closest_idx]
# Reshape back to image # Reshape back to image
quantized_img_data = quantized_pixels.reshape(pixels.shape) new_img = Image.fromarray(quantized_pixels, mode='L').convert('RGB')
new_img = Image.fromarray(quantized_img_data, mode='L').convert('RGB')
new_img.save('assets/next_level.png') new_img.save('assets/next_level.png')
print("Processed next_level.png with k-means clustering!") print("Processed next_level.png with fixed thresholds!")
+255 -251
View File
@@ -8,262 +8,266 @@
BANKREF(next_level) BANKREF(next_level)
const palette_color_t next_level_palettes[4] = { const palette_color_t next_level_palettes[4] = {
RGB8(170,170,170), RGB8( 85, 85, 85), RGB8( 0, 0, 0), RGB8( 0, 0, 0) RGB8(255,255,255), RGB8(170,170,170), RGB8( 85, 85, 85), RGB8( 0, 0, 0)
}; };
const uint8_t next_level_tiles[3712] = { const uint8_t next_level_tiles[3776] = {
0x00,0xff,0x09,0xf6,0x27,0x98,0x44,0xbb,0x88,0x67,0x10,0x4f,0x80,0x5f,0x00,0xbf, 0xff,0xff,0xf6,0xff,0xd0,0xbf,0xfb,0xbf,0x6f,0xe7,0xff,0x4f,0x7f,0xdf,0xbf,0xbf,
0x00,0x3f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x3f,0x3f,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x02,0xfd,0x00,0xff,0x00,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xfd,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xcf,0x00,0xff,0x00,0xff, 0x3f,0x3f,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x02,0xfd,0x02,0xfd,0x02,0xfd,0x0a,0xf5, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xdf,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xd8,0x27,0xf8,0x07, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xf5,0xff,
0x00,0xff,0x80,0x7f,0x40,0xbf,0x50,0xaf,0xa8,0x57,0xac,0x53,0xb0,0x4b,0xa2,0x55, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x67,0xbf,0x47,0xbf,
0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfc,0x02,0xf9,0x00,0xff,0x00,0xff,0x00,0xfe, 0xff,0xff,0x7f,0xff,0xbf,0xff,0xaf,0xff,0x57,0xff,0x57,0xfb,0x6f,0xdb,0x7d,0xd7,
0x00,0x7f,0x00,0x7f,0x00,0xff,0x20,0xcf,0x10,0xcf,0x10,0x8f,0x20,0x1f,0x14,0x03, 0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xfd,0xf9,0xfb,0xff,0xff,0xff,0xff,0xfe,0xfe,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x03,0xfc,0x06,0xf9, 0x7f,0x7f,0x7f,0x7f,0xff,0xff,0xff,0xcf,0xcf,0xdf,0x8f,0x9f,0x1f,0x3f,0x03,0x17,
0x0a,0xf5,0x16,0xe9,0x2a,0xd5,0x4a,0xb5,0x1a,0xe5,0x16,0xe9,0x55,0xaa,0xa5,0x5a, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfc,0xff,0xf9,0xff,
0xf2,0x0d,0xe0,0x1f,0xc8,0x37,0x82,0x7d,0x30,0xcf,0xf8,0x07,0xf0,0x0f,0xf0,0x0f, 0xf5,0xff,0xe9,0xff,0xd5,0xff,0xb5,0xff,0xe5,0xff,0xe9,0xff,0xaa,0xff,0x5a,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x40,0xbf,0x00,0xff, 0x4d,0xbf,0x5f,0xbf,0x37,0xff,0x7d,0xff,0x8f,0xff,0x07,0xff,0x0f,0xff,0x0f,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x02,0xfd,0x02,0xfd, 0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x7f,0xff,0xbf,0xff,0xbf,0xff,0x7f,0xff,
0xc1,0x2e,0x92,0x6d,0xe2,0x05,0x89,0x76,0x24,0xdb,0x28,0xd3,0xa6,0x59,0x22,0xdd, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfd,0xff,0xfd,0xff,
0x00,0xff,0x00,0x7f,0x40,0xbf,0x00,0xdf,0x80,0x67,0x40,0xbf,0x20,0xdf,0x00,0xff, 0x3f,0xee,0x7d,0xef,0x1d,0xe7,0x77,0xfe,0xdf,0xfb,0xd7,0xfb,0x59,0xff,0xdd,0xff,
0x00,0xfe,0x01,0xfe,0x18,0xe4,0x18,0xe4,0x38,0xc0,0x30,0xc0,0x00,0xf0,0x00,0xe0, 0xff,0xff,0x7f,0x7f,0xff,0xbf,0xdf,0xdf,0xff,0x67,0xff,0xbf,0xff,0xdf,0xff,0xff,
0x1c,0x03,0x00,0x07,0x00,0x03,0x00,0x03,0x01,0x02,0x03,0x00,0x03,0x00,0x00,0x00, 0xfe,0xfe,0xfe,0xff,0xe4,0xfc,0xe4,0xfc,0xc0,0xf8,0xc0,0xf0,0xf0,0xf0,0xe0,0xe0,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0xc0,0x3f, 0x03,0x1f,0x0f,0x07,0x03,0x03,0x03,0x03,0x02,0x03,0x0c,0x03,0x00,0x03,0x01,0x00,
0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x3f,0xff,0x3f,0xff,
0x09,0xf6,0x33,0xcc,0x44,0xbb,0x08,0xf7,0x00,0xff,0x01,0xfe,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x25,0xda,0x45,0xba,0x45,0xba,0xc9,0x36,0x88,0x77,0x10,0xef,0x10,0xef,0x20,0xdf, 0xf6,0xff,0xcc,0xff,0xbb,0xff,0xf7,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x40,0xbf,0x00,0xff, 0xda,0xff,0xba,0xff,0xba,0xff,0x36,0xff,0x77,0xff,0xef,0xff,0xef,0xff,0xff,0xdf,
0xf0,0x0f,0xf2,0x0d,0xf4,0x0b,0xec,0x13,0xc8,0x37,0x80,0x7f,0x00,0xff,0x00,0xdf, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0xbf,0xff,0xff,0xff,
0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x0f,0xff,0x0d,0xff,0x0b,0xff,0x13,0xff,0x37,0xff,0x7f,0xff,0xff,0xff,0xff,0xdf,
0x02,0xfd,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x20,0xde,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x40,0xa0,0x00,0xe0,0x00,0xe0,0x00,0xe0,0x10,0xe0,0x30,0xc1,0x18,0xe1,0x08,0xf1, 0xde,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x01,0x00,0x03,0x20,0x97,0x20,0x84,0x3b, 0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x80,0x7f,0x80,0x7f,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xa0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xf0,0xe0,0xc1,0xf1,0xe1,0xf9,0xf7,0xf9,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x08,0xf7,0x02,0xf4, 0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x01,0x00,0x72,0x21,0xb0,0x27,0xbb,0x3f,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xc0,0x3f, 0x3f,0xff,0x3f,0xff,0x7f,0xff,0x7f,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,
0x40,0x9f,0xa0,0x5f,0x00,0xff,0x00,0xff,0x02,0xfd,0x00,0xff,0x10,0xe7,0x10,0xef, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xf5,0xf6,
0x20,0xdf,0x20,0xdf,0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xbf,0xdf,0x7f,0xdf,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xef,0xf7,0xef,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xdf,0xff,0xdf,0xff,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x04,0xfb,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x40,0x3f,0x00,0xbf,0x00,0xbf,0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0xcf,0x00,0x2f, 0xff,0xff,0xff,0xff,0xff,0xff,0x7e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x04,0xeb,0x01,0xde,0x14,0xc0,0x00,0xe1,0x10,0xea,0x00,0xf0,0x00,0xe9,0x08,0xe0, 0xf3,0xff,0xff,0xff,0xff,0xff,0x3f,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,
0x20,0xdf,0x80,0x7f,0x00,0x7f,0x00,0xbf,0x20,0x5f,0x00,0x97,0x00,0x5f,0x00,0x9f, 0x3f,0x7f,0xbf,0xbf,0xbf,0xbf,0xff,0xff,0xff,0xff,0x7f,0x7f,0xcf,0xcf,0x2f,0x2f,
0x20,0xdf,0x40,0xbf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xeb,0xef,0xdf,0xde,0xc2,0xd4,0xe1,0xe1,0xfa,0xea,0xf0,0xf0,0xe9,0xe9,0xe0,0xe8,
0x20,0xdf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xdf,0xff,0xff,0x7f,0x7f,0x7f,0xff,0xbf,0x5f,0x7f,0x97,0x97,0x5f,0x5f,0x9f,0x9f,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x02,0xfd,0x00,0xff, 0xdf,0xff,0xbf,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x3f,0xc0,0x00,0xff, 0xdf,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x04,0xfa,0x04,0xfb,0x04,0xfb,0x08,0xf7,0x08,0xf7,0x73,0x8c,0xf3,0x0c,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,
0x00,0xe7,0x10,0x24,0x08,0xf6,0x41,0xbe,0x01,0xfe,0x08,0xf7,0x1e,0xe1,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,
0x08,0xf7,0x00,0x7f,0x00,0x7f,0x00,0x38,0xc0,0x14,0x45,0xaa,0x14,0xeb,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xff,0xff,0xff,
0x40,0xa6,0x00,0xf1,0x80,0x17,0x10,0x08,0x80,0x0f,0xa1,0x44,0x44,0xa2,0x00,0xe2, 0xfa,0xfe,0xfb,0xff,0xfb,0xff,0xf7,0xff,0xf7,0xff,0x8c,0xff,0x5c,0xaf,0xff,0xff,
0x40,0x1f,0x60,0x1f,0x80,0x6f,0xa2,0x4d,0x60,0x97,0xd0,0x2f,0x00,0x5f,0x08,0xb7, 0xf7,0xe7,0x34,0x24,0xf6,0xfe,0xbf,0xfe,0xfe,0xff,0xf7,0xff,0xe1,0xff,0xff,0xff,
0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x1c,0xe3,0x80,0x7f,0x00,0xff,0x00,0xff, 0xf7,0xff,0x7f,0x7f,0x7f,0x7f,0x38,0x38,0x15,0xd4,0xab,0xee,0xeb,0xff,0xff,0xff,
0x80,0x7f,0x78,0x87,0x1f,0xe0,0x3f,0xc0,0x1f,0xe0,0x0f,0xf0,0x07,0xf8,0xc0,0x3f, 0xa6,0xe6,0xf1,0xf1,0x97,0x17,0x78,0x08,0xcf,0x0f,0x6c,0xc5,0xa6,0xe2,0xe2,0xe2,
0x00,0xff,0x00,0xff,0x81,0x7e,0xf9,0x06,0xfc,0x03,0xfe,0x01,0xfe,0x01,0x00,0xff, 0x5f,0x1f,0x1f,0x7f,0xff,0x6f,0x6d,0xcf,0xdf,0xb7,0x2f,0xff,0x7f,0x5f,0xb3,0xbf,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0xf8,0x07,0x00,0xff, 0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x20,0xdf,0x00,0xff, 0x7f,0xff,0x87,0xff,0xc0,0xff,0xc0,0xff,0xe0,0xff,0xf0,0xff,0xf8,0xff,0x3f,0xff,
0x00,0xff,0x00,0xff,0x01,0xfe,0x02,0xfd,0x06,0xf9,0x0c,0xf3,0x09,0xe6,0x13,0xec, 0xff,0xff,0xff,0xff,0x7e,0xff,0x06,0xff,0x03,0xff,0x01,0xff,0x01,0xff,0xff,0xff,
0x00,0xff,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x3f,0xff,0x07,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x0c,0xf3,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0xff,0xff,
0x00,0xff,0x20,0xdf,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xfe,0xff,0xfd,0xff,0xfd,0xfb,0xf3,0xff,0xf6,0xef,0xff,0xec,
0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xef,0x00,0xff,0x20,0xdf,0x23,0xdc,0x27,0xd8, 0xff,0xff,0xef,0xff,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x07,0xf8,0x1f,0xe0,0x3f,0xc0,0x7f,0x80,0xfe,0x00,0xfe,0x00,0xfe,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xf3,0xff,0xff,0xff,
0x80,0x30,0x8f,0x30,0x8f,0x30,0x1f,0x60,0x1f,0x60,0x3f,0x40,0x3f,0x40,0x3f,0xc0, 0xff,0xff,0xdf,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x3f,0xc0,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xe2,0x01, 0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xdf,0xff,0xdc,0xff,0xd8,0xff,
0x00,0xff,0xef,0x10,0xef,0x10,0xce,0x31,0xe0,0x1f,0x80,0x71,0x00,0xe0,0x00,0xcf, 0xff,0xff,0xf8,0xff,0xe0,0xff,0xc0,0xff,0x80,0xff,0x00,0xfe,0x00,0xfe,0x00,0xfe,
0xe2,0x15,0xc0,0x31,0x80,0x78,0x20,0xd8,0x70,0x8c,0x30,0xca,0x00,0x7d,0x40,0x2e, 0x7b,0xb0,0x70,0xbf,0x60,0xbf,0xe0,0x7f,0xe0,0x7f,0x40,0x7f,0x40,0x7f,0xc0,0xff,
0x04,0x7b,0xac,0x53,0x88,0x67,0x10,0xcf,0x00,0x3f,0x00,0x7f,0x30,0xcf,0xe0,0x1f, 0xc0,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x1d,0xe3,
0x3e,0xc1,0x3e,0xc1,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x0f,0xf0,0x62,0x9d,0x60,0x9f, 0xff,0xff,0x10,0xff,0x10,0xff,0x31,0xff,0x1f,0xff,0x71,0xf1,0xe0,0xe0,0xcf,0xcf,
0x83,0x7c,0x03,0xdc,0x03,0xc4,0x04,0xc3,0x00,0x83,0x00,0xa1,0x00,0x61,0x84,0x69, 0x15,0xf7,0x3b,0xf1,0x79,0xf8,0xdc,0xf8,0xac,0xdc,0xf9,0xca,0x7d,0x7d,0x7e,0x2e,
0xc0,0x3f,0xfd,0x02,0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x80,0x7f,0x80,0x7f,0x80, 0x7b,0x7f,0x5b,0xf7,0x6f,0xe7,0xcf,0xdf,0xff,0x3f,0xff,0x7f,0xef,0xdf,0x1f,0xff,
0x06,0xf1,0xc7,0x30,0xc7,0x30,0xc3,0x38,0xe3,0x18,0xf3,0x08,0xf1,0x0c,0xf1,0x0c, 0xc1,0xff,0xc1,0xff,0xc0,0xff,0xc0,0xff,0xc0,0xff,0xf0,0xff,0x9d,0xff,0xbf,0xdf,
0x00,0xff,0x80,0x7f,0xe0,0x1f,0xf0,0x0f,0xf8,0x07,0xfc,0x03,0xfe,0x01,0xff,0x00, 0x7c,0xff,0xdc,0xdf,0xc4,0xc7,0xc3,0xc7,0x83,0x83,0xa1,0xa1,0x69,0x61,0x6b,0xed,
0x00,0xff,0x00,0xff,0x40,0xbf,0x40,0xbf,0x40,0xbf,0x20,0xdf,0x20,0xdf,0x20,0xdf, 0x3f,0xff,0x02,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0xff,0x80,0xff,0x80,0xff,
0x01,0xfe,0x02,0xfc,0x0c,0xf3,0x21,0xde,0x00,0xff,0x00,0xff,0x18,0xe7,0x00,0xff, 0xf9,0xf7,0x38,0xf7,0x38,0xf7,0x1c,0xfb,0x1c,0xfb,0x08,0xfb,0x0c,0xfd,0x0e,0xfd,
0xa2,0x5d,0x04,0xbb,0xb4,0x4b,0x03,0xf4,0x11,0xee,0x91,0x6c,0x61,0x9c,0x7c,0x83, 0xff,0xff,0x7f,0xff,0x1f,0xff,0x0f,0xff,0x07,0xff,0x03,0xff,0x01,0xff,0x00,0xff,
0x00,0xff,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xbf,0xff,0xbf,0xff,0xbf,0xff,0xdf,0xff,0xdf,0xff,0xdf,0xff,
0x00,0xff,0xff,0x00,0x00,0xff,0x01,0xfe,0x01,0xfe,0x01,0xfe,0x01,0xfc,0x04,0xf9, 0xff,0xfe,0xff,0xfc,0xf3,0xff,0xde,0xff,0xff,0xff,0xfb,0xff,0xe7,0xff,0xff,0xff,
0x07,0xb8,0xc0,0x3f,0x00,0xff,0x00,0xe0,0x3f,0xc0,0x3f,0xc0,0x7b,0x84,0xf7,0x08, 0xdf,0x7d,0xbb,0xbf,0x4b,0xff,0xfe,0xf5,0xfe,0xef,0x7f,0xec,0xbf,0xdc,0x87,0xfb,
0xfe,0x00,0x00,0xc0,0x00,0xff,0x00,0x01,0xfc,0x01,0xf8,0x01,0xf8,0x03,0xf9,0x02, 0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x3f,0xc0,0x00,0xc0,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xfc,0x03,0xf1,0x0e, 0xff,0xff,0x00,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xfd,0xfb,0xfd,
0x04,0x03,0x00,0x7f,0x00,0xff,0x4e,0x31,0x11,0xee,0x69,0x96,0xf8,0x07,0x18,0xe7, 0xf8,0xbf,0x7f,0xbf,0xff,0xff,0xff,0xe0,0xc0,0xff,0xc0,0xff,0x84,0xff,0x08,0xff,
0x48,0x87,0x3c,0x83,0x78,0x87,0x00,0xff,0x00,0x3f,0xc0,0x3f,0x61,0x9e,0x01,0xfe, 0x00,0xfe,0xfe,0xc0,0xff,0xff,0xed,0x01,0x03,0xfd,0x01,0xf9,0x03,0xfb,0x02,0xfb,
0xa0,0x17,0x44,0x9b,0x00,0xfb,0x02,0xf9,0x00,0xfd,0x01,0xfc,0x01,0xfe,0x80,0x7f, 0xc0,0xff,0xe1,0xc0,0xff,0xff,0xec,0x00,0x00,0xff,0x00,0xff,0x03,0xff,0x0e,0xff,
0x00,0xff,0x00,0x3f,0x00,0xff,0x00,0xff,0x40,0xbf,0x00,0xff,0x00,0xff,0xe0,0x1f, 0xc3,0x07,0xff,0x7f,0xff,0xff,0x73,0x3d,0xee,0xff,0x97,0xfe,0x27,0xdf,0xe7,0xff,
0xf8,0x07,0xf6,0x09,0x07,0xb0,0x17,0xe0,0x03,0xf8,0x09,0xf4,0x10,0xee,0x00,0xff, 0xd7,0x8f,0x83,0xbf,0x87,0xff,0xff,0xff,0x3f,0x3f,0xbf,0x7f,0x9e,0xff,0xfe,0xff,
0x44,0xab,0x00,0xff,0x00,0xff,0xe1,0x1e,0xf0,0x0f,0xec,0x13,0xde,0x21,0x3f,0x40, 0x57,0xb7,0x9f,0xdb,0xfb,0xfb,0xfd,0xfb,0xff,0xfd,0xfd,0xfc,0xff,0xfe,0x7f,0xff,
0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0xff,0x00,0x7f,0x80,0x1f,0xe0,0x8f,0x70, 0xff,0xff,0x3f,0x3f,0xff,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,
0xf1,0x0c,0x10,0x0c,0x00,0xff,0xfc,0x03,0xfc,0x03,0xfe,0x01,0xfe,0x01,0xfe,0x01, 0x47,0xbf,0x09,0xff,0xbe,0xb1,0xfe,0xe1,0xfe,0xf9,0xf6,0xfd,0xef,0xfe,0xff,0xff,
0xff,0x00,0x00,0x00,0x00,0xff,0x0c,0x03,0x7f,0x00,0x7f,0x00,0x3f,0x00,0x3f,0x80, 0xab,0xef,0xff,0xff,0xff,0xff,0x1e,0xff,0x0f,0xff,0x13,0xff,0x61,0xbf,0xf0,0x4f,
0x90,0x6f,0x9c,0x63,0x00,0xff,0x00,0xff,0x04,0xfb,0xe4,0x1b,0xe2,0x1d,0xf2,0x0d, 0x00,0xff,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x80,0xff,0xe0,0xff,0x70,0xff,
0x00,0xff,0x01,0xfe,0x00,0xff,0x08,0xf7,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x0e,0xfd,0xff,0x0c,0xff,0xff,0x03,0xff,0x03,0xff,0x01,0xff,0x01,0xff,0x01,0xff,
0x04,0x7b,0x08,0xf7,0x00,0xff,0x10,0xef,0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0xff,0x00,0xff,0xff,0x03,0x0f,0x00,0x7f,0x00,0x7f,0x40,0x3f,0xc0,0xbf,
0x00,0xff,0x00,0xff,0x00,0x7f,0xc0,0x3f,0x60,0x9f,0x90,0x67,0x86,0x79,0xc1,0x3e, 0x6f,0xff,0x63,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0x1b,0xff,0x1d,0xff,0x0f,0xfd,
0x02,0xfd,0x00,0xff,0x00,0xff,0x04,0xfb,0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0xff, 0xff,0xff,0xff,0xfe,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x1f,0xe0,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0x7b,0xff,0xf7,0xff,0xff,0xff,0xef,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x0c,0xf1,0x08,0xf1,0x1c,0xe3,0x3c,0xc3,0xf8,0x07,0x00,0xff,0x83,0x0c,0x63,0x8c, 0xff,0xff,0xff,0xff,0xff,0x7f,0x3f,0xff,0xbf,0xdf,0xff,0x67,0xfd,0x7b,0x7e,0xbf,
0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0xf1,0x00,0xfe,0x00, 0xfd,0xff,0xfd,0xff,0xff,0xff,0xfb,0xff,0xf7,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,
0xf9,0x02,0xf1,0x06,0xf3,0x04,0xe2,0x05,0x38,0xc7,0x00,0xff,0x88,0x77,0xb8,0x47, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xe6,0x19,0x8e,0x71,0x32,0xcd,0x4d,0x82,0xbe,0x01,0x7f,0x00,0x3f,0x80,0x1f,0xe0, 0xf3,0xfd,0xf7,0xf9,0xe7,0xfb,0xc3,0xff,0x07,0xff,0xff,0xff,0x7d,0x8e,0xac,0xcf,
0x40,0x9e,0x03,0xec,0x0c,0xf3,0x01,0xfc,0x00,0xff,0x00,0x7f,0x80,0x3f,0x80,0x1f, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x48,0xb6,
0x60,0x9f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x40,0xbf,0x60,0x9f, 0x02,0xfb,0x06,0xf7,0x04,0xf7,0x15,0xe7,0xc7,0xff,0xff,0xff,0x77,0xff,0x47,0xff,
0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x19,0xff,0x73,0xfd,0xcf,0xfd,0xfe,0x83,0xfd,0x03,0xfe,0x01,0xff,0x80,0xef,0xf0,
0x0f,0x80,0x6f,0x80,0x73,0x80,0x28,0xd1,0x38,0xc7,0x30,0xce,0x30,0xcc,0x13,0xe8, 0xde,0x9e,0xec,0xef,0xfb,0xf7,0xfe,0xfd,0xff,0xff,0x7f,0x7f,0xbf,0x3f,0x9f,0x1f,
0xe7,0x18,0xe0,0x1f,0x8e,0x71,0x3f,0xc0,0x3f,0x80,0x7f,0x00,0x7f,0x00,0xfc,0x03, 0x9f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0x9f,0xff,
0xfe,0x01,0xfe,0x01,0x3f,0xc0,0x1f,0xe0,0x8f,0x70,0x80,0x7f,0x00,0xff,0x00,0xff, 0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x3f,0x80,0x3f,0x80,0x0f,0x80,0x0f,0x80,0x00,0xc0,0x00,0xff,0x0e,0xf0,0x07,0xf0, 0x90,0x8f,0x88,0xe7,0x84,0xf3,0xd0,0xf9,0xc7,0xff,0xcf,0xfe,0xcd,0xfc,0xef,0xf8,
0xf3,0x0c,0xf1,0x0e,0xf9,0x06,0xf9,0x06,0x00,0x07,0x00,0xff,0xf4,0x0b,0xfc,0x03, 0x18,0xff,0x1f,0xff,0x71,0xff,0xc0,0xff,0xc0,0xbf,0x80,0x7f,0xc0,0x3f,0xc3,0x3f,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x40,0xbf, 0x01,0xff,0x01,0xff,0xc0,0xff,0xe0,0xff,0x70,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,
0xa1,0x5e,0x00,0xff,0x50,0xaf,0x00,0xdf,0x00,0xff,0x02,0xfd,0x02,0xfd,0x00,0x7f, 0xc0,0xbf,0xc0,0xbf,0xf0,0x8f,0x80,0x8f,0xcf,0xc0,0xff,0xff,0xff,0xf0,0xf8,0xf7,
0x00,0xff,0x20,0xdf,0x00,0xff,0x40,0xbf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff, 0x0f,0xfc,0x0f,0xfe,0x07,0xfe,0x07,0xfe,0xff,0x07,0xff,0xff,0x03,0xff,0x03,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,
0xc3,0x0c,0xc7,0x18,0xc7,0x18,0xc7,0x18,0xef,0x10,0xcf,0x30,0xcf,0x30,0x0f,0xf0, 0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,
0xfe,0x00,0xfe,0x00,0xfe,0x00,0xfe,0x00,0xff,0x00,0xfe,0x01,0xfe,0x01,0xfc,0x03, 0x7f,0xde,0xff,0xff,0xaf,0xff,0xff,0xdf,0xff,0xff,0xf9,0xff,0xfd,0xff,0xff,0x7f,
0xb8,0x47,0x30,0xcf,0x60,0x9f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xdf,0xff,0xff,0xff,0xbf,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x0d,0xf2,0x07,0xf8,0x07,0xf8,0x03,0xfc,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,
0xc0,0x0f,0xe0,0x0f,0xf8,0x07,0xf5,0x08,0xec,0x10,0x1c,0xe0,0x3c,0xc0,0x08,0xf0, 0x2c,0xcf,0x18,0xdf,0x38,0xdf,0x38,0xdf,0x10,0xff,0x30,0xff,0x30,0xff,0xf0,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0x3f,0x00,0x0f,0x40,0x07, 0x00,0xfe,0x00,0xfe,0x00,0xfe,0x01,0xfe,0x00,0xff,0x01,0xff,0x01,0xff,0x03,0xff,
0x60,0x9f,0x60,0x9f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x47,0xff,0xcf,0xff,0x9f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xfc,0x01,0xfa, 0xf6,0xfb,0xf9,0xfe,0xfb,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x03,0xf0,0x07,0xf8,0x31,0xce,0x18,0xc7,0x1e,0x01,0x7e,0x01,0xfc,0x03,0x78,0x07, 0xcf,0x0f,0xef,0x0f,0xf7,0x0f,0xec,0x19,0x96,0x78,0xff,0xe0,0xdf,0xe0,0xf7,0xf8,
0xd8,0x27,0xf0,0x0f,0xe0,0x1f,0xc0,0x3f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0x3f,0x3f,0xcf,0x0f,0xe7,0x07,
0x07,0xf0,0x03,0xf0,0x03,0xf0,0x0b,0xf0,0x03,0xf8,0x01,0xfc,0x03,0xfc,0x01,0xfe, 0x9f,0xff,0x9f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xfc,0x03,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfa,0xfb,
0x20,0xdf,0x20,0xdf,0x20,0xdf,0x00,0xff,0x90,0x6f,0x90,0x6f,0x90,0x6f,0x89,0x76, 0xfd,0xf2,0xff,0xf8,0xde,0xef,0xdf,0xc7,0x3f,0x01,0xf9,0x07,0xfb,0x07,0xf7,0x0f,
0x40,0xbf,0x00,0xff,0x20,0xdf,0x30,0xcf,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff, 0xb7,0x6f,0x8f,0x7f,0xdf,0x3f,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfb,0x08,0x73,0x00,0x73,0x00,0xf7, 0xf0,0xf7,0xf4,0xf3,0xf0,0xf3,0xf0,0xfb,0xfc,0xfb,0xfe,0xfd,0xfe,0xfd,0xfe,0xff,
0x05,0xfa,0x00,0xff,0x0f,0xf0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x03,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0xfe,0x01,0x00,0xff,0xe0,0x1f,0x60,0x9f,0x40,0xbf,0x40,0xbf,0x80,0x7f,0x80,0x7f, 0xdf,0xff,0xff,0xdf,0xff,0xdf,0xff,0xff,0x6f,0xff,0x6f,0xff,0x6f,0xff,0x76,0xff,
0x83,0x7c,0x00,0xff,0x20,0x80,0x7b,0x84,0x7d,0x82,0x7f,0x80,0x3f,0xc0,0x3f,0xc0, 0xbf,0xff,0xff,0xff,0xdf,0xff,0xcf,0xff,0xef,0xff,0xef,0xff,0xff,0xff,0xff,0xff,
0xfc,0x03,0x00,0xff,0x0e,0x31,0x1f,0x20,0x5f,0x20,0x5f,0x20,0x1f,0x60,0x1f,0x60, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xfb,0x73,0x7b,0x7b,0x73,0xff,0xf7,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0xe0,0x1f,0xf8,0x07, 0xfa,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x05,0xf8,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x01,0xff,0xff,0xff,0x1f,0xff,0x9f,0xff,0xbf,0xff,0xbf,0xff,0x7f,0xff,0x7f,0xff,
0xf0,0x0f,0xf1,0x08,0xc6,0x30,0x1c,0xc0,0x18,0xe2,0x00,0xf1,0x07,0xf8,0x01,0xfe, 0x7c,0xff,0xff,0xff,0xff,0x80,0x84,0xff,0x82,0xff,0x80,0xff,0xc0,0xff,0xc0,0xff,
0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0x3f,0xc0,0x1f,0xf0,0x07,0xf0,0x0b,0xc0,0x30, 0x03,0xff,0xff,0xff,0xf1,0x3f,0xe0,0x3f,0xe0,0x3f,0xa0,0x7f,0xe0,0x7f,0x60,0x7f,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x01,0xfc,0x09,0xf6,0x05,0xe2, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x3f,0xff,0x1f,0xff,0x07,0xff,
0x04,0xf3,0x0e,0xe0,0x4f,0x80,0x3f,0x00,0x7e,0x01,0xdc,0x03,0xf8,0x07,0xe0,0x1f, 0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xf0,0x0f,0x20,0xdf,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xef,0x1f,0xc9,0x38,0x3e,0xf0,0xff,0xc0,0xff,0xe2,0xff,0xf1,0xff,0xf8,0xfd,0xfe,
0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x07,0xf8,0x0f,0xf0,0x1f,0xe0,0x3f,0xc0, 0xff,0xff,0xff,0xff,0x7f,0x7f,0xbf,0x3f,0xdf,0x1f,0xf7,0x07,0xe3,0x1b,0xb8,0x70,
0x60,0x9f,0x00,0xff,0x00,0xc0,0x1f,0xc0,0x9f,0x40,0x9f,0x40,0x8f,0x60,0x8e,0x61, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfe,0xf7,0xee,0xe3,
0x0f,0xf0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xf7,0xf3,0xef,0xe0,0x9f,0xc0,0x3e,0x01,0x7d,0x03,0xfb,0x07,0xf7,0x0f,0x1f,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff, 0x2f,0xdf,0xdf,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x02,0xfd,0x02,0xfd,0x01,0xfe,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xf8,0xff,0xf0,0xff,0xe0,0xff,0xc0,0xff,
0x00,0xf7,0x00,0xef,0x00,0xef,0x20,0xdf,0x00,0xff,0x00,0xff,0x86,0x61,0x80,0x7f, 0x9f,0xff,0xff,0xff,0xdf,0xc0,0xc0,0xdf,0x40,0xdf,0x40,0xdf,0x70,0xef,0x71,0xef,
0x00,0xff,0x00,0xff,0x00,0xff,0x78,0x87,0x00,0xff,0x00,0xff,0xa0,0x03,0xb0,0x47, 0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xff,0xef,0xff,0xef,0xff,0xff,0xff,0xff,0xff,
0x1e,0xe0,0x1e,0xe0,0x0e,0xf0,0x0f,0xf0,0x03,0xfc,0x00,0xff,0x00,0xfc,0x03,0xfc, 0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xfd,0xff,0xfd,0xfe,0xff,0xff,0xff,
0x1f,0x60,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x06,0xf9,0x00,0xff,0x00,0x00,0xff,0x00, 0xf7,0xf7,0xff,0xef,0xff,0xef,0xff,0xdf,0xff,0xff,0xff,0xff,0xff,0x61,0x7f,0xff,
0xfc,0x03,0xff,0x00,0xff,0x00,0xff,0x00,0x06,0xf9,0x00,0xff,0x00,0x07,0xe1,0x06, 0xff,0xff,0xff,0xff,0xff,0xff,0x87,0xff,0xff,0xff,0xff,0xff,0xf7,0x03,0x07,0xf7,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x60,0x9f,0x00,0xff,0xf8,0x07,0xfe,0x01, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xc6,0x20,0x0b,0xc4,0x3e,0xc0,0x0c,0xf0,0x05,0xf8,0x03,0xfc,0x00,0xff,0x00,0xff, 0xe0,0xfe,0xe0,0xfe,0xf1,0xfe,0xf0,0xff,0xfc,0xff,0xff,0xff,0xff,0xfc,0xfc,0xff,
0x0e,0x01,0xff,0x00,0xfc,0x01,0xfe,0x01,0xf8,0x07,0xf0,0x0f,0x20,0x1f,0x00,0xff, 0x60,0x7f,0xc0,0xff,0xc0,0xff,0xc0,0xff,0xf9,0xff,0xff,0xff,0xff,0x00,0x00,0xff,
0x40,0xbf,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x03,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xf9,0xff,0xff,0xff,0xdf,0x07,0x0e,0xe7,
0x00,0xff,0x01,0xfe,0x03,0xfc,0x07,0xf8,0x0f,0xf0,0x00,0xff,0x60,0x98,0xe3,0x18, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9f,0xff,0xff,0xff,0x07,0xff,0x01,0xff,
0x7f,0x80,0xff,0x00,0xff,0x00,0xff,0x00,0xe0,0x1f,0x00,0xff,0x00,0x00,0xff,0x00, 0x3f,0xe0,0xff,0xc4,0xdf,0xe0,0xff,0xf0,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff,
0x8e,0x61,0x8c,0x63,0x8c,0x73,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0x1f,0xe0,0x1f, 0x1f,0x01,0xff,0x00,0xff,0x01,0xfd,0x03,0xff,0x07,0xff,0x0f,0xdf,0x3f,0xff,0xff,
0x00,0xff,0x0c,0xf3,0x0c,0xf3,0x04,0xfb,0x06,0xf9,0x00,0xff,0x01,0xfe,0x03,0xfc, 0xbf,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xc0,0x3f,0x00,0xff, 0xff,0xff,0xfe,0xff,0xfc,0xff,0xf8,0xff,0xf0,0xff,0xff,0xff,0x9f,0xf8,0x1c,0xfb,
0x00,0xf7,0x00,0xf7,0x00,0xf7,0x10,0xef,0x10,0xef,0x00,0xef,0x00,0xff,0x00,0xff, 0x80,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x1f,0xff,0xff,0xff,0x7f,0x00,0x00,0xff,
0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x80,0x3f,0xc0,0x1f,0xe0,0x0f,0xf0,0x07,0xf8, 0x71,0xef,0x73,0xef,0x73,0xff,0x7f,0xff,0x7f,0xff,0xff,0xff,0xbf,0x1f,0x1f,0xff,
0xf3,0x04,0xf3,0x04,0xf3,0x04,0xeb,0x04,0xe3,0x0c,0xe3,0x0c,0xe3,0x0c,0xe3,0x0c, 0xff,0xff,0xf3,0xff,0xf3,0xff,0xfb,0xff,0xf9,0xff,0xff,0xff,0xfe,0xff,0xfe,0xfd,
0xff,0x00,0xff,0x00,0xf7,0x08,0xc7,0x38,0xe1,0x0e,0xf1,0x02,0xfe,0x01,0xff,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xff,0xff,0xff,
0x00,0xff,0xc0,0x3f,0xe0,0x1f,0xe0,0x1f,0xf8,0x07,0xfe,0x01,0xff,0x00,0xff,0x00, 0xff,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x07,0xf8, 0xf7,0xf7,0xff,0xf7,0xff,0xf7,0xff,0xef,0xff,0xef,0xff,0xef,0xff,0xff,0xff,0xff,
0x01,0xfe,0x03,0xfc,0x0f,0xf0,0x0f,0xf0,0x3f,0xc0,0xff,0x00,0xff,0x00,0xff,0x00, 0x00,0xff,0x00,0xff,0x00,0xff,0x80,0xff,0xc0,0xff,0xe0,0xff,0xf0,0xff,0xf8,0xff,
0xe3,0x18,0xf3,0x08,0xf3,0x08,0xf5,0x08,0xf1,0x0c,0xf1,0x0c,0xf1,0x0c,0xf1,0x0c, 0x04,0xf7,0x04,0xf7,0x04,0xf7,0x04,0xef,0x0c,0xef,0x0c,0xef,0x0c,0xef,0x0c,0xef,
0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x01,0xfc,0x03,0xf8,0x07,0xf0,0x0f,0xe0,0x1f, 0x00,0xff,0x00,0xff,0x08,0xff,0x38,0xff,0x0e,0xef,0x02,0xf3,0x01,0xff,0x00,0xff,
0xc2,0x3d,0x82,0x7d,0x02,0xfd,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0x3f,0xff,0x1f,0xff,0x1f,0xff,0x07,0xff,0x01,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,
0x02,0xfd,0x02,0xfd,0x02,0xfd,0x01,0xfe,0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xf8,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f, 0xfe,0xff,0xfc,0xff,0xf0,0xff,0xf0,0xff,0xc0,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x06,0xf9,0x10,0xef,0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0xff, 0x08,0xfb,0x08,0xfb,0x08,0xfb,0x0a,0xfd,0x0e,0xfd,0x0e,0xfd,0x0e,0xfd,0x0e,0xfd,
0x00,0xff,0x00,0xff,0x00,0xff,0x1c,0xe3,0x18,0xe7,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xff,0x03,0xff,0x07,0xff,0x0f,0xff,0x1f,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0xf9,0x06,0xf9,0x06,0x21,0xde,0x23,0xdc,0x23,0xdc, 0x3d,0xff,0x7d,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x38,0xc7,0x00,0xff,0xf8,0x07,0xc0,0x01,0x84,0x00,0xbe,0x00,0x3a,0x04, 0xff,0xfd,0xff,0xfd,0xff,0xfd,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,
0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xf8,0x00,0xf3,0x00,0xf7,0x00,0x67, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x7f,0xff,
0xe1,0x0e,0x60,0x9f,0x00,0xff,0x3f,0xc0,0x1c,0x20,0x00,0x1c,0x00,0xdc,0x00,0xcc, 0xff,0xff,0xff,0xff,0xf9,0xff,0xe7,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,
0xff,0x00,0x00,0xff,0x00,0xff,0x1d,0xe0,0xaf,0x40,0xa7,0x40,0xa3,0x40,0x2b,0xc0, 0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xe7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0x00,0x18,0xe7,0x00,0xff,0x3e,0x00,0xdf,0x00,0xde,0x00,0xdc,0x00,0xdd,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0x06,0xff,0x16,0xef,0xde,0xff,0xdc,0xff,0xdc,0xff,
0x80,0x7f,0x00,0xff,0x00,0xff,0x18,0x07,0x00,0x07,0x63,0x00,0xf3,0x00,0xf3,0x00, 0xff,0xff,0xc7,0xff,0xff,0xff,0x17,0xef,0x01,0xc1,0x18,0x84,0x04,0xba,0x04,0x3e,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xf8,0x80,0x7b,0xc0,0x3b,0xe0,0x1b, 0xfe,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xf8,0xf8,0xf3,0xf3,0xf7,0xf7,0x67,0x67,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x3e,0x00,0x8e,0x00,0xee,0x00,0xe6, 0x0e,0xef,0x9f,0xff,0xff,0xff,0xc0,0xff,0x20,0x3c,0x1c,0x1c,0xdc,0xdc,0xcc,0xcc,
0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0x02,0x1c,0x62,0x3c,0x42,0x7c,0x02, 0x00,0xff,0xff,0xff,0xff,0xff,0xef,0xf0,0x40,0xef,0x40,0xe7,0x40,0xe3,0xc0,0xeb,
0x1f,0xe0,0x09,0xf6,0x00,0xff,0x7f,0x00,0x00,0x00,0xbf,0x00,0xbf,0x00,0xbf,0x00, 0x00,0xff,0xe7,0xff,0xff,0xff,0xff,0x00,0x00,0xdf,0x00,0xde,0x00,0xdc,0x00,0xdd,
0xff,0x00,0x00,0xff,0x00,0xff,0x04,0x03,0xc0,0x00,0xdc,0x02,0xde,0x01,0xde,0x01, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0x07,0x07,0x07,0x00,0x63,0x08,0xf3,0x08,0xf3,
0xe1,0x1c,0x01,0xfe,0x00,0xff,0x3c,0xc3,0xf0,0x00,0x70,0x07,0x00,0x37,0x00,0x37, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xf8,0x7b,0xfb,0x3b,0xfb,0x1b,0xfb,
0xc0,0x3f,0x80,0x7f,0x00,0xff,0xff,0x00,0x00,0x18,0x00,0x7b,0x80,0x7b,0x80,0x7b, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3e,0x3e,0x8e,0x8e,0xee,0xee,0xe6,0xe6,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x1f,0x00,0xcf,0x00,0xef,0x00,0xe7, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x03,0x02,0x63,0x7e,0x43,0x7e,0x03,0x7e,
0x80,0x7f,0x00,0xff,0x00,0xff,0x78,0x87,0x40,0x9f,0x20,0x9f,0x20,0xdf,0x00,0xdf, 0xe0,0xff,0xf6,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xbf,0x00,0xbf,0x00,0xbf,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xc7,0x00,0xff,0x00,0xff, 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x03,0x00,0xc0,0x02,0xde,0x01,0xdf,0x01,0xdf,
0x80,0x7f,0x00,0xff,0x00,0xff,0x1e,0xe1,0x30,0xcf,0x20,0xdf,0x10,0xef,0x10,0xef, 0x1e,0xfd,0xfe,0xff,0xff,0xff,0xc3,0xff,0x00,0xf0,0x07,0x77,0x37,0x37,0x37,0x37,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x08,0xf7,0x00,0xff, 0x3f,0xff,0x7f,0xff,0xff,0xff,0x08,0xf7,0x18,0x18,0xfb,0x7b,0xfb,0x7b,0xfb,0x7b,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0x1f,0xcf,0xcf,0xef,0xef,0xe7,0xe7,
0x22,0x1d,0x04,0x7b,0x00,0x78,0x04,0x3a,0x00,0x3e,0x00,0xbe,0x00,0x8c,0x00,0xc1, 0x7f,0xff,0xff,0xff,0xff,0xff,0x8f,0xf7,0xff,0x9f,0xff,0x9f,0xff,0xdf,0xff,0xdf,
0x00,0xef,0x00,0xef,0x00,0x6f,0x00,0x67,0x00,0x67,0x00,0x77,0x00,0x71,0x00,0xf8, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc7,0xff,0xff,0xff,0xff,
0x00,0xcc,0x00,0xec,0x00,0xec,0x00,0xec,0x00,0xcc,0x00,0xdc,0x00,0x9c,0x00,0x3c, 0xbf,0x7f,0xff,0xff,0xff,0xff,0xe1,0xff,0xff,0xcf,0xff,0xdf,0xef,0xff,0xff,0xef,
0x29,0xc0,0x0d,0xe0,0x00,0xec,0x00,0xee,0x00,0xef,0x00,0xef,0x00,0xef,0x00,0xef, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,
0xdd,0x00,0xdd,0x00,0xdd,0x00,0x5d,0x00,0x00,0x5c,0x00,0x1c,0x00,0x9e,0x00,0x9f, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x3f,0xff,0xff,0xff,
0xf3,0x04,0xf3,0x04,0xc3,0x00,0xf3,0x00,0xf3,0x00,0x0b,0xf0,0x01,0x72,0x00,0x07, 0x1d,0x3f,0x7b,0x7f,0x78,0x78,0x3a,0x3e,0x3e,0x3e,0xbe,0xbe,0x8c,0x8c,0xc1,0xc1,
0xe0,0x1b,0xf8,0x03,0xf8,0x03,0xfa,0x01,0xfb,0x00,0xfb,0x00,0x3b,0xc0,0x00,0xf8, 0xef,0xef,0xef,0xef,0x6f,0x6f,0x67,0x67,0x67,0x67,0x77,0x77,0x71,0x71,0xf8,0xf8,
0x00,0xe6,0x00,0xf6,0x02,0xf4,0x06,0xe0,0x06,0xe0,0xee,0x00,0x8e,0x00,0x00,0x3e, 0xcc,0xcc,0xec,0xec,0xec,0xec,0xec,0xec,0xcc,0xcc,0xdc,0xdc,0x9c,0x9c,0x3c,0x3c,
0x7d,0x02,0x01,0x02,0x7d,0x02,0x7c,0x02,0x7c,0x02,0x7c,0x02,0x75,0x0a,0x00,0x01, 0xc0,0xe9,0xe0,0xed,0xec,0xec,0xee,0xee,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,
0xbf,0x00,0x81,0x00,0xbf,0x00,0xbc,0x03,0x80,0x3f,0x00,0xbf,0x00,0xbf,0x00,0x80, 0x00,0xdd,0x00,0xdd,0x00,0xdd,0x00,0x5d,0x5c,0x5c,0x1c,0x1c,0x9e,0x9e,0x9f,0x9f,
0xdc,0x03,0xd0,0x0e,0xc0,0x00,0x00,0xdf,0x00,0xdf,0x00,0xdf,0x00,0xdf,0x00,0xdf, 0x0c,0xf7,0x0c,0xf7,0x00,0xc3,0x08,0xf3,0x08,0xf3,0xf0,0xfb,0x72,0x73,0x07,0x07,
0x00,0x37,0x00,0x70,0x00,0x77,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf0, 0x1b,0xfb,0x03,0xfb,0x03,0xfb,0x01,0xfb,0x00,0xfb,0x00,0xfb,0x40,0xfb,0xf8,0xf8,
0x80,0x7b,0x00,0x3b,0x80,0x78,0x80,0x7b,0x00,0xfb,0x41,0xba,0x41,0xba,0x00,0x1b, 0xe6,0xe6,0xf4,0xf6,0xf4,0xf6,0xe0,0xe6,0xe0,0xe6,0x00,0xee,0x00,0x8e,0x3e,0x3e,
0x00,0xef,0x00,0xcf,0x10,0x0f,0x10,0x8f,0x00,0xdf,0x00,0xcf,0x00,0xef,0x00,0xe7, 0x03,0x7e,0x03,0x02,0x03,0x7e,0x03,0x7e,0x03,0x7e,0x03,0x7e,0x02,0x7f,0x01,0x01,
0x20,0xdf,0x30,0xcf,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xef,0x00,0xff,0x00,0xff, 0x00,0xbf,0x00,0x81,0x00,0xbf,0x03,0xbf,0x3f,0xbf,0xbf,0xbf,0xbf,0xbf,0x80,0x80,
0x10,0xef,0x00,0xff,0x08,0xf7,0x08,0xf7,0x00,0xff,0x04,0xfb,0x04,0xfb,0x00,0xff, 0x03,0xdf,0x0e,0xde,0x00,0xc0,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,
0x00,0xff,0x1e,0xe1,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x37,0x37,0x70,0x70,0x77,0x77,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf0,0xf0,
0x00,0xff,0xc0,0x3f,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff, 0xfb,0x7b,0x3b,0x3b,0x78,0xf8,0x7b,0xfb,0x7b,0xfb,0xba,0xfb,0xba,0xfb,0x1b,0x1b,
0x00,0xff,0x79,0x80,0x0e,0xf1,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xef,0xef,0xcf,0xcf,0x1f,0x0f,0x8f,0x9f,0xdf,0xdf,0xcf,0xcf,0xef,0xef,0xe7,0xe7,
0x00,0xff,0x00,0x7f,0xc1,0x3e,0xc0,0x1f,0x40,0x9f,0x60,0x9f,0x40,0xbf,0x40,0xbf, 0xdf,0xff,0xcf,0xff,0xff,0xef,0xff,0xef,0xff,0xef,0xff,0xef,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0xc0,0x3f,0xe0,0x1f,0x20,0xdf,0x20,0xdf,0x00,0xff,0x00,0xff, 0xff,0xef,0xff,0xff,0xf7,0xff,0xf7,0xff,0xff,0xff,0xfb,0xff,0xfb,0xff,0xff,0xff,
0x00,0xff,0x3c,0xc3,0x04,0xfb,0x04,0xfb,0x04,0xfb,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xe0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x1f,0xe0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0x3f,0xff,0xff,0xff,0x7f,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0x8f,0xf0,0xf1,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x87,0x78,0x88,0x27,0x50,0xaf,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0x7f,0xfe,0x3f,0x7f,0x9f,0xff,0x9f,0xff,0x9f,0xbf,0xff,0xbf,0xff,
0x00,0xff,0xcf,0x30,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0x3f,0xff,0xff,0x1f,0xff,0xdf,0xff,0xdf,0xff,0xff,0xff,0xff,
0x00,0xff,0xc0,0x3f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xff,0xff,0xc3,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xf7, 0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x08,0xe7,0x28,0xc7,0x00,0xdf,0x00,0xdf,0x20,0xdf,0x10,0xef,0x10,0xef, 0xff,0xff,0xf8,0x7f,0xff,0x27,0xff,0xaf,0xef,0xff,0xef,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xfc,0x01,0xfc,0x02,0xfd,0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff, 0xff,0xff,0x70,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x1f,0x20,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f, 0xff,0xff,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xfc, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xf7,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xfe,0x01,0x1e,0xe1,0x00,0xff, 0xff,0xff,0xf7,0xef,0xc7,0xef,0xff,0xdf,0xff,0xdf,0xff,0xdf,0xef,0xff,0xef,0xff,
0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x38,0xc3,0x0e,0xf1,0x06,0xf9, 0xff,0xff,0xff,0xfc,0xfe,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x3e,0xc1,0x00,0xff,0x00,0xff, 0xff,0xff,0xe0,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0x7f,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x07,0xf8,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xfe,0xff,0xfe,0xfe,0xfc,0xfc,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xe0,0x1f,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,
0x10,0xef,0x11,0xee,0x00,0xff,0x00,0xff,0x00,0xff,0x07,0xf0,0x0c,0xf3,0x04,0xfb, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x01,0xff,0xe1,0xff,0xff,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xf8,0x07,0x00,0xff,0x00,0xff, 0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0xff,0xf1,0xfb,0xfd,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xc3,0xff,0xff,0xff,0xff,
0x00,0xf8,0x00,0xf0,0x00,0xfc,0x02,0xfc,0x00,0xfe,0x00,0xff,0x00,0xff,0x00,0xff 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,
0xff,0xef,0xee,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xf7,0xff,0xf3,0xff,0xfb,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x47,0xbf,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xff,0xff,0xff,0xff,0xff,
0xf8,0xf8,0xf0,0xf0,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff
}; };
const unsigned char next_level_map[360] = { const unsigned char next_level_map[360] = {
0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03, 0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,
0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x05,0x02,0x02,0x02, 0x04,0x02,0x02,0x02,0x02,0x02,0x02,0x05,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x02,
0x06,0x02,0x02,0x02,0x07,0x02,0x08,0x09,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x0b,0x02,0x02,0x02, 0x07,0x02,0x02,0x02,0x08,0x02,0x09,0x0a,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0b,0x0c,0x02,0x02,0x02,
0x0c,0x0d,0x02,0x0e,0x0f,0x10,0x11,0x12,0x13,0x02,0x02,0x02,0x02,0x02,0x14,0x15,0x16,0x17,0x02,0x02, 0x0d,0x0e,0x02,0x0f,0x10,0x11,0x12,0x13,0x14,0x02,0x02,0x02,0x02,0x02,0x15,0x16,0x17,0x18,0x02,0x02,
0x18,0x19,0x02,0x1a,0x1b,0x02,0x1c,0x1d,0x1e,0x1f,0x20,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, 0x19,0x1a,0x02,0x1b,0x1c,0x1d,0x1e,0x1f,0x20,0x21,0x22,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
0x21,0x22,0x02,0x02,0x23,0x24,0x25,0x26,0x02,0x27,0x28,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, 0x23,0x24,0x02,0x02,0x25,0x26,0x27,0x28,0x02,0x29,0x2a,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
0x29,0x2a,0x2b,0x02,0x02,0x2c,0x2d,0x2e,0x2f,0x30,0x31,0x32,0x33,0x34,0x35,0x02,0x02,0x36,0x02,0x37, 0x2b,0x2c,0x2d,0x02,0x2e,0x2f,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x02,0x02,0x39,0x02,0x3a,
0x38,0x02,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x02,0x48,0x49, 0x3b,0x02,0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x02,0x4b,0x4c,
0x02,0x02,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x02,0x59,0x5a, 0x02,0x02,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x5b,0x02,0x5c,0x5d,
0x5b,0x5c,0x5d,0x5e,0x5f,0x60,0x61,0x62,0x19,0x02,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x02,0x02,0x6a, 0x5e,0x5f,0x60,0x61,0x62,0x63,0x64,0x65,0x1a,0x02,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x15,0x6e,
0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x02,0x74,0x75,0x76,0x77,0x02,0x78,0x79,0x7a,0x02,0x7b, 0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x02,0x78,0x79,0x7a,0x7b,0x02,0x7c,0x7d,0x7e,0x02,0x7f,
0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x02,0x82,0x83,0x84,0x85,0x86,0x87,0x02,0x02,0x88,0x89,0x8a,0x8b,0x8c, 0x80,0x81,0x82,0x83,0x84,0x85,0x02,0x86,0x87,0x88,0x89,0x8a,0x8b,0x02,0x02,0x8c,0x8d,0x8e,0x8f,0x90,
0x8d,0x8e,0x8f,0x90,0x91,0x92,0x93,0x02,0x02,0x94,0x95,0x96,0x02,0x02,0x97,0x98,0x99,0x02,0x9a,0x9b, 0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x02,0x02,0x98,0x99,0x9a,0x02,0x02,0x9b,0x9c,0x9d,0x02,0x9e,0x9f,
0x02,0x9c,0x02,0x19,0x9d,0x9e,0x9f,0xa0,0x02,0x02,0x02,0x02,0xa1,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8, 0xa0,0xa1,0x02,0x1a,0xa2,0xa3,0xa4,0xa5,0xa6,0x02,0x02,0x02,0xa7,0xa8,0xa9,0xaa,0xab,0xa6,0xac,0xad,
0xa9,0xaa,0xab,0xac,0xad,0xae,0xaf,0xb0,0xb1,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xbb,0xbc, 0xae,0xaf,0xb0,0xb1,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xbb,0xbc,0xbd,0xbe,0xbf,0xc0,0xc1,
0xbd,0xbe,0x02,0xbf,0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0x02,0xce, 0xc2,0xc3,0x02,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,0xd0,0xd1,0xd2,0x02,0xd3,
0x02,0xcf,0xd0,0xd1,0xd2,0xd3,0x02,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0x02,0xda,0xdb,0xdc,0xdd,0x02,0xde, 0x02,0xd4,0xd5,0xd6,0xd7,0xd8,0x02,0xd9,0xd4,0xda,0xdb,0xdc,0xdd,0x02,0xde,0xdf,0xe0,0xe1,0x02,0xe2,
0x02,0x02,0x02,0xdf,0xe0,0xe1,0x02,0x02,0x02,0xe2,0xe3,0x02,0x02,0x02,0x02,0xe4,0xe5,0x8f,0xe6,0xe7, 0x02,0xe3,0x02,0xe4,0xe5,0xe6,0x02,0x02,0x02,0x2d,0xe7,0x02,0x02,0x02,0x02,0xe8,0xe9,0x93,0xea,0xeb,
}; };
+2 -2
View File
@@ -13,7 +13,7 @@
#define next_level_TILE_H 8 #define next_level_TILE_H 8
#define next_level_WIDTH 160 #define next_level_WIDTH 160
#define next_level_HEIGHT 144 #define next_level_HEIGHT 144
#define next_level_TILE_COUNT 232 #define next_level_TILE_COUNT 236
#define next_level_PALETTE_COUNT 1 #define next_level_PALETTE_COUNT 1
#define next_level_COLORS_PER_PALETTE 4 #define next_level_COLORS_PER_PALETTE 4
#define next_level_TOTAL_COLORS 4 #define next_level_TOTAL_COLORS 4
@@ -24,6 +24,6 @@ extern const unsigned char next_level_map[360];
BANKREF_EXTERN(next_level) BANKREF_EXTERN(next_level)
extern const palette_color_t next_level_palettes[4]; extern const palette_color_t next_level_palettes[4];
extern const uint8_t next_level_tiles[3712]; extern const uint8_t next_level_tiles[3776];
#endif #endif