start:	bra		start2
 dc.b	"(C)1989 Brian Postma "
 dc.b	"J.v.Hartenstraat 51 "
 dc.b	"7576VX Oldenzaal (NL)"
 dc.b	" Tel:05410-14763 "
even
start2:	movem.l		d0-d7/a0-a6,-(a7)
	bsr		initcop
	lea		planec,a0
	move.l		#plane,d0
	move.w		d0,6(a0)
	swap		d0
	move.w		d0,2(a0)

	lea		pl,a0
	move.l		#plane2-512,d0
	move.w		d0,6(a0)
	swap		d0
	move.w		d0,2(a0)

	move.l		#dinges,$80
	trap		#0
	bra		endwait

dinges:	move		#$2700,sr
	move.w		#$0020,$dff096
	move.w		#$8500,$dff096
	move.l		#newcop,$dff080
	
wait:	bsr		newirq
	btst		#6,$bfe001
	bne		wait

	move.w		#$2000,sr
	rte

endwait:move.l		4,a6
	lea		gfxname,a1
	clr.l		d0
	jsr		-552(a6)
	move.l		d0,a6
	move.l		38(a6),$dff080
	move.w		#$8020,$dff096
	clr.w		$dff088
	movem.l		(a7)+,d0-d7/a0-a6
	move.w		#$040f,$dff096
	rts

initcop:lea		colors,a0
	move.w		#$5807,d0
	move.l		#159,d7
	lea		col,a1
loop:	move.w		d0,(a1)+
	move.l		#$fffe0182,(a1)+
	move.w		(a0)+,(a1)+
	move.l		#$01800000,(a1)+
	add.w		#$0100,d0
	cmpi.l		#endcolors,a0
	bne		not_end
	lea		colors,a0
not_end:dbra		d7,loop

	lea		picpl,a0
	move.l		#tcpic,d0
	move.w		d0,6(a0)
	swap		d0
	move.w		d0,2(a0)
	swap		d0
	add.l		#40,d0
	move.w		d0,14(a0)
	swap		d0
	move.w		d0,10(a0)

	rts

colors:	dc.w $888,$888,$999,$999,$aaa,$aaa,$bbb,$bbb
	dc.w $ccc,$ccc,$ddd,$ddd,$eee,$eee,$fff,$fff
	dc.w $fff,$fff,$eee,$eee,$ddd,$ddd,$ccc,$ccc
	dc.w $bbb,$bbb,$aaa,$aaa,$999,$999,$888,$888
endcolors:

newirq:	bsr		clrplane
delay:	cmpi.b		#$50,$dff006
	bne		delay
	bsr		backcol
	bsr		exchange
	bsr	 	scroll
	bsr		copyit
	rts	

backcol:addq.w		#2,colpointer
	and.w		#511,colpointer
	move.w		colpointer,d3
	move.w		#79,d7
	lea		col,a0
	lea		col+1908,a1
	lea		colors2,a2
bloop:	move.w		(a2,d3.w),10(a0)
	move.w		(a2,d3.w),10(a1)
	addq.w		#2,d3
	and.w		#511,d3
	add.l		#12,a0
	sub.l		#12,a1
	dbra		d7,bloop
	rts

colors2:blk.w	80,0
	dc.w	1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8
	dc.w	9,9,10,10,11,11,12,12,13,13,14,14,15,15
	dc.w	15,15,14,14,13,13,12,12,11,11,10,10,9,9,8,8
	dc.w	7,7,6,6,5,5,4,4,3,3,2,2,1,1
	dc.w	1,2,2,3,4,4,5,6,6,7,8,8,9,10,10,11,12,12
	dc.w	13,14,14,15,15,15,14,13,13,12,11,11,10
	dc.w	9,9,8,7,7,6,5,5,4,3,3,2,1,1
	dc.w	1,2,3,3,4,5,6,7,7,8,9,10,11,11,12,13,14,15,15
	dc.w	15,14,13,12,11,11,10,9,8,7,7,6,5,4,3,3,2,1
	dc.w	0,1,3,5,7,9,11,13,15,15,13,11,9,7,5,3,1,0
	dc.w	0,3,7,11,15,15,11,7,3,0
	dc.w	0,7,15,15,7,0
exchange:
	cmpi.l		#plane2,dest
	beq		switch
	move.l		#plane2,dest
	bra		incop
switch:	move.l		#plane3,dest
incop:	move.l		dest,d0
	sub.l		#512,d0
	lea		pl,a0
	move.w		d0,6(a0)
	swap		d0
	move.w		d0,2(a0)
	rts

clrplane:
	bsr		waitblt
	move.l		#plane2,$dff054
	cmpi.l		#plane3,dest
	beq		okclr
	move.l		#plane3,$dff054
okclr:	move.w		#$0900,$dff040
	clr.w		$dff042
	move.w		#18,$dff066
	move.w		#144*64+23,$dff058
	rts

copyit:	subq.w		#4,sinepointer
	and.w		#1023,sinepointer
	clr.w		d6
	move.l		dest,a4
	lea		plane,a0	;Source
	lea		sine,a2		;Sine movement
	move.w		sinepointer,d3	;Position in sine
	moveq		#22,d1		;25 chars
ciloop1:moveq		#7,d2		;of 7x2 bits
	move.w		#$c000,d0	;and value
