-
Notifications
You must be signed in to change notification settings - Fork 0
/
st basil.asm
700 lines (627 loc) · 67.1 KB
/
st basil.asm
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
; ST BASIL GRAPHIC
; Scrolling graphic of the St Basil Cathedral for the attract sequence.
; When game initialised, stb.compile makes a set of quick-print routines to print each line with the stack.
; They also clear only the data from the previous line that's not already going to be changed.
; Then a short print manager (stb.pringHL) is copied beneath one screen (it's a one-screen only effect) to call all the routines in order.
; This data stays resident in BuildPage for use at any point.
stb.depth: equ 224 ; St Basil graphic depth in pixels
stb.width: equ 96 ; width in bytes
stb.printHLA.src:
;++++++++++++++++++++++++++++++++++++++++++++++
org 24576+4096
stb.printHLA:
; Print a frame of St B from graphic line HL. Frame 0<=A<=2, for each 64 pixel height block
push hl
@save_stack: ; Save stack, but don't set up anywhere (not used conventionally here)
ld (@+rest_sp+1),sp
@page_in_stb: ; St Basil paged into high memory
ex af,af'
in a,(HMPR)
ld (@+rest_hi+1),a
ld a,BuildPage
out (HMPR),a
ex af,af'
@find_jump_table_start: ; Find start jump table entry
ld c,a
xor a
srl c
jp nc,@+skip
add 62
@skip:
srl c
jp nc,@+skip
add 128
@skip:
ld c,a
ld b,0
add hl,bc
add hl,hl
ld bc,stb.jump_table
add hl,bc
ld (@+line+1),hl
@prep_stack_start:
srl a ; Find top of screen block to print
add 18
ld h,a
ld l,238 ; Initialise to top of screen, centred, right hand side of graphic
ld (@+start_pos+1),hl
ld iy,@+ret_addr
ld a,62
ld (@+line_count),a
@loop:
@find_jump_addr: ; Get address from jump table and update to new jump table pos
@line: ld sp,0
pop de
ld (@-line+1),sp
@start_pos: ld sp,0 ; Prep stack and update immediately
ld hl,128
add hl,sp
ld (@-start_pos+1),hl
ex de,hl ; Routine address moved to HL
ld de,0 ; DE used as blanker in the routines
jp (hl) ; jump into routine, which returns to IY (@ret_addr)
@ret_addr:
ld hl,@+line_count
dec (hl)
jp nz,@-loop
@rest_hi: ld a,0
out (HMPR),a
@rest_sp: ld sp,0
pop hl
ret
@line_count: db 0
stb.reprint_start:
; Reprint graphic that's been obscured with the press start message, line HL.
; For use when scroll has stopped moving, and logo is being reprinted.
push hl
@save_stack:
ld (@+rest_sp+1),sp
@page_in_stb:
ex af,af'
in a,(HMPR)
ld (@+rest_hi+1),a
ld a,BuildPage
out (HMPR),a
ex af,af'
@prep_start_pos:
ld hl,(117*2)+stb.jump_table
ld (@+line+1),hl
@find_jump_table_start: ; Find start jump table entry
ld hl,&4d6e ; Magic number: top-right of
ld (@+start_pos+1),hl
ld iy,@+ret_addr
ld a,11 ; Print x lines, (the x blank lines at the bottom is different
ld (@-line_count),a
@loop:
@find_jump_addr: ; Get address from jump table and update to new jump table pos
@line: ld sp,0
pop de
ld (@-line+1),sp
@start_pos: ld sp,0 ; Prep stack and update immediately
ld hl,128
add hl,sp
ld (@-start_pos+1),hl
ex de,hl ; Routine address moved to HL
ld de,0 ; DE used as blanker in the routines
jp (hl) ; jump into routine, which returns to IY (@ret_addr)
@ret_addr:
ld hl,@-line_count
dec (hl)
jp nz,@-loop
@clear_left: ; Clear the leading E from message manually
ld hl,&509b
ld de,128-6
ld bc,&0400
@loop:
ld (hl),c
inc l
ld (hl),c
inc l
ld (hl),c
inc l
ld (hl),c
inc l
ld (hl),c
inc l
ld (hl),c
inc l
ld (hl),c
add hl,de
djnz @-loop
@print_blank: ; Print 7 lines of blank under bottom seam of scroll image
ld b,7
ld hl,&52e4
ld (@+start_pos2+1),hl
ld de,0
ld iy,@+ret2
@loop2:
@start_pos2: ld sp,0
ld hl,128
add hl,sp
ld (@-start_pos2+1),hl
jp stb.blank
@ret2:
djnz @-loop2
@rest_hi: ld a,0
out (HMPR),a
@rest_sp: ld sp,0
pop hl
ret
;----------------------------------------------
stb.blank: ; Blank prints a full line of nothing, clear up any garbage
ld de,0
for 48,push de
@null: ; Null returns back without doing anything
jp (iy)
;----------------------------------------------
ds align 256
stb.jump_table:
dw stb.blank
stb.jump_table_real:
ds stb.depth*2
dw stb.blank
for 191,dw stb.blank
stb.print.end:
stb.print.len: equ stb.print.end-stb.printHLA
org stb.printHLA.src+stb.print.len
;++++++++++++++++++++++++++++++++++++++++++++++
;----------------------------------------------
stb.compile:
; Compile the line routines to print-update St Basil on a single page
@paging:
in a,(LMPR) ; store LMPR
ld (@+rest_lo+1),a
ld a,StBasilPage+32 ; Put St B page in LMPR
out (LMPR),a
call stb.compile2 ; Make routines
@rest_lo: ld a,0 ; restore LMPR
out (LMPR),a
@print_stb_move: ; Move the actual print manager beneath current screen
call @+move
call house.swap_screens
call @+move
ret
@move:
@move_print_manager:
ld hl,stb.printHLA.src
ld de,stb.printHLA
ld bc,stb.print.len
ldir
@move_jump_table: ; Move the jump table too
ld hl,stb.buffer
ld de,stb.jump_table_real
ld bc,stb.depth*2
ldir
ret
stb.buffer:
ds stb.depth*2
stb.src:
;++++++++++++++++++++++++++++++++++++++++++++++
org 0
dump StBasilPage,0
;----------------------------------------------
stb.compile2:
; Page in graphics to bottom page before creating the routines.
@paging:
in a,(HMPR) ; Store high page
ld (@+rest_hi+1),a
ld a,BuildPage ; B is current working screen
out (HMPR),a
ld (@+rest_sp+1),sp
ld sp,stb.stack
@setup:
ld ix,stb.compile.jump_table ; IX-> jump table for each routine
ld hl,32768 ; HL-> compile area
ld de,stb.data+stb.width-1 ; DE-> top line of graphic to compile
ld iy,stb.data+(stb.width*3)-1 ; IY-> second line of graphic to compile
ld bc,stb.depth ; BC = line counter
CompRoutineLoop:
call @pal_up
push bc
push iy
push de
@store_jump_address: ; Store new routine's jump address
ld (ix),l
inc ix
ld (ix),h
inc ix
@reset_blank_tally: ; A'=tally of blank space to ignore
xor a
ex af,af'
@rest_curr_bc:
ld bc,&ffff
ld (@+curr_bc),bc
ld b,stb.width/2 ; Width in 4 pixel blocks
MakeLinesLoop:
push bc
@get_data: ; Get next data to print
ld a,(de)
ld c,a
dec de
ld a,(de)
dec de
@test_space: ; Test for blank space.
push af
or c
or a
jp nz,SkipStore0PrepIY
@test_space_below: ; If blank and space below is blank, nothing to clear, can leave without clearing
ld a,(iy)
dec iy
or (iy)
dec iy
or a
jp nz,SkipStore0 ; If not blank, compile clearing up code to mop up the trail left
@compile_ignore: ; Compile push de for short spans (less than 12 pixels) as this is always 0
ex af,af' ; Update tally of blank space
inc a
ex af,af'
pop af
jp SkipStoreVal
SkipStore0PrepIY: ; update next line counter
dec iy
dec iy
SkipStore0:
pop af
ex af,af'
call @print_blankA
ex af,af'
call @store_new_data ; push actual data onto screen
SkipStoreVal:
pop bc
djnz MakeLinesLoop ; Loop for all 4-pixel blocks on line
@compile_jump_out: ; Finish routine with jp (iy)
ld (hl),&fd
inc hl
ld (hl),&e9
inc hl
@next_line: ; Move to next line
ld bc,stb.width
pop de
ex de,hl
add hl,bc
ex de,hl
pop iy
add iy,bc
pop bc ; Compile next line
dec bc
ld a,b
or c
or a
jp nz,CompRoutineLoop
@rest_hi: ld a,0
out (HMPR),a
@rest_sp: ld sp,0
@copy_jump_table: ; Move jump table into print manager
ld hl,stb.compile.jump_table
ld de,stb.buffer
ld bc,stb.depth*2
ldir
ret
ds align 256
stb.compile.jump_table:
ds stb.depth*2
ds 32
stb.stack:
;----------------------------------------------
@pal_up:
; Copy of the decompressing palette changer for this page
push af
push bc
stb.pal: ld a,0
inc a
and %01111111
ld (stb.pal+1),a
ld bc,PaletteBaseReg
out (c),a
pop bc
pop af
ret
;----------------------------------------------
@store_new_data:
; Otherwise, just store the actual data
; compile LD BC,nn; PUSH BC
@test_bc: ; If same value, don't reload it
push af
push hl
ld hl,@+curr_bc
cp (hl)
jp nz,@+skip
ld a,c
inc hl
cp (hl)
jp z,@+no_reload
@skip:
pop hl
pop af
ld (hl),ld_bc.nn
inc hl
ld (hl),a
inc hl
ld (hl),c
inc hl
ld (hl),push_bc
inc hl
@store_bc:
ld (@+curr_bc),a
ld a,c
ld (@+curr_bc+1),a
ret
@no_reload:
pop hl
pop af
ld (hl),push_bc
inc hl
ret
@curr_bc: dw 0
;----------------------------------------------
@print_blankA:
; Compile update to find next print place. A' as amount of 4-pixel blocks to skip
@test_width:
or a ; If no skips, quit immediately
ret z
cp 3 ; ElseIf 3 or more, use ADD HL,SP to move SP register
jp nc,@+compile_update_sp
@print_blank_loop: ; Else compile PUSH DE (which is set to 0) for one or two pushes.
ld (hl),push_de
inc hl
dec a
ret z
ld (hl),push_de
inc hl
dec a
ret
@compile_update_sp: ; Larger gap than 12 pixels, update SP directly instead of pushing 0s.
@find_add_value: ; compile LD HL,nn; ADD HL,SP; LD SP,HL
exx
add a
ld e,a
ld d,0
ld hl,0
sbc hl,de
ld a,l
ld (@stack1+1),a
ld a,h
ld (@stack2+1),a
exx
ld (hl),ld_hl.nn
inc hl
@stack1: ld (hl),0
inc hl
@stack2: ld (hl),0
inc hl
ld (hl),add_hl.sp
inc hl
ld (hl),ld_sp.hl
inc hl
xor a ; Clear tally as now compiled
ret
;----------------------------------------------
stb.data:
for 96*2,db 0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,140,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,204,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,204,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,94,203,234,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,203,189,204,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,133,204,204,195,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,138,130,223,238,236,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,218,53,58,35,238,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,169,138,136,136,141,227,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,138,170,154,136,131,202,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,168,184,185,187,141,227,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,232,155,185,189,141,226,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,62,102,93,136,188,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,3,38,171,179,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,7,221,165,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,112,68,42,214,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,36,66,82,213,68,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,66,98,212,116,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,64,48,96,96,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,37,64,54,227,98,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,4,45,104,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,98,170,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,48,163,46,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,6,98,238,58,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,80,223,160,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,36,87,62,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,80,54,100,177,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,141,0,162,87,50,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,216,4,115,215,162,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,213,64,209,68,99,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,83,35,99,211,163,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,165,86,98,55,53,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,50,45,4,109,61,66,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,165,83,93,4,54,99,162,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,170,82,102,4,170,61,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,211,86,163,0,170,99,164,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,83,34,208,68,52,163,74,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,82,114,210,5,214,163,170,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,213,162,22,117,69,45,218,68,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,138,54,77,83,69,115,102,86,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,24,170,50,29,39,84,77,237,77,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,24,163,70,93,86,68,118,166,100,170,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0,0,29,52,50,115,87,84,70,214,101,173,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,0,21,162,67,208,68,84,74,54,212,163,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,1,170,98,65,210,103,68,118,109,102,170,168,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,1,213,67,69,210,100,64,102,227,218,53,216,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,1,162,53,87,51,68,68,70,102,115,35,88,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,26,86,52,29,51,70,69,122,109,52,90,162,138,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,168,16,0,0,0,26,37,7,45,84,70,64,125,99,90,213,165,88,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,239,80,0,0,1,88,5,48,61,82,70,84,71,82,122,254,136,42,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,136,168,16,0,0,1,136,69,3,118,4,100,5,106,45,229,95,213,85,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,168,128,0,0,1,4,160,97,100,68,86,20,102,45,222,77,232,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,225,16,0,0,1,163,85,0,0,165,37,36,5,109,62,130,221,216,129,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,17,163,53,0,0,74,51,34,100,62,170,237,141,42,136,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,16,69,85,0,7,68,68,0,5,101,173,238,94,227,138,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,1,26,100,85,4,68,69,2,71,119,125,58,174,221,237,221,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,217,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,1,163,99,221,215,68,106,55,118,64,42,237,216,102,102,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,202,0,0,24,85,2,40,18,70,214,102,96,1,51,63,237,173,221,221,173,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,189,93,1,52,64,0,168,168,56,83,49,2,34,94,173,222,211,50,88,136,129,0,0,0,0,0,0,0,0,0,0,0,0,0,170,152,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,220,94,138,58,64,0,168,138,167,82,0,2,2,62,234,222,173,221,237,168,16,0,0,0,0,0,0,0,0,0,0,0,0,9,174,216,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,61,211,173,85,82,5,2,138,168,74,162,0,32,34,94,221,221,218,237,220,216,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,168,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,195,221,222,85,53,33,1,168,138,170,98,0,0,34,93,221,222,34,42,237,138,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,216,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,246,247,127,162,85,5,0,168,136,84,160,35,34,34,92,218,221,222,35,222,88,16,0,0,0,0,0,0,0,0,0,0,0,0,0,10,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,63,214,247,221,243,36,2,1,136,136,221,82,33,87,34,46,220,165,175,90,218,138,16,0,0,0,0,0,0,0,0,0,0,0,0,0,10,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,14,50,255,119,253,247,255,81,32,17,138,78,221,81,1,127,98,93,222,232,223,69,234,222,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,161,0,0,0,0,0,0,0,0,0,0,0,168,173,247,215,255,119,255,230,35,209,170,93,223,66,81,125,210,94,222,173,223,85,238,168,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,216,16,0,0,0,0,0,0,0,0,0,173,173,111,247,127,255,221,15,253,117,241,165,223,65,16,5,4,209,46,222,234,173,69,238,218,17,0,0,0,0,0,0,0,0,0,0,0,0,0,8,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,136,16,0,0,0,0,0,0,0,0,11,213,214,255,109,125,255,125,125,255,212,1,163,49,0,0,80,4,65,61,216,61,221,165,62,173,129,0,0,0,0,0,0,0,0,0,0,0,0,0,136,216,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,222,13,215,255,125,127,255,125,208,255,126,101,58,37,162,16,16,0,2,46,141,214,102,222,168,173,129,0,0,0,0,0,0,0,0,0,0,0,0,10,56,170,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,11,211,109,15,247,127,127,255,125,215,223,247,221,58,35,83,222,211,16,19,141,170,164,51,58,234,94,138,16,0,0,0,0,0,0,0,0,0,0,0,8,58,138,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,218,211,215,223,246,221,127,255,215,215,127,253,215,243,101,79,52,255,209,85,77,216,170,163,42,173,131,218,16,0,0,0,0,0,0,0,0,0,0,0,168,141,133,168,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,13,186,103,208,255,215,125,15,255,215,127,127,255,119,215,83,215,32,221,246,34,173,216,222,141,162,170,232,218,16,0,0,0,0,0,0,0,0,0,0,0,138,138,162,138,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,13,15,77,125,255,119,125,127,255,247,125,127,255,223,79,100,246,0,61,255,26,234,221,254,174,244,168,218,141,16,0,0,0,0,0,0,0,0,0,0,10,133,210,170,42,61,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,227,127,125,15,223,13,125,127,223,240,215,125,255,247,127,215,18,1,17,61,173,221,174,218,170,221,136,173,90,16,0,0,0,0,0,0,0,0,0,0,168,162,216,138,98,136,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,16,0,0,0,0,0,13,173,215,119,127,255,7,125,125,223,247,125,119,223,247,215,222,17,2,5,0,237,173,217,51,50,61,61,142,136,161,0,0,0,0,0,0,0,0,0,13,168,162,141,32,185,37,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,58,16,0,0,0,0,0,12,116,240,125,127,221,7,119,125,221,240,125,119,223,247,221,247,98,82,0,0,13,237,171,82,1,37,216,222,216,161,1,0,0,0,0,0,0,0,0,184,133,216,138,112,139,210,82,224,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,48,193,0,0,0,0,0,189,119,244,215,125,215,119,119,125,125,215,119,119,221,247,119,247,125,215,34,0,5,173,216,127,254,114,52,142,173,177,27,16,0,0,0,0,0,0,0,226,85,138,35,153,20,171,130,94,0,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,51,200,0,0,0,0,0,186,119,240,208,247,215,7,119,119,119,112,119,119,221,215,215,247,215,78,66,0,4,218,218,255,221,221,42,170,218,209,156,145,0,0,0,0,0,0,11,38,66,170,82,153,68,138,163,37,176,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,224,211,220,16,0,0,0,0,218,119,244,119,215,215,112,119,119,215,215,119,125,119,215,119,247,240,7,227,2,46,222,221,237,77,253,66,168,205,161,173,177,0,0,0,0,0,0,210,68,2,136,165,45,136,22,170,152,142,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,163,211,188,176,0,0,0,0,186,119,208,119,215,119,7,7,119,119,112,119,119,215,119,119,247,215,2,19,170,174,216,232,221,125,221,98,216,173,177,188,161,0,0,0,0,0,11,34,4,85,40,138,34,173,80,137,154,170,176,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,171,61,99,187,173,0,0,0,0,211,119,215,112,119,119,0,119,7,119,112,119,119,125,119,15,112,215,0,32,23,131,234,218,220,221,221,210,136,141,209,142,161,0,0,0,0,0,218,21,38,69,36,138,65,170,136,22,152,169,142,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,181,221,51,140,60,144,0,0,0,186,112,119,119,13,119,7,7,7,119,112,112,119,119,119,7,7,208,1,17,81,216,175,174,170,131,67,173,221,154,218,141,161,0,0,0,0,0,162,33,4,82,34,136,114,85,138,45,136,138,138,176,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,138,61,227,99,188,54,177,0,0,0,187,119,119,7,7,119,0,71,0,0,0,112,71,119,71,0,7,215,255,227,16,26,141,187,168,88,136,51,170,221,141,136,161,0,0,0,0,13,50,0,34,83,0,35,170,42,74,162,83,138,168,208,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,131,221,102,96,202,51,219,0,0,0,12,119,7,7,64,4,7,4,0,0,4,0,0,4,112,7,7,112,71,255,48,18,233,187,221,221,200,38,141,219,171,190,138,16,0,0,0,14,32,0,34,58,0,82,136,85,42,168,90,88,168,187,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,131,142,218,58,58,203,99,219,176,0,0,13,211,112,0,112,0,37,68,0,85,53,1,1,68,4,64,119,1,16,127,240,19,214,253,218,100,255,99,163,221,189,140,138,16,0,0,0,11,82,0,0,34,66,98,80,210,35,138,36,83,136,219,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,173,237,131,163,94,200,96,188,185,0,0,0,227,112,65,68,5,84,52,71,95,221,215,50,0,0,112,119,17,1,71,246,29,237,238,227,18,31,210,136,139,172,142,141,16,0,0,0,13,130,0,0,37,164,32,84,85,37,88,66,5,72,187,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,138,189,118,54,130,203,211,99,171,221,160,0,0,187,7,16,116,119,71,119,116,79,222,173,173,237,166,64,119,17,17,22,222,34,86,216,197,34,13,244,93,174,218,173,173,16,0,0,0,12,37,0,0,2,50,0,37,38,82,84,64,34,56,186,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,186,182,102,102,42,203,211,96,216,88,59,0,0,12,112,0,71,119,77,3,64,111,222,175,206,218,173,215,112,115,102,221,109,238,253,238,238,238,214,231,42,173,220,232,138,16,0,0,0,200,37,5,2,82,34,32,82,36,69,82,80,80,40,171,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,90,187,99,54,97,188,188,54,115,220,6,234,176,0,0,194,119,112,212,7,87,100,45,238,221,168,223,223,173,55,221,231,215,118,0,13,223,237,237,239,238,236,173,184,51,88,16,0,0,0,195,32,32,32,0,0,1,2,2,34,37,81,0,136,187,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,168,168,138,102,7,203,203,54,96,189,54,42,176,0,0,234,71,119,4,68,80,34,45,234,221,221,221,218,109,80,50,5,0,17,1,97,173,221,254,237,237,222,238,234,42,136,161,0,0,0,189,34,37,2,0,0,0,84,68,35,34,0,80,40,208,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,42,58,51,163,162,139,221,211,163,99,203,163,49,219,0,0,11,100,116,64,34,2,80,45,237,237,222,173,170,211,33,0,35,35,51,170,21,221,162,136,216,221,238,237,245,165,168,173,0,0,0,12,34,80,32,103,116,71,102,70,222,218,99,0,140,176,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,83,165,51,54,37,188,221,163,102,54,188,163,97,27,176,0,12,7,64,5,2,2,2,29,40,218,141,222,221,210,238,238,239,236,221,214,19,219,218,216,210,210,210,210,210,61,58,138,0,0,0,12,130,37,102,71,125,221,221,221,238,254,236,222,62,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,162,83,66,3,66,141,187,189,54,99,27,219,163,128,49,221,0,11,48,0,2,18,2,0,46,83,232,44,210,221,228,116,68,68,0,0,1,125,254,239,204,205,187,184,213,58,51,163,42,209,0,0,0,232,86,7,215,215,215,116,112,255,255,255,253,224,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,133,53,32,0,2,217,187,211,102,51,12,187,140,224,17,61,0,11,209,20,84,36,3,68,14,221,237,141,162,222,162,0,0,32,0,0,0,119,238,173,188,222,206,205,237,42,51,58,136,173,0,0,0,14,71,119,68,0,0,0,0,253,125,221,238,208,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,35,85,0,0,35,184,173,165,51,97,60,187,142,226,48,29,176,11,97,84,7,100,100,64,45,234,173,221,221,237,50,21,0,16,34,0,0,0,205,221,220,221,170,222,216,66,211,83,61,40,177,0,0,11,212,64,18,69,66,84,5,227,234,237,218,192,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,85,80,0,0,45,136,186,85,3,49,219,187,142,194,0,16,208,11,209,52,84,70,80,68,38,173,238,220,173,173,53,16,5,0,34,80,80,0,219,50,221,82,237,221,162,214,38,226,62,93,91,16,0,11,162,0,5,85,37,66,37,226,50,160,235,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,83,82,0,0,56,168,165,32,48,82,202,188,19,210,1,48,208,11,208,70,64,32,4,1,45,218,221,170,77,222,35,16,48,0,32,0,81,221,238,34,92,33,173,213,51,42,226,94,226,93,163,139,0,11,129,2,86,221,215,221,227,238,205,163,141,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,131,32,0,5,56,136,53,0,80,20,170,189,26,18,17,0,192,11,208,50,37,4,100,21,19,237,175,237,93,173,83,18,48,0,2,0,1,118,238,34,46,37,142,42,130,142,165,90,213,58,216,216,160,0,229,39,119,58,122,212,51,253,237,238,236,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,163,34,2,34,84,85,80,0,0,42,153,212,26,18,0,2,192,11,209,32,80,38,70,2,37,222,221,173,61,141,85,16,50,16,82,5,0,0,205,71,94,80,90,42,13,51,46,210,90,229,61,220,141,0,205,69,85,163,131,67,37,253,238,237,174,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,134,50,32,32,69,131,37,0,1,168,153,114,19,18,1,1,192,10,209,98,32,36,55,33,38,141,218,222,141,94,83,5,0,5,35,1,81,4,219,116,93,0,67,82,174,85,168,232,45,174,35,173,133,176,10,37,77,173,170,173,218,239,222,237,140,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,136,133,32,37,136,85,0,34,0,72,69,80,21,21,34,42,208,11,209,98,2,6,6,0,34,62,173,221,53,170,170,32,19,2,34,2,1,221,254,85,94,34,210,82,51,37,168,53,213,61,51,61,141,139,8,71,115,0,103,213,100,218,222,170,220,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,138,168,21,34,168,84,5,2,16,53,53,33,19,21,18,30,0,11,209,162,5,4,70,2,35,61,221,222,131,136,93,21,13,82,34,32,1,68,239,88,93,37,85,101,34,222,35,93,243,90,142,93,138,216,221,68,80,0,119,210,83,253,238,234,221,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,138,173,98,82,216,69,16,34,21,85,35,17,77,97,34,46,0,11,209,114,85,3,6,0,42,51,221,237,45,216,45,32,97,21,82,5,1,0,221,162,163,101,37,68,37,174,210,170,140,37,206,216,62,194,188,0,32,80,77,210,85,205,238,221,189,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,173,210,37,35,52,51,54,2,34,33,20,67,35,17,235,0,11,209,98,80,32,87,0,45,90,234,243,141,170,142,33,0,80,99,80,17,0,202,69,58,37,3,69,82,40,42,45,141,82,131,226,62,227,60,64,35,5,119,210,3,235,222,220,140,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,136,70,102,102,109,119,125,96,0,17,64,32,35,6,224,0,11,209,114,5,5,118,2,29,131,218,162,173,237,232,16,2,18,67,2,0,221,255,37,42,82,2,50,226,85,94,178,168,187,45,229,88,211,140,82,5,85,103,210,85,205,253,220,141,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,103,99,112,5,1,0,1,1,6,81,37,81,14,0,0,11,98,98,2,5,116,0,45,213,222,163,205,221,216,0,1,0,70,32,1,51,238,133,163,90,2,80,227,82,136,227,40,188,38,170,88,181,188,2,85,80,61,213,80,237,221,237,188,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,69,40,52,51,130,2,40,21,48,16,64,34,19,224,0,12,50,66,80,32,80,80,45,226,173,93,186,221,194,80,2,17,100,16,81,33,174,37,210,61,32,37,68,37,4,138,42,174,163,46,218,58,189,50,32,34,103,210,4,205,255,222,140,0,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,216,84,170,69,101,85,80,33,0,1,48,18,81,80,92,0,12,82,80,84,5,2,5,29,218,221,221,173,221,210,0,81,16,68,5,17,34,221,82,213,51,69,4,35,84,85,51,84,136,162,173,213,42,204,2,37,50,109,213,84,133,223,136,94,204,0,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,74,136,49,53,82,5,16,97,35,1,2,34,0,35,221,222,50,37,68,83,96,37,26,222,165,163,50,221,210,34,81,18,52,16,32,33,222,37,213,35,51,34,5,83,2,64,224,166,50,170,165,46,236,82,45,218,84,242,110,243,51,86,163,58,208,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,82,82,80,83,84,65,4,17,34,17,0,34,0,1,232,43,50,69,36,34,38,66,42,227,163,170,131,40,229,164,80,48,4,5,5,64,170,98,131,162,90,98,34,35,32,37,179,51,35,58,162,211,221,5,109,90,208,84,246,50,51,90,61,162,140,0,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,35,173,214,99,102,16,112,19,2,3,17,34,0,17,209,34,98,101,70,102,49,98,45,58,173,238,253,130,94,221,93,221,125,125,119,102,102,77,163,216,36,50,0,0,4,16,81,37,36,83,85,165,218,208,214,36,221,45,253,245,23,173,35,102,195,224,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,184,106,54,51,48,48,22,1,48,33,16,16,34,0,22,5,51,85,36,210,83,214,29,45,216,109,170,223,216,29,173,162,5,5,2,0,2,82,35,234,163,66,32,0,80,0,32,34,34,84,34,93,58,58,211,211,36,69,53,6,106,53,170,101,106,131,224,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,85,42,168,53,81,6,17,32,33,3,18,80,0,4,42,87,39,45,117,37,109,2,67,174,132,173,223,234,101,221,226,34,34,32,32,0,0,4,216,136,50,84,2,3,80,106,118,163,53,82,165,94,33,125,51,51,141,170,51,35,116,98,238,238,243,188,0,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,164,45,168,85,33,4,1,50,17,48,5,82,1,0,67,36,58,7,117,82,215,82,109,143,136,221,223,252,114,237,210,80,82,2,2,0,16,80,221,216,83,68,51,4,3,215,221,221,222,234,50,51,98,70,35,173,138,173,166,97,68,47,238,254,206,188,208,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,58,42,216,133,1,6,16,34,0,3,0,81,1,98,210,64,211,45,213,2,125,2,77,175,141,56,222,255,162,234,232,37,37,34,0,0,17,2,93,157,68,64,85,5,67,106,173,221,218,173,138,170,211,51,173,237,168,168,218,187,85,238,227,111,254,232,192,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,163,66,168,84,33,6,1,82,1,48,5,1,1,114,210,2,122,87,117,68,100,119,14,222,168,139,62,255,98,234,216,82,82,32,32,0,0,34,94,170,37,5,0,32,34,53,56,58,170,218,62,238,221,51,236,237,138,170,93,140,4,238,50,17,222,238,12,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,136,165,132,133,1,4,50,0,33,1,4,32,17,208,112,83,84,4,6,4,0,0,7,221,125,109,221,221,221,170,216,5,34,2,0,32,32,0,93,187,133,84,4,64,83,221,222,222,221,229,222,218,222,125,223,216,170,170,168,232,173,253,238,162,31,255,211,192,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,211,138,45,42,133,80,16,98,16,0,4,0,64,1,114,115,83,85,4,0,64,0,0,6,98,61,3,163,83,70,61,168,80,37,2,2,0,0,1,46,187,37,100,0,0,86,133,136,173,218,210,253,138,45,221,238,170,218,94,51,221,222,218,226,170,20,254,251,192,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,218,90,110,35,85,0,81,35,51,51,54,139,59,188,213,116,5,0,0,0,33,33,1,10,184,138,130,136,138,130,168,173,37,2,5,0,5,0,0,45,187,213,98,16,2,109,90,141,216,173,232,250,165,38,253,254,58,58,218,211,211,62,235,237,238,17,255,237,192,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,221,136,221,56,165,16,16,35,61,190,189,189,206,238,245,0,64,80,0,0,2,81,80,94,188,173,232,237,138,218,168,216,37,82,65,0,81,113,1,46,186,141,35,1,0,77,40,173,213,221,211,234,163,86,221,221,173,139,173,221,221,221,222,238,238,214,255,252,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,221,82,215,226,101,0,2,34,173,13,29,88,173,77,253,33,34,5,3,85,42,85,83,45,219,222,133,221,222,222,136,216,2,96,96,2,4,65,0,21,220,45,86,2,2,212,138,173,216,170,163,234,109,238,102,102,109,221,215,215,221,221,221,221,221,221,222,236,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,173,93,212,226,84,0,0,34,211,84,16,36,221,167,221,37,82,37,3,69,45,77,170,95,238,238,40,138,216,221,216,168,80,80,49,16,32,33,0,18,221,142,83,0,32,117,61,173,216,221,229,221,109,173,222,222,221,214,102,100,51,77,237,239,221,222,237,221,192,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,221,95,68,245,38,0,16,82,68,34,35,220,221,221,222,32,80,84,164,168,90,212,119,47,255,255,19,222,236,235,211,50,0,16,0,0,32,32,0,0,237,221,165,1,1,106,88,173,217,170,211,215,221,112,1,38,0,35,214,36,221,29,250,250,238,222,222,222,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,173,77,68,66,32,0,0,34,99,33,62,173,189,189,222,32,5,74,122,141,85,216,45,79,253,214,13,110,238,237,138,34,0,16,17,0,2,33,0,17,221,238,51,33,81,125,58,218,186,170,211,215,64,0,5,118,96,55,80,6,38,94,242,174,162,234,221,235,224,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,166,136,138,34,17,0,0,2,68,33,223,221,221,237,222,35,82,5,87,138,2,210,7,94,254,210,141,132,175,237,173,17,17,17,1,16,2,2,0,16,18,39,101,0,2,115,90,173,173,173,229,81,16,5,82,68,80,83,85,53,50,45,232,94,213,174,130,221,192,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,173,136,93,82,32,17,0,34,164,34,221,221,234,218,222,52,83,5,7,141,82,213,7,94,254,210,93,58,223,237,173,34,0,1,17,1,0,80,16,0,2,37,101,2,17,82,58,170,187,221,211,19,0,37,37,100,85,35,69,82,53,90,220,94,232,221,226,220,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,79,138,138,164,109,96,1,0,70,80,221,221,234,237,173,85,38,0,7,141,1,170,39,94,254,161,138,138,175,238,141,34,0,2,17,0,5,3,1,16,18,36,65,0,68,5,61,238,222,205,221,80,80,0,85,74,162,84,133,85,82,90,238,141,216,221,234,174,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,62,136,173,173,221,221,17,0,163,80,127,221,221,234,222,37,45,0,4,61,1,93,23,94,254,85,216,61,174,237,141,37,4,0,0,0,0,85,0,0,16,23,100,68,48,83,51,170,184,141,238,34,0,0,82,88,221,58,122,170,122,173,236,222,202,173,218,221,192,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,63,51,221,222,71,223,49,0,163,0,221,221,218,237,222,32,38,0,51,56,17,46,39,142,254,16,218,168,63,237,62,32,0,68,0,4,68,48,52,112,97,71,0,2,4,5,6,99,58,106,136,69,0,0,4,68,250,166,51,68,51,61,222,220,222,222,238,172,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,211,79,162,165,166,118,118,97,16,90,0,221,221,216,237,220,67,38,49,3,136,16,45,6,94,253,22,216,216,63,237,141,32,0,2,0,0,0,2,16,0,97,113,16,32,80,81,19,102,166,35,68,68,0,0,4,69,221,77,163,77,221,173,238,238,174,238,239,142,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,162,55,64,130,32,16,2,1,0,99,48,222,204,222,222,221,98,35,66,85,168,0,45,68,94,246,45,155,216,175,234,61,17,0,2,0,1,18,34,0,16,81,64,0,4,34,16,81,6,99,189,170,165,32,0,3,51,237,61,215,68,125,125,253,253,175,238,255,222,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,162,80,64,69,84,0,66,5,0,61,48,239,236,255,239,238,97,82,114,85,216,0,36,118,93,240,45,157,216,125,234,173,0,16,2,0,17,17,49,2,0,22,0,16,35,39,80,0,17,54,59,206,216,0,0,0,82,238,82,68,114,7,223,253,212,218,170,223,222,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,51,4,64,106,58,74,114,1,1,109,214,125,119,7,119,119,98,2,210,85,210,80,0,214,14,240,138,173,187,173,250,141,66,16,16,0,17,17,16,17,1,23,16,2,23,213,85,83,81,77,174,237,234,37,0,80,35,254,16,45,216,23,125,237,211,246,203,174,190,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,3,84,16,82,42,34,34,5,16,61,99,0,0,0,0,22,64,80,210,82,210,34,0,211,30,112,170,222,187,141,248,170,114,1,16,0,17,16,16,0,17,23,16,1,45,66,82,85,0,22,222,237,235,33,5,0,35,254,20,45,216,7,221,237,186,250,221,222,188,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,68,37,36,18,93,66,16,0,1,16,33,32,0,0,1,16,2,82,210,83,210,37,1,109,30,82,216,222,220,138,221,163,209,16,0,0,17,1,16,1,1,23,0,0,16,16,3,0,81,19,4,84,68,50,2,5,5,253,18,4,170,29,125,237,142,221,141,222,190,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,48,101,36,35,18,173,210,17,0,2,0,0,0,80,0,1,16,0,82,163,38,114,5,2,77,45,20,216,238,219,170,218,216,209,16,0,32,16,17,16,1,1,22,0,16,1,19,3,2,2,82,7,116,117,214,32,32,84,255,80,82,221,39,125,234,143,222,141,174,188,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,101,72,37,34,109,209,33,0,17,2,17,16,0,0,17,20,101,2,51,42,98,80,65,36,45,42,170,222,218,216,212,232,210,0,16,0,16,17,0,2,16,67,5,16,0,1,50,211,88,88,0,119,71,221,21,0,7,125,37,80,218,74,221,221,79,221,141,175,190,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,16,52,72,65,37,125,224,1,1,16,64,16,17,0,1,17,20,64,85,42,39,50,0,81,82,42,93,141,223,218,216,170,211,226,16,16,0,17,17,16,1,20,0,64,0,16,0,7,250,222,170,1,4,61,62,98,80,68,3,98,5,109,218,221,234,174,218,218,222,172,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,208,23,35,132,49,35,213,211,16,17,4,0,83,16,16,1,17,22,50,85,45,45,34,5,4,19,174,61,141,174,221,216,165,200,210,0,16,2,17,1,16,33,22,20,98,32,32,0,45,221,218,173,48,21,211,238,210,0,97,6,210,48,45,170,215,232,238,221,216,223,140,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,1,2,3,72,66,38,241,237,16,1,112,80,48,4,16,1,17,22,48,85,42,45,32,0,64,29,51,162,173,222,237,218,170,200,229,20,0,32,4,64,0,0,22,4,37,5,0,0,0,85,88,136,51,18,211,221,210,5,65,0,54,36,30,74,215,229,253,221,218,174,172,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,97,0,0,117,51,18,86,209,125,16,21,64,0,16,32,0,1,1,22,66,85,88,61,37,0,1,0,48,237,141,222,221,219,138,216,213,36,64,0,0,16,0,33,22,0,0,64,0,81,2,2,71,100,116,99,90,85,66,0,16,0,13,16,7,170,215,245,237,238,221,62,222,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,34,83,18,122,209,31,65,16,0,32,2,0,2,17,17,19,53,5,88,170,18,0,1,208,237,118,157,142,253,187,136,138,216,34,0,32,80,0,16,1,96,2,64,6,1,5,64,67,20,102,119,93,216,221,98,4,19,16,54,48,0,234,221,248,237,253,222,63,220,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,113,0,0,34,0,115,34,109,97,31,49,2,16,0,1,37,2,2,17,20,64,37,85,163,34,7,17,96,51,0,205,222,221,219,216,58,216,32,34,0,0,2,0,17,113,32,0,48,163,163,58,34,49,116,117,218,238,138,208,48,23,16,65,208,1,213,103,125,202,253,221,62,188,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,16,48,0,34,2,16,83,79,17,17,17,16,17,0,0,0,48,48,17,23,66,82,66,211,32,7,17,61,17,22,205,175,237,187,232,141,200,37,0,0,32,16,16,17,97,2,0,54,222,195,94,227,5,7,117,222,206,227,208,49,16,0,113,99,0,173,6,31,221,254,234,221,174,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,4,2,5,0,32,0,115,126,0,33,37,5,65,16,0,50,50,51,65,23,69,53,80,210,5,4,97,126,112,7,221,127,254,222,221,45,221,16,2,2,1,17,16,1,5,16,20,29,237,229,92,222,38,20,51,174,238,235,115,97,0,1,112,13,2,95,6,47,189,253,202,227,188,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,0,193,5,64,0,5,0,32,0,37,103,32,32,81,83,0,0,16,64,80,83,64,20,5,37,69,210,5,0,118,54,211,64,85,0,48,51,51,77,222,17,2,0,0,0,0,1,0,5,0,62,218,197,62,174,35,64,6,221,221,211,99,1,0,16,0,29,37,29,96,111,173,253,237,234,190,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,0,203,0,2,83,32,80,0,0,0,34,80,0,5,2,53,35,0,20,80,82,5,3,22,84,84,48,48,48,5,99,48,223,48,84,0,6,64,3,0,4,96,0,3,0,3,64,0,48,48,0,0,4,0,0,5,4,4,6,0,0,0,6,0,1,0,64,4,53,45,209,237,218,253,205,173,140,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,12,130,0,3,50,5,0,0,0,0,34,48,32,36,37,34,0,0,16,32,32,34,18,29,3,67,5,51,4,48,96,16,119,112,64,0,103,6,48,68,7,96,52,64,4,64,4,3,64,48,64,0,0,4,0,64,4,68,0,64,64,64,6,1,113,16,4,1,226,0,224,253,186,247,235,222,60,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,0,227,16,3,0,97,80,0,0,32,5,0,80,0,2,0,0,1,0,34,21,5,1,16,20,4,68,0,0,80,32,86,20,102,224,83,84,221,85,80,66,102,86,51,5,50,85,53,80,83,5,3,85,83,35,85,51,3,0,3,5,3,0,96,17,0,1,22,0,100,50,101,254,222,253,238,222,142,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,12,48,0,48,80,96,32,37,2,0,32,0,80,85,52,16,0,0,0,85,34,0,17,17,20,0,1,0,0,5,5,45,6,64,253,7,102,113,71,100,69,110,54,101,99,100,99,67,68,52,99,68,100,100,52,52,52,52,52,99,3,103,48,1,16,0,0,23,0,6,83,68,101,51,103,163,218,60,0,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,0,226,0,3,0,0,113,16,0,0,5,2,82,85,85,74,82,34,85,82,0,0,16,17,17,16,0,80,64,80,80,48,7,22,96,215,6,170,210,136,58,106,127,0,0,0,0,16,0,16,0,0,16,0,16,0,16,0,17,0,16,2,0,16,17,16,0,16,22,0,22,96,6,0,0,0,0,0,96,238,0,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,0,12,0,0,96,0,48,113,0,80,32,0,0,37,85,85,53,101,37,68,82,16,0,16,1,16,16,0,2,5,32,85,85,6,1,1,214,208,61,209,168,54,165,215,16,0,1,0,0,16,0,16,16,0,16,0,16,0,16,0,0,0,0,0,4,17,16,0,0,16,0,0,96,64,6,0,0,51,6,0,61,224,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,12,225,4,112,64,51,0,112,16,0,0,80,2,5,5,83,69,98,19,69,81,36,68,18,32,80,36,85,85,85,51,131,163,166,209,48,3,211,61,48,74,118,68,16,61,208,64,32,37,5,5,2,0,0,48,2,2,80,32,32,5,0,0,0,65,17,16,0,1,0,97,1,100,3,80,50,48,80,84,0,0,62,0,0,0,0,0,0
db 0,0,0,0,0,0,0,0,203,2,48,0,3,6,6,70,16,32,0,0,0,80,80,37,80,48,4,0,0,32,0,16,0,2,37,69,74,83,131,132,164,70,61,237,224,102,53,222,38,49,71,6,96,79,0,48,48,48,48,0,48,51,3,3,102,102,118,96,32,80,0,0,65,17,0,0,17,1,113,0,7,32,32,0,32,80,0,0,0,44,0,0,0,0,0,0
db 0,0,0,0,0,0,0,14,96,6,3,48,102,67,6,54,64,2,32,34,37,5,82,37,82,82,37,85,37,37,37,83,83,85,51,84,52,71,71,71,116,119,13,246,126,1,34,100,0,0,127,22,208,7,118,102,102,102,102,102,54,102,102,102,102,102,102,102,1,0,2,20,1,17,0,1,1,1,113,37,36,163,138,136,136,138,171,189,141,224,0,0,0,0,0,0
db 0,0,0,0,0,0,0,195,32,48,48,51,100,51,54,64,208,81,32,34,84,99,54,102,164,102,102,109,122,221,173,173,218,214,211,52,74,119,119,119,119,119,71,255,16,98,102,23,16,1,119,61,209,1,224,102,102,102,102,109,237,109,125,237,125,109,102,102,102,16,0,6,1,1,0,1,1,1,16,2,50,170,170,173,170,170,170,168,170,224,0,0,0,0,0,0
db 0,0,0,0,0,0,14,84,53,48,51,51,99,99,54,51,101,3,53,100,221,222,221,221,222,221,218,218,221,218,214,167,167,167,100,119,7,125,125,119,119,125,119,246,227,96,238,61,51,18,4,111,112,1,118,221,214,221,109,214,102,214,221,102,214,118,102,102,51,96,17,7,17,17,0,0,17,0,6,16,2,61,221,221,221,174,187,187,187,192,0,0,0,0,0,0
db 0,0,0,0,0,0,232,116,102,118,166,215,214,102,109,109,208,83,85,53,69,163,131,131,131,170,138,138,170,173,106,166,166,119,244,119,127,221,221,221,215,221,7,246,102,6,108,109,222,1,33,209,16,1,109,102,109,102,102,102,214,214,102,102,99,54,51,102,102,55,97,0,16,1,0,0,0,1,7,0,19,42,51,170,171,218,187,203,219,188,0,0,0,0,0,0
db 0,0,0,0,0,0,229,68,37,53,0,82,2,34,32,32,34,83,35,52,170,67,72,106,74,69,52,68,52,85,83,67,67,71,116,119,112,119,215,119,119,119,7,253,102,13,3,102,174,16,81,6,0,51,31,54,16,0,0,48,0,2,48,48,3,6,0,68,102,96,103,97,17,17,113,16,16,16,19,16,48,22,102,100,102,163,222,221,205,192,0,0,0,0,0,0
db 0,0,0,0,0,0,227,214,102,102,119,118,166,103,103,221,49,85,82,53,164,83,52,164,170,106,106,106,74,166,164,166,71,71,119,119,119,119,119,221,215,215,6,246,214,29,1,103,110,0,16,16,6,23,22,253,125,221,215,221,221,221,103,215,221,221,208,48,70,118,6,97,16,16,96,0,0,1,23,1,0,48,118,102,102,102,221,221,221,192,0,0,0,0,0,0
db 0,0,0,0,0,12,213,69,82,48,84,4,48,5,3,4,2,2,53,51,170,88,56,136,138,131,131,131,136,56,56,56,58,106,122,119,119,215,214,215,212,100,116,243,211,102,49,55,0,0,0,0,22,6,209,247,119,208,119,4,7,119,221,119,119,119,215,119,0,102,102,0,1,16,0,0,48,48,38,48,51,96,118,103,103,102,221,222,222,110,224,0,0,0,0,0
db 0,0,0,0,0,12,54,86,51,68,68,4,5,64,84,5,16,83,85,53,58,170,170,170,170,173,218,218,221,221,221,221,221,221,215,125,112,70,116,118,119,118,2,246,96,0,112,13,1,0,0,222,214,7,224,111,109,119,64,17,1,119,125,125,113,17,16,221,118,6,214,48,96,0,102,102,118,109,99,54,214,118,118,102,103,102,103,215,221,187,204,0,0,0,0,0
db 0,0,0,0,0,14,101,68,50,50,4,83,5,0,0,0,1,84,3,83,173,70,68,70,67,67,80,0,80,80,64,80,2,0,215,119,125,71,223,231,61,221,1,116,96,110,224,109,222,238,61,96,103,230,214,31,119,215,113,17,17,4,4,7,1,0,1,7,221,108,214,221,222,125,221,109,214,214,215,102,102,102,102,163,109,102,54,102,102,102,102,224,0,0,0,0
db 0,0,0,0,0,14,69,84,35,82,80,32,32,0,0,0,1,3,53,50,51,85,83,53,52,48,0,17,17,4,2,0,80,0,7,112,215,5,221,208,39,125,0,70,1,109,54,237,221,96,125,118,6,6,223,0,253,215,65,1,1,7,71,71,17,0,0,13,215,214,102,214,214,102,102,102,102,99,102,109,102,102,102,170,109,214,125,214,214,102,96,190,0,0,0,0
db 0,0,0,0,0,12,51,69,133,84,83,131,84,53,85,68,32,69,35,83,53,48,48,83,3,64,17,17,17,16,0,5,0,0,64,209,209,17,126,49,5,127,1,48,3,119,54,208,0,14,255,110,209,211,102,224,214,221,97,16,16,20,122,215,32,0,1,96,50,0,0,0,0,0,0,0,0,0,80,2,2,53,5,48,51,109,116,255,223,254,255,220,0,0,0,0
db 0,0,0,0,0,14,54,164,170,72,56,53,67,84,67,85,2,80,83,35,165,82,82,37,37,2,17,17,17,17,0,32,32,32,113,209,209,16,125,208,33,215,209,103,102,103,54,224,0,255,239,224,208,48,13,99,237,111,113,17,17,4,214,125,16,0,0,52,4,112,4,112,71,7,71,112,68,119,64,119,119,71,103,125,119,215,17,254,16,254,31,237,224,0,0,0
db 0,0,0,0,0,12,211,74,67,164,51,99,67,64,97,80,16,67,69,56,165,52,51,51,52,49,17,17,17,17,0,32,2,0,65,113,113,17,223,113,1,239,0,14,214,102,6,221,15,255,118,0,0,0,208,14,13,15,208,17,32,38,51,51,32,1,1,125,253,223,223,221,221,247,253,223,223,223,253,221,223,253,253,253,221,241,17,119,17,247,17,222,0,0,0,0
db 0,0,0,0,0,0,226,51,85,37,82,37,34,17,54,0,1,48,51,52,165,56,51,51,51,98,17,17,17,17,0,5,2,2,65,113,113,17,215,241,0,239,3,61,214,97,1,54,255,253,119,1,0,4,48,110,102,31,209,17,17,36,51,50,2,0,16,15,119,215,215,119,215,221,125,215,119,119,119,215,119,119,119,119,215,215,17,253,1,247,17,110,0,0,0,0
db 0,0,0,0,0,0,242,5,32,35,32,80,3,3,96,96,115,3,86,90,164,68,72,68,70,81,17,1,0,17,5,0,32,1,113,209,113,17,109,208,1,223,3,14,214,96,0,0,1,13,221,230,0,7,0,0,7,29,209,1,0,3,106,51,33,0,0,7,119,119,127,125,119,240,119,125,223,125,247,119,253,253,119,255,247,254,17,254,17,247,17,238,0,0,0,0
db 0,0,0,0,0,0,227,85,50,85,5,2,0,48,6,0,51,5,53,164,170,37,85,85,85,82,17,16,16,17,0,2,0,33,97,209,125,19,254,240,7,255,113,14,103,21,29,241,16,0,110,222,48,23,23,0,6,29,240,0,4,4,54,58,119,0,0,13,255,127,125,223,215,223,247,125,119,119,127,253,112,247,119,247,247,239,96,255,0,255,7,222,0,0,0,0
db 0,0,0,0,0,0,229,80,85,3,0,0,20,6,0,3,0,0,97,118,212,54,166,166,164,97,17,17,17,16,0,0,0,0,97,209,127,23,255,253,31,223,209,62,230,0,14,224,1,16,16,71,231,6,3,99,51,13,221,71,38,221,6,70,254,214,1,29,247,127,247,119,253,112,125,215,127,119,215,119,221,125,119,221,240,253,255,255,236,255,174,238,0,0,0,0
db 0,0,0,0,0,0,224,50,48,85,1,17,0,0,3,96,0,54,2,54,70,86,67,68,99,101,96,96,0,0,68,4,4,116,113,208,127,0,255,253,13,247,208,14,214,112,13,230,1,16,17,17,6,208,49,102,96,102,125,64,71,221,68,4,255,102,230,23,125,127,253,127,119,223,221,215,125,125,215,119,119,125,119,125,247,223,221,255,238,255,239,237,0,0,0,0
db 0,0,0,0,0,0,229,83,37,64,32,17,1,0,3,6,0,6,0,7,4,125,119,119,125,116,71,71,221,116,116,119,116,64,112,116,119,3,116,212,70,221,209,13,109,112,6,230,0,0,16,17,1,102,211,0,32,116,125,119,71,125,221,3,223,215,247,224,255,221,253,208,125,125,119,127,223,119,223,221,223,112,215,253,247,221,255,255,237,254,222,248,224,0,0,0
db 0,0,0,0,0,0,226,85,53,0,17,0,7,0,48,0,0,0,0,7,103,125,0,4,13,112,68,71,215,4,4,71,112,64,119,68,116,51,208,240,64,239,110,237,108,113,61,222,208,1,0,16,16,16,3,13,222,208,77,112,119,255,222,221,253,247,247,125,127,255,125,127,125,215,125,247,119,127,119,125,221,127,125,125,247,247,255,255,255,255,255,238,224,0,0,0
db 0,0,0,0,0,0,229,34,1,32,17,6,0,0,64,0,0,16,0,29,119,109,119,125,13,118,103,100,215,71,119,71,116,119,119,116,71,4,215,212,68,244,0,16,0,0,81,0,0,5,80,2,0,0,0,0,4,222,110,238,223,239,255,237,255,253,230,221,223,125,247,119,247,1,15,125,119,215,112,17,20,247,215,7,119,119,255,255,255,255,255,237,192,0,0,0
db 0,0,0,0,0,0,237,35,83,5,65,16,64,96,0,0,16,0,49,15,16,125,7,119,15,116,103,112,221,7,71,7,119,119,64,119,71,100,116,244,112,241,16,1,0,16,0,0,0,0,0,48,0,0,0,0,2,224,48,2,3,80,50,17,6,223,254,223,127,221,255,119,16,17,16,119,253,212,17,17,16,29,208,127,125,253,239,255,255,255,255,254,192,0,0,0
db 0,0,0,0,0,0,14,37,5,0,0,17,0,6,0,0,0,0,0,22,64,127,7,125,13,116,119,116,221,71,71,7,119,71,116,68,112,64,63,245,53,106,56,107,106,168,168,179,179,170,138,170,170,170,218,131,189,237,138,173,163,173,96,3,16,0,223,255,119,119,215,208,17,17,1,31,103,1,17,17,1,1,247,7,119,102,125,221,215,119,119,220,224,0,0,0
db 0,0,0,0,0,0,14,35,53,0,17,16,16,0,0,3,0,16,0,0,97,79,119,7,119,116,116,71,119,71,68,68,64,119,77,119,125,221,254,254,115,125,221,173,221,173,218,184,221,221,218,221,173,221,173,221,218,237,213,83,83,85,83,0,0,0,0,223,125,125,223,241,17,16,16,23,255,97,16,16,16,16,255,221,253,243,255,255,255,255,255,238,192,0,0,0
db 0,0,0,0,0,0,14,37,0,16,3,3,17,96,0,0,0,0,48,0,54,7,116,119,119,100,102,119,119,118,119,71,119,71,7,215,127,247,215,212,29,218,221,218,221,215,173,173,170,122,170,170,163,166,106,74,58,58,61,34,82,82,32,16,0,0,21,0,255,223,253,215,17,1,1,7,223,0,16,1,1,23,255,255,255,255,255,255,255,255,255,255,174,0,0,0
db 0,0,0,0,0,0,14,19,80,1,113,16,1,0,16,0,0,0,0,0,0,71,71,116,116,118,70,116,112,68,6,4,0,64,64,4,5,1,1,17,99,85,85,85,133,85,85,53,35,85,85,85,53,53,53,83,51,83,163,86,69,85,101,0,0,0,5,4,253,215,215,247,17,0,0,1,6,16,1,0,16,17,255,255,255,255,125,125,119,221,119,255,174,0,0,0
db 0,0,0,0,0,0,12,3,0,0,16,49,1,0,0,16,16,48,0,16,23,4,67,53,52,86,38,99,0,1,37,48,50,51,85,53,37,0,32,32,7,51,136,131,164,163,54,51,51,51,51,51,51,3,85,48,36,34,64,67,35,0,80,5,0,32,80,0,221,223,223,215,0,0,1,0,16,0,0,0,0,0,127,255,253,223,255,255,255,255,255,255,110,0,0,0
db 0,0,0,0,0,0,13,3,48,0,0,0,1,0,7,0,0,0,48,0,22,2,53,84,35,0,0,1,0,49,96,53,50,34,53,85,82,0,37,0,0,53,90,53,83,83,83,85,85,53,53,53,85,83,69,35,4,51,68,74,19,2,64,32,32,80,0,1,223,247,223,125,16,1,1,1,0,0,0,0,0,0,253,215,125,253,71,119,118,109,62,255,222,0,0,0
db 0,0,0,0,0,237,227,0,81,16,16,0,0,96,112,0,0,0,0,16,16,0,49,101,53,61,96,0,102,3,0,22,0,208,32,53,50,0,34,0,0,170,136,131,170,136,136,136,136,56,136,56,56,53,136,51,168,136,84,85,102,1,48,0,5,16,64,0,221,247,223,215,0,0,0,0,16,0,16,0,0,0,247,221,253,127,174,221,238,237,222,255,220,0,0,0
db 0,0,0,0,12,96,48,3,0,16,0,0,0,17,20,0,7,0,0,16,0,48,97,67,32,16,48,6,0,0,102,112,102,54,211,99,83,0,34,2,0,170,170,173,170,170,170,170,170,170,173,173,173,173,221,170,218,221,86,90,3,0,115,0,80,2,2,1,215,119,125,240,0,0,0,0,0,0,0,0,0,0,119,119,119,14,83,53,136,141,222,255,222,0,0,0
db 0,0,0,0,14,0,4,96,48,17,16,3,16,48,97,6,1,0,0,0,6,6,0,0,54,0,103,96,102,6,0,0,48,6,6,96,0,0,85,32,0,168,170,170,138,170,170,138,138,168,168,168,170,138,168,168,139,138,37,53,96,0,100,208,16,80,0,1,119,119,15,244,2,2,2,214,221,221,221,221,221,237,110,223,215,223,189,220,219,142,172,255,222,0,0,0
db 0,0,0,12,192,52,68,4,0,1,16,48,17,1,3,3,96,1,0,1,3,0,0,1,3,97,0,48,6,115,6,6,96,96,48,96,54,0,85,0,0,170,154,171,221,170,170,168,170,170,170,170,170,138,170,170,170,139,34,35,0,4,0,13,17,2,0,0,253,255,15,240,16,32,54,214,214,170,170,170,170,170,109,223,223,127,189,205,189,142,186,255,222,0,0,0
db 0,0,14,192,3,3,6,6,0,118,1,1,48,19,6,96,99,0,0,0,0,6,0,0,20,0,0,16,96,16,48,48,0,48,13,118,6,0,5,2,0,141,154,168,170,173,173,221,221,221,221,214,221,221,221,173,171,221,32,102,0,96,0,96,2,0,5,1,215,253,125,240,2,26,125,109,106,218,214,214,173,118,125,223,221,255,173,218,188,93,205,255,237,192,0,0
db 0,0,198,3,48,96,55,0,16,0,16,3,3,6,19,6,0,0,1,0,0,96,96,96,22,16,0,0,0,97,7,0,96,6,208,61,6,96,34,0,0,141,173,162,34,34,34,34,34,34,34,34,32,82,34,35,173,189,54,0,7,0,96,0,0,2,0,2,247,255,15,240,17,109,122,214,218,167,170,170,214,109,109,223,247,127,173,237,203,93,205,255,251,192,0,0
db 0,0,192,3,6,0,51,96,1,17,1,0,48,23,48,16,115,16,96,1,0,0,48,0,16,16,0,0,0,0,3,3,6,96,13,0,99,6,0,1,17,141,221,213,83,96,48,48,51,0,48,48,3,6,4,1,219,220,32,96,0,0,6,0,0,0,2,1,253,221,127,240,20,214,170,106,170,109,109,109,109,215,77,255,127,223,173,221,189,93,221,255,251,192,0,0
db 0,14,3,64,96,51,51,96,0,16,16,0,0,48,0,48,6,96,16,0,102,0,112,16,0,16,17,0,0,0,0,48,48,51,0,96,96,7,208,102,17,189,218,213,61,64,102,6,0,99,6,6,64,48,55,20,220,219,48,99,6,0,103,16,0,1,0,1,253,255,223,244,13,102,102,170,106,102,166,166,102,103,109,119,119,119,61,237,189,141,221,255,253,192,0,0
db 0,238,0,3,6,99,64,0,0,1,22,1,112,0,13,6,96,1,0,7,0,0,48,97,0,16,0,1,16,64,96,3,3,22,96,6,3,99,3,3,0,141,189,213,7,102,6,54,100,96,99,6,102,0,115,0,187,187,51,96,6,48,96,112,6,96,0,1,116,6,99,48,54,102,166,214,218,221,109,173,170,173,103,119,119,215,221,221,187,221,203,255,236,0,0,0
db 12,226,51,67,99,51,96,0,0,16,1,0,3,0,97,0,1,0,0,0,99,3,0,112,16,0,16,17,0,48,48,0,0,97,3,14,0,3,96,96,0,189,173,213,6,54,112,22,96,102,6,3,67,48,102,0,187,187,54,22,22,6,3,3,48,6,112,1,255,255,255,246,17,106,106,170,166,170,163,166,163,61,109,253,221,223,173,220,185,221,187,255,174,0,0,0
db 14,0,53,3,80,53,0,0,0,1,0,0,19,1,0,16,0,16,23,0,0,48,0,16,0,0,17,1,6,16,1,64,68,0,0,23,3,208,96,96,97,187,186,211,96,118,99,55,99,3,0,3,96,101,99,112,219,187,50,48,0,6,1,54,6,3,96,1,253,212,119,214,0,32,32,2,0,16,0,16,0,3,7,221,215,126,61,203,220,221,189,255,110,0,0,0
db 0,237,3,16,2,0,1,0,0,16,16,0,0,0,16,0,0,1,1,16,3,6,0,1,0,1,17,1,16,0,48,0,48,0,0,96,54,0,209,0,208,186,221,213,0,102,0,7,67,3,3,112,100,96,112,112,187,187,99,6,0,48,0,3,6,0,0,1,247,255,215,247,16,0,0,0,0,0,1,0,0,0,7,253,253,127,60,219,187,189,187,255,108,0,0,0
db 0,14,53,52,52,83,65,0,1,0,1,0,0,64,1,0,16,0,0,0,0,0,0,0,0,16,16,0,17,16,0,0,112,0,6,6,6,6,99,6,2,187,186,211,103,6,16,208,96,70,100,97,4,6,115,0,219,221,96,0,0,0,102,0,0,48,0,1,253,255,247,221,0,0,0,0,0,0,0,0,0,4,7,255,221,79,172,221,205,189,205,239,142,0,0,0
db 0,14,3,80,53,5,0,1,1,16,16,0,0,17,0,1,1,0,0,0,0,0,0,0,0,1,16,0,0,6,0,0,0,0,0,0,0,3,99,48,97,187,187,213,0,0,1,64,16,4,64,0,0,3,0,0,187,219,96,1,0,16,3,0,103,6,0,0,253,255,253,223,0,0,0,0,0,0,0,0,0,80,7,255,255,221,174,238,236,204,238,255,62,0,0,0
db 0,12,50,53,53,53,48,80,1,1,17,0,1,16,16,48,48,48,0,0,3,3,3,96,0,1,1,0,16,0,0,64,0,0,48,48,6,0,3,96,98,186,221,170,168,170,170,138,170,170,168,170,173,171,170,170,170,173,162,16,0,0,3,0,0,0,0,0,239,221,222,238,173,226,34,34,82,34,34,34,34,2,7,215,215,125,127,223,255,255,255,254,110,0,0,0
db 0,12,51,69,83,85,50,1,17,16,0,1,16,1,3,3,3,3,0,0,16,48,13,7,6,112,1,17,1,16,0,64,64,0,118,19,96,7,3,112,3,221,171,170,170,221,221,218,221,221,221,173,218,218,221,173,221,221,162,17,0,0,0,3,6,0,0,31,255,255,255,255,234,214,102,102,102,102,102,102,102,116,77,253,253,255,253,255,255,255,255,255,238,0,0,0
db 0,12,99,53,53,85,48,33,16,16,0,17,0,17,1,16,48,49,1,0,3,3,96,96,96,16,0,0,16,0,0,0,6,19,19,0,61,96,112,3,82,136,136,136,136,136,136,136,136,136,136,168,136,136,136,136,136,136,162,17,0,0,0,0,0,64,48,31,223,253,255,223,250,122,218,173,214,214,214,221,102,215,111,255,255,255,253,255,255,255,255,255,253,192,0,0
db 0,12,98,51,83,83,5,0,16,16,0,16,16,1,0,19,19,0,16,22,16,54,0,96,102,0,1,16,0,0,48,6,23,0,0,54,0,96,96,7,26,221,205,221,222,221,221,237,237,237,237,221,237,222,221,221,221,221,229,17,0,16,0,0,0,0,64,13,255,255,255,255,243,106,102,102,58,106,102,102,109,102,111,253,255,247,247,255,253,255,223,255,246,192,0,0
db 0,0,208,85,82,5,37,0,17,1,16,16,1,0,0,0,16,1,0,0,102,6,48,48,6,16,97,1,0,3,102,0,96,49,0,214,208,0,3,3,62,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,218,237,49,17,0,0,16,0,0,0,23,255,255,255,255,246,4,6,100,119,102,102,100,102,96,127,255,255,255,255,142,222,218,222,222,250,192,0,0
db 0,0,229,85,53,85,4,0,1,1,0,16,16,1,0,16,16,16,7,6,0,6,3,0,48,6,1,0,17,49,118,6,3,6,0,13,3,6,48,2,170,136,136,136,136,136,131,136,136,136,136,136,131,136,136,136,136,168,61,33,0,0,0,17,0,0,1,31,255,255,255,255,253,0,32,33,0,1,2,2,2,0,223,255,255,255,255,248,205,204,237,223,253,192,0,0
db 0,0,243,53,53,83,83,3,0,1,1,1,1,17,1,0,16,0,0,1,0,112,48,54,6,0,0,16,17,1,23,0,96,49,0,0,0,16,0,81,218,170,218,218,171,170,218,170,173,168,170,170,170,170,218,170,218,173,173,98,33,17,0,0,0,13,224,15,255,255,255,253,255,16,0,0,0,0,0,0,0,0,255,221,253,255,253,243,205,221,221,239,253,192,0,0
db 0,0,243,52,85,53,80,80,1,0,17,0,1,0,16,0,0,1,1,1,96,0,3,0,48,54,16,0,16,16,16,1,0,1,0,16,17,0,0,18,221,173,168,170,186,170,170,170,170,168,170,168,170,170,170,170,170,138,173,209,0,0,16,0,0,96,227,111,255,255,255,223,255,0,0,0,0,0,0,0,0,0,255,255,255,253,255,253,238,238,255,255,253,192,0,0
db 0,0,243,83,51,85,35,82,17,17,16,1,17,1,1,0,0,16,16,1,0,0,0,0,3,48,1,0,1,16,16,1,0,0,0,0,0,0,64,34,168,131,136,136,170,170,138,168,170,138,138,131,56,136,56,168,168,170,170,163,18,1,0,0,0,13,0,6,119,247,127,255,223,0,0,0,0,0,0,0,80,0,255,255,221,223,253,247,255,255,255,255,247,192,0,0
db 0,0,243,51,85,53,83,80,2,17,17,16,0,0,16,0,0,1,1,0,16,16,0,6,0,48,0,0,0,0,22,0,16,16,0,0,96,96,17,221,221,173,173,221,173,170,173,173,173,173,218,221,221,170,173,173,173,170,173,221,209,16,1,0,103,6,0,63,0,1,31,253,255,0,0,16,0,0,0,0,0,0,255,223,255,255,255,255,255,255,255,255,253,192,0,0
db 0,0,227,52,83,83,85,85,82,2,2,16,0,0,16,16,0,16,16,16,16,0,1,0,0,0,17,17,17,17,17,0,0,0,16,64,1,0,1,170,136,168,136,136,136,138,136,138,138,136,138,136,136,136,168,163,131,168,136,58,210,1,0,115,3,0,0,0,0,0,7,255,223,64,3,3,0,0,0,5,0,0,255,253,223,253,255,223,255,255,255,255,253,224,0,0
db 0,0,243,53,85,53,53,69,85,85,64,2,17,16,0,0,16,16,16,16,16,17,1,4,96,0,1,0,1,7,16,16,29,0,1,0,0,7,1,218,168,170,170,168,170,170,170,170,170,170,170,170,170,168,170,170,170,138,170,170,213,0,0,0,23,0,1,1,22,16,0,255,223,112,2,0,80,0,0,0,0,0,255,255,255,255,255,247,255,255,255,255,255,220,0,0
db 0,0,243,83,83,85,85,53,83,83,85,80,32,33,1,1,16,16,1,1,1,0,0,0,17,1,17,16,17,23,1,0,16,70,64,0,1,0,21,218,184,168,170,138,170,170,170,170,168,170,168,168,168,168,168,170,168,170,170,170,168,16,16,20,16,16,0,64,1,0,255,255,223,208,0,0,0,80,80,5,0,4,255,223,221,223,253,253,255,255,255,255,255,220,0,0
db 0,0,250,83,88,53,51,133,84,84,84,85,5,0,32,1,1,16,16,16,1,1,17,0,0,16,1,1,0,0,17,1,16,0,0,0,0,0,0,218,136,170,170,136,170,170,170,170,170,170,170,170,168,168,170,170,170,168,168,170,218,17,1,16,17,1,16,17,1,31,237,253,223,240,48,80,0,0,5,0,0,0,255,223,255,255,255,255,223,255,255,255,255,251,192,0
db 0,0,230,84,131,88,56,56,56,83,83,69,53,0,2,16,17,1,0,16,16,0,0,1,17,17,16,0,0,1,0,4,1,64,16,1,16,1,5,218,168,170,170,138,170,170,168,168,168,168,168,136,138,138,138,170,138,138,138,138,170,0,0,16,16,1,1,0,23,255,255,255,255,240,0,0,5,2,80,32,80,48,255,255,255,255,255,255,255,255,255,255,255,246,192,0
db 0,0,250,58,72,51,131,132,133,72,85,85,85,96,1,16,16,0,0,0,0,16,0,0,1,0,17,0,1,1,1,17,16,17,1,0,16,16,16,216,138,168,170,168,170,170,170,170,138,170,138,138,138,138,170,170,170,170,138,170,173,4,96,48,52,116,112,7,125,221,221,221,119,119,215,221,215,214,102,109,125,118,253,221,221,221,221,127,255,255,255,255,255,246,224,0
db 0,0,232,58,58,138,138,163,170,83,133,85,85,3,2,1,16,0,17,0,1,0,1,0,0,0,16,1,0,16,16,16,1,1,0,17,17,16,37,170,170,168,170,170,136,168,168,170,138,168,168,168,168,168,168,138,168,170,170,170,170,96,51,51,51,51,51,51,83,48,3,3,51,51,51,99,99,54,54,102,102,102,51,51,51,100,100,102,103,119,223,255,255,246,224,0
db 0,0,232,58,170,168,168,168,131,58,51,85,83,80,0,16,16,0,0,1,16,0,0,16,0,1,0,0,0,17,1,16,0,17,16,16,1,1,19,221,168,138,170,170,138,138,170,170,170,138,138,138,168,170,170,170,170,170,170,170,170,221,221,221,222,221,221,237,237,254,254,221,221,221,125,125,125,215,221,125,221,221,221,238,238,222,221,237,221,221,100,71,223,253,224,0
db 0,0,250,52,68,68,52,68,68,69,84,68,85,70,5,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,53,52,52,132,72,58,74,90,90,74,74,74,74,74,74,74,53,52,53,52,84,74,255,255,255,221,223,223,223,221,221,221,255,223,223,255,255,255,255,255,255,255,255,255,255,255,254,254,255,254,255,255,255,230,238,224,0
db 0,14,227,69,68,51,84,85,84,84,68,68,68,4,64,1,0,0,0,0,0,0,0,0,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,66,85,85,85,53,85,37,69,69,82,85,82,40,37,130,85,37,83,85,52,52,53,253,221,215,119,118,71,119,96,0,64,112,116,119,119,215,221,221,215,215,119,215,119,119,119,214,118,118,103,102,103,118,119,61,220,204
db 237,237,237,237,237,221,222,222,238,221,221,238,221,221,214,237,237,221,221,221,221,238,222,221,221,221,110,221,238,238,238,237,237,222,222,222,222,222,238,238,238,237,237,237,237,238,222,222,238,238,222,174,237,238,222,238,238,221,237,222,221,221,221,221,221,221,237,238,254,239,239,239,222,254,239,222,222,221,221,237,222,237,237,237,239,239,238,222,254,254,254,221,239,223,125,125
stb.end:
stb.len: equ stb.end-stb.data
;++++++++++++++++++++++++++++++++++++++++++++++
org stb.src
dump MainPage,stb.src-32768