Fix next_level image glitch: reset camera scroll and improve image color quantization

This commit is contained in:
2026-06-23 22:05:10 +02:00
parent 3aa20fdb60
commit cb19677f98
5 changed files with 185 additions and 183 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

+29 -21
View File
@@ -1,26 +1,34 @@
from PIL import Image from PIL import Image
import numpy as np
from scipy.cluster.vq import kmeans, vq
img = Image.open('assets/next_level.png').convert('L') # Convert to grayscale # Open original and convert to grayscale
img = img.quantize(colors=4) # Quantize to 4 colors img = Image.open('assets/next_level_original.png').convert('L')
img = img.convert('RGB') pixels = np.array(img, dtype=float)
# Force colors to exactly GB shades
palette = [(224, 248, 208), (136, 192, 112), (52, 104, 86), (8, 24, 32)]
# Actually the game uses generic colors or grayscale. Let's use 4 grayscale values:
gb_palette = [(255,255,255), (170,170,170), (85,85,85), (0,0,0)]
new_img = Image.new('RGB', img.size) # Flatten for clustering
for y in range(img.height): flat_pixels = pixels.flatten()
for x in range(img.width):
p = img.getpixel((x, y))
# Find closest color in gb_palette
best_c = gb_palette[0]
min_dist = 1000000
for c in gb_palette:
dist = (p[0]-c[0])**2 + (p[1]-c[1])**2 + (p[2]-c[2])**2
if dist < min_dist:
min_dist = dist
best_c = c
new_img.putpixel((x, y), best_c)
# Find 4 clusters
centroids, _ = kmeans(flat_pixels, 4)
# Sort centroids by brightness (dark to light)
sorted_centroids = np.sort(centroids)
# 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
quantized_img_data = quantized_pixels.reshape(pixels.shape)
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") print("Processed next_level.png with k-means clustering!")
+3
View File
@@ -169,6 +169,9 @@ void engine_update(uint8_t keys, uint8_t prev_keys) {
} else if (game_over == 2) { } else if (game_over == 2) {
// Mostra la schermata "Going Deeper" // Mostra la schermata "Going Deeper"
HIDE_SPRITES; HIDE_SPRITES;
// Reset scroll so the full screen image is aligned
SCX_REG = 0;
SCY_REG = 0;
set_bkg_data(0, next_level_TILE_COUNT, next_level_tiles); set_bkg_data(0, next_level_TILE_COUNT, next_level_tiles);
set_bkg_tiles(0, 0, 20, 18, next_level_map); set_bkg_tiles(0, 0, 20, 18, next_level_map);
} }
+151 -160
View File
@@ -8,208 +8,199 @@
BANKREF(next_level) BANKREF(next_level)
const palette_color_t next_level_palettes[4] = { const palette_color_t next_level_palettes[4] = {
RGB8(255,255,255), RGB8( 85, 85, 85), RGB8( 0, 0, 0), RGB8( 0, 0, 0) RGB8(170,170,170), RGB8( 85, 85, 85), RGB8( 0, 0, 0), RGB8( 0, 0, 0)
}; };
const uint8_t next_level_tiles[3856] = { const uint8_t next_level_tiles[3712] = {
0x00,0xff,0x09,0xf6,0x3f,0x80,0x54,0xab,0x88,0x67,0x90,0x4f,0x80,0x5f,0x00,0xbf, 0x00,0xff,0x09,0xf6,0x27,0x98,0x44,0xbb,0x88,0x67,0x10,0x4f,0x80,0x5f,0x00,0xbf,
0x00,0x3f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0x3f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x02,0xfd,0x00,0xff,0x00,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x02,0xfd,0x00,0xff,0x00,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xcf,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xcf,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x02,0xfd,0x02,0xfd,0x06,0xf9,0x0a,0xf5, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x02,0xfd,0x02,0xfd,0x02,0xfd,0x0a,0xf5,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xd8,0x27,0xf8,0x07, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xd8,0x27,0xf8,0x07,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f, 0x00,0xff,0x80,0x7f,0x40,0xbf,0x50,0xaf,0xa8,0x57,0xac,0x53,0xb0,0x4b,0xa2,0x55,
0x00,0xff,0x80,0x7f,0xc0,0x3f,0xd0,0x2f,0xa8,0x57,0xac,0x53,0xb0,0x4b,0xaa,0x55,
0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfc,0x02,0xf9,0x00,0xff,0x00,0xff,0x00,0xfe, 0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfc,0x02,0xf9,0x00,0xff,0x00,0xff,0x00,0xfe,
0x40,0x3f,0x00,0x7f,0x00,0xff,0x20,0xcf,0x10,0xcf,0x10,0x8f,0x20,0x1f,0x14,0x03, 0x00,0x7f,0x00,0x7f,0x00,0xff,0x20,0xcf,0x10,0xcf,0x10,0x8f,0x20,0x1f,0x14,0x03,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x03,0xfc,0x06,0xf9, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x03,0xfc,0x06,0xf9,
0x0a,0xf5,0x16,0xe9,0x2a,0xd5,0x4a,0xb5,0x9a,0x65,0x36,0xc9,0x55,0xaa,0xa5,0x5a, 0x0a,0xf5,0x16,0xe9,0x2a,0xd5,0x4a,0xb5,0x1a,0xe5,0x16,0xe9,0x55,0xaa,0xa5,0x5a,
0xf2,0x0d,0xe0,0x1f,0xca,0x35,0x83,0x7c,0x79,0x86,0xf8,0x07,0xf0,0x0f,0xf0,0x0f, 0xf2,0x0d,0xe0,0x1f,0xc8,0x37,0x82,0x7d,0x30,0xcf,0xf8,0x07,0xf0,0x0f,0xf0,0x0f,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0x40,0xbf,0x60,0x9f,0x80,0x7f, 0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x40,0xbf,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x01,0xfe,0x02,0xfd,0x02,0xfd, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x02,0xfd,0x02,0xfd,
0xc5,0x2a,0x92,0x6d,0xe2,0x05,0x89,0x76,0x24,0xdb,0x28,0xd3,0xa6,0x59,0x22,0xdd, 0xc1,0x2e,0x92,0x6d,0xe2,0x05,0x89,0x76,0x24,0xdb,0x28,0xd3,0xa6,0x59,0x22,0xdd,
0x00,0xff,0x00,0x7f,0x40,0xbf,0x00,0xdf,0x80,0x67,0x40,0xbf,0x20,0xdf,0x00,0xff, 0x00,0xff,0x00,0x7f,0x40,0xbf,0x00,0xdf,0x80,0x67,0x40,0xbf,0x20,0xdf,0x00,0xff,
0x00,0xfe,0x11,0xee,0x18,0xe4,0x18,0xe4,0x78,0x80,0x30,0xc0,0x00,0xf0,0x00,0xe0, 0x00,0xfe,0x01,0xfe,0x18,0xe4,0x18,0xe4,0x38,0xc0,0x30,0xc0,0x00,0xf0,0x00,0xe0,
0x1c,0x03,0x00,0x07,0x00,0x03,0x01,0x02,0x03,0x00,0x03,0x00,0x03,0x00,0x00,0x00, 0x1c,0x03,0x00,0x07,0x00,0x03,0x00,0x03,0x01,0x02,0x03,0x00,0x03,0x00,0x00,0x00,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0xc0,0x3f,0xc0,0x3f, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0xc0,0x3f,
0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x0d,0xf2,0x33,0xcc,0xc4,0x3b,0x08,0xf7,0x00,0xff,0x01,0xfe,0x00,0xff,0x00,0xff, 0x09,0xf6,0x33,0xcc,0x44,0xbb,0x08,0xf7,0x00,0xff,0x01,0xfe,0x00,0xff,0x00,0xff,
0xa5,0x5a,0x45,0xba,0x45,0xba,0xc9,0x36,0x88,0x77,0x10,0xef,0x10,0xef,0x20,0xdf, 0x25,0xda,0x45,0xba,0x45,0xba,0xc9,0x36,0x88,0x77,0x10,0xef,0x10,0xef,0x20,0xdf,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0x40,0xbf,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x40,0xbf,0x00,0xff,
0xf0,0x0f,0xf2,0x0d,0xf4,0x0b,0xec,0x13,0xc8,0x37,0x80,0x7f,0x00,0xff,0x20,0xdf, 0xf0,0x0f,0xf2,0x0d,0xf4,0x0b,0xec,0x13,0xc8,0x37,0x80,0x7f,0x00,0xff,0x00,0xdf,
0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x20,0xdf, 0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x02,0xfd,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x02,0xfd,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x20,0xde,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x20,0xde,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x40,0xa0,0x00,0xe0,0x00,0xe0,0x00,0xe0,0x10,0xe0,0x30,0xc1,0x18,0xe1,0x08,0xf1,
0x40,0xa0,0x40,0xa0,0x00,0xe0,0x00,0xe0,0x10,0xe0,0x30,0xc1,0x18,0xe1,0x08,0xf1, 0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x01,0x00,0x03,0x20,0x97,0x20,0x84,0x3b,
0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x01,0x00,0x13,0x20,0x97,0x20,0x8c,0x33, 0x80,0x7f,0x80,0x7f,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0xc0,0x3f,0xc0,0x3f,0xc0,0x3f,0x80,0x7f,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x08,0xf7,0x02,0xf4, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x08,0xf7,0x02,0xf4,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xc0,0x3f, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xc0,0x3f,
0x60,0x9f,0xa0,0x5f,0x01,0xfe,0x00,0xff,0x02,0xfd,0x00,0xff,0x18,0xe7,0x10,0xef, 0x40,0x9f,0xa0,0x5f,0x00,0xff,0x00,0xff,0x02,0xfd,0x00,0xff,0x10,0xe7,0x10,0xef,
0x20,0xdf,0x20,0xdf,0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xef,0x00,0xff, 0x20,0xdf,0x20,0xdf,0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x81,0x7e,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x0c,0xf3,0x00,0xff,0x00,0xff,0xd0,0x2f,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xff, 0x04,0xfb,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xff,
0x48,0x37,0x00,0xbf,0x00,0xbf,0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0xcf,0x00,0x2f, 0x40,0x3f,0x00,0xbf,0x00,0xbf,0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0xcf,0x00,0x2f,
0x04,0xeb,0x01,0xde,0x16,0xc0,0x00,0xe1,0x10,0xea,0x00,0xf0,0x00,0xe9,0x08,0xe0, 0x04,0xeb,0x01,0xde,0x14,0xc0,0x00,0xe1,0x10,0xea,0x00,0xf0,0x00,0xe9,0x08,0xe0,
0x20,0xdf,0x80,0x7f,0x00,0x7f,0x00,0xbf,0x20,0x5f,0x00,0x97,0x00,0x5f,0x00,0x9f, 0x20,0xdf,0x80,0x7f,0x00,0x7f,0x00,0xbf,0x20,0x5f,0x00,0x97,0x00,0x5f,0x00,0x9f,
0x20,0xdf,0x40,0xbf,0x40,0xbf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x20,0xdf,0x40,0xbf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x20,0xdf,0x40,0xbf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x07,0xf8,0x00,0xff, 0x20,0xdf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x02,0xfd,0x00,0xff,
0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xe4,0x1b,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x3f,0xc0,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x3f,0xc0,0x00,0xff,
0x04,0xfa,0x04,0xfb,0x04,0xfb,0x08,0xf7,0x08,0xf7,0x73,0x8c,0xf3,0x0c,0x00,0xff, 0x04,0xfa,0x04,0xfb,0x04,0xfb,0x08,0xf7,0x08,0xf7,0x73,0x8c,0xf3,0x0c,0x00,0xff,
0x10,0xe7,0x10,0x24,0x08,0xf6,0x41,0xbe,0x01,0xfe,0x08,0xf7,0x1e,0xe1,0x00,0xff, 0x00,0xe7,0x10,0x24,0x08,0xf6,0x41,0xbe,0x01,0xfe,0x08,0xf7,0x1e,0xe1,0x00,0xff,
0x0f,0xf0,0x08,0x77,0x00,0x7f,0x00,0x38,0xc0,0x14,0x65,0x8a,0x14,0xeb,0x00,0xff, 0x08,0xf7,0x00,0x7f,0x00,0x7f,0x00,0x38,0xc0,0x14,0x45,0xaa,0x14,0xeb,0x00,0xff,
0xc0,0x26,0x00,0xf1,0x80,0x17,0x10,0x08,0xc0,0x0f,0xa1,0x44,0x44,0xa2,0x00,0xe2, 0x40,0xa6,0x00,0xf1,0x80,0x17,0x10,0x08,0x80,0x0f,0xa1,0x44,0x44,0xa2,0x00,0xe2,
0x40,0x1f,0x60,0x1f,0x80,0x6f,0xa2,0x4d,0x62,0x95,0xd0,0x2f,0x00,0x5f,0x0c,0xb3, 0x40,0x1f,0x60,0x1f,0x80,0x6f,0xa2,0x4d,0x60,0x97,0xd0,0x2f,0x00,0x5f,0x08,0xb7,
0x6c,0x93,0x00,0xff,0x00,0xff,0x00,0xff,0x5e,0xa1,0x80,0x7f,0x00,0xff,0x00,0xff, 0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x1c,0xe3,0x80,0x7f,0x00,0xff,0x00,0xff,
0x80,0x7f,0x78,0x87,0x7f,0x80,0x3f,0xc0,0x1f,0xe0,0x0f,0xf0,0x07,0xf8,0xc0,0x3f, 0x80,0x7f,0x78,0x87,0x1f,0xe0,0x3f,0xc0,0x1f,0xe0,0x0f,0xf0,0x07,0xf8,0xc0,0x3f,
0x02,0xfd,0x00,0xff,0x81,0x7e,0xf9,0x06,0xfc,0x03,0xfe,0x01,0xfe,0x01,0x00,0xff, 0x00,0xff,0x00,0xff,0x81,0x7e,0xf9,0x06,0xfc,0x03,0xfe,0x01,0xfe,0x01,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0xc0,0x3f,0xf8,0x07,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0xf8,0x07,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x20,0xdf,0x20,0xdf,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x20,0xdf,0x00,0xff,
0x00,0xff,0x00,0xff,0x01,0xfe,0x02,0xfd,0x06,0xf9,0x0d,0xf2,0x19,0xe6,0x13,0xec, 0x00,0xff,0x00,0xff,0x01,0xfe,0x02,0xfd,0x06,0xf9,0x0c,0xf3,0x09,0xe6,0x13,0xec,
0x00,0xff,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x02,0xfd,0x00,0xff,0x00,0xff,0x0c,0xf3,0x0c,0xf3,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x0c,0xf3,0x00,0xff,
0x00,0xff,0x20,0xdf,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x20,0xdf,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xef,0x10,0xef,0x20,0xdf,0x23,0xdc,0x27,0xd8, 0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xef,0x00,0xff,0x20,0xdf,0x23,0xdc,0x27,0xd8,
0x00,0xff,0x07,0xf8,0x1f,0xe0,0x3f,0xc0,0x7f,0x80,0xfe,0x00,0xfe,0x00,0xfe,0x00, 0x00,0xff,0x07,0xf8,0x1f,0xe0,0x3f,0xc0,0x7f,0x80,0xfe,0x00,0xfe,0x00,0xfe,0x00,
0x80,0x30,0x8f,0x30,0x9f,0x20,0x1f,0x60,0x1f,0x60,0x3f,0x40,0x3f,0x40,0x3f,0xc0, 0x80,0x30,0x8f,0x30,0x8f,0x30,0x1f,0x60,0x1f,0x60,0x3f,0x40,0x3f,0x40,0x3f,0xc0,
0x3f,0xc0,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xe3,0x00, 0x3f,0xc0,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xe2,0x01,
0x00,0xff,0xef,0x10,0xef,0x10,0xce,0x31,0xe0,0x1f,0x80,0x71,0x00,0xe0,0x00,0xcf, 0x00,0xff,0xef,0x10,0xef,0x10,0xce,0x31,0xe0,0x1f,0x80,0x71,0x00,0xe0,0x00,0xcf,
0xe6,0x11,0xc0,0x31,0x80,0x78,0x20,0xd8,0x70,0x8c,0x32,0xc8,0x00,0x7d,0x40,0x2e, 0xe2,0x15,0xc0,0x31,0x80,0x78,0x20,0xd8,0x70,0x8c,0x30,0xca,0x00,0x7d,0x40,0x2e,
0x04,0x7b,0xac,0x53,0xe8,0x07,0x10,0xcf,0x20,0x1f,0x08,0x77,0x30,0xcf,0xe0,0x1f, 0x04,0x7b,0xac,0x53,0x88,0x67,0x10,0xcf,0x00,0x3f,0x00,0x7f,0x30,0xcf,0xe0,0x1f,
0x3e,0xc1,0x3e,0xc1,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x0f,0xf0,0x62,0x9d,0x60,0x9f, 0x3e,0xc1,0x3e,0xc1,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x0f,0xf0,0x62,0x9d,0x60,0x9f,
0x83,0x7c,0x03,0xdc,0x03,0xc4,0x04,0xc3,0x02,0x81,0x00,0xa1,0x00,0x61,0x84,0x69, 0x83,0x7c,0x03,0xdc,0x03,0xc4,0x04,0xc3,0x00,0x83,0x00,0xa1,0x00,0x61,0x84,0x69,
0xc0,0x3f,0xfd,0x02,0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x80,0x7f,0x80,0x7f,0x80, 0xc0,0x3f,0xfd,0x02,0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x80,0x7f,0x80,0x7f,0x80,
0x06,0xf1,0xc7,0x30,0xcf,0x30,0xe3,0x18,0xe3,0x18,0xf3,0x08,0xf1,0x0c,0xf1,0x0c, 0x06,0xf1,0xc7,0x30,0xc7,0x30,0xc3,0x38,0xe3,0x18,0xf3,0x08,0xf1,0x0c,0xf1,0x0c,
0x00,0xff,0x80,0x7f,0xe0,0x1f,0xf0,0x0f,0xf8,0x07,0xfc,0x03,0xfe,0x01,0xff,0x00, 0x00,0xff,0x80,0x7f,0xe0,0x1f,0xf0,0x0f,0xf8,0x07,0xfc,0x03,0xfe,0x01,0xff,0x00,
0x00,0xff,0x00,0xff,0x40,0xbf,0x40,0xbf,0x40,0xbf,0x20,0xdf,0x20,0xdf,0x20,0xdf, 0x00,0xff,0x00,0xff,0x40,0xbf,0x40,0xbf,0x40,0xbf,0x20,0xdf,0x20,0xdf,0x20,0xdf,
0x01,0xfe,0x02,0xfc,0x0c,0xf3,0x21,0xde,0x00,0xff,0x04,0xfb,0x18,0xe7,0x00,0xff, 0x01,0xfe,0x02,0xfc,0x0c,0xf3,0x21,0xde,0x00,0xff,0x00,0xff,0x18,0xe7,0x00,0xff,
0xa2,0x5d,0x04,0xbb,0xb4,0x4b,0x0b,0xf4,0x11,0xee,0x93,0x6c,0x61,0x9c,0x7c,0x83, 0xa2,0x5d,0x04,0xbb,0xb4,0x4b,0x03,0xf4,0x11,0xee,0x91,0x6c,0x61,0x9c,0x7c,0x83,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x01,0xfe, 0x00,0xff,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x30,0xcf,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0xff,0x00,0x00,0xff,0x01,0xfe,0x01,0xfe,0x01,0xfe,0x01,0xfc,0x04,0xf9,
0x00,0xff,0xff,0x00,0x00,0xff,0x01,0xfe,0x01,0xfe,0x01,0xfe,0x03,0xfc,0x04,0xf9,
0x07,0xb8,0xc0,0x3f,0x00,0xff,0x00,0xe0,0x3f,0xc0,0x3f,0xc0,0x7b,0x84,0xf7,0x08, 0x07,0xb8,0xc0,0x3f,0x00,0xff,0x00,0xe0,0x3f,0xc0,0x3f,0xc0,0x7b,0x84,0xf7,0x08,
0xfe,0x00,0x00,0xc0,0x00,0xff,0x00,0x01,0xfc,0x01,0xf8,0x01,0xf8,0x03,0xf9,0x02, 0xfe,0x00,0x00,0xc0,0x00,0xff,0x00,0x01,0xfc,0x01,0xf8,0x01,0xf8,0x03,0xf9,0x02,
0x3f,0xc0,0x00,0xc0,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xfc,0x03,0xf3,0x0c, 0x3f,0xc0,0x00,0xc0,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xfc,0x03,0xf1,0x0e,
0x04,0x03,0x00,0x7f,0x00,0xff,0x4e,0x31,0x11,0xee,0x69,0x96,0xf8,0x07,0x18,0xe7, 0x04,0x03,0x00,0x7f,0x00,0xff,0x4e,0x31,0x11,0xee,0x69,0x96,0xf8,0x07,0x18,0xe7,
0x48,0x87,0x3c,0x83,0x78,0x87,0x08,0xf7,0x00,0x3f,0xc1,0x3e,0x61,0x9e,0x01,0xfe, 0x48,0x87,0x3c,0x83,0x78,0x87,0x00,0xff,0x00,0x3f,0xc0,0x3f,0x61,0x9e,0x01,0xfe,
0xe0,0x17,0x44,0x9b,0x00,0xfb,0x02,0xf9,0x03,0xfc,0x01,0xfc,0x81,0x7e,0x80,0x7f, 0xa0,0x17,0x44,0x9b,0x00,0xfb,0x02,0xf9,0x00,0xfd,0x01,0xfc,0x01,0xfe,0x80,0x7f,
0x00,0xff,0x00,0x3f,0x00,0xff,0x00,0xff,0x40,0xbf,0x20,0xdf,0x00,0xff,0xe0,0x1f, 0x00,0xff,0x00,0x3f,0x00,0xff,0x00,0xff,0x40,0xbf,0x00,0xff,0x00,0xff,0xe0,0x1f,
0xfa,0x05,0xf6,0x09,0x07,0xb0,0x17,0xe0,0x07,0xf8,0x09,0xf4,0x10,0xee,0x00,0xff, 0xf8,0x07,0xf6,0x09,0x07,0xb0,0x17,0xe0,0x03,0xf8,0x09,0xf4,0x10,0xee,0x00,0xff,
0x44,0xab,0x00,0xff,0x00,0xff,0xe1,0x1e,0xf0,0x0f,0xec,0x13,0xde,0x21,0x3f,0x40, 0x44,0xab,0x00,0xff,0x00,0xff,0xe1,0x1e,0xf0,0x0f,0xec,0x13,0xde,0x21,0x3f,0x40,
0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0xff,0x00,0x7f,0x80,0x1f,0xe0,0x8f,0x70, 0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0xff,0x00,0x7f,0x80,0x1f,0xe0,0x8f,0x70,
0xf1,0x0c,0x10,0x0c,0x00,0xff,0xfc,0x03,0xfc,0x03,0xfe,0x01,0xfe,0x01,0xfe,0x01, 0xf1,0x0c,0x10,0x0c,0x00,0xff,0xfc,0x03,0xfc,0x03,0xfe,0x01,0xfe,0x01,0xfe,0x01,
0xff,0x00,0x02,0x00,0x00,0xff,0x0c,0x03,0x7f,0x00,0x7f,0x00,0x7f,0x00,0x3f,0x80, 0xff,0x00,0x00,0x00,0x00,0xff,0x0c,0x03,0x7f,0x00,0x7f,0x00,0x3f,0x00,0x3f,0x80,
0x90,0x6f,0x9f,0x60,0x00,0xff,0x00,0xff,0x04,0xfb,0xe4,0x1b,0xe2,0x1d,0xf2,0x0d, 0x90,0x6f,0x9c,0x63,0x00,0xff,0x00,0xff,0x04,0xfb,0xe4,0x1b,0xe2,0x1d,0xf2,0x0d,
0x00,0xff,0xbe,0x41,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x01,0xfe,0x00,0xff,0x08,0xf7,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x01,0xfe,0x00,0xff,0x08,0xf7,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x84,0x7b,0x08,0xf7,0x00,0xff,0x10,0xef,0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff, 0x04,0x7b,0x08,0xf7,0x00,0xff,0x10,0xef,0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0x7f,0xc0,0x3f,0x60,0x9f,0x90,0x67,0x86,0x79,0xc1,0x3e, 0x00,0xff,0x00,0xff,0x00,0x7f,0xc0,0x3f,0x60,0x9f,0x90,0x67,0x86,0x79,0xc1,0x3e,
0x02,0xfd,0x02,0xfd,0x04,0xfb,0x04,0xfb,0x38,0xc7,0x00,0xff,0x01,0xfe,0x00,0xff, 0x02,0xfd,0x00,0xff,0x00,0xff,0x04,0xfb,0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x7f,0x80,0x00,0xff,0x9f,0x60,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x1f,0xe0,0x00,0xff,0x00,0xff,0x00,0xff,
0x0c,0xf1,0x08,0xf1,0x1c,0xe3,0x3c,0xc3,0xf8,0x07,0x00,0xff,0x83,0x0c,0x63,0x8c, 0x0c,0xf1,0x08,0xf1,0x1c,0xe3,0x3c,0xc3,0xf8,0x07,0x00,0xff,0x83,0x0c,0x63,0x8c,
0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0xf9,0x00,0xfe,0x00, 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0xf1,0x00,0xfe,0x00,
0xf9,0x02,0xf1,0x06,0xf3,0x04,0xe2,0x05,0x38,0xc7,0x00,0xff,0x98,0x67,0xb8,0x47, 0xf9,0x02,0xf1,0x06,0xf3,0x04,0xe2,0x05,0x38,0xc7,0x00,0xff,0x88,0x77,0xb8,0x47,
0xe6,0x19,0x8e,0x71,0x32,0xcd,0x7d,0x82,0xfe,0x01,0x7f,0x00,0x7f,0x80,0x1f,0xe0, 0xe6,0x19,0x8e,0x71,0x32,0xcd,0x4d,0x82,0xbe,0x01,0x7f,0x00,0x3f,0x80,0x1f,0xe0,
0x40,0x9e,0x03,0xec,0x0c,0xf3,0x03,0xfc,0x00,0xff,0x00,0x7f,0x80,0x3f,0x80,0x1f, 0x40,0x9e,0x03,0xec,0x0c,0xf3,0x01,0xfc,0x00,0xff,0x00,0x7f,0x80,0x3f,0x80,0x1f,
0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x60,0x9f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x40,0xbf,0x60,0x9f,
0x70,0x8f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x40,0xbf,0xe0,0x1f, 0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x0f,0x80,0x6f,0x80,0x73,0x80,0x28,0xd1,0x38,0xc7,0x30,0xce,0x30,0xcc,0x13,0xe8,
0x1f,0x80,0x6f,0x80,0x77,0x80,0x79,0x80,0x38,0xc7,0x70,0x8e,0x30,0xcc,0x13,0xe8, 0xe7,0x18,0xe0,0x1f,0x8e,0x71,0x3f,0xc0,0x3f,0x80,0x7f,0x00,0x7f,0x00,0xfc,0x03,
0xe7,0x18,0xe0,0x1f,0x8e,0x71,0x3f,0xc0,0x3f,0x80,0x7f,0x00,0xff,0x00,0xfc,0x03, 0xfe,0x01,0xfe,0x01,0x3f,0xc0,0x1f,0xe0,0x8f,0x70,0x80,0x7f,0x00,0xff,0x00,0xff,
0xfe,0x01,0xff,0x00,0x3f,0xc0,0x1f,0xe0,0x8f,0x70,0x80,0x7f,0x00,0xff,0x00,0xff, 0x3f,0x80,0x3f,0x80,0x0f,0x80,0x0f,0x80,0x00,0xc0,0x00,0xff,0x0e,0xf0,0x07,0xf0,
0x3f,0x80,0x3f,0x80,0x0f,0x80,0x0f,0x80,0x02,0xc0,0x00,0xff,0x0f,0xf0,0x07,0xf0, 0xf3,0x0c,0xf1,0x0e,0xf9,0x06,0xf9,0x06,0x00,0x07,0x00,0xff,0xf4,0x0b,0xfc,0x03,
0xf3,0x0c,0xf1,0x0e,0xf9,0x06,0xf9,0x06,0x80,0x07,0x00,0xff,0xfc,0x03,0xfc,0x03,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x40,0xbf,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x40,0xbf, 0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x40,0xbf,
0xa1,0x5e,0x00,0xff,0x50,0xaf,0x20,0xdf,0x00,0xff,0x06,0xf9,0x02,0xfd,0x80,0x7f, 0xa1,0x5e,0x00,0xff,0x50,0xaf,0x00,0xdf,0x00,0xff,0x02,0xfd,0x02,0xfd,0x00,0x7f,
0x00,0xff,0x20,0xdf,0x40,0xbf,0x40,0xbf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x20,0xdf,0x00,0xff,0x40,0xbf,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,
0xc3,0x0c,0xc7,0x18,0xc7,0x18,0xe7,0x18,0xef,0x10,0xcf,0x30,0xcf,0x30,0x8f,0x70, 0xc3,0x0c,0xc7,0x18,0xc7,0x18,0xc7,0x18,0xef,0x10,0xcf,0x30,0xcf,0x30,0x0f,0xf0,
0xfe,0x00,0xfe,0x00,0xfe,0x00,0xfe,0x00,0xff,0x00,0xfe,0x01,0xfe,0x01,0xfc,0x03, 0xfe,0x00,0xfe,0x00,0xfe,0x00,0xfe,0x00,0xff,0x00,0xfe,0x01,0xfe,0x01,0xfc,0x03,
0xb8,0x47,0x30,0xcf,0x60,0x9f,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xb8,0x47,0x30,0xcf,0x60,0x9f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x0d,0xf2,0x0f,0xf0,0x07,0xf8,0x03,0xfc,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff, 0x0d,0xf2,0x07,0xf8,0x07,0xf8,0x03,0xfc,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,
0xc0,0x0f,0xe8,0x07,0xfa,0x05,0xf5,0x08,0xec,0x10,0x1f,0xe0,0x3e,0xc0,0x0f,0xf0, 0xc0,0x0f,0xe0,0x0f,0xf8,0x07,0xf5,0x08,0xec,0x10,0x1c,0xe0,0x3c,0xc0,0x08,0xf0,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0x3f,0x00,0x0f,0xc0,0x07, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0x3f,0x00,0x0f,0x40,0x07,
0x60,0x9f,0x60,0x9f,0x20,0xdf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x60,0x9f,0x60,0x9f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xfc,0x01,0xfa, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xfc,0x01,0xfa,
0x03,0xf0,0x07,0xf8,0x31,0xce,0x18,0xc7,0x3e,0x01,0x7f,0x00,0xfc,0x03,0xf8,0x07, 0x03,0xf0,0x07,0xf8,0x31,0xce,0x18,0xc7,0x1e,0x01,0x7e,0x01,0xfc,0x03,0x78,0x07,
0xf8,0x07,0xf8,0x07,0xe0,0x1f,0xc0,0x3f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xd8,0x27,0xf0,0x0f,0xe0,0x1f,0xc0,0x3f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x07,0xf0,0x03,0xf0,0x03,0xf0,0x0b,0xf0,0x03,0xf8,0x01,0xfc,0x03,0xfc,0x01,0xfe,
0x07,0xf0,0x03,0xf0,0x03,0xf0,0x0b,0xf0,0x33,0xc8,0x01,0xfc,0x03,0xfc,0x01,0xfe,
0xfc,0x03,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, 0xfc,0x03,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,
0x20,0xdf,0x20,0xdf,0x20,0xdf,0x10,0xef,0x90,0x6f,0x90,0x6f,0x90,0x6f,0x89,0x76, 0x20,0xdf,0x20,0xdf,0x20,0xdf,0x00,0xff,0x90,0x6f,0x90,0x6f,0x90,0x6f,0x89,0x76,
0x40,0xbf,0x20,0xdf,0x20,0xdf,0x30,0xcf,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff, 0x40,0xbf,0x00,0xff,0x20,0xdf,0x30,0xcf,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfb,0x08,0x73,0x00,0x73,0x00,0xf7, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfb,0x08,0x73,0x00,0x73,0x00,0xf7,
0x0f,0xf0,0x00,0xff,0x0f,0xf0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x05,0xfa,0x00,0xff,0x0f,0xf0,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, 0xfe,0x01,0x00,0xff,0xe0,0x1f,0x60,0x9f,0x40,0xbf,0x40,0xbf,0x80,0x7f,0x80,0x7f,
0x8f,0x70,0x00,0xff,0x77,0x80,0x7b,0x84,0x7d,0x82,0x7f,0x80,0x3f,0xc0,0x3f,0xc0, 0x83,0x7c,0x00,0xff,0x20,0x80,0x7b,0x84,0x7d,0x82,0x7f,0x80,0x3f,0xc0,0x3f,0xc0,
0xfc,0x03,0x00,0xff,0x0e,0x31,0x1f,0x20,0x5f,0x20,0x5f,0x20,0x1f,0x60,0x1f,0x60, 0xfc,0x03,0x00,0xff,0x0e,0x31,0x1f,0x20,0x5f,0x20,0x5f,0x20,0x1f,0x60,0x1f,0x60,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0xe0,0x1f,0xf8,0x07, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0xe0,0x1f,0xf8,0x07,
0x05,0xf8,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x05,0xf8,0x03,0xfc,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0xf4,0x0b,0xf1,0x08,0xc6,0x30,0x3e,0xc0,0x18,0xe2,0x08,0xf1,0x0f,0xf0,0x03,0xfc, 0xf0,0x0f,0xf1,0x08,0xc6,0x30,0x1c,0xc0,0x18,0xe2,0x00,0xf1,0x07,0xf8,0x01,0xfe,
0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0x3f,0xc0,0x1f,0xf0,0x07,0xf8,0x03,0xc0,0x30, 0x00,0xff,0x00,0xff,0x00,0x7f,0x00,0x3f,0xc0,0x1f,0xf0,0x07,0xf0,0x0b,0xc0,0x30,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x01,0xfc,0x0b,0xf4,0x0d,0xe2, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x01,0xfc,0x09,0xf6,0x05,0xe2,
0x06,0xf1,0x0e,0xe0,0x5f,0x80,0x3f,0x00,0x7e,0x01,0xfc,0x03,0xf8,0x07,0xe0,0x1f, 0x04,0xf3,0x0e,0xe0,0x4f,0x80,0x3f,0x00,0x7e,0x01,0xdc,0x03,0xf8,0x07,0xe0,0x1f,
0xf0,0x0f,0x20,0xdf,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xf0,0x0f,0x20,0xdf,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x07,0xf8,0x0f,0xf0,0x1f,0xe0,0x3f,0xc0, 0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x07,0xf8,0x0f,0xf0,0x1f,0xe0,0x3f,0xc0,
0x60,0x9f,0x00,0xff,0x03,0xc0,0x1f,0xc0,0x9f,0x40,0x9f,0x40,0x8f,0x60,0x8e,0x61, 0x60,0x9f,0x00,0xff,0x00,0xc0,0x1f,0xc0,0x9f,0x40,0x9f,0x40,0x8f,0x60,0x8e,0x61,
0x0f,0xf0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x0f,0xf0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x04,0xfb,0x04,0xfb,0x02,0xfd,0x02,0xfd,0x01,0xfe,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x02,0xfd,0x02,0xfd,0x01,0xfe,0x00,0xff,
0x00,0xf7,0x10,0xef,0x10,0xef,0x20,0xdf,0x00,0xff,0x00,0xff,0x86,0x61,0x80,0x7f, 0x00,0xf7,0x00,0xef,0x00,0xef,0x20,0xdf,0x00,0xff,0x00,0xff,0x86,0x61,0x80,0x7f,
0x00,0xff,0x00,0xff,0x00,0xff,0x78,0x87,0x00,0xff,0x00,0xff,0xb4,0x03,0xf0,0x07, 0x00,0xff,0x00,0xff,0x00,0xff,0x78,0x87,0x00,0xff,0x00,0xff,0xa0,0x03,0xb0,0x47,
0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x1e,0xe0,0x1e,0xe0,0x0e,0xf0,0x0f,0xf0,0x03,0xfc,0x00,0xff,0x00,0xfc,0x03,0xfc, 0x1e,0xe0,0x1e,0xe0,0x0e,0xf0,0x0f,0xf0,0x03,0xfc,0x00,0xff,0x00,0xfc,0x03,0xfc,
0x1f,0x60,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x06,0xf9,0x00,0xff,0x00,0x00,0xff,0x00, 0x1f,0x60,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x06,0xf9,0x00,0xff,0x00,0x00,0xff,0x00,
0xfc,0x03,0xff,0x00,0xff,0x00,0xff,0x00,0x06,0xf9,0x00,0xff,0x00,0x07,0xe1,0x06, 0xfc,0x03,0xff,0x00,0xff,0x00,0xff,0x00,0x06,0xf9,0x00,0xff,0x00,0x07,0xe1,0x06,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x60,0x9f,0x00,0xff,0xf8,0x07,0xfe,0x01, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x60,0x9f,0x00,0xff,0xf8,0x07,0xfe,0x01,
0xc7,0x20,0x2b,0xc4,0x3f,0xc0,0x0f,0xf0,0x05,0xf8,0x03,0xfc,0x01,0xfe,0x00,0xff, 0xc6,0x20,0x0b,0xc4,0x3e,0xc0,0x0c,0xf0,0x05,0xf8,0x03,0xfc,0x00,0xff,0x00,0xff,
0x1e,0x01,0xff,0x00,0xfe,0x01,0xfe,0x01,0xf8,0x07,0xf0,0x0f,0xa0,0x1f,0x00,0xff, 0x0e,0x01,0xff,0x00,0xfc,0x01,0xfe,0x01,0xf8,0x07,0xf0,0x0f,0x20,0x1f,0x00,0xff,
0x40,0xbf,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x40,0xbf,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x01,0xfe,0x03,0xfc,0x07,0xf8,0x0f,0xf0,0x00,0xff,0x60,0x98,0xe3,0x18, 0x00,0xff,0x01,0xfe,0x03,0xfc,0x07,0xf8,0x0f,0xf0,0x00,0xff,0x60,0x98,0xe3,0x18,
0x7f,0x80,0xff,0x00,0xff,0x00,0xff,0x00,0xe0,0x1f,0x00,0xff,0x00,0x00,0xff,0x00, 0x7f,0x80,0xff,0x00,0xff,0x00,0xff,0x00,0xe0,0x1f,0x00,0xff,0x00,0x00,0xff,0x00,
0x8e,0x61,0x8c,0x63,0x8c,0x73,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0x1f,0xe0,0x1f, 0x8e,0x61,0x8c,0x63,0x8c,0x73,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0x1f,0xe0,0x1f,
0x08,0xf7,0x0c,0xf3,0x0c,0xf3,0x04,0xfb,0x06,0xf9,0x00,0xff,0x01,0xfe,0x03,0xfc, 0x00,0xff,0x0c,0xf3,0x0c,0xf3,0x04,0xfb,0x06,0xf9,0x00,0xff,0x01,0xfe,0x03,0xfc,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xc0,0x3f,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xc0,0x3f,0x00,0xff,
0x00,0xff,0x00,0xff,0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xf7,0x00,0xf7,0x00,0xf7,0x10,0xef,0x10,0xef,0x00,0xef,0x00,0xff,0x00,0xff,
0x00,0xf7,0x00,0xf7,0x00,0xf7,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff,
0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x80,0x3f,0xc0,0x1f,0xe0,0x0f,0xf0,0x07,0xf8, 0xff,0x00,0xff,0x00,0xff,0x00,0x7f,0x80,0x3f,0xc0,0x1f,0xe0,0x0f,0xf0,0x07,0xf8,
0xf3,0x04,0xf3,0x04,0xf3,0x04,0xeb,0x04,0xe3,0x0c,0xe3,0x0c,0xe3,0x0c,0xe3,0x0c, 0xf3,0x04,0xf3,0x04,0xf3,0x04,0xeb,0x04,0xe3,0x0c,0xe3,0x0c,0xe3,0x0c,0xe3,0x0c,
0xff,0x00,0xff,0x00,0xf7,0x08,0xc7,0x38,0xe1,0x0e,0xf1,0x02,0xfe,0x01,0xff,0x00, 0xff,0x00,0xff,0x00,0xf7,0x08,0xc7,0x38,0xe1,0x0e,0xf1,0x02,0xfe,0x01,0xff,0x00,
0x00,0xff,0xc0,0x3f,0xe0,0x1f,0xe0,0x1f,0xf8,0x07,0xfe,0x01,0xff,0x00,0xff,0x00, 0x00,0xff,0xc0,0x3f,0xe0,0x1f,0xe0,0x1f,0xf8,0x07,0xfe,0x01,0xff,0x00,0xff,0x00,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x03,0xfc,0x07,0xf8,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x03,0xfc,0x07,0xf8, 0x01,0xfe,0x03,0xfc,0x0f,0xf0,0x0f,0xf0,0x3f,0xc0,0xff,0x00,0xff,0x00,0xff,0x00,
0x01,0xfe,0x03,0xfc,0x0f,0xf0,0x0f,0xf0,0x7f,0x80,0xff,0x00,0xff,0x00,0xff,0x00, 0xe3,0x18,0xf3,0x08,0xf3,0x08,0xf5,0x08,0xf1,0x0c,0xf1,0x0c,0xf1,0x0c,0xf1,0x0c,
0xf3,0x08,0xf3,0x08,0xf3,0x08,0xf5,0x08,0xf1,0x0c,0xf1,0x0c,0xf1,0x0c,0xf1,0x0c,
0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x01,0xfc,0x03,0xf8,0x07,0xf0,0x0f,0xe0,0x1f, 0xff,0x00,0xff,0x00,0xff,0x00,0xfe,0x01,0xfc,0x03,0xf8,0x07,0xf0,0x0f,0xe0,0x1f,
0xc2,0x3d,0x82,0x7d,0x02,0xfd,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0xc2,0x3d,0x82,0x7d,0x02,0xfd,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,
0x02,0xfd,0x02,0xfd,0x02,0xfd,0x01,0xfe,0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff, 0x02,0xfd,0x02,0xfd,0x02,0xfd,0x01,0xfe,0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x1e,0xe1,0x38,0xc7,0x00,0xff,0x01,0xfe,0x01,0xfe,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,
0x00,0xff,0x00,0xff,0x00,0xff,0x1c,0xe3,0x1c,0xe3,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x06,0xf9,0x10,0xef,0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x1c,0xe3,0x18,0xe7,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0xf9,0x06,0xf9,0x06,0x21,0xde,0x23,0xdc,0x23,0xdc, 0x00,0xff,0x00,0xff,0x00,0xff,0xf9,0x06,0xf9,0x06,0x21,0xde,0x23,0xdc,0x23,0xdc,
0x00,0xff,0x38,0xc7,0x00,0xff,0xf8,0x07,0xc0,0x01,0x84,0x00,0xbe,0x00,0x3a,0x04, 0x00,0xff,0x38,0xc7,0x00,0xff,0xf8,0x07,0xc0,0x01,0x84,0x00,0xbe,0x00,0x3a,0x04,
0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xf8,0x00,0xf3,0x00,0xf7,0x00,0x67, 0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xf8,0x00,0xf3,0x00,0xf7,0x00,0x67,
0xe1,0x0e,0x60,0x9f,0x00,0xff,0x3f,0xc0,0x1c,0x20,0x00,0x1c,0x00,0xdc,0x00,0xcc, 0xe1,0x0e,0x60,0x9f,0x00,0xff,0x3f,0xc0,0x1c,0x20,0x00,0x1c,0x00,0xdc,0x00,0xcc,
0xff,0x00,0x00,0xff,0x00,0xff,0x1f,0xe0,0xaf,0x40,0xa7,0x40,0xa3,0x40,0x2b,0xc0, 0xff,0x00,0x00,0xff,0x00,0xff,0x1d,0xe0,0xaf,0x40,0xa7,0x40,0xa3,0x40,0x2b,0xc0,
0xff,0x00,0x18,0xe7,0x00,0xff,0xff,0x00,0xdf,0x00,0xde,0x00,0xdc,0x00,0xdd,0x00, 0xff,0x00,0x18,0xe7,0x00,0xff,0x3e,0x00,0xdf,0x00,0xde,0x00,0xdc,0x00,0xdd,0x00,
0x80,0x7f,0x00,0xff,0x00,0xff,0x38,0x07,0x02,0x05,0x63,0x00,0xf3,0x00,0xfb,0x00, 0x80,0x7f,0x00,0xff,0x00,0xff,0x18,0x07,0x00,0x07,0x63,0x00,0xf3,0x00,0xf3,0x00,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xf8,0x80,0x7b,0xc0,0x3b,0xe0,0x1b, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xf8,0x80,0x7b,0xc0,0x3b,0xe0,0x1b,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x3e,0x00,0x8e,0x00,0xee,0x00,0xe6, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x3e,0x00,0x8e,0x00,0xee,0x00,0xe6,
0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0x02,0x1c,0x62,0x3d,0x42,0x7d,0x02, 0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x00,0x02,0x1c,0x62,0x3c,0x42,0x7c,0x02,
0x1f,0xe0,0x09,0xf6,0x00,0xff,0xff,0x00,0x00,0x00,0xbf,0x00,0xbf,0x00,0xbf,0x00, 0x1f,0xe0,0x09,0xf6,0x00,0xff,0x7f,0x00,0x00,0x00,0xbf,0x00,0xbf,0x00,0xbf,0x00,
0xff,0x00,0x80,0x7f,0x00,0xff,0x8c,0x03,0xc0,0x00,0xdc,0x02,0xde,0x01,0xde,0x01, 0xff,0x00,0x00,0xff,0x00,0xff,0x04,0x03,0xc0,0x00,0xdc,0x02,0xde,0x01,0xde,0x01,
0xe1,0x1c,0x01,0xfe,0x00,0xff,0x3c,0xc3,0xf0,0x00,0x70,0x07,0x00,0x37,0x00,0x37, 0xe1,0x1c,0x01,0xfe,0x00,0xff,0x3c,0xc3,0xf0,0x00,0x70,0x07,0x00,0x37,0x00,0x37,
0xc0,0x3f,0x80,0x7f,0x00,0xff,0xff,0x00,0x00,0x18,0x00,0x7b,0x80,0x7b,0x80,0x7b, 0xc0,0x3f,0x80,0x7f,0x00,0xff,0xff,0x00,0x00,0x18,0x00,0x7b,0x80,0x7b,0x80,0x7b,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x1f,0x00,0xcf,0x00,0xef,0x00,0xe7, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x1f,0x00,0xcf,0x00,0xef,0x00,0xe7,
0x80,0x7f,0x00,0xff,0x00,0xff,0x78,0x87,0x40,0x9f,0x60,0x9f,0x20,0xdf,0x00,0xdf, 0x80,0x7f,0x00,0xff,0x00,0xff,0x78,0x87,0x40,0x9f,0x20,0x9f,0x20,0xdf,0x00,0xdf,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x08,0xc7,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xc7,0x00,0xff,0x00,0xff,
0xc0,0x3f,0x00,0xff,0x00,0xff,0x1e,0xe1,0x30,0xcf,0x20,0xdf,0x10,0xef,0x18,0xe7, 0x80,0x7f,0x00,0xff,0x00,0xff,0x1e,0xe1,0x30,0xcf,0x20,0xdf,0x10,0xef,0x10,0xef,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x08,0xf7,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x08,0xf7,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0xc0,0x3f,0x00,0xff,
0x22,0x1d,0x04,0x7b,0x00,0x78,0x04,0x3a,0x00,0x3e,0x00,0xbe,0x00,0x8c,0x00,0xc1, 0x22,0x1d,0x04,0x7b,0x00,0x78,0x04,0x3a,0x00,0x3e,0x00,0xbe,0x00,0x8c,0x00,0xc1,
@@ -217,41 +208,41 @@ const uint8_t next_level_tiles[3856] = {
0x00,0xcc,0x00,0xec,0x00,0xec,0x00,0xec,0x00,0xcc,0x00,0xdc,0x00,0x9c,0x00,0x3c, 0x00,0xcc,0x00,0xec,0x00,0xec,0x00,0xec,0x00,0xcc,0x00,0xdc,0x00,0x9c,0x00,0x3c,
0x29,0xc0,0x0d,0xe0,0x00,0xec,0x00,0xee,0x00,0xef,0x00,0xef,0x00,0xef,0x00,0xef, 0x29,0xc0,0x0d,0xe0,0x00,0xec,0x00,0xee,0x00,0xef,0x00,0xef,0x00,0xef,0x00,0xef,
0xdd,0x00,0xdd,0x00,0xdd,0x00,0x5d,0x00,0x00,0x5c,0x00,0x1c,0x00,0x9e,0x00,0x9f, 0xdd,0x00,0xdd,0x00,0xdd,0x00,0x5d,0x00,0x00,0x5c,0x00,0x1c,0x00,0x9e,0x00,0x9f,
0xf3,0x04,0xf3,0x04,0xc3,0x00,0xf3,0x00,0xf3,0x00,0x1b,0xe0,0x03,0x70,0x00,0x07, 0xf3,0x04,0xf3,0x04,0xc3,0x00,0xf3,0x00,0xf3,0x00,0x0b,0xf0,0x01,0x72,0x00,0x07,
0xf0,0x0b,0xf8,0x03,0xfa,0x01,0xfa,0x01,0xfb,0x00,0xfb,0x00,0xbb,0x40,0x00,0xf8, 0xe0,0x1b,0xf8,0x03,0xf8,0x03,0xfa,0x01,0xfb,0x00,0xfb,0x00,0x3b,0xc0,0x00,0xf8,
0x00,0xe6,0x02,0xf4,0x02,0xf4,0x06,0xe0,0x06,0xe0,0xee,0x00,0x8e,0x00,0x00,0x3e, 0x00,0xe6,0x00,0xf6,0x02,0xf4,0x06,0xe0,0x06,0xe0,0xee,0x00,0x8e,0x00,0x00,0x3e,
0x7d,0x02,0x01,0x02,0x7d,0x02,0x7d,0x02,0x7c,0x02,0x7c,0x02,0x7d,0x02,0x00,0x01, 0x7d,0x02,0x01,0x02,0x7d,0x02,0x7c,0x02,0x7c,0x02,0x7c,0x02,0x75,0x0a,0x00,0x01,
0xbf,0x00,0x81,0x00,0xbf,0x00,0xbc,0x03,0x80,0x3f,0x00,0xbf,0x00,0xbf,0x00,0x80, 0xbf,0x00,0x81,0x00,0xbf,0x00,0xbc,0x03,0x80,0x3f,0x00,0xbf,0x00,0xbf,0x00,0x80,
0xdc,0x03,0xd0,0x0e,0xc0,0x00,0x00,0xdf,0x00,0xdf,0x00,0xdf,0x00,0xdf,0x00,0xdf, 0xdc,0x03,0xd0,0x0e,0xc0,0x00,0x00,0xdf,0x00,0xdf,0x00,0xdf,0x00,0xdf,0x00,0xdf,
0x00,0x37,0x00,0x70,0x00,0x77,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf0, 0x00,0x37,0x00,0x70,0x00,0x77,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf0,
0x80,0x7b,0x00,0x3b,0x80,0x78,0x80,0x7b,0x80,0x7b,0x41,0xba,0x41,0xba,0x00,0x1b, 0x80,0x7b,0x00,0x3b,0x80,0x78,0x80,0x7b,0x00,0xfb,0x41,0xba,0x41,0xba,0x00,0x1b,
0x00,0xef,0x00,0xcf,0x10,0x0f,0x10,0x8f,0x00,0xdf,0x80,0x4f,0x00,0xef,0x00,0xe7, 0x00,0xef,0x00,0xcf,0x10,0x0f,0x10,0x8f,0x00,0xdf,0x00,0xcf,0x00,0xef,0x00,0xe7,
0x20,0xdf,0x30,0xcf,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xef,0x00,0xff,0x00,0xff, 0x20,0xdf,0x30,0xcf,0x10,0xef,0x10,0xef,0x10,0xef,0x00,0xef,0x00,0xff,0x00,0xff,
0x10,0xef,0x00,0xff,0x08,0xf7,0x08,0xf7,0x00,0xff,0x04,0xfb,0x04,0xfb,0x00,0xff, 0x10,0xef,0x00,0xff,0x08,0xf7,0x08,0xf7,0x00,0xff,0x04,0xfb,0x04,0xfb,0x00,0xff,
0x00,0xff,0x1f,0xe0,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xfe,0x01,0xfe,0x00,0xff, 0x00,0xff,0x1e,0xe1,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0xc0,0x3f,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0xc0,0x3f,0x00,0xff,0x80,0x7f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x7d,0x80,0x0e,0xf1,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x79,0x80,0x0e,0xf1,0x01,0xfe,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0x7f,0xc1,0x3e,0xc0,0x1f,0x40,0x9f,0x60,0x9f,0x40,0xbf,0x40,0xbf, 0x00,0xff,0x00,0x7f,0xc1,0x3e,0xc0,0x1f,0x40,0x9f,0x60,0x9f,0x40,0xbf,0x40,0xbf,
0x00,0xff,0x00,0xff,0xc0,0x3f,0xe0,0x1f,0x20,0xdf,0x20,0xdf,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0xc0,0x3f,0xe0,0x1f,0x20,0xdf,0x20,0xdf,0x00,0xff,0x00,0xff,
0x00,0xff,0x3c,0xc3,0x04,0xfb,0x04,0xfb,0x04,0xfb,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x3c,0xc3,0x04,0xfb,0x04,0xfb,0x04,0xfb,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x1f,0xe0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0x1f,0xe0,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x8f,0x70,0xd8,0x27,0x50,0xaf,0x50,0xaf,0x50,0xaf,0x00,0xff,0x00,0xff, 0x00,0xff,0x87,0x78,0x88,0x27,0x50,0xaf,0x10,0xef,0x10,0xef,0x00,0xff,0x00,0xff,
0x00,0xff,0xcf,0x30,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0xcf,0x30,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0xc0,0x3f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, 0x00,0xff,0xc0,0x3f,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xf7, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xf7,
0x00,0xff,0x08,0xe7,0x28,0xc7,0x00,0xdf,0x00,0xdf,0x20,0xdf,0x10,0xef,0x10,0xef, 0x00,0xff,0x08,0xe7,0x28,0xc7,0x00,0xdf,0x00,0xdf,0x20,0xdf,0x10,0xef,0x10,0xef,
0x00,0xff,0x00,0xfc,0x03,0xfc,0x02,0xfd,0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xfc,0x01,0xfc,0x02,0xfd,0x01,0xfe,0x01,0xfe,0x00,0xff,0x00,0xff,
0x00,0xff,0xdf,0x20,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f, 0x00,0xff,0x1f,0x20,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x80,0x7f,
0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x01,0xfe,0x00,0xfe,0x00,0xfc, 0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xfe,0x00,0xfc,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x06,0xf9,0x00,0xff,0x04,0xfb,0x04,0xfb,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xfe,0x01,0x1e,0xe1,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xfe,0x01,0x1e,0xe1,0x00,0xff,
0xc0,0x3f,0x80,0x7f,0x00,0xff,0x00,0xff,0x00,0xff,0x38,0xc3,0x0e,0xf1,0x06,0xf9, 0x40,0xbf,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x38,0xc3,0x0e,0xf1,0x06,0xf9,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x3e,0xc1,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x3e,0xc1,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x07,0xf8,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xe0,0x1f,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xe0,0x1f,0x00,0xff,
0x10,0xef,0x11,0xee,0x00,0xff,0x00,0xff,0x00,0xff,0x0f,0xf0,0x0c,0xf3,0x04,0xfb, 0x10,0xef,0x11,0xee,0x00,0xff,0x00,0xff,0x00,0xff,0x07,0xf0,0x0c,0xf3,0x04,0xfb,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xf8,0x07,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xf8,0x07,0x00,0xff,0x00,0xff,
0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x20,0xdf,0xe0,0x1f,0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x80,0x7f,0x00,0xff,0x00,0xff,
0x00,0xf8,0x00,0xf0,0x00,0xfc,0x02,0xfc,0x00,0xfe,0x00,0xff,0x00,0xff,0x00,0xff 0x00,0xf8,0x00,0xf0,0x00,0xfc,0x02,0xfc,0x00,0xfe,0x00,0xff,0x00,0xff,0x00,0xff
}; };
@@ -259,20 +250,20 @@ const uint8_t next_level_tiles[3856] = {
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, 0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x05,0x02,0x02,0x02,
0x06,0x07,0x02,0x02,0x08,0x02,0x09,0x0a,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0b,0x0c,0x02,0x02,0x02, 0x06,0x02,0x02,0x02,0x07,0x02,0x08,0x09,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x0b,0x02,0x02,0x02,
0x0d,0x0e,0x02,0x0f,0x10,0x11,0x12,0x13,0x14,0x02,0x02,0x02,0x02,0x02,0x15,0x16,0x17,0x18,0x02,0x02, 0x0c,0x0d,0x02,0x0e,0x0f,0x10,0x11,0x12,0x13,0x02,0x02,0x02,0x02,0x02,0x14,0x15,0x16,0x17,0x02,0x02,
0x19,0x1a,0x02,0x1b,0x1c,0x1d,0x1e,0x1f,0x20,0x21,0x22,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, 0x18,0x19,0x02,0x1a,0x1b,0x02,0x1c,0x1d,0x1e,0x1f,0x20,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, 0x21,0x22,0x02,0x02,0x23,0x24,0x25,0x26,0x02,0x27,0x28,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
0x2b,0x2c,0x2d,0x2e,0x2f,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x02,0x02,0x3a,0x02,0x3b, 0x29,0x2a,0x2b,0x02,0x02,0x2c,0x2d,0x2e,0x2f,0x30,0x31,0x32,0x33,0x34,0x35,0x02,0x02,0x36,0x02,0x37,
0x3c,0x02,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x02,0x4c,0x4d, 0x38,0x02,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x02,0x48,0x49,
0x02,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x5b,0x5c,0x5d,0x5e,0x5f,0x60, 0x02,0x02,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x02,0x59,0x5a,
0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x02,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x15,0x72, 0x5b,0x5c,0x5d,0x5e,0x5f,0x60,0x61,0x62,0x19,0x02,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x02,0x02,0x6a,
0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x7b,0x02,0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x02,0x84, 0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x02,0x74,0x75,0x76,0x77,0x02,0x78,0x79,0x7a,0x02,0x7b,
0x85,0x86,0x87,0x88,0x89,0x8a,0x02,0x8b,0x8c,0x8d,0x8e,0x8f,0x90,0x02,0x02,0x91,0x92,0x93,0x94,0x95, 0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x02,0x82,0x83,0x84,0x85,0x86,0x87,0x02,0x02,0x88,0x89,0x8a,0x8b,0x8c,
0x96,0x97,0x98,0x99,0x9a,0x9b,0x9c,0x02,0x02,0x9d,0x9e,0x9f,0x02,0x02,0xa0,0xa1,0xa2,0x02,0xa3,0xa4, 0x8d,0x8e,0x8f,0x90,0x91,0x92,0x93,0x02,0x02,0x94,0x95,0x96,0x02,0x02,0x97,0x98,0x99,0x02,0x9a,0x9b,
0xa5,0xa6,0x02,0x69,0xa7,0xa8,0xa9,0xaa,0xab,0x02,0x02,0x02,0xac,0xad,0xae,0xaf,0xb0,0xab,0xb1,0x07, 0x02,0x9c,0x02,0x19,0x9d,0x9e,0x9f,0xa0,0x02,0x02,0x02,0x02,0xa1,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,
0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xbb,0xbc,0xbd,0xbe,0xbf,0xc0,0xc1,0xc2,0xc3,0xc4,0xc5, 0xa9,0xaa,0xab,0xac,0xad,0xae,0xaf,0xb0,0xb1,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xbb,0xbc,
0xc6,0xc7,0x1d,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,0xd0,0xd1,0xd2,0xd3,0xd4,0xd5,0xd6,0x02,0xd7, 0xbd,0xbe,0x02,0xbf,0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0x02,0xce,
0x02,0xd8,0xd9,0xda,0xdb,0xdc,0x02,0xdd,0xde,0xdf,0xe0,0xe1,0xe2,0x02,0xe3,0xe4,0xe5,0xe6,0x02,0xe7, 0x02,0xcf,0xd0,0xd1,0xd2,0xd3,0x02,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0x02,0xda,0xdb,0xdc,0xdd,0x02,0xde,
0x02,0xe8,0x02,0xe9,0xea,0xeb,0x02,0x02,0x02,0x2d,0xec,0x02,0x02,0x02,0x02,0xed,0xee,0x98,0xef,0xf0, 0x02,0x02,0x02,0xdf,0xe0,0xe1,0x02,0x02,0x02,0xe2,0xe3,0x02,0x02,0x02,0x02,0xe4,0xe5,0x8f,0xe6,0xe7,
}; };
+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 241 #define next_level_TILE_COUNT 232
#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[3856]; extern const uint8_t next_level_tiles[3712];
#endif #endif