ciloop2:addq.w		#4,d3
	and.w		#1023,d3
	clr.l		d4
	move.b		(a2,d3.w),d4
	lsl.w		#6,d4
	move.l		a4,a1	;Dest
	add.l		d4,a1

	move.w		(a0),d4
	and.w		d0,d4
	or.w		d4,(a1)
	move.w		50(a0),d4
	and.w		d0,d4
	or.w		d4,64(a1)
	move.w		100(a0),d4
	and.w		d0,d4
	or.w		d4,128(a1)
	move.w		150(a0),d4
	and.w		d0,d4
	or.w		d4,192(a1)
	move.w		200(a0),d4
	and.w		d0,d4
	or.w		d4,256(a1)
	move.w		250(a0),d4
	and.w		d0,d4
	or.w		d4,320(a1)
	move.w		300(a0),d4
	and.w		d0,d4
	or.w		d4,384(a1)
	move.w		350(a0),d4
	and.w		d0,d4
	or.w		d4,448(a1)
	move.w		400(a0),d4
	and.w		d0,d4
	or.w		d4,512(a1)
	move.w		450(a0),d4
	and.w		d0,d4
	or.w		d4,576(a1)
	move.w		500(a0),d4
	and.w		d0,d4
	or.w		d4,640(a1)
	move.w		550(a0),d4
	and.w		d0,d4
	or.w		d4,704(a1)
	move.w		600(a0),d4
	and.w		d0,d4
	or.w		d4,768(a1)
	move.w		650(a0),d4
	and.w		d0,d4
	or.w		d4,832(a1)
	move.w		700(a0),d4
	and.w		d0,d4
	or.w		d4,896(a1)
	move.w		750(a0),d4
	and.w		d0,d4
	or.w		d4,960(a1)
	ror.w		#2,d0
	dbra		d2,ciloop2
	addq.l		#2,a0
	addq.l		#2,a4
	dbra		d1,ciloop1
	rts

charheight = 16		; Height of 1 char in lines
charwidth = 4		; Width of 1 char in bytes
planes = 1		; Nr of Planes
charsproline = 10	; Chars pro line
linewidth = 40 		; Bytes pro line
charwidth2 = charwidth/2 ; Need this because SEKA doesn't know
			 ; the normal math rules...!!! (FUCK)

scroll:	bsr		waitblt
	move.w		speed1,$dff040
	move.w		#0,$dff042
	move.w		#$ffff,$dff044
	move.w		#$ffff,$dff046
	move.l		#plane,d0
	move.l		d0,$dff054
	add.l		speed3,d0
	move.l		d0,$dff050
	clr.l		$dff064
	move.w		#charheight*64*planes+25,$dff058
	bsr		waitblt
noscr:	subq.b		#1,scrcount
	beq		newtext
	rts

newtext:move.b		speed2,scrcount
	addq.l		#1,stringpointer
	move.l		stringpointer,a0
	clr.w		d0
	move.b		(a0),d0
	cmpi.b		#32,d0
	bne		nspace
	clr.w		d0
	move.w		#$0900,$dff040
	bra		space
nspace:	move.l		#font,d1
	sub.b		#48,d0
	cmpi.b		#48,d0
	bgt		speedchange
ddd:	cmpi.b		#charsproline,d0 
	blt		eerste
	add.l		#charheight*linewidth*planes,d1
	sub.b		#charsproline,d0
	bra		ddd
eerste:	move.w		#$09f0,$dff040	;BLTCON0
space:	mulu		#charwidth,d0
	add.l		d1,d0
	move.l		d0,$dff050    	;SOURCE A
	move.l		#plane,d0
	add.l		#46,d0
	move.l		d0,$dff054   	;DEST D
	clr.w		$dff042		;BLTCON1
	move.w		#linewidth-charwidth,$dff064 ; MOD A
	move.l		#$ffffffff,$dff044	;MASK
	move.w		#50-charwidth,$dff066	;MOD  D
	move.w		#charheight*planes*64 + charwidth2,$dff058
;	bsr		waitblt

	cmp.l		#endstring,stringpointer
	bne		notend
	move.l		#string,stringpointer
notend:	rts

waitblt:btst		#14,$dff002
	bne		waitblt
	rts

speedchange:
	sub.b		#49,d0
	mulu		#3,d0
	lea		speedlist,a0
	move.b		(a0,d0.w),speed1
	move.b		2(a0,d0.w),d1
	ext.w		d1
	ext.l		d1
	move.l		d1,speed3
	move.b		1(a0,d0.w),speed2
	bra		newtext

speed3:		dc.l		2
speed1:		dc.w		$49f0
speed2:		dc.b		8
scrcount:	dc.b		1

speedlist:	dc.b	$09,64,0 	; Speed a
		dc.b	$f9,32,2	; Speed b
		dc.b	$e9,16,2	; Speed c
		dc.b	$c9,8,2		; Speed d
		dc.b	$89,4,2		; Speed e
		dc.b	$09,2,2		; Speed f
		dc.b	$19,32,0	; Speed g
		dc.b	$29,16,0	; Speed h
		dc.b	$49,8,0		; Speed i
		dc.b	$89,4,0		; Speed j
		dc.b	$09,2,-2	; Speed k
		dc.b	$c9,3,2		; Speed l

even
dest:	dc.l	plane2
oldcop: dc.l	0

newcop: dc.w $0120,$0000,$0122,$0000
	dc.w $0092,$0038,$0094,$00d0
	dc.w $0100,$0000,$0102,$0000
	dc.w $008e,$296a,$0090,$29fa,$0180,$0000
	dc.w $0184,$0dcc,$0186,$0fff

	dc.w $2d01,$fffe
picpl:	dc.w $e0,0,$e2,0,$e4,0,$e6,0
	dc.w $108,40,$10a,40,$100,$2000
	dc.w $2e01,$fffe,$0182,$08f,$180,0
	dc.w $3201,$fffe,$0182,$08e
	dc.w $3301,$fffe,$0182,$07d
	dc.w $3401,$fffe,$0182,$07c
	dc.w $3501,$fffe,$0182,$06b
	dc.w $3601,$fffe,$0182,$06a
	dc.w $3701,$fffe,$0182,$059
	dc.w $3801,$fffe,$0182,$058
	dc.w $3901,$fffe,$0182,$047
	dc.w $3a01,$fffe,$0182,$046
	dc.w $3b01,$fffe,$0182,$035
	dc.w $3c01,$fffe,$0182,$034
	dc.w $3d01,$fffe,$0182,$023
	dc.w $3e01,$fffe,$0182,$022
	dc.w $3f01,$fffe,$0182,$011
	dc.w $4001,$fffe,$0182,$211
	dc.w $4101,$fffe,$0182,$321
	dc.w $4201,$fffe,$0182,$432
	dc.w $4301,$fffe,$0182,$532
	dc.w $4401,$fffe,$0182,$642
	dc.w $4501,$fffe,$0182,$743
	dc.w $4601,$fffe,$0182,$853
	dc.w $4701,$fffe,$0182,$953
	dc.w $4801,$fffe,$0182,$a63
	dc.w $4901,$fffe,$0182,$b64
	dc.w $4a01,$fffe,$0182,$c74
	dc.w $4b01,$fffe,$0182,$d74
	dc.w $4c01,$fffe,$0182,$e85
	dc.w $4d01,$fffe,$0182,$f85
	dc.w $5301,$fffe,$0100,$0000

	dc.w $0182,$0f00,$0092,$0028,$0094,$00d8
