-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfnf-select.p8
More file actions
797 lines (747 loc) · 50.6 KB
/
fnf-select.p8
File metadata and controls
797 lines (747 loc) · 50.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
pico-8 cartridge // http://www.pico-8.com
version 34
__lua__
--friday night funkin' in pico-8
--made by carson k and chris w
function _init()
poke(0x5f2d,1)
cartdata("ckcw_fnfp8")
doseed = false
seed = -1
clipboard = ""
step = 0
inc = 509/64--509/32
fade = 15
fading = 0
menu_init()
menustate = 1
function toggle_downscroll()
if downscroll == 0 then
downscroll = 1
menuitem(2,"downscroll: on",toggle_downscroll)
else
downscroll = 0
menuitem(2,"downscroll: off",toggle_downscroll)
end
dset(50,downscroll)
end
downscroll = dget(50)
if downscroll == 0 then
menuitem(2,"downscroll: off",toggle_downscroll)
else
menuitem(2,"downscroll: on",toggle_downscroll)
end
if dget(60) == 1 then
music(8)
else
local _val = dget(59)+1
if(_val > 7) _val = 0
music(_val)
end
dset(60,0)
difficulty = dget(55)
end
function _update60()
--step = stat(26) + (stat(24)* 509)
menu_update()
local _cl = stat(4)
if _cl ~= "" then
seed = tonum(clipboard)
clipboard = _cl
end
if btnp(🅾️,1) then
doseed = not doseed
end
step+=1
poke(0x5f30,1)
end
function _draw()
cls()
palt(0,false)
palt(9,true)
if fading > -1 then
if(fading == 0) fade0(ceil(fade))
if(fading == 1) fade1(ceil(fade))
if(fading == 2) fade0(15-ceil(fade))
if(fading == 3) fade1(15-ceil(fade))
if(fade > 0) fade -= 0.5
if fade == 0.5 and menustate == 0 and fading == 2 then
fade = 15
fading = 0
menustate = 1
end
if fade == 0 and menustate == 1 and fading == 2 then
--load cart
if not loading then
music(-1)
dset(55,difficulty)
if difficulty == 2 and doseed then
dset(54,seed)
else
dset(54,0)
end
load(menubtns[state+1][4])
loading = true
end
end
end
rectfill(0,0,128,128,0)
color(6)
menu_draw()
if seed and doseed and difficulty == 2 then
print("seed:\n"..tostr(seed),2,116,7)
end
--print(step,0,0)
end
-->8
--main menu
function menu_init()
menustate = 0
state = 0
nextstate = -1
starting = -1
loading = false
menubtns={
{"tUTORIAL",false,"","fnf-tutorial.p8"},
{"dADBATTLE",false,"daddy dearest","fnf-dad.p8"},
{"sOUTH",false,"spooky month","fnf-halloween.p8"},
{"pICO",false,"pico","fnf-pico.p8"},
{"milf",false,"mommy must murder","fnf-milf.p8"},
{"cOCOA",false,"red snow","fnf-xmas.p8"},
{"rOSES",false,"hating simulator","fnf-roses.p8"},
{"uGH",false,"tankman","fnf-ugh.p8"}
}
menuy = 128
perfectscores={
960,3220,3500,3500,6460,4460,4660,4860
--9999999,9999999,9999999,9999999,9999999,9999999
}
currentsheet=1
end
function menu_update()
menuy = lerp(menuy,98-(8*state),0.125)
if nextstate > 0 then
nextstate -= 1
if nextstate == 0 then
fading = 2
fade = 15
nextstate = 0
end
end
if starting > 0 then
starting -= 1
if starting == 0 then
fading = 2
fade = 15
end
end
if menustate == 0 and nextstate == -1 then
--press enter to start
if btnp() == 64 then
nextstate = 30
sfx(5,2)
poke(0x5f30,1)
end
elseif starting == -1 then
if btnp(⬇️) or btnp(⬇️,1) then
sfx(3,2)
state += 1
if(state > #menubtns-1) state = 0
elseif btnp(⬆️) or btnp(⬆️,1) or btnp(🅾️) then
sfx(3,2)
state -= 1
if(state < 0) state = #menubtns-1
elseif btnp(⬅️) or btnp(⬅️,1) then
sfx(3,2)
difficulty -= 1
if(difficulty < 0) difficulty = 0
elseif btnp(➡️) or btnp(➡️,1) or btnp(❎) then
sfx(3,2)
difficulty += 1
if(difficulty > 3) difficulty = 3
elseif btnp() == 64 then
sfx(5,2)
menubtns[state+1][2] = true
starting = 60
poke(0x5f30,1)
end
end
end
function menu_draw()
cls()
for i=1,#menubtns do
color(6)
local _tx = menubtns[i][1]
if state == i-1 then
_tx = "> ".._tx
color(7)
end
if(not menubtns[i][2] or flr(step/inc)%2 == 1) print(_tx,63-#_tx*2,menuy+(i*8))
end
rectfill(0,0,128,93,0)
rectfill(0,0,128,92,9)
local _htptx = "pLAY WITH ⬅️⬇️⬆️➡️ OR d,f,j,k"
print(_htptx,6,85,0)
--characters
draw_boyfriend(88,52-3)
draw_girlfriend(49,22-3)
--old spritesheet shenanigans
--[[
if (state == 2 or state == 5) and currentsheet == 1 then
sheet2()
elseif (state ~= 2 and state ~= 5) and currentsheet == 2 then
sheet1()
end]]
if state == 1 then
draw_dad(18,24)
elseif state == 2 then
draw_spookeez(12,36)
elseif state == 3 then
draw_pico(10,48-3)
elseif state == 4 then
draw_milf(16,26)
elseif state == 5 then
draw_momdad(-12,28)
elseif state == 6 then
draw_senpai(16,43)
elseif state == 7 then
draw_tankman(12,44-3)
end
rectfill(0,0,128,10,0)
--rectfill(0,92,128,128,0)
local _tx = "sCORE: " .. tostr(scoreget(state))
if scoreget(state) == perfectscores[state+1] then
local _h = flr(step/8)
while _h >= 6 do _h -= 6 end
_h += 8
if(_h == 13) _h = 2
print(_tx,2,3,_h)
else
print(_tx,2,3,5)
end
_tx = menubtns[state+1][3]
print(_tx,126-#_tx*4,3,5)
print("< >",90,106,12)
if difficulty == 0 then
print("normal",96,106,9)
elseif difficulty == 1 then
print("hard",100,106,8)
elseif difficulty == 2 then
print("random",96,106,13)
elseif difficulty == 3 then
print("corrupt",94,106,2)
end
--local _tx = "pLAY WITH ⬅️⬇️⬆️➡️ OR s,d,n,m"
--print(_tx,64-8-#_tx*2,122,4)
end
-->8
--score
function scoreget(_st)
if _st < 2 then
return dget(_st)
elseif _st == 2 then
return dget(6)
elseif _st < 5 then
return dget(_st-1)
elseif _st == 5 then
return dget(7)
else
return dget(_st-2)
end
end
--linear interpolation
function lerp(pos,tar,perc)
return pos+((tar-pos)*perc)
end
-->8
--fades
--fade to black
local fadetable0={
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{1,1,1,1,1,1,1,0,0,0,0,0,0,0,0},
{2,2,2,2,2,2,1,1,1,0,0,0,0,0,0},
{3,3,3,3,3,3,1,1,1,0,0,0,0,0,0},
{4,4,4,2,2,2,2,2,1,1,0,0,0,0,0},
{5,5,5,5,5,1,1,1,1,1,0,0,0,0,0},
{6,6,13,13,13,13,5,5,5,5,1,1,1,0,0},
{7,6,6,6,6,13,13,13,5,5,5,1,1,0,0},
{8,8,8,8,2,2,2,2,2,2,0,0,0,0,0},
{9,9,9,4,4,4,4,4,4,5,5,0,0,0,0},
{10,10,9,9,9,4,4,4,5,5,5,5,0,0,0},
{11,11,11,3,3,3,3,3,3,3,0,0,0,0,0},
{12,12,12,12,12,3,3,1,1,1,1,1,1,0,0},
{13,13,13,5,5,5,5,1,1,1,1,1,0,0,0},
{14,14,14,13,4,4,2,2,2,2,2,1,1,0,0},
{15,15,6,13,13,13,5,5,5,5,5,1,1,0,0}
}
function fade0(i)
for c=0,15 do
if flr(i+1)>=16 then
pal(c,0)
else
pal(c,fadetable0[c+1][flr(i+1)])
end
end
end
-- fade to white
local fadetable1={
{0,0,1,1,5,5,5,13,13,13,6,6,6,6,7},
{1,1,5,5,13,13,13,13,13,6,6,6,6,6,7},
{2,2,2,13,13,13,13,13,6,6,6,6,6,7,7},
{3,3,3,3,13,13,13,13,6,6,6,6,6,7,7},
{4,4,4,4,4,14,14,14,15,15,15,15,15,7,7},
{5,5,13,13,13,13,13,6,6,6,6,6,6,7,7},
{6,6,6,6,6,6,6,6,7,7,7,7,7,7,7},
{7,7,7,7,7,7,7,7,7,7,7,7,7,7,7},
{8,8,8,8,14,14,14,14,14,14,15,15,15,7,7},
{9,9,9,10,10,10,15,15,15,15,15,15,15,7,7},
{10,10,10,10,10,15,15,15,15,15,15,15,7,7,7},
{11,11,11,11,11,11,6,6,6,6,6,6,6,7,7},
{12,12,12,12,12,12,6,6,6,6,6,6,7,7,7},
{13,13,13,13,6,6,6,6,6,6,6,6,7,7,7},
{14,14,14,14,14,15,15,15,15,15,15,7,7,7,7},
{15,15,15,15,15,15,15,7,7,7,7,7,7,7,7}
}
function fade1(i)
for c=0,15 do
if flr(i+1)>=16 then
pal(c,7)
else
pal(c,fadetable1[c+1][flr(i+1)])
end
end
end
-->8
--draw chars
function draw_girlfriend(_x,_y)
if flr(step/(inc*4))%2==0 then
sspr(0,113,13,15,_x+30,_y+31)
sspr(0,113,13,15,_x-12,_y+31,12,15,true)
sspr(0,0,30,34,_x,_y+1)
sspr(0,35,30,12,_x,_y+35)
else
sspr(13,113,12,15,_x+30,_y+31)
sspr(13,113,12,15,_x-12+1,_y+31,11,15,true)
sspr(31,0,30,35,_x,_y-1)
sspr(0,35,30,12,_x,_y+34)
end
end
function draw_boyfriend(_x,_y)
if flr(step/(inc*4))%2==0 then
sspr(30,35,28,28,_x,_y)
else
sspr(30,63,27,30,_x+1,_y-2)
end
end
function draw_spookeez(_x,_y)
if flr(step/(inc*2))%4==0 then
--2
--sspr(67,94,24,34,_x+2,_y+5)
draw_sheet(2,_x+2,_y+5,9)
elseif flr(step/(inc*2))%4==1 then
--1
draw_sheet(1,_x,_y,9)
--sspr(86,46,28,39,_x,_y)
elseif flr(step/(inc*2))%4==2 then
--2
--sspr(67,94,24,34,_x+2,_y+5)
draw_sheet(2,_x+2,_y+5,9)
elseif flr(step/(inc*2))%4==3 then
--3
--sspr(92,92,36,36,_x-4,_y+5)
draw_sheet(3,_x-4,_y+5,9)
end
end
function draw_tankman(_x,_y)
if flr(step/(inc*4))%2==0 then
sspr(0,75,30,27,_x,_y)
else
sspr(0,47,28,28,_x+1,_y-1)
end
sspr(0,103,24,9,_x,_y+27)
end
function draw_dad(_x,_y)
if flr(step/(inc*4))%2==0 then
sspr(56,73,24,35,_x,_y)
else
sspr(85,64,24,35,_x,_y)
end
sspr(29,111,22,17,_x-4,_y+35)
end
function draw_milf(_x,_y)
if flr(step/(inc*4))%2==0 then
sspr(64,34,30,39,_x,_y)
else
sspr(95,25,31,39,_x,_y)
end
sspr(33,94,19,14,_x+2,_y+39)
end
function draw_pico(_x,_y)
if flr(step/(inc*4))%2==0 then
sspr(62,0,30,23,_x,_y)
sspr(62,24,30,9,_x,_y+23)
else
sspr(95,0,31,25,_x,_y-1)
sspr(62,24,30,9,_x,_y+23)
end
end
function draw_senpai(_x,_y)
palt(9,false)
palt(15,true)
sspr(99,101,29,27,_x,_y)
palt(9,true)
palt(15,false)
sspr(70,115,26,12,_x-9,_y+27-2)
sspr(54,117,14,8,_x+23,_y+28)
if flr(step/(inc*4))%2==0 then
sspr(116,69,10,13,_x+9,_y+8)
else
sspr(116,84,9,15,_x+9,_y+6)
end
end
function draw_momdad(_x,_y)
if flr(step/(inc*4))%2==0 then
draw_sheet(4,_x,_y,12)
else
draw_sheet(5,_x+4,_y-1,12)
end
end
-->8
--spritesheet shenanigans
sheets = {
--spookeez
"28,39,e950f969205920f939109910f9191059402910e910193019602910d9c02910c9101930191029301930c9101930191019401930c9b01940c9201930193019301910c93079301910e9b01910f919901910f939602910f94990a9305920191029101920991039201930195019101910791059501920392029106910592029305910292059105920194059104920491039502910594039103950193029203960391069201910396019403910691029103930192019403910691059a05910691039102940194019102910791039202910492019103910894049703910c91059603910793039105930191029108910291039303920193099103960194029101920594029101940191019101920291019104910795029101910391019105920694029101920491059104910296029203920491019f02970292039902910297079705970",
"24,34,5970f9207910d910a910b910c910a910c9109910493019303910891039a01910891029b01910891029b019109920296029308920494049109920491029104920892049403940793029201990799019609950192059507950991029106920291089104910591049201910a91049104930b91049104920693039104920292019302950191069c01930191069301920393019103920591039204930591059103910391019306910591019101910293019105930592019102910291019203930593019204980797039706990198069f03079f030497069",
"36,36,5960f9d9206920f9a910a910f99910394019201910f979104990f9791049a0f95910594019201920f95910594019201920f95910292019a0f95910295019303910f9591029605920f9691029c0f9791039905950e9103950193019404910e920795019204910f980292019402920f919302910392039402910f919201910592029402910f92930593019402910f93930397019102910f93990193019103910f92910494019503910f92910496019303910f9292029706910f94940194029302910f95910496029206930d9104940292029502910e93029201910195029102910f9191019701920191019102930f9104980392019101910b9507930291029202910b9102920399019103920d91059f0e94029205960f929401910f9f93920f9",
--mom/dad xmas
"61,54,fcfcfc4c20fcfcfcdc201c10fcfc9c309c303c101c101c10fcfc7c101c109c103c501c20fcfc6c102c105c202c204c201c102c10fcfc5c103c502c101c305c401c10fcfc3c101c10ac505c101c101c10fc2c805c303c109c202c101c303c20fc2c102c105c102c202c102c109c104c208c30dc102c107c204c103c107c302c201c102c206c10bc102c10cc302c101c803c101c102c202c105c407c102c104c404c101c103c103c103c104c102c102c102c107c108c102c103c104c102c102c101c101c101c301c304c102c102c302c202c209c102c103c104c101c102c201c202c803c101c201c301c201c103c109c102c103c104c101c102c305c605c807c109c102c303c102c101c103c302c105c106c703c105c107c404c203c101c103c102c102c501c103c101c101c102c101c101c103c305c106c401c201c102c103c101c301c103c101c103c302c202c102c101c102c102c205c303c103c103c102c302c102c103c302c102c103c303c102c103c705c102c101c103c102c201c101c108c303c201c202c101c103c104c304c801c103c101c101c101c101c201c602c101c202c104c301c101c203c202c103c102c703c201c101c101c106c102c101c103c103c401c101c101c104c801c102c301c102c203c101c204c102c102c103c102c202c101c102c102c104c202c102c201c601c103c105c301c203c203c101c104c202c201c10ac202c101c604c104c103c101c201c101c501c104c102c301c10ec201c307c301c101c103c105c603c101c403c10dc102c207c601c301c303c102c101c202c105c101c20ec307c101c201c101c201c102c101c101c101c101c302c501c102c10fc3c105c503c201c102c102c103c301c101c101c103c101c20fc4c102c203c201c401c102c104c201c202c101c301c102c10fc6c204c201c402c101c105c101c401c401c20fc8c106c201c101c201c504c101c101c101c301c101c101c10fc7c105c202c501c503c102c501c402c10fc6c105c201c101c202c504c102c103c201c101c40fc6c104c102c201c201c604c102c101c70fcac103c201c501c803c202c501c101c10fc9c102c201c601c903c201c401c30fcbc201c602cf01c401c10fcdc201c501c901cb02c10fcbc601c201c502ca01c204c10fcac902c201c103c201c903c40fcbc102c701c801c601c403c10fcac103c103c404c301c901c104c10fcac102c104c103c601c902c103c10fccc102c103c103c102c301c901c202c10fcec101c102c103c103cd01c103c30fcac202c102c104c101c401c602c102c105c10fc8c103c104c103c101c401c601c103c105c10fc8c504c103cc01c303c60fcfc204c901c301c30fcfc7c105c704c80fcfc6cb09c60fcfc9c50fcfcfcac40fcfc",
"59,55,fcfcfc3c20fcfcfcbc102c10fcfcfc3c403c101c10fcfc5c20cc103c106c10fcfc2c204c404c204c104c101c10fcfc102c404c103c304c402c10fcfc10ac103c404c201c101c10fcec309c102c103c107c101c10dc805c302c108c102c104c202c104c20cc102c105c102c202c101c108c201c301c501c104c101c209c102c107c204c102c201c501c204c102c101c505c107c102c10cc303c202c102c206c101c102c109c303c102c104c404c102c202c101c301c306c101c102c102c107c103c202c103c104c102c102c201c101c101c706c301c301c101c103c103c201cd01c102c101c101c203c301c306c905c103c101c105c202c202c102c102c101c201c105c403c802c105c101c201ca02c303c102c201c601c205c101c102c103c106c101c201c101c106c102c303c102c202c103c101c204c102c405c502c101c801c102c101c104c101c102c102c105c103c102c301c207c107c303c501c103c101c104c106c301c103c202c201c101c103c108c104c202c101c203c101c101c101c103c401c203c102c202c106c109c404c101c203c301c101c107c101c101c103c104c202c101c101c10bc201c101c101c101c101c102c301c104c103c303c104c201c205c10ac102c101c101c101c202c202c201c503c103c103c201c102c303c10bc202c403c105c203c101c201c103c102c103c602c10cc102c206c101c203c104c301c502c102c101c102c201c10ec208c101c301c402c102c101c501c102c101c201c101c101c20dc108cb02c201c202c101c103c203c102c101c10fc6c201c201c401c102c101c108c601c102c20fc104c602c101c201c101c103c302c101c202c103c102c10fc2c102c104c201c402c101c104c401c102c102c301c20fc3c305c201c402c305c101c101c701c102c10fc2c108c102c101c301c503c101c301c201c301c30fc2c107c201c101c301c504c101c101c70fc7c106c201c201c201c604c101c101c101c101c101c10fc7c106c201c201ca03c102c201c40fc8c105c201c101cd06c101c101c101c10fc7c104c201c601cd01c101c101c30fc9c201c901c601c701c101c101c10fcdc201c501c401ce02c10fcccc01c102c202c501c104c10fcbc501c202c203cd02c40fc9c103cc01c301ca03c10fc8c103c103c405c401c601c204c10fc8c102c104c103c701c901c103c10fcac102c103c103c103c301cb02c10fccc101c102c103c104ce03c30fc8c202c102c104c102c401c602c101c105c10fc6c103c104c103c102c401c601c102c105c10fc6c504c103c101cb01c302c60fcdc204ca01c301c30fcfc4c105c804c80fcfc3cc09c60fcfc7c50fcfcfc8c40fcfc",
}
function draw_sheet(i,_x,_y,_bgcol)
_yo = split(sheets[i])
_w = _yo[1]
_h = _yo[2]
gfx = _yo[3]
index=0
for i=1,#gfx,2 do
count=hex2num(sub(gfx,i,i))
col=hex2num(sub(gfx,i+1,i+1))
if col ~= _bgcol then
local _cap = ceil(index/_w)*_w
if index+count-1 > _cap then
local _x1 = _x+(index%_w)
local _y1 = _y+flr(index/_w)
local _amm = index+count-_cap
rectfill(_x1,_y1,_x1+_amm,_y1,col)
rectfill(_x,_y1+1,_x+count-_amm,_y1+1,col)
else
local _x1 = _x+(index%_w)
local _y1 = _y+flr(index/_w)
rectfill(_x1,_y1,_x1+count-1,_y1,col)
end
end
index += count
--for j=1,count do
-- if(col ~= _bgcol) pset(_x+(index%_w),_y+flr(index/_w),col)
-- index+=1
--end
end
end
-- converts hex string
-- to actual number
function hex2num(str)
return ("0x"..str)+0
end
__gfx__
99999999999900009999999999999999999999999999999900999999999999999999990000999999999999999999999999999000099900099999999999999999
99999999999990900009999999999999999999999999999990009999999999999999909990009009999999999999999999999099900000900999999999999999
99999999900000099990099999999999999999999999000000990999999999999999909999990090999999000999999999999099999900999099999999999999
99999990099999999909909999999999999999999900999900000099999999999999909999999099009990000099999999999099999999999909999999999999
99999909999999909909909999999999999999909909999999999900999999999999900999999999909990900099999999999009999999999909999999009999
99999900099009900099990999999999999999099090999999999090099999999999900999999999990909999099999999999009999000999900999900000999
99909909990909099999990999999999999999090000000009090009909999999990000099000099999009099099999999900000990999099900990099000999
99909009999999999999990999999999999990909999909090090999909999999900999990999909990090990909999999909999909009909090909099990999
99900099999990999999900999999999999990999099999999999999909999999900099909900990900099099090999999900999090990990990009990990999
99909090009000990999990999999999999999000999990999999999909999999990009909099099090999900000999999900099099999099900990099000099
99990000090990009009909009999999999999909009000090999999099999999999000009999909900909099909999999990000099999009090009990909099
99999000090099000909000099999999999999900000099900009009909999999999900009999000099000999909999999999000099999090090099099009099
99999009099099909900009099999999999999000909009990090090009999999999009000999090090090999099999999999900000999099090990099999099
99999099099099999990999000999999999999009099009990999000009999999900090909009099090009090999999999999000099099999909000999990999
99999900999900009009999990999999999999099099999999900009099999999099909009990999909900990999999999990909000000999999000000009999
99999090999990099909999909999999999909909099900009909090990099990999900000000099999900900999999999990000909900000000090990999999
99909099000000000990999909999999999900099000990099009099009099909990900000999900000099090999999999900900009999999090990000999999
99900999900999909990999990999999999990999090000000900999990999909099090990099999090900990999999999099000900999999090990900999999
99909999090090990999099990999999999990099909009909909999909999900900990990009999900099900999999999099990099099999900900900999999
99990999090000090099099900999999999990099009999909909999990999090009000000099999990099990999999990990990999009999900000090999999
99999090909999000099009099999999999999090900000900909999990999090000009900000000000000009999999990999090990000000000090990999999
99999009909999999909990099999999999999900099999000990009909999000999900000000009999099999999999900909000000000009990099909999999
99900000009900099909900900099999999999099099999999099990099999999999999900999999099009999999999090000090000009999999000099999999
90099999099099909900099099900999990000000999009999090099009999999999999999999999999999999999999099000009909999990099099999999999
90099900999009000000000999090999009999909990990999009900990099999999999009999900999900009999999000999999999999999999999999999999
09000099990009900000099909009099009990099909999090000009909099999999990000009990990009090999999999999900099000000009999999999999
00909999009099999909990000909090900909999909909000009990090909999999009909990990009009090009999999990009990999990009999999999999
00900099000009900090000000909090909099990909990000099000009009999990909000099009000000900990999999990099009990900000999999999999
00900000000900999090000000909090909000000009999090900000009009999990909099900009099000000000999999999000999900009099000099909999
00900000000909999090000000909090909000000090099009000000009009999990990900990090000999999990999999990099999999099990999909009999
00900000000090999000000000909090909000000090099900000000009009999999099000000990999000000009999999909999990900999999990000099999
00900000009999099099000000909090909000000009099990000000009009999999900999999009999999999999999999099990090090009999909990999999
09090000999999900099990009099090990900099999909990999000090909999999999000000999999999999999999999099909900990909999990999999999
09909999999999999999990990999090999099999999990009999999909909999999999999999999999999999999999999099909990990909999999099999999
99999999999999999999999999999990999909999999999999999999099909999999999900999000000999999999999990909990990000909999999099999999
09990000000000000000000009999099999999999999000000099999999999999999990099900999900999999999999990900990990000909999990000999999
09990099999999999999999900999099999999990000999990909999999999999999900090099909000009999999999909900090000090009999999999000099
09909900000000000000099099099099999999909999999909990999999999999999900900999000090900099999999990990000990990900999999999900999
09090000000000000000990000909099999999099999099909990999999999999999990099999999999900909999999990990000990000990999999999099999
09090000000099999909000000909099999999000090909099999099999999999999000999990009999909990000999909990909090900909999999990999999
09090000000900000090000000909099999990099909909099999099999999999990999999009900099999099909999909990909900000099999999900999999
00090000000900000090000000900099999990999999909009999099999999999990990000999990099999900009999990999090990909909999999999099999
00090000000900000090000000900099999909999999990099990000009999999990999099909909099999909099999999099909009990090999909999900999
00090000000099999900000000900099999909990999990000009900999999999909099099909909099999909999999999000990900009000099900009000099
00099000999999999999990009900099999900099099990909900909009999999099009099900009099999909999999999000090099999999000009900999999
90009909999999999999999099000999999999090909900990909909999999999909000090000000099999099999999999909000999990999000999999999999
90000000000000000000000000000999000990900990090999900099999999999909900009909909909999900009999999909999999090000099099999999999
99999999000000000009999999999990099090009990999099090999999999999099900009999909909999999909999999990990000000000099999999999999
99999900000000000000999999999900900909909999990990990999999999999099909000900099099999999990999999990090000000990909099999999999
99999000000000000000999999999900909090900999009000999099999999999099909009009090999999999999099999990000009999990009099999999999
99999000000999999990099999999900090009000000000999099099999999990999909009990099099999999000009999909900990990090900999999999999
99999000999999999999909999999990000090000099099099099099999999999099900990999000009999990909099999909909900990090909099999999999
99990009999999999999909999999999000999090999090090999099999999999909999990000999900099999909909999909909099999090099099999999999
99990009999999999999909999999999909909099000000090999909999999999909990909999099999900099990099999909900099909999000999999999999
99990009999999999999909999999999909900009909000999099900999999999900909099909909000999000000009999990900000099909900999999999999
99990009999999999999909999999999990000990090990009900090999999999990999999900900000999099999999999900090099990909909999999999999
99990009999999999999909999999999999900909909990090000090999999999999099900000000909000999999999999909990999999009909999999999999
99990000999990009999009999999999999090909099909009909000999999999999009900000009900009999999999999909990999999000909999999999999
99990000000000900000099999999999990999000900000999900099099999999999900000099909900909999999999999000000009900900909999999999999
99999000009900009900990909999999990999999009090099900090909999999999099009999900909099999999999999909999000090900099999999999999
99999000009099909000900090999999999099090900000009000009909999999990990099909990900909999999999999909990009909900999999999999999
99999900000000000000909099099999999900000009999090999909099999999990999090999990909009999999999999990099090000000999999999999999
99999990009000009000090909099999999999999999999900000000999999999990999900999099990909999999999999999090909000990999999999999999
99990090009999999000090900009999999999999000000000999999999999999990099000000909990099999999999999999009090000090999999999999999
00999000009999999909090090909999999999900999999909099999999999999990000900999990090999999999900999999999999999999999999999999999
00009009909999999909000999009999999999909990999099909999999999999999099909999990990999999999009999900999999999999999999999999999
00000009999999999909909000099999999999099909099099909999999999999999099909999909000999999990990999990099999999999999999999999999
00000009099999999090909900909999999999009909090999990999999999999990900000999009000999999990999000009909999999999999999999999999
00000000009000000090999990009999999990990099090999990999999999999990909990009909009999999999099999999909999999999999999999999999
00000000009000000090009000009999999909999999090099990999999999999999000900909000009999999990909999999909999999999999990000999999
00000000999000000000000999099999999099909999900999990000099999999999990990900000009999999909090999999099999999999999990000999999
90000000909000000000900999999999999099909999990000909909999999999999990909090900009999999099099000000999999999999999999990999999
99000000009099990009099999999999000900990099909099090900099999999999999000900900099999999099900909909099999999999999999009999999
99900000990009900000009999999990099090909099009900900099999999999009999999999999999999990009090009900099999999999999990900990099
99990099900009900000009999999909909909009900909999000999999999990099999999999999999999990909090000000099999999999999909090000099
99999999000000000009999999999900900000099909990990099999999999909909990000999999999999999090999000900999999999999999090099000999
99999990000000000000099999999909090900099999909909909999999999909990009999099999999999999099990999990999999999999999000999099999
99999990000000000000099999999990090090009990090099909999999999090999999999099999999999999909090000000999999999999999900000999999
99999900000000000000009999999999000909900000009909990999999990909999999999099999999999999990999099099099999999999999990909999999
99999000009999999999009999999999099909099990990900000999999990990999999990999999999999999999099909909099999999999999990909999999
99999000999999999999900999999999099999090990900909909999999990999000000009999999999999999990990099990099999999999999990000999999
99999000999999999999990999999999090990099099009009909999999900090909099909999999999999999000099900009909999999999999900900099999
99999000999999999999990999999999909099900000009909990999999909099000090909999999999999990000909999990990999999999999999999999999
99999000999999999999990999999999900090099000099990000999999909000900000000999999999999900000900990000009099999999999999999999999
99999000999999999999990999999999999000999900000909900999999990909990000009999999999999000000990090000090999999999999990099999999
99999000099999000999909999999999999990099909000999990999999999090909999099999999999990009000009000000900099999999999999900999999
99999000000000990000009999999999999009909099990900009999999999009000000099999999999990099900099099000099009999999999990000999999
99999900099900009900099900099999990990990999099990090099999999909099900999999999999990999090090099900990000099999999999990999999
99999990009099909900099090909999990999009090009900009909999999900990909009999999999999090009909909900000000009999999999009900999
99999999000000000000990099090999909090000000099900009009999999099909999909999999999999900909090909000000000909999999909900900999
99999009000000000900990900000999909909900999009000000909999900009990000000999999999999990900009900999900009909999999099090009999
99999900009000099900090909090999990000009999099099909099990000990999999099099999999999990000099000999009999099999999000099000999
90000900909999999900090000090099999999999999900000000999900009999099900009909999999999999900099009000000000999999999009999999999
90000000999999999990900099900099999999999999999999999999000009009990000000009999999999999909009090999009999999999999990009999999
90000000009999999990900000000099999999000009990009999999000000000909990090909999999999999909990099999909999999999999990009999999
90000000000999990099990000000099999999009009990009999999099000000009990099000999999999999990900909909909999999999999990909999999
90000000990900000099909000999999999999009099990009999999099990000990999009900099999999999990099009900099999999999999990909999999
90000000099000000009999090009999999990009099990909999999909900009999090000000000999999999990990000099099999999999999990000999999
99000000009000000000909900009999999990099099990909999999909090000999090000000090999999999909909999999099999999999999900900099999
99000000000900900000990990099999999990990999990909999999990009009900990990000090999999999999999999999999999999999999999999999999
99900000009909990099909099999999999990000999900090999999999090909900009009999909999999999999999999999999999999999999999999999999
999900009900099900090099999999999999009009990000009999999999000090000099009990999999999999999999999ffff000000000000000000000ffff
999999999999999999999999999999999999009009990090009999999999099009099909990009999999999999999999999ff0009999999999999999999900ff
99999000000009990000000999999999999009090999909000099999999990999009900099999999999999999999999999900999999999999999999999999900
99999000000009900000000999999999999009090999909900009999999999099990990009999999999999999999999999909999000000000000000000099990
99999000000009900000000999999999990000999999999999999999999990999000000009999999999999999999999999909900000000000000000000000990
99999000000009900000000999999999990009999999999999999999999990990009999909999999999999999999999999909900999999999999999999000990
99999990000099900000099099999999900099999999999999999999999990909999999909999999999999999999999999909009999999999999999999900990
99900009000009900000000009999999999999999999999999999999999999999999999999999999999999999999999999909009999999999999999999900990
99000000000009990000000009999999999999999999999999999999999999999999999999999999999999999999999999909009999999999999999999900990
99000000000999999000000099999999999999999999999999999999999999999999999999999999999999999999999999909009999999999999999999900990
99000000099999999999009999999999999999900999999090999999999999999999999999999999999999999999999999909009999999999999999999900990
99999999999999999999999999999999999999009999900990999999999999999999999999999999999999999999999999909009999999999999999999900990
00000009999990000009999999999999999999099999000990999999999999999999999999999999999999999999999999909009999999999999999999900990
00099990000990009990009999999999999999009000999990999999999999999999999999999999999999999999999999909009999999999999999999900990
00099000099090009900090099999999999990009009099090999999999999999999999999000000999999999999999999909009999999999999999999900990
00090900009900009090009909999999999990000990990090999999999999999999999990909999999999999999999999909009999999999999999999909990
00090990000900009099000909999999999990900900900909999999999900099999999909009900099000900999999999909009999999999999999999009990
00090099000900009009000909999999999909009090909909999999000990990009999900000000000099009000999999909009999999999999999999009990
00099000009900099000009909999999999900999009990909999990900099999900999990999999999900990999000099909009999999999999999999009990
00099900099900099990099909999999999099090909990009999900999090999000999990000000000000999000000999909900999999999999999999009990
0009000099990009900099990999999999909900000900009999990090090999009999999099999999900009999999999990990099999999999999999909990f
0090000009990009000009990999999999090099909909909999999900900000999999900999999999090090000000099990999009999999999999999009990f
009090000099000909000099099999999090009090999090999999900009009999999900000990000090000909990009999f099900000000000000000099990f
009099900090900909900090999999990990990909099900999999990900999999999999990990999090990900009999999f099999999999999999999900000f
009000000090900900000090999999909999909999009999099999999999999999999999909999099909999099999999999ff00009000009999999999909090f
0000000009909000000009909999990999900999999900099099999999999999999999999900000999999999999999999990f0909009090909090090090000ff
000000000009900000000009999990000009999999999990000999999999999999999999999999999999999999999999999f0f00000000000000000000000fff
__label__
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000110000000000000000000000000110000000111000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000111111000000000000001100011010110000011000110000000000000000000000000000000000000000
00000000000000000000000000000000000000000011000000110000000011110010011011111001110880001110000000000000000000000000000000000000
00000000000000000000000000000000000000011100888080011111000100010801001111111111000088880001000000000000000000000000000000000000
00000000000000000000000000000000000000100028880020000001111108800801110000000000888028888880110000000000000000000000000000000000
00000000000000000000000000000000000001028888808080800000000008800280102882000220888000088888010000000000000000000000000000000000
00000000000000000000000000000000000010288888880020008820280008800080008880002882028088088888010000000000000000000000000000000000
00000000000000000000000000000000001110288888888080028880888202808808008880008888208088088888010000000000000000000000000000000000
00000000000000000000000000000000001110888000820000088080800880888808008820820888808088088000110000000000000000000000000000000000
00000000000000000000000000000000000110888880000000082080800080882028208802880808808888088011100000000000000000000000000000000000
00000000000000000000000000000000001110888880280880280080820880880888808800820808808888088201000000000000000000000000000000000000
00000000000000000000000000000000011100888008880880880880888880880288888802000800008888088801100000000000000000000000000000000000
00000000000000000000000000000000001102888028080880888820888880880088888808088802208088088800111110000000000000000000000000000000
00000000000000000000000000000000011108888088008800888202880820282088088808028800202028088880000001000000000000000000000000000000
00000000000000000000000000000000010028888088008200000000800000022028008208002222200022028820067601000000000000000000000000000000
00000000000000000000000000000000102888888082000067777600000000000000000008202200000000002800777601000000000000000000000000000000
00000000000000000000000000000000108888888000677777777700067760067600067600000007700067600000677011000000000000000000000000000000
00000000000000000000000000000000108888200067777777777706777770077760007770000067760677700000066010000000000000000000000000000000
00000000000000000000000000000000108820067777777777777707777770077777007760006707700777600676000010000000000000000000000000000000
00000000000000000000000000000000102200677777777777777707777770077776007700067706606777000777760010000000000000000000000000000000
00000000000000000000000000000000100067777777777777777706777776067770067600077770007777006777777010000000000000000000000000000000
00000000000000000000000000000000106777777777777777777700777777007770077000677760607777007777776010000000000000000000000000000000
00000000000000000000000000000001067777777777777777777600677777007770677006777606707777607777760010000000000000000000000000000000
00000000000000000000000000000001077777777777600067776000000777007770777067760007707777707777600010000000000000000000000000000000
00000000000000000000000000000001077777777600000000000677760677606770777777700007706777777777000110000000000000000000000000000000
00000000000000000000000000000001066007777000660000067777776077700770777777776007760777777777001100000000000000000000000000000000
00000000000000000000000000000001000007777777776000077777777077760770777777777607770777777777011100000000000000000000000000000000
00000000000000000000000000000001000007777777777000077777777077777770777777777706770670777777011000000000000000000000000000000000
00000000000000000000000000000001100007777777777060077777777070677770677760077760776060677777601101100000000000000000000000000000
00000000000000000000000000000000111107777777776070077777776070077770077700077770777000077777701111100000000000000000000000000000
00000000000000000000000000000000011107777776000670077777700676067776067700077770677600067777760111000000000000000000000000000000
00000000000000000000000000000000001107777700067770077777707777007777000600077776077700007777776011100000000000000000000000000000
00000000000000000000000000000000111007777700077777777777707777006777600000077777077760007777777601110000000000000000000000000000
00000000000000000000000000000011100067777776077777777777707777000777760000077776067776006777777760110000000000000000000000000000
00000000000000000000000000000111067777777777077777777777606777600677777770077760007777000677777776010000000000000000000000000000
00000000000000000000000000000010677777777776077777777777000067700077777760077600006776000070677766010000000000000000000000000000
00000000000000000000000000000110777760007700067777777776000000600067776000066000000700000060000000010000000000000000000000000000
00000000000000000000000000000110600000006700007777777700010006600006600000000001000660000000000000110000000000000000000000000000
00000000000000000000000000000010000000000600007000000700011106600000000000000011100660011000000000100000000000000000000000000000
00000000000000000000000000000111000000000000006600000600011100000000000001000110111000111111000001100000000000000000000000000000
00000000000000000000000000000011000011111111106600000001111011111000000111111101111111100000111110000000000000000000000000000000
00000000000000000000000000000001111111000000110000011111000000001100011111111001100110000000000000000000000000000000000000000000
00000000000000000000000000000001111000000000001111100000000000000011100110000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000002222000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000242222000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000002222224444420000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000024444444444f442000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000244444444f44f444000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000004ff44ff44fff4444200000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000002004444f4f4f4444444200000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000002022444444444444444200000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000004424444444444444442200000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000024242224442ff244ff4200000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000022222f24f220f227f2422000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000002222f00ff402f2722220000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000002242ff0f774742222400000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000002442f747777744244420200000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000042f7772082722444444200000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000040f7777887742444442000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000020444002222222f7244442000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000022444448eeeee477f44444200000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000244444f088288247744444200000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000024444f000008227744442200000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000444f2f7774400f724420000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000247727777777f077f220000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000111f742f7222f770f72272110000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000011555552f727772ff4666655551100000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000105562277727ff2211111066505100000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000015012277772277f2111116660601510000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000001562eee82282f770001666111065510000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000056022ee20202f72556111111065500000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000056111221110227f820111111161500000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000005561111111102877e20111111161550000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000055601111111102e7e21111111061550000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000111000556011111100002ee20011111061550001111000000000000000000000000000000000000000000
00000000000000000000000000000000000000011115556005556011100000002220000110615550065555111100000000000000000000000000000000000000
00000000000000000000000000000000000000155000556115555666000000000000000066155551165500005510000000000000000000000000000000000000
00000000000000000000000000000000000001560115056115555511666666666666666615555551165051110651000000000000000000000000000000000000
00000000000000000000000000000000000001501115056115555556600000001100000665555551165055111051000000000000000000000000000000000000
00000000000000000000000000000000000001501161056115555660111111111111116606655551165016611051000000000000000000000000000000000000
00000000000000000000000000000000000001561110556115556001111111111111166110065551165500111651000000000000000000000000000000000000
00000000000000000000000000000000000001556005556115556011111110000001611111065551165550006551000000000000000000000000000000000000
00000000000000000000000000000000000001555500056110556111111105555550111111165501165000055551000000000000000000000000000000000000
00000000000000000000000000000000000001556011105110116111111105555550111111161101150111106551000000000000000000000000000000000000
00000000000000000000000000000000000001550111505110116011111105555550111111061101150511110551000000000000000000000000000000000000
00000000000000000000000000000000000000150116505000116011111110000001111111061100050566110510000000000000000000000000000000000000
00000000000000000000000000000000000000150110005000115601100000000000000110651100050001110510000000000000000000000000000000000000
00000000000000000000000000000000000000156111011000011566000000000000000066511000011011116510000000000000000000000000000000000000
00000000000000000000000000000000000000011000110000011155666000000000066655111000001100001100000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
__sfx__
b7100020002750020500275002050a27500275002050027500205002750a275002750c275002750a27500275002750020500275002050a27500275002050027500205002750a275002750c275002750a27500275
b710002018a7518a0018a7518a0018a7518a000ca7021a7522a0021a7518a0015a7021a5021a4515a7020a7518a0020a7518a0015a7020a5020a4515a7020a7518a0020a7518a0015a701ba601ba751ba601ba75
010100000027000270002700027000270002700027000270002700027000270002700027000270002700027000270002700027000270002700027000270002700027000270002700027000270002700027000270
000100002d0503205028050230501e050190501805017050170000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
b7100020002750020500275002050a27500275002050027500205002750a275002750c275002750a27500275002750020000200002000a20000200002000020000200002000a200002000c200002000a20000200
01080000290502d05030050290402d04030040290302d03030030290202d02030020290102d010300102901000000000000000000000000000000000000000000000000000000000000000000000000000000000
001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
011000000c073000030c600000000c673000030c073000030c600000000c073000030c6730000311673000030c073000030c600000000c673000030c073000030c600000000c073000030c673000031167300003
0110000000623000000c623000001862300000006230000300623000000c623000001862300000006230000000623000000c623000001862300000006230000300623000000c6230000018623000000062300000
011000000c073000030c600000000d673000030c073000030c600000000c073000030c673000000c073116730c073000030c600000000c673000030c073000030c600000000c073000030c673000030c07311673
011000202463024620246202460020600206002060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
011000000c073000030c600000000c673000030c073000030c600000000c073000030c6730000311673000030c073000030c000000000c673000030c000000030c073000000c000000030c673000030c00000003
0110000000623006000c623006001862300600006230060000623006000c623006001862300600006230060000623006230c623006231862300623006230062300623006230c6230062318623006230062300623
d11000001674016740167401674016740167401674016740167301673016730167301673016730167301673016720167201672016720167201672016720167201671016710167101671016710167101671016710
d11000001674016740167401674016740167401674016740167301673016730167301672016720167201671022700227002270022700227002270022700227002270022700227002270022700227002270022700
d11000001f7201f7201f7101f7101f7001f7001c7201c7201c7201c7101c7101c7101c7001c7001b7201b7201b7201b7201b7201b7201b7201b7201b7101b7101b7101b7101b7101b7101b7101b7101b7001b700
__music__
01 08004909
00 08004909
00 08004909
00 0c044d0d
00 0a010950
00 0a010950
00 0a010950
02 0a010950
01 08004909
00 08004909
00 08004909
00 0c044d0d
00 0a010950
00 0a010950
00 0a010950
02 0a010950