pl:	dc.w $00e0,$0000,$00e2,$0000
	dc.w $5801,$fffe,$0108,$0012
	dc.w $0100,$1000

col:	blk.b 160*12,0

	dc.w $f801,$fffe,$0100,$0000,$0180,0
	dc.w $ffe1,$fffe
	dc.w $0001,$fffe,$0100,$1000,$0182,$0800
planec:	dc.w $00e0,$0005,$00e2,$5000,$0108,4

	dc.w $0107,$fffe,$0182,$0900
	dc.w $0207,$fffe,$0182,$0a00
	dc.w $0307,$fffe,$0182,$0b00
	dc.w $0407,$fffe,$0182,$0c00
	dc.w $0507,$fffe,$0182,$0d00
	dc.w $0607,$fffe,$0182,$0e00
	dc.w $0707,$fffe,$0182,$0f00
	dc.w $0807,$fffe,$0182,$0e00
	dc.w $0907,$fffe,$0182,$0d00
	dc.w $0a07,$fffe,$0182,$0c00
	dc.w $0b07,$fffe,$0182,$0b00
	dc.w $0c07,$fffe,$0182,$0a00
	dc.w $0d07,$fffe,$0182,$0900
	dc.w $0e07,$fffe,$0182,$0800

	dc.w $1001,$fffe,$0108,-96

	dc.w $0182,$0400

	dc.w $1101,$fffe,$0182,$0500
	dc.w $1201,$fffe,$0182,$0500
	dc.w $1301,$fffe,$0182,$0600
	dc.w $1401,$fffe,$0182,$0600
	dc.w $1501,$fffe,$0182,$0700
	dc.w $1601,$fffe,$0182,$0700
	dc.w $1701,$fffe,$0182,$0800
	dc.w $1801,$fffe,$0182,$0700
	dc.w $1901,$fffe,$0182,$0700
	dc.w $1a01,$fffe,$0182,$0600
	dc.w $1b01,$fffe,$0182,$0600
	dc.w $1c01,$fffe,$0182,$0500
	dc.w $1d01,$fffe,$0182,$0500
	dc.w $1e01,$fffe,$0182,$0400

	dc.w $2001,$fffe,$0100,$0000
	dc.w $ffff,$fffe

copptr: dc.l	0
gfxbase:dc.l	0
stringpointer: 	dc.l string
colpointer:	dc.w	0

string: 
 dc.b	" dTHE TIMECIRCLEl a     f            "
 dc.b	"cBRINGS YOU A SMALL INTRO SOURCE CODED BY "
 DC.B	" d   EXODUS  l a    j"
 dc.b	"              dHAVE FUN WITH IT::::::::::::"
 DC.B	"e::::::::::::::::f::::::::::::::::::::::::::::::"
 DC.B	"                           "
endstring:dc.b	32

gfxname:dc.b	"graphics.library",0
even
sinepointer:	dc.w	0
plane:	blk.b	900,0
	blk.b	512,0
plane2:	blk.b	9216,0
	blk.b	1024,0
plane3:	blk.b	9216,0
	blk.b	512,0

sine:
DC.B 64,64,65,65,66,66,66,67,67,68,68,68,69,69,69,70
DC.B 70,71,71,71,72,72,73,73,73,74,74,75,75,75,76,76
DC.B 76,77,77,78,78,78,79,79,80,80,80,81,81,81,82,82
DC.B 83,83,83,84,84,84,85,85,86,86,86,87,87,87,88,88
DC.B 88,89,89,90,90,90,91,91,91,92,92,92,93,93,93,94
DC.B 94,95,95,95,96,96,96,97,97,97,98,98,98,99,99,99
DC.B 100,100,100,101,101,101,101,102,102,102,103,103,103,104,104,104
DC.B 105,105,105,106,106,106,106,107,107,107,108,108,108,108,109,109
DC.B 109,110,110,110,110,111,111,111,111,112,112,112,112,113,113,113
DC.B 113,114,114,114,114,115,115,115,115,116,116,116,116,117,117,117
DC.B 117,117,118,118,118,118,118,119,119,119,119,119,120,120,120,120
DC.B 120,121,121,121,121,121,122,122,122,122,122,122,123,123,123,123
DC.B 123,123,123,124,124,124,124,124,124,124,125,125,125,125,125,125
DC.B 125,125,125,126,126,126,126,126,126,126,126,126,126,127,127,127
DC.B 127,127,127,127,127,127,127,127,127,127,127,127,128,128,128,128
DC.B 128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128
DC.B 128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128
DC.B 128,128,128,128,128,127,127,127,127,127,127,127,127,127,127,127
DC.B 127,127,127,127,126,126,126,126,126,126,126,126,126,126,125,125
DC.B 125,125,125,125,125,125,125,124,124,124,124,124,124,124,123,123
DC.B 123,123,123,123,123,122,122,122,122,122,122,121,121,121,121,121
DC.B 120,120,120,120,120,119,119,119,119,119,118,118,118,118,118,117
DC.B 117,117,117,117,116,116,116,116,115,115,115,115,114,114,114,114
DC.B 113,113,113,113,112,112,112,112,111,111,111,111,110,110,110,110
DC.B 109,109,109,108,108,108,108,107,107,107,106,106,106,106,105,105
DC.B 105,104,104,104,103,103,103,102,102,102,101,101,101,101,100,100
DC.B 100,99,99,99,98,98,98,97,97,97,96,96,96,95,95,95
DC.B 94,94,93,93,93,92,92,92,91,91,91,90,90,90,89,89
DC.B 88,88,88,87,87,87,86,86,86,85,85,84,84,84,83,83
DC.B 83,82,82,81,81,81,80,80,80,79,79,78,78,78,77,77
DC.B 76,76,76,75,75,75,74,74,73,73,73,72,72,71,71,71
DC.B 70,70,69,69,69,68,68,68,67,67,66,66,66,65,65,64
DC.B 64,64,63,63,62,62,62,61,61,60,60,60,59,59,59,58
DC.B 58,57,57,57,56,56,55,55,55,54,54,53,53,53,52,52
DC.B 52,51,51,50,50,50,49,49,48,48,48,47,47,47,46,46
DC.B 45,45,45,44,44,44,43,43,42,42,42,41,41,41,40,40
DC.B 40,39,39,38,38,38,37,37,37,36,36,36,35,35,35,34
DC.B 34,33,33,33,32,32,32,31,31,31,30,30,30,29,29,29
DC.B 28,28,28,27,27,27,27,26,26,26,25,25,25,24,24,24
DC.B 23,23,23,22,22,22,22,21,21,21,20,20,20,20,19,19
DC.B 19,18,18,18,18,17,17,17,17,16,16,16,16,15,15,15
DC.B 15,14,14,14,14,13,13,13,13,12,12,12,12,11,11,11
DC.B 11,11,10,10,10,10,10,9,9,9,9,9,8,8,8,8
DC.B 8,7,7,7,7,7,6,6,6,6,6,6,5,5,5,5
DC.B 5,5,5,4,4,4,4,4,4,4,3,3,3,3,3,3
DC.B 3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1
DC.B 1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1
DC.B 1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3
DC.B 3,3,3,3,3,3,3,4,4,4,4,4,4,4,5,5
DC.B 5,5,5,5,5,6,6,6,6,6,6,7,7,7,7,7
DC.B 8,8,8,8,8,9,9,9,9,9,10,10,10,10,10,11
DC.B 11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14
DC.B 15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18
DC.B 19,19,19,20,20,20,20,21,21,21,22,22,22,22,23,23
DC.B 23,24,24,24,25,25,25,26,26,26,27,27,27,27,28,28
DC.B 28,29,29,29,30,30,30,31,31,31,32,32,32,33,33,33
DC.B 34,34,35,35,35,36,36,36,37,37,37,38,38,38,39,39
DC.B 40,40,40,41,41,41,42,42,42,43,43,44,44,44,45,45
DC.B 45,46,46,47,47,47,48,48,48,49,49,50,50,50,51,51
DC.B 52,52,52,53,53,53,54,54,55,55,55,56,56,57,57,57
DC.B 58,58,59,59,59,60,60,60,61,61,62,62,62,63,63,64

font:
DC.B 255,255,254,0,0,15,240,0,255,255,254,0,255,255,254,0
DC.B 255,0,0,0,255,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,0,31,240,0
DC.B 255,255,254,0,255,255,254,0,255,0,0,0,255,255,254,0
DC.B 255,255,254,0,255,255,252,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,0,63,240,0,255,255,254,0,255,255,254,0
DC.B 255,0,0,0,255,255,254,0,255,255,254,0,255,255,248,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,0,127,240,0
DC.B 255,255,254,0,255,255,254,0,255,0,0,0,255,255,254,0
DC.B 255,255,254,0,255,255,240,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,0,255,240,0,255,255,254,0,255,255,254,0
DC.B 255,0,0,0,255,255,254,0,255,255,254,0,255,255,224,0
DC.B 255,255,254,0,255,255,254,0,255,3,254,0,1,255,240,0
DC.B 0,1,254,0,0,0,254,0,255,255,254,0,255,0,0,0
DC.B 255,0,0,0,0,63,192,0,255,3,254,0,255,3,254,0
DC.B 255,3,254,0,3,255,240,0,255,255,254,0,0,255,254,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,0,127,128,0
DC.B 255,255,254,0,255,255,254,0,255,3,254,0,0,15,240,0
DC.B 255,255,254,0,0,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,0,255,0,0,255,255,254,0,255,255,254,0
DC.B 255,3,254,0,0,15,240,0,255,255,254,0,0,255,254,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,1,254,0,0
DC.B 255,255,254,0,255,255,254,0,255,3,254,0,0,15,240,0
DC.B 255,255,254,0,0,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,3,252,0,0,255,255,254,0,255,255,254,0
DC.B 255,3,254,0,0,15,240,0,255,0,0,0,0,0,254,0
DC.B 1,255,0,0,0,3,254,0,255,3,254,0,7,248,0,0
DC.B 255,3,254,0,0,3,254,0,255,255,254,0,0,15,240,0
DC.B 255,255,254,0,255,255,254,0,1,255,0,0,255,255,254,0
DC.B 255,255,254,0,15,240,0,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,0,15,240,0,255,255,254,0,255,255,254,0
DC.B 1,255,0,0,255,255,254,0,255,255,254,0,31,224,0,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,0,15,240,0
DC.B 255,255,254,0,255,255,254,0,1,255,0,0,255,255,254,0
DC.B 255,255,254,0,63,192,0,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,0,15,240,0,255,255,254,0,255,255,254,0
DC.B 1,255,0,0,255,255,254,0,255,255,254,0,127,128,0,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,0,15,240,0
DC.B 255,255,254,0,255,255,254,0,1,255,0,0,255,255,254,0
DC.B 255,255,254,0,255,0,0,0,255,255,254,0,255,255,254,0
DC.B 0,0,0,0,0,0,0,0,31,255,240,0,0,0,0,0
DC.B 31,255,240,0,0,126,0,0,0,0,0,0,0,127,0,0
DC.B 255,255,240,0,31,255,240,0,0,0,0,0,0,0,0,0
DC.B 31,255,240,0,0,0,0,0,31,255,240,0,0,126,0,0
DC.B 0,0,0,0,0,127,0,0,255,255,252,0,127,255,252,0
DC.B 0,0,0,0,0,0,0,0,31,255,240,0,0,0,0,0
DC.B 31,255,240,0,0,126,0,0,0,0,0,0,0,63,128,0
DC.B 255,255,254,0,255,255,254,0,0,0,0,0,0,0,0,0
DC.B 30,0,0,0,0,0,0,0,0,0,240,0,0,14,0,0
DC.B 0,0,0,0,0,63,128,0,255,255,254,0,255,255,254,0
DC.B 0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0
DC.B 0,0,240,0,0,6,0,0,0,0,0,0,0,31,192,0
DC.B 255,255,254,0,255,255,254,0,0,0,0,0,0,0,0,0
DC.B 30,0,0,0,0,0,0,0,0,0,240,0,0,0,0,0
DC.B 0,0,0,0,0,31,192,0,0,0,254,0,255,255,254,0
DC.B 0,0,0,0,0,0,0,0,30,0,0,0,255,255,254,0
DC.B 0,0,240,0,0,0,0,0,0,0,0,0,15,239,224,0
DC.B 255,255,254,0,255,0,254,0,0,0,0,0,0,0,0,0
DC.B 30,0,0,0,255,255,254,0,0,0,240,0,0,0,0,0
DC.B 0,0,0,0,15,239,224,0,255,255,252,0,255,0,0,0
DC.B 0,0,0,0,0,0,0,0,30,0,0,0,255,255,254,0
DC.B 0,0,240,0,0,0,0,0,0,0,0,0,31,199,240,0
DC.B 255,255,252,0,255,0,0,0,0,0,0,0,0,0,0,0
DC.B 30,0,0,0,255,255,254,0,0,0,240,0,0,0,0,0
DC.B 0,0,0,0,31,199,240,0,255,255,254,0,255,0,254,0
DC.B 0,0,0,0,0,0,0,0,30,0,0,0,255,255,254,0
DC.B 0,0,240,0,0,0,0,0,0,0,0,0,63,255,248,0
DC.B 254,0,254,0,255,255,254,0,0,0,0,0,0,252,0,0
DC.B 30,0,0,0,0,0,0,0,0,0,240,0,0,0,0,0
DC.B 0,0,0,0,63,255,248,0,255,255,254,0,255,255,254,0
DC.B 0,252,0,0,0,252,0,0,30,0,0,0,0,0,0,0
DC.B 0,0,240,0,0,0,0,0,0,0,0,0,127,255,252,0
DC.B 255,255,254,0,255,255,254,0,0,252,0,0,0,252,0,0
DC.B 31,255,240,0,0,0,0,0,31,255,240,0,0,0,0,0
DC.B 0,0,0,0,127,255,252,0,255,255,254,0,255,255,254,0
DC.B 0,252,0,0,0,28,0,0,31,255,240,0,0,0,0,0
DC.B 31,255,240,0,0,0,0,0,0,0,0,0,255,255,254,0
DC.B 255,255,252,0,127,255,252,0,0,252,0,0,0,252,0,0
DC.B 31,255,240,0,0,0,0,0,31,255,240,0,0,0,0,0
DC.B 0,0,0,0,255,255,254,0,255,255,240,0,31,255,240,0
DC.B 255,255,240,0,255,255,254,0,255,255,254,0,31,255,252,0
DC.B 255,1,254,0,255,255,254,0,255,255,254,0,255,135,254,0
DC.B 255,128,0,0,255,255,240,0,255,255,252,0,255,255,254,0
DC.B 255,255,254,0,127,255,254,0,255,1,254,0,255,255,254,0
DC.B 255,255,254,0,255,143,252,0,255,128,0,0,255,255,252,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,1,254,0,255,255,254,0,255,255,254,0,255,159,248,0
DC.B 255,128,0,0,255,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,255,255,254,0,255,1,254,0,255,255,254,0
DC.B 255,255,254,0,255,191,240,0,255,128,0,0,255,255,254,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,1,254,0,255,255,254,0,255,255,254,0,255,255,224,0
DC.B 255,128,0,0,255,255,254,0,255,255,254,0,0,0,0,0
DC.B 0,0,0,0,254,0,0,0,255,253,254,0,0,0,0,0
DC.B 0,0,254,0,255,255,192,0,255,128,0,0,255,255,254,0
DC.B 0,0,254,0,255,255,254,0,255,255,192,0,254,255,254,0
DC.B 255,253,254,0,1,255,0,0,0,0,254,0,255,255,128,0
DC.B 255,128,0,0,255,255,254,0,255,0,254,0,255,255,254,0
DC.B 255,255,192,0,254,255,254,0,255,253,254,0,1,255,0,0
DC.B 127,128,254,0,255,255,0,0,255,128,0,0,254,254,254,0
DC.B 255,0,254,0,255,255,254,0,255,255,192,0,254,255,254,0
DC.B 255,253,254,0,1,255,0,0,255,128,254,0,255,255,0,0
DC.B 255,128,0,0,254,254,254,0,255,0,254,0,255,255,254,0
DC.B 255,255,192,0,254,255,254,0,255,253,254,0,1,255,0,0
DC.B 255,128,254,0,255,255,128,0,255,128,0,0,254,254,254,0
DC.B 255,255,254,0,255,128,0,0,255,255,192,0,254,0,254,0
DC.B 255,253,254,0,1,255,0,0,255,128,254,0,255,255,192,0
DC.B 255,255,252,0,254,254,254,0,255,255,254,0,255,255,254,0
DC.B 255,192,0,0,255,255,254,0,255,253,254,0,255,255,254,0
DC.B 255,255,254,0,255,255,224,0,255,255,254,0,254,254,254,0
DC.B 255,255,254,0,255,255,254,0,255,192,0,0,255,255,254,0
DC.B 255,1,254,0,255,255,254,0,255,255,254,0,255,191,240,0
DC.B 255,255,254,0,254,254,254,0,255,255,254,0,255,255,254,0
DC.B 255,192,0,0,255,255,254,0,255,1,254,0,255,255,254,0
DC.B 255,255,254,0,255,159,248,0,255,255,254,0,254,254,254,0
DC.B 255,255,252,0,255,255,254,0,255,192,0,0,127,255,252,0
DC.B 255,1,254,0,255,255,254,0,127,255,254,0,255,143,252,0
DC.B 255,255,254,0,254,254,254,0,255,255,240,0,255,255,254,0
DC.B 255,192,0,0,31,255,240,0,255,1,254,0,255,255,254,0
DC.B 31,255,254,0,255,135,254,0,255,255,254,0,254,254,254,0
DC.B 255,0,254,0,31,255,240,0,255,255,240,0,31,255,240,0
DC.B 255,255,240,0,31,255,252,0,255,255,254,0,255,1,254,0
DC.B 254,0,254,0,254,254,254,0,255,128,254,0,127,255,252,0
DC.B 255,255,252,0,127,255,252,0,255,255,252,0,127,255,254,0
DC.B 255,255,254,0,255,1,254,0,254,0,254,0,254,254,254,0
DC.B 255,192,254,0,255,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,255,1,254,0
DC.B 127,1,252,0,254,254,254,0,255,224,254,0,255,255,254,0
DC.B 255,255,254,0,255,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,255,1,254,0,127,1,252,0,254,254,254,0
DC.B 255,240,254,0,255,255,254,0,255,255,254,0,255,255,254,0
DC.B 255,255,254,0,255,255,252,0,255,255,254,0,255,1,254,0
DC.B 63,131,248,0,254,254,254,0,255,248,254,0,255,255,254,0
DC.B 0,0,254,0,255,255,254,0,0,0,254,0,255,128,0,0
DC.B 255,255,254,0,255,1,254,0,63,131,248,0,254,254,254,0
DC.B 255,252,254,0,255,1,254,0,255,255,254,0,255,0,126,0
DC.B 255,255,254,0,255,255,240,0,0,0,0,0,255,1,254,0
DC.B 31,199,240,0,254,254,254,0,255,254,254,0,255,1,254,0
DC.B 255,255,254,0,255,0,126,0,255,255,254,0,255,255,252,0
DC.B 1,254,0,0,255,1,254,0,31,199,240,0,254,254,254,0
DC.B 254,255,254,0,255,1,254,0,255,255,254,0,255,15,254,0
DC.B 255,255,252,0,127,255,254,0,1,254,0,0,255,1,254,0
DC.B 15,239,224,0,254,254,254,0,254,127,254,0,255,1,254,0
DC.B 255,255,252,0,255,15,254,0,255,255,240,0,31,255,254,0
DC.B 1,254,0,0,255,1,254,0,15,239,224,0,255,255,254,0
DC.B 254,63,254,0,255,255,254,0,255,255,240,0,255,255,254,0
DC.B 255,255,252,0,0,3,254,0,1,255,252,0,255,255,254,0
DC.B 7,255,192,0,255,255,254,0,254,31,254,0,255,255,254,0
DC.B 255,192,0,0,255,255,254,0,255,199,254,0,127,255,254,0
DC.B 1,255,252,0,255,255,254,0,7,255,192,0,255,255,254,0
DC.B 254,15,254,0,255,255,254,0,255,192,0,0,255,255,254,0
DC.B 255,195,254,0,255,255,254,0,1,255,252,0,255,255,254,0
DC.B 3,255,128,0,255,255,254,0,254,7,254,0,255,255,254,0
DC.B 255,192,0,0,255,255,254,0,255,195,254,0,255,255,254,0
DC.B 1,255,252,0,255,255,254,0,3,255,128,0,255,255,254,0
DC.B 254,3,254,0,127,255,252,0,255,192,0,0,127,255,254,0
DC.B 255,195,254,0,255,255,252,0,0,255,252,0,127,255,252,0
DC.B 1,255,0,0,255,255,252,0,254,1,254,0,31,255,240,0
DC.B 255,192,0,0,31,255,254,0,255,195,254,0,127,255,240,0
DC.B 0,63,252,0,31,255,240,0,1,255,0,0,255,255,240,0
DC.B 255,129,254,0,255,1,254,0,255,255,254,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,127,195,252,0,255,1,254,0
DC.B 255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 63,231,248,0,255,1,254,0,255,255,254,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,31,255,240,0,255,1,254,0
DC.B 255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 15,255,224,0,255,1,254,0,255,255,254,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,7,255,192,0,255,1,254,0
DC.B 255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 3,255,128,0,255,255,254,0,0,255,248,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,1,255,0,0,255,255,254,0
DC.B 3,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 1,255,0,0,255,255,254,0,15,255,128,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,3,255,128,0,127,255,252,0
DC.B 63,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 7,255,192,0,31,255,240,0,255,255,254,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,15,255,224,0,1,255,0,0
DC.B 255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 31,255,240,0,1,255,0,0,255,255,254,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,63,239,248,0,1,255,0,0
DC.B 255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 127,199,252,0,1,255,0,0,255,255,254,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,255,131,254,0,1,255,0,0
DC.B 255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

tcpic:
DC.B 15,255,255,255,255,255,255,240,255,255,63,255,255,255,255,255
DC.B 3,255,255,255,15,255,255,15,255,255,252,0,63,255,255,255
DC.B 255,0,0,15,255,255,255,240,15,255,255,255,255,255,255,240
DC.B 255,255,63,255,255,255,255,255,3,255,255,255,15,255,255,15
DC.B 255,255,252,0,63,255,255,255,255,0,0,15,255,255,255,240
DC.B 0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,0
DC.B 12,0,0,0,0,0,0,0,0,0,3,0,192,0,0,0
DC.B 0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,240
DC.B 255,255,255,255,255,255,255,255,15,255,255,255,15,255,255,15
DC.B 255,255,255,0,255,255,255,255,255,0,0,15,255,255,255,240
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 48,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,240
DC.B 255,255,255,255,255,255,255,255,63,255,255,255,15,255,255,15
DC.B 255,255,255,195,255,255,255,255,255,0,0,15,255,255,255,240
DC.B 3,255,255,255,252,63,255,192,63,252,15,252,63,255,255,252
DC.B 64,255,255,252,3,255,252,3,255,255,240,36,15,255,255,195
DC.B 252,0,0,3,255,255,255,192,12,0,0,0,3,192,0,48
DC.B 192,3,240,3,192,0,0,3,127,0,0,3,12,0,3,12
DC.B 0,0,15,231,240,0,0,60,3,0,0,12,0,0,0,48
DC.B 3,255,255,255,252,63,255,192,63,254,31,252,63,255,255,252
DC.B 131,255,255,252,3,255,252,3,255,255,252,24,63,255,255,195
DC.B 252,0,0,3,255,255,255,192,12,0,0,0,3,192,0,48
DC.B 192,1,224,3,192,0,0,3,252,0,0,3,12,0,3,12
DC.B 0,0,3,255,192,0,0,60,3,0,0,12,0,0,0,48
DC.B 3,255,255,255,252,63,255,192,63,255,63,252,63,255,255,252
DC.B 15,255,255,252,3,255,252,3,255,255,255,0,255,255,255,195
DC.B 252,0,0,3,255,255,255,192,12,0,0,0,3,192,0,48
DC.B 192,0,192,3,192,0,0,3,240,0,0,3,12,0,3,12
DC.B 0,0,0,255,0,0,0,60,3,0,0,12,0,0,0,48
DC.B 3,255,255,255,252,63,255,192,63,255,255,252,63,255,255,252
DC.B 31,255,255,252,3,255,252,3,255,255,255,129,255,255,255,195
DC.B 252,0,0,3,255,255,255,192,12,0,0,0,3,192,0,48
DC.B 192,0,0,3,192,0,0,3,224,0,0,3,12,0,3,12
DC.B 0,0,0,126,0,0,0,60,3,0,0,12,0,0,0,48
DC.B 3,255,255,255,252,63,255,192,63,255,255,252,63,255,255,252
DC.B 63,255,255,252,3,255,252,3,255,255,255,195,255,255,255,195
DC.B 252,0,0,3,255,255,255,192,15,255,255,255,255,255,255,240
DC.B 192,0,0,127,255,255,255,255,192,0,255,255,15,255,255,12
DC.B 3,252,0,60,0,15,255,252,3,0,0,15,255,255,255,240
DC.B 0,0,0,0,0,0,0,0,63,255,255,128,0,0,0,0
DC.B 63,255,0,0,0,0,0,3,252,3,255,195,255,240,0,3
DC.B 252,0,0,0,0,0,0,0,15,255,255,255,255,255,255,240
DC.B 192,0,0,255,255,255,255,255,192,3,255,255,15,255,255,12
DC.B 3,255,0,60,0,63,255,252,3,0,0,15,255,255,255,240
DC.B 0,0,0,0,0,0,0,0,63,255,255,0,0,0,0,0
DC.B 63,252,0,0,0,0,0,3,252,0,255,195,255,192,0,3
DC.B 252,0,0,0,0,0,0,0,15,255,255,255,255,255,255,240
DC.B 192,0,1,255,255,255,255,255,192,7,255,255,15,255,255,12
DC.B 3,255,128,60,0,127,255,252,3,0,0,15,255,255,255,240
DC.B 0,0,0,0,0,0,0,0,63,255,254,0,0,0,0,0
DC.B 63,248,0,0,0,0,0,3,252,0,127,195,255,128,0,3
DC.B 252,0,0,0,0,0,0,0,0,0,255,240,0,15,255,0
DC.B 192,0,3,255,255,240,0,0,192,15,192,0,0,255,240,12
DC.B 3,15,192,60,0,252,0,12,3,0,0,15,255,0,0,0
DC.B 0,0,63,192,0,3,252,0,63,255,255,252,63,192,0,0
DC.B 63,240,0,0,0,63,192,3,252,12,63,195,255,0,0,3
DC.B 252,0,0,3,252,0,0,0,0,0,192,48,0,12,3,0
DC.B 192,32,4,3,192,48,0,0,192,31,0,0,0,192,48,12
DC.B 3,15,192,60,1,240,0,12,3,0,0,12,3,0,0,0
DC.B 0,0,63,192,0,3,252,0,63,223,251,252,63,207,255,240
DC.B 63,224,0,0,0,63,192,3,252,240,127,195,254,0,0,3
DC.B 252,0,0,3,252,255,255,0,0,0,192,48,0,12,3,0
DC.B 192,48,12,3,192,63,255,240,192,30,0,0,0,192,48,12
DC.B 3,255,128,60,1,224,0,12,3,0,0,12,3,255,255,0
DC.B 0,0,63,192,0,3,252,0,63,207,243,252,63,192,0,0
DC.B 63,224,0,0,0,63,192,3,252,0,255,195,254,0,0,3
DC.B 252,0,0,3,252,0,0,0,0,0,192,48,0,12,3,0
DC.B 192,56,28,3,192,63,255,240,192,60,0,0,0,192,48,12
DC.B 3,255,0,60,3,192,0,12,3,0,0,12,3,255,255,0
DC.B 0,0,63,192,0,3,252,0,63,199,227,252,63,192,0,0
DC.B 63,192,0,0,0,63,192,3,252,3,255,195,252,0,0,3
DC.B 252,128,0,3,252,0,0,0,0,0,192,48,0,12,3,0
DC.B 192,60,60,3,192,63,255,240,192,56,0,0,0,192,48,12
DC.B 3,252,0,60,3,128,0,12,3,128,0,12,3,255,255,0
DC.B 0,0,63,192,0,3,252,0,63,195,195,252,63,195,255,192
DC.B 63,192,0,0,0,63,192,3,252,63,255,195,252,0,0,3
DC.B 252,0,0,3,252,63,252,0,0,0,192,48,0,12,3,0
DC.B 192,63,252,3,192,60,0,48,192,56,0,0,0,192,48,12
DC.B 3,192,0,124,3,128,0,12,3,128,0,12,3,192,3,0
DC.B 0,0,63,192,0,3,252,0,63,192,3,252,63,195,255,192
DC.B 63,196,0,0,0,63,192,3,252,63,255,131,252,64,0,3
DC.B 252,64,0,3,252,63,252,0,0,0,192,48,0,12,3,0
DC.B 192,63,252,3,192,60,0,48,192,60,0,0,0,192,48,12
DC.B 3,192,0,252,3,192,0,12,3,192,0,12,3,192,3,0
DC.B 0,0,63,192,0,3,252,0,63,192,3,252,63,195,255,192
DC.B 63,226,0,0,0,63,192,3,252,63,255,3,254,32,0,3
DC.B 254,32,0,3,252,63,252,0,0,0,192,48,0,12,3,0
DC.B 192,63,252,3,192,60,0,48,192,30,0,0,0,192,48,12
DC.B 3,192,0,252,1,224,0,12,1,224,0,12,3,192,3,0
DC.B 0,0,63,192,0,3,252,0,63,192,3,252,63,195,255,192
DC.B 63,225,0,0,0,63,192,3,252,63,255,131,254,16,0,3
DC.B 254,16,0,3,252,63,252,0,0,0,192,48,0,12,3,0
DC.B 192,48,252,3,192,60,0,48,192,31,0,0,0,192,48,12
DC.B 3,192,0,124,1,240,0,12,1,240,0,12,3,192,3,0
DC.B 0,0,63,192,0,3,252,0,63,192,63,252,63,195,255,192
DC.B 63,240,192,0,0,63,192,3,252,63,255,195,255,12,0,3
DC.B 255,12,0,3,252,63,252,0,0,0,192,48,0,12,3,0
DC.B 192,48,192,3,192,63,255,240,192,15,192,0,0,192,48,12
DC.B 3,252,0,60,0,252,0,12,0,252,0,12,3,255,255,0
DC.B 0,255,63,207,255,243,252,255,63,192,63,252,63,192,0,15
DC.B 63,248,63,255,255,63,207,243,252,3,255,195,255,131,255,243
DC.B 255,131,255,243,252,0,0,240,0,255,192,63,255,252,3,255
DC.B 192,48,192,3,192,63,255,255,192,7,255,255,255,192,63,252
DC.B 3,255,0,60,0,127,255,252,0,127,255,252,3,255,255,240
DC.B 0,0,63,192,0,3,252,0,63,192,63,252,63,192,0,0
DC.B 63,252,0,0,0,63,192,3,252,0,255,195,255,192,0,3
DC.B 255,192,0,3,252,0,0,0,0,255,192,63,255,252,3,255
DC.B 192,48,192,3,192,63,255,255,192,3,255,255,255,192,63,252
DC.B 3,255,128,60,0,63,255,252,0,63,255,252,3,255,255,240
DC.B 0,0,63,192,0,3,252,0,63,192,63,252,63,192,0,0
DC.B 63,255,0,0,0,63,192,3,252,0,127,195,255,240,0,3
DC.B 255,240,0,3,252,0,0,0,0,255,192,63,255,252,3,255
DC.B 192,48,192,3,192,63,255,255,192,0,255,255,255,192,63,252
DC.B 3,255,128,60,0,15,255,252,0,15,255,252,3,255,255,240
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,127,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,51,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,49,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,49,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,48,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,48,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,48,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,48,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,192,0,0,3,192,0,0,3,192,0,0,60
DC.B 0,48,192,60,0,0,0,60,0,0,0,60,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,63,255,255,252
DC.B 63,255,255,252,63,255,255,195,255,192,63,195,255,255,255,195
DC.B 255,255,255,195,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,224,0,0,3,224,0,0,3,192,0,0,60
DC.B 0,48,192,62,0,0,0,62,0,0,0,62,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,31,255,255,252
DC.B 31,255,255,252,63,255,255,195,255,192,63,193,255,255,255,193
DC.B 255,255,255,193,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,240,0,0,3,240,0,0,3,192,0,0,60
DC.B 0,48,192,63,0,0,0,63,0,0,0,63,0,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,15,255,255,252
DC.B 15,255,255,252,63,255,255,195,255,192,63,192,255,255,255,192
DC.B 255,255,255,192,255,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,252,0,0,3,252,0,0,3,192,0,0,60
DC.B 0,48,192,63,192,0,0,63,192,0,0,63,192,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,3,255,255,252
DC.B 3,255,255,252,63,255,255,195,255,192,63,192,63,255,255,192
DC.B 63,255,255,192,63,255,255,192,0,192,0,0,60,0,0,3
DC.B 192,48,192,3,127,0,0,3,127,0,0,3,192,0,0,60
DC.B 0,48,192,55,240,0,0,55,240,0,0,55,240,0,0,48
DC.B 0,63,255,255,195,255,255,252,63,192,63,252,0,255,255,252
DC.B 0,255,255,252,63,255,255,195,255,192,63,192,15,255,255,192
DC.B 15,255,255,192,15,255,255,192,0,255,255,255,255,255,255,255
DC.B 255,240,255,255,63,255,255,255,63,255,255,255,255,255,255,255
DC.B 255,240,255,243,255,255,255,243,255,255,255,243,255,255,255,240
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255
DC.B 255,240,255,255,15,255,255,255,15,255,255,255,255,255,255,255
DC.B 255,240,255,240,255,255,255,240,255,255,255,240,255,255,255,240
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
DC.B 0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255
DC.B 255,240,255,255,3,255,255,255,3,255,255,255,255,255,255,255
DC.B 255,240,255,240,63,255,255,240,63,255,255,240,63,255,255,240
DC.B 
end:
