1;Written by Iain McCurdy, 2008
2
3;Modified for QuteCsound by René, March 2011
4;Tested on Ubuntu 10.04 with csound-float 5.13.0 and QuteCsound svn rev 817
5
6;Notes on modifications from original csd:
7;	used latched value type button and removed macro WRITE_VAL to replace FLbutton
8
9
10;my flags on Ubuntu: -odac -b1024 -B2048 -+rtaudio=alsa -+rtmidi=null -m0
11<CsoundSynthesizer>
12<CsOptions>
13
14</CsOptions>
15<CsInstruments>
16sr		= 44100	;SAMPLE RATE
17ksmps	= 16		;NUMBER OF AUDIO SAMPLES IN EACH CONTROL CYCLE
18nchnls	= 2		;NUMBER OF CHANNELS (2=STEREO)
190dbfs	= 1		;MAXIMUM AMPLITUDE REGARDLESS OF BIT DEPTH
20
21
22;FUNCTION TABLE FOR STORAGE OF SEQUENCE DATA FOR SOUND 1
23gi1		ftgen	0, 0, 256, -2,	0,	0.25,	.001,	0,\
24							0,	0.5,	.001,	0,\
25							0,	0.75,	.001,	0,\
26							0,	1,	.001,	0,\
27							0,	1.25,	.001,	0,\
28							0,	1.5,	.001,	0,\
29							0,	1.75,	.001,	0,\
30							0,	2,	.001,	0,\
31							0,	2.25,	.001,	0,\
32							0,	2.5,	.001,	0,\
33							0,	2.75,	.001,	0,\
34							0,	3,	.001,	0,\
35							0,	3.25,	.001,	0,\
36							0,	3.5,	.001,	0,\
37							0,	3.75,	.001,	0,\
38							0,	4,	.001,	0,\
39							0,	4.25,	.001,	0,\
40							0,	4.5,	.001,	0,\
41							0,	4.75,	.001,	0,\
42							0,	5,	.001,	0,\
43							0,	5.25,	.001,	0,\
44							0,	5.5,	.001,	0,\
45							0,	5.75,	.001,	0,\
46							0,	6,	.001,	0,\
47							0,	6.25,	.001,	0,\
48							0,	6.5,	.001,	0,\
49							0,	6.75,	.001,	0,\
50							0,	7,	.001,	0,\
51							0,	7.25,	.001,	0,\
52							0,	7.5,	.001,	0,\
53							0,	7.75,	.001,	0,\
54							0,	8,	.001,	0,\
55							-1,	8,	-1,	-1
56
57gi2		ftgen	0, 0, 256, -2, 0		;EMPTY TABLES INITIALLY. CONTENTS WILL BE COPIED FROM TABLE gi1
58gi3		ftgen	0, 0, 256, -2, 0		;EMPTY TABLES INITIALLY. CONTENTS WILL BE COPIED FROM TABLE gi1
59gi4		ftgen	0, 0, 256, -2, 0		;EMPTY TABLES INITIALLY. CONTENTS WILL BE COPIED FROM TABLE gi1
60gi5		ftgen	0, 0, 256, -2, 0		;EMPTY TABLES INITIALLY. CONTENTS WILL BE COPIED FROM TABLE gi1
61gi6		ftgen	0, 0, 256, -2, 0		;EMPTY TABLES INITIALLY. CONTENTS WILL BE COPIED FROM TABLE gi1
62
63		zakinit	8, 8					;INITIALISE ZAK SPACE (8 A-RATE, 8 K-RATE)
64
65giRvbSndChn	=	1					;ZAK CHANNEL NUMBER USED FOR REVERB SEND
66giDlySndChn	=	3					;ZAK CHANNEL NUMBER USED FOR REVERB SEND
67
68		seed		0
69
70
71instr	200	;GUI
72	ktrig	metro	10
73	if (ktrig == 1)	then
74
75#define	ROW(COUNT)
76		#
77		;TABLES UPDATE
78		gk$COUNT_01	invalue	"b$COUNT_01"		;BUTTON VALUE
79		kTrig$COUNT_01	changed	gk$COUNT_01
80		if kTrig$COUNT_01 == 1 then
81			tablew	gk$COUNT_01, ((1-1)*4)+3, gi$COUNT
82		endif
83
84		gk$COUNT_02	invalue	"b$COUNT_02"		;BUTTON VALUE
85		kTrig$COUNT_02	changed	gk$COUNT_02
86		if kTrig$COUNT_02 == 1 then
87			tablew	gk$COUNT_02, ((2-1)*4)+3, gi$COUNT
88		endif
89
90		gk$COUNT_03	invalue	"b$COUNT_03"		;BUTTON VALUE
91		kTrig$COUNT_03	changed	gk$COUNT_03
92		if kTrig$COUNT_03 == 1 then
93			tablew	gk$COUNT_03, ((3-1)*4)+3, gi$COUNT
94		endif
95
96		gk$COUNT_04	invalue	"b$COUNT_04"		;BUTTON VALUE
97		kTrig$COUNT_04	changed	gk$COUNT_04
98		if kTrig$COUNT_04 == 1 then
99			tablew	gk$COUNT_04, ((4-1)*4)+3, gi$COUNT
100		endif
101
102		gk$COUNT_05	invalue	"b$COUNT_05"		;BUTTON VALUE
103		kTrig$COUNT_05	changed	gk$COUNT_05
104		if kTrig$COUNT_05 == 1 then
105			tablew	gk$COUNT_05, ((5-1)*4)+3, gi$COUNT
106		endif
107
108		gk$COUNT_06	invalue	"b$COUNT_06"		;BUTTON VALUE
109		kTrig$COUNT_06	changed	gk$COUNT_06
110		if kTrig$COUNT_06 == 1 then
111			tablew	gk$COUNT_06, ((6-1)*4)+3, gi$COUNT
112		endif
113
114		gk$COUNT_07	invalue	"b$COUNT_07"		;BUTTON VALUE
115		kTrig$COUNT_07	changed	gk$COUNT_07
116		if kTrig$COUNT_07 == 1 then
117			tablew	gk$COUNT_07, ((7-1)*4)+3, gi$COUNT
118		endif
119
120		gk$COUNT_08	invalue	"b$COUNT_08"		;BUTTON VALUE
121		kTrig$COUNT_08	changed	gk$COUNT_08
122		if kTrig$COUNT_08 == 1 then
123			tablew	gk$COUNT_08, ((8-1)*4)+3, gi$COUNT
124		endif
125
126		gk$COUNT_09	invalue	"b$COUNT_09"		;BUTTON VALUE
127		kTrig$COUNT_09	changed	gk$COUNT_09
128		if kTrig$COUNT_09 == 1 then
129			tablew	gk$COUNT_09, ((9-1)*4)+3, gi$COUNT
130		endif
131
132		gk$COUNT_10	invalue	"b$COUNT_10"		;BUTTON VALUE
133		kTrig$COUNT_10	changed	gk$COUNT_10
134		if kTrig$COUNT_10 == 1 then
135			tablew	gk$COUNT_10, ((10-1)*4)+3, gi$COUNT
136		endif
137
138		gk$COUNT_11	invalue	"b$COUNT_11"		;BUTTON VALUE
139		kTrig$COUNT_11	changed	gk$COUNT_11
140		if kTrig$COUNT_11 == 1 then
141			tablew	gk$COUNT_11, ((11-1)*4)+3, gi$COUNT
142		endif
143
144		gk$COUNT_12	invalue	"b$COUNT_12"		;BUTTON VALUE
145		kTrig$COUNT_12	changed	gk$COUNT_12
146		if kTrig$COUNT_12 == 1 then
147			tablew	gk$COUNT_12, ((12-1)*4)+3, gi$COUNT
148		endif
149
150		gk$COUNT_13	invalue	"b$COUNT_13"		;BUTTON VALUE
151		kTrig$COUNT_13	changed	gk$COUNT_13
152		if kTrig$COUNT_13 == 1 then
153			tablew	gk$COUNT_13, ((13-1)*4)+3, gi$COUNT
154		endif
155
156		gk$COUNT_14	invalue	"b$COUNT_14"		;BUTTON VALUE
157		kTrig$COUNT_14	changed	gk$COUNT_14
158		if kTrig$COUNT_14 == 1 then
159			tablew	gk$COUNT_14, ((14-1)*4)+3, gi$COUNT
160		endif
161
162		gk$COUNT_15	invalue	"b$COUNT_15"		;BUTTON VALUE
163		kTrig$COUNT_15	changed	gk$COUNT_15
164		if kTrig$COUNT_15 == 1 then
165			tablew	gk$COUNT_15, ((15-1)*4)+3, gi$COUNT
166		endif
167
168		gk$COUNT_16	invalue	"b$COUNT_16"		;BUTTON VALUE
169		kTrig$COUNT_16	changed	gk$COUNT_16
170		if kTrig$COUNT_16 == 1 then
171			tablew	gk$COUNT_16, ((16-1)*4)+3, gi$COUNT
172		endif
173
174		gk$COUNT_17	invalue	"b$COUNT_17"		;BUTTON VALUE
175		kTrig$COUNT_17	changed	gk$COUNT_17
176		if kTrig$COUNT_17 == 1 then
177			tablew	gk$COUNT_17, ((17-1)*4)+3, gi$COUNT
178		endif
179
180		gk$COUNT_18	invalue	"b$COUNT_18"		;BUTTON VALUE
181		kTrig$COUNT_18	changed	gk$COUNT_18
182		if kTrig$COUNT_18 == 1 then
183			tablew	gk$COUNT_18, ((18-1)*4)+3, gi$COUNT
184		endif
185
186		gk$COUNT_19	invalue	"b$COUNT_19"		;BUTTON VALUE
187		kTrig$COUNT_19	changed	gk$COUNT_19
188		if kTrig$COUNT_19 == 1 then
189			tablew	gk$COUNT_19, ((19-1)*4)+3, gi$COUNT
190		endif
191
192		gk$COUNT_20	invalue	"b$COUNT_20"		;BUTTON VALUE
193		kTrig$COUNT_20	changed	gk$COUNT_20
194		if kTrig$COUNT_20 == 1 then
195			tablew	gk$COUNT_20, ((20-1)*4)+3, gi$COUNT
196		endif
197
198		gk$COUNT_21	invalue	"b$COUNT_21"		;BUTTON VALUE
199		kTrig$COUNT_21	changed	gk$COUNT_21
200		if kTrig$COUNT_21 == 1 then
201			tablew	gk$COUNT_21, ((21-1)*4)+3, gi$COUNT
202		endif
203
204		gk$COUNT_22	invalue	"b$COUNT_22"		;BUTTON VALUE
205		kTrig$COUNT_22	changed	gk$COUNT_22
206		if kTrig$COUNT_22 == 1 then
207			tablew	gk$COUNT_22, ((22-1)*4)+3, gi$COUNT
208		endif
209
210		gk$COUNT_23	invalue	"b$COUNT_23"		;BUTTON VALUE
211		kTrig$COUNT_23	changed	gk$COUNT_23
212		if kTrig$COUNT_23 == 1 then
213			tablew	gk$COUNT_23, ((23-1)*4)+3, gi$COUNT
214		endif
215
216		gk$COUNT_24	invalue	"b$COUNT_24"		;BUTTON VALUE
217		kTrig$COUNT_24	changed	gk$COUNT_24
218		if kTrig$COUNT_24 == 1 then
219			tablew	gk$COUNT_24, ((24-1)*4)+3, gi$COUNT
220		endif
221
222		gk$COUNT_25	invalue	"b$COUNT_25"		;BUTTON VALUE
223		kTrig$COUNT_25	changed	gk$COUNT_25
224		if kTrig$COUNT_25 == 1 then
225			tablew	gk$COUNT_25, ((25-1)*4)+3, gi$COUNT
226		endif
227
228		gk$COUNT_26	invalue	"b$COUNT_26"		;BUTTON VALUE
229		kTrig$COUNT_26	changed	gk$COUNT_26
230		if kTrig$COUNT_26 == 1 then
231			tablew	gk$COUNT_26, ((26-1)*4)+3, gi$COUNT
232		endif
233
234		gk$COUNT_27	invalue	"b$COUNT_27"		;BUTTON VALUE
235		kTrig$COUNT_27	changed	gk$COUNT_27
236		if kTrig$COUNT_27 == 1 then
237			tablew	gk$COUNT_27, ((27-1)*4)+3, gi$COUNT
238		endif
239
240		gk$COUNT_28	invalue	"b$COUNT_28"		;BUTTON VALUE
241		kTrig$COUNT_28	changed	gk$COUNT_28
242		if kTrig$COUNT_28 == 1 then
243			tablew	gk$COUNT_28, ((28-1)*4)+3, gi$COUNT
244		endif
245
246		gk$COUNT_29	invalue	"b$COUNT_29"		;BUTTON VALUE
247		kTrig$COUNT_29	changed	gk$COUNT_29
248		if kTrig$COUNT_29 == 1 then
249			tablew	gk$COUNT_29, ((29-1)*4)+3, gi$COUNT
250		endif
251
252		gk$COUNT_30	invalue	"b$COUNT_30"		;BUTTON VALUE
253		kTrig$COUNT_30	changed	gk$COUNT_30
254		if kTrig$COUNT_30 == 1 then
255			tablew	gk$COUNT_30, ((30-1)*4)+3, gi$COUNT
256		endif
257
258		gk$COUNT_31	invalue	"b$COUNT_31"		;BUTTON VALUE
259		kTrig$COUNT_31	changed	gk$COUNT_31
260		if kTrig$COUNT_31 == 1 then
261			tablew	gk$COUNT_31, ((31-1)*4)+3, gi$COUNT
262		endif
263
264		gk$COUNT_32	invalue	"b$COUNT_32"		;BUTTON VALUE
265		kTrig$COUNT_32	changed	gk$COUNT_32
266		if kTrig$COUNT_32 == 1 then
267			tablew	gk$COUNT_32, ((32-1)*4)+3, gi$COUNT
268		endif
269
270		;SLIDERS
271		gk$COUNTGain	invalue	"Gain$COUNT"
272		gk$COUNTPch	invalue	"Transpose$COUNT"
273		gk$COUNTDly	invalue	"Delay$COUNT"
274		;COUNTERS
275		gkLen$COUNT	invalue	"Cycle$COUNT"
276		;CONTROLLERS
277		gkphs$COUNT	invalue	"Phase$COUNT"
278		#
279
280		$ROW(1)
281		$ROW(2)
282		$ROW(3)
283		$ROW(4)
284		$ROW(5)
285		$ROW(6)
286
287		;SLIDERS
288		gkRvbSnd		invalue	"RvbSend"
289		gkfblvl		invalue	"RvbTime"
290		gkfco		invalue	"RvbCutoff"
291		gkDlySnd		invalue	"DelSend"
292		gkDlyFB		invalue	"DelFB"
293		;COUNTERS
294		gkTempo		invalue	"Tempo"
295		gkDelTim1		invalue	"DelayL"
296		gkDelTim2		invalue	"DelayR"
297		;KNOBS
298		gkMasterGain	invalue	"Master"
299
300	endif
301endin
302
303instr	1	; NOTE TRIGGERING INSTRUMENT
304	kSwitch	changed	gkLen1, gkLen2, gkLen3, gkLen4, gkLen5, gkLen6 			;GENERATE A MOMENTARY '1' PULSE IN OUTPUT 'kSwitch' IF ANY OF THE SCANNED INPUT VARIABLES CHANGE. (OUTPUT 'kSwitch' IS NORMALLY ZERO)
305	if	kSwitch=1	then													;IF kSwitch=1, I.E. IF ANY OF THE ABOVE LISTED PARAMETERS HAVE CHANGED...
306		reinit	START												;...PERFORM AN I-RATE PASS BEGINNING FROM THE GIVEN LABEL
307	endif															;END OF CONDITIONAL BRANCHING
308	START:															;A LABEL
309	kTempoRatio	=	gkTempo/60
310
311	kp1			init	0
312	kp2			init	0
313	kp3			init	0
314	kp4			init	0
315
316#define	LOOP(COUNT)
317	#
318	kphs$COUNT    	phasor		(kTempoRatio)/gkLen$COUNT
319	gktimpnt$COUNT	=			kphs$COUNT * gkLen$COUNT
320	ktrig		timedseq		gktimpnt$COUNT,gi$COUNT, kp1, kp2,kp3, kp4
321
322	;			schedkwhen 	ktrigger, kmintim, kmaxnum, kinsnum,    kwhen,      kdur    p4    p5
323				schedkwhen	ktrig,       0,        0,     2,     gk$COUNTDly,   kp3,   kp4, $COUNT#
324
325	$LOOP(1)
326	$LOOP(2)
327	$LOOP(3)
328	$LOOP(4)
329	$LOOP(5)
330	$LOOP(6)
331	rireturn
332endin
333
334instr	2
335	if	p4=1	then
336		event_i	"i", p1+p5, 0, p3
337	endif
338endin
339
340#define	KALIMBA(I'COUNT)
341	#
342	instr	$I
343	p3	=	2.6		;DEFINE DURATION FOR THIS SOUND
344	ivel		random	0.2,1
345	asig 	barmodel	1, 1, i(gk$COUNTPch), 1, 0, 2.6, 0.5, 1000*ivel, 0.07		;KALIMBA SOUND CREATED USING barmodel OPCODE (SEE CSOUND MANUAL FOR MORE INFO.)
346	asigL	=		asig*i(gk$COUNTGain)*i(gkMasterGain)*2					;DEFINE LEFT CHANNEL AUDIO
347	asigR	=		asig*i(gk$COUNTGain)*i(gkMasterGain)*2					;DEFINE RIGHT CHANNEL AUDIO
348			outs		asigL, asigR 										;SEND AUDIO TO OUTPUTS
349
350			zawm		asigL*gkRvbSnd, giRvbSndChn
351			zawm		asigR*gkRvbSnd, giRvbSndChn+1
352			zawm		asigL*gkDlySnd, giDlySndChn
353			zawm		asigR*gkDlySnd, giDlySndChn+1
354	endin
355	#
356
357$KALIMBA(3'1)
358$KALIMBA(4'2)
359$KALIMBA(5'3)
360$KALIMBA(6'4)
361$KALIMBA(7'5)
362$KALIMBA(8'6)
363
364instr	100	;COPY TABLE 1 TO ALL OTHER TABLES AND SET RANDOM INITIAL VALUES FOR SOME VALUATORS (PERFORMED ONCE AT THE BEGINNING OF THE PERFORMANCE)
365		tableicopy	gi2, gi1
366		tableicopy	gi3, gi1
367		tableicopy	gi4, gi1
368		tableicopy	gi5, gi1
369		tableicopy	gi6, gi1
370		event_i		"i", 102, 0, 0.001									;RANDOMISE SLIDERS
371endin
372
373instr	102	;RANDOMISE SLIDERS
374#define	RANDOMIZE_SLIDERS(COUNT)
375	#
376	iPch$COUNT	random	25,300										;DEFINE RANDOM INITIAL VALUES FOR 'TRANSPOSE' SLIDERS
377				outvalue	"Transpose$COUNT", iPch$COUNT						;SEND RANDOM 'TRANSPOSE' VALUES TO SLIDERS
378	iLen$COUNTDec	random	1,3											;DEFINE RANDOM INITIAL VALUES FOR 'RANGE' COUNTERS
379	iLen$COUNTInt	random	4,8                                     			;DEFINE RANDOM INITIAL VALUES FOR 'RANGE' COUNTERS
380	iLen$COUNT	=		(int(iLen$COUNTDec)*0.5)+int(iLen$COUNTInt)			;DEFINE RANDOM INITIAL VALUES FOR 'RANGE' COUNTERS
381				outvalue	"Cycle$COUNT", iLen$COUNT						;SEND RANDOM 'RANGE' VALUES TO COUNTERS
382	iDly$COUNT	random	0, 0.03										;DEFINE RANDOM INITIAL VALUES FOR 'TRANSPOSE' SLIDERS
383				outvalue	"Delay$COUNT", iDly$COUNT						;SEND RANDOM 'DELAY' VALUES TO SLIDERS
384	#
385
386$RANDOMIZE_SLIDERS(1)
387$RANDOMIZE_SLIDERS(2)
388$RANDOMIZE_SLIDERS(3)
389$RANDOMIZE_SLIDERS(4)
390$RANDOMIZE_SLIDERS(5)
391$RANDOMIZE_SLIDERS(6)
392endin
393
394instr	998	;DUAL TEMPO DELAY
395	aL		zar		giDlySndChn
396	aR		zar		giDlySndChn+1
397	kSwitch	changed	gkTempo, gkDelTim1, gkDelTim2 						;GENERATE A MOMENTARY '1' PULSE IN OUTPUT 'kSwitch' IF ANY OF THE SCANNED INPUT VARIABLES CHANGE. (OUTPUT 'kSwitch' IS NORMALLY ZERO)
398	if	kSwitch=1	then													;IF kSwitch=1, I.E. IF ANY OF THE ABOVE LISTED PARAMETERS HAVE CHANGED...
399		reinit		START											;...PERFORM AN I-RATE PASS BEGINNING FROM THE GIVEN LABEL
400	endif															;END OF CONDITIONAL BRANCHING
401	START:															;A LABEL
402	ideltimL	=		(15*i(gkDelTim1))/i(gkTempo)
403	ideltimR	=		(15*i(gkDelTim2))/i(gkTempo)
404	abuffer	delayr	ideltimL
405	atapL	deltap	ideltimL
406			delayw	aL + (atapL*gkDlyFB)
407	abuffer	delayr	ideltimR
408	atapR	deltap	ideltimR
409			delayw	aR + (atapR*gkDlyFB)
410			outs		atapL, atapR
411endin
412
413instr 	999	;REVERB
414	aL			zar		giRvbSndChn
415	aR			zar		giRvbSndChn+1
416				denorm	aL, aR										;DENORMALIZE BOTH CHANNELS OF AUDIO SIGNAL
417	arvbL, arvbR 	reverbsc 	aL, aR, gkfblvl, gkfco, sr  ;, i(gkpitchm), i(gkskip)
418				outs		arvbL, arvbR
419				zacl		1,8
420endin
421
422instr	1000	;UPDATE LOOP INDICATORS
423	ktrigger	metro	10												;IF PERFORMANCE ISSUES ARISE REDUCING THIS VALUE MIGHT HELP
424	if (ktrigger == 1)	then
425			outvalue	"Phase1", gktimpnt1
426			outvalue	"Phase2", gktimpnt2
427			outvalue	"Phase3", gktimpnt3
428			outvalue	"Phase4", gktimpnt4
429			outvalue	"Phase5",	gktimpnt5
430			outvalue	"Phase6", gktimpnt6
431	endif
432endin
433
434instr	1001	;INIT
435
436			;BUTTONS
437			outvalue	"b1_01"		, 1
438			outvalue	"b5_03"		, 1
439			outvalue	"b2_05"		, 1
440			outvalue	"b6_07"		, 1
441			outvalue	"b3_09"		, 1
442			outvalue	"b1_11"		, 1
443			outvalue	"b4_13"		, 1
444			outvalue	"b2_15"		, 1
445			outvalue	"b4_17"		, 1
446			outvalue	"b5_19"		, 1
447			outvalue	"b2_21"		, 1
448			outvalue	"b6_23"		, 1
449			outvalue	"b1_25"		, 1
450			outvalue	"b3_27"		, 1
451			outvalue	"b2_29"		, 1
452			outvalue	"b5_31"		, 1
453
454			outvalue	"RvbSend"		, 0.4
455			outvalue	"RvbTime"		, .7
456			outvalue	"RvbCutoff"	, 10000
457			outvalue	"DelSend"		, 0.2
458			outvalue	"DelFB"		, .4
459			outvalue	"DelayL"		, 12
460			outvalue	"DelayR"		, 20
461			outvalue	"Tempo"		, 220
462			outvalue	"Master"		, .8
463
464			outvalue	"Transpose1"	, 100
465			outvalue	"Transpose2"	, 100
466			outvalue	"Transpose3"	, 100
467			outvalue	"Transpose4"	, 100
468			outvalue	"Transpose5"	, 100
469			outvalue	"Transpose6"	, 100
470
471			outvalue	"Gain1"		, 1
472			outvalue	"Gain2"		, 1
473			outvalue	"Gain3"		, 1
474			outvalue	"Gain4"		, 1
475			outvalue	"Gain5"		, 1
476			outvalue	"Gain6"		, 1
477
478			outvalue	"Cycle1"		, 8
479			outvalue	"Cycle2"		, 8
480			outvalue	"Cycle3"		, 8
481			outvalue	"Cycle4"		, 8
482			outvalue	"Cycle5"		, 8
483			outvalue	"Cycle6"		, 8
484endin
485</CsInstruments>
486<CsScore>
487i 200 0 3600			;GUI
488i 100 0 0
489i 998 0 3600			;DELAY
490i 999 0 3600			;REVERB
491i 1000 0 3600			;LOOP INDICATORS
492i 1001 0.01 0.01		;INIT
493</CsScore>
494</CsoundSynthesizer>
495<bsbPanel>
496 <label>Widgets</label>
497 <objectName/>
498 <x>72</x>
499 <y>179</y>
500 <width>400</width>
501 <height>200</height>
502 <visible>true</visible>
503 <uuid/>
504 <bgcolor mode="background">
505  <r>241</r>
506  <g>226</g>
507  <b>185</b>
508 </bgcolor>
509 <bsbObject version="2" type="BSBLabel">
510  <objectName/>
511  <x>2</x>
512  <y>2</y>
513  <width>1100</width>
514  <height>575</height>
515  <uuid>{aa607456-d368-4d59-8497-d16d608404c3}</uuid>
516  <visible>true</visible>
517  <midichan>0</midichan>
518  <midicc>0</midicc>
519  <label>                    Looping Sequencer With Individually Variable Length Loops</label>
520  <alignment>center</alignment>
521  <font>Liberation Sans</font>
522  <fontsize>18</fontsize>
523  <precision>3</precision>
524  <color>
525   <r>0</r>
526   <g>0</g>
527   <b>0</b>
528  </color>
529  <bgcolor mode="background">
530   <r>244</r>
531   <g>248</g>
532   <b>200</b>
533  </bgcolor>
534  <bordermode>border</bordermode>
535  <borderradius>5</borderradius>
536  <borderwidth>2</borderwidth>
537 </bsbObject>
538 <bsbObject version="2" type="BSBLabel">
539  <objectName/>
540  <x>8</x>
541  <y>287</y>
542  <width>220</width>
543  <height>30</height>
544  <uuid>{640b50b7-7200-4f81-8394-89d9843ae939}</uuid>
545  <visible>true</visible>
546  <midichan>0</midichan>
547  <midicc>0</midicc>
548  <label>Reverb Send</label>
549  <alignment>left</alignment>
550  <font>Liberation Sans</font>
551  <fontsize>10</fontsize>
552  <precision>3</precision>
553  <color>
554   <r>0</r>
555   <g>0</g>
556   <b>0</b>
557  </color>
558  <bgcolor mode="nobackground">
559   <r>255</r>
560   <g>255</g>
561   <b>255</b>
562  </bgcolor>
563  <bordermode>noborder</bordermode>
564  <borderradius>1</borderradius>
565  <borderwidth>1</borderwidth>
566 </bsbObject>
567 <bsbObject version="2" type="BSBHSlider">
568  <objectName>RvbSend</objectName>
569  <x>8</x>
570  <y>265</y>
571  <width>460</width>
572  <height>27</height>
573  <uuid>{5585fa6f-0f63-4ac3-bf1b-809c2b1d9134}</uuid>
574  <visible>true</visible>
575  <midichan>0</midichan>
576  <midicc>0</midicc>
577  <minimum>0.00000000</minimum>
578  <maximum>1.00000000</maximum>
579  <value>0.40000001</value>
580  <mode>lin</mode>
581  <mouseControl act="jump">continuous</mouseControl>
582  <resolution>-1.00000000</resolution>
583  <randomizable group="0">false</randomizable>
584 </bsbObject>
585 <bsbObject version="2" type="BSBDisplay">
586  <objectName>RvbSend</objectName>
587  <x>408</x>
588  <y>287</y>
589  <width>60</width>
590  <height>30</height>
591  <uuid>{b731b52e-e14a-476a-a583-f3b2bd885539}</uuid>
592  <visible>true</visible>
593  <midichan>0</midichan>
594  <midicc>0</midicc>
595  <label>0.400</label>
596  <alignment>right</alignment>
597  <font>Liberation Sans</font>
598  <fontsize>9</fontsize>
599  <precision>3</precision>
600  <color>
601   <r>0</r>
602   <g>0</g>
603   <b>0</b>
604  </color>
605  <bgcolor mode="nobackground">
606   <r>255</r>
607   <g>255</g>
608   <b>255</b>
609  </bgcolor>
610  <bordermode>noborder</bordermode>
611  <borderradius>1</borderradius>
612  <borderwidth>1</borderwidth>
613 </bsbObject>
614 <bsbObject version="2" type="BSBLabel">
615  <objectName/>
616  <x>5</x>
617  <y>402</y>
618  <width>1092</width>
619  <height>173</height>
620  <uuid>{d4bdb5ce-87d8-4c8c-9c64-40ec2eed6f5a}</uuid>
621  <visible>true</visible>
622  <midichan>0</midichan>
623  <midicc>0</midicc>
624  <label>-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
625This example expands on the design from the 'Simple Drum Sequencer' example. Besides expanding the basic loop length to 8 beats (32 semiquavers) the principle innovation is that the user can shorten the range of the loop for each sound. The moving green bars representing current loop position for each sound should help clarify exactly what is happening. Each beat is divided into four semiquavers so that 0.25 in the 'Cycle Length' value represents 1 semiquaver, a value of 1 represents 1 beat. If changes are made to cycle lengths, all loops will restart in order to resync. Notes that are outside the range of the loop for that sound will not be played. The sounds produced are kalimba-like sounds produced using Stefan Bilbao's 'barmodel' physical model. The pitch of each of the six sounds can be modified using the transpose sliders, they can be randomised on mass using the 'Randomize!' button and are in fact randomised automatically upon startup. The 'Delay' sliders allow each sound to be individually delayed by a small amount with respect to the others. This is intended to allow the creation of 'flam'-like gestures. A reverb effect (making use of the 'reverbsc' opcode) is included. A tempo synced delay effect is also included. Reverb times for the left and right channel are defined separately in semiquavers.</label>
626  <alignment>left</alignment>
627  <font>Liberation Sans</font>
628  <fontsize>14</fontsize>
629  <precision>3</precision>
630  <color>
631   <r>0</r>
632   <g>0</g>
633   <b>0</b>
634  </color>
635  <bgcolor mode="nobackground">
636   <r>255</r>
637   <g>255</g>
638   <b>255</b>
639  </bgcolor>
640  <bordermode>noborder</bordermode>
641  <borderradius>1</borderradius>
642  <borderwidth>1</borderwidth>
643 </bsbObject>
644 <bsbObject version="2" type="BSBButton">
645  <objectName/>
646  <x>8</x>
647  <y>10</y>
648  <width>80</width>
649  <height>26</height>
650  <uuid>{04d44ebe-12eb-4bb0-a3f5-9e4fd3e7830e}</uuid>
651  <visible>true</visible>
652  <midichan>0</midichan>
653  <midicc>0</midicc>
654  <type>event</type>
655  <pressedValue>1.00000000</pressedValue>
656  <stringvalue/>
657  <text>  On / Off</text>
658  <image>/</image>
659  <eventLine>i 1 0 -1</eventLine>
660  <latch>true</latch>
661  <latched>false</latched>
662 </bsbObject>
663 <bsbObject version="2" type="BSBButton">
664  <objectName>b1_01</objectName>
665  <x>8</x>
666  <y>66</y>
667  <width>16</width>
668  <height>16</height>
669  <uuid>{e0d98327-53d4-45ac-8ca9-90d7c81b9abf}</uuid>
670  <visible>true</visible>
671  <midichan>0</midichan>
672  <midicc>0</midicc>
673  <type>value</type>
674  <pressedValue>1.00000000</pressedValue>
675  <stringvalue/>
676  <text/>
677  <image>/</image>
678  <eventLine/>
679  <latch>true</latch>
680  <latched>false</latched>
681 </bsbObject>
682 <bsbObject version="2" type="BSBButton">
683  <objectName>b1_02</objectName>
684  <x>22</x>
685  <y>66</y>
686  <width>16</width>
687  <height>16</height>
688  <uuid>{e34b7695-1411-4ebe-845c-8479f0cd6236}</uuid>
689  <visible>true</visible>
690  <midichan>0</midichan>
691  <midicc>0</midicc>
692  <type>value</type>
693  <pressedValue>1.00000000</pressedValue>
694  <stringvalue/>
695  <text/>
696  <image>/</image>
697  <eventLine/>
698  <latch>true</latch>
699  <latched>false</latched>
700 </bsbObject>
701 <bsbObject version="2" type="BSBButton">
702  <objectName>b1_03</objectName>
703  <x>36</x>
704  <y>66</y>
705  <width>16</width>
706  <height>16</height>
707  <uuid>{deb8a71e-282b-4ff3-b319-ed6c9eb487ff}</uuid>
708  <visible>true</visible>
709  <midichan>0</midichan>
710  <midicc>0</midicc>
711  <type>value</type>
712  <pressedValue>1.00000000</pressedValue>
713  <stringvalue/>
714  <text/>
715  <image>/</image>
716  <eventLine/>
717  <latch>true</latch>
718  <latched>false</latched>
719 </bsbObject>
720 <bsbObject version="2" type="BSBButton">
721  <objectName>b1_04</objectName>
722  <x>50</x>
723  <y>66</y>
724  <width>16</width>
725  <height>16</height>
726  <uuid>{2d4f45cd-61b1-47d0-b34d-b3b833eb99be}</uuid>
727  <visible>true</visible>
728  <midichan>0</midichan>
729  <midicc>0</midicc>
730  <type>value</type>
731  <pressedValue>1.00000000</pressedValue>
732  <stringvalue/>
733  <text/>
734  <image>/</image>
735  <eventLine/>
736  <latch>true</latch>
737  <latched>false</latched>
738 </bsbObject>
739 <bsbObject version="2" type="BSBButton">
740  <objectName>b1_05</objectName>
741  <x>69</x>
742  <y>66</y>
743  <width>16</width>
744  <height>16</height>
745  <uuid>{14f87907-305f-4523-85b1-ef3b90e9290b}</uuid>
746  <visible>true</visible>
747  <midichan>0</midichan>
748  <midicc>0</midicc>
749  <type>value</type>
750  <pressedValue>1.00000000</pressedValue>
751  <stringvalue/>
752  <text/>
753  <image>/</image>
754  <eventLine/>
755  <latch>true</latch>
756  <latched>false</latched>
757 </bsbObject>
758 <bsbObject version="2" type="BSBButton">
759  <objectName>b1_06</objectName>
760  <x>83</x>
761  <y>66</y>
762  <width>16</width>
763  <height>16</height>
764  <uuid>{7dad608d-e194-4d05-8355-763b61b1140b}</uuid>
765  <visible>true</visible>
766  <midichan>0</midichan>
767  <midicc>0</midicc>
768  <type>value</type>
769  <pressedValue>1.00000000</pressedValue>
770  <stringvalue/>
771  <text/>
772  <image>/</image>
773  <eventLine/>
774  <latch>true</latch>
775  <latched>false</latched>
776 </bsbObject>
777 <bsbObject version="2" type="BSBButton">
778  <objectName>b1_07</objectName>
779  <x>97</x>
780  <y>66</y>
781  <width>16</width>
782  <height>16</height>
783  <uuid>{3ae1333d-f2ec-4fff-b76e-d1b2ae7b69b3}</uuid>
784  <visible>true</visible>
785  <midichan>0</midichan>
786  <midicc>0</midicc>
787  <type>value</type>
788  <pressedValue>1.00000000</pressedValue>
789  <stringvalue/>
790  <text/>
791  <image>/</image>
792  <eventLine/>
793  <latch>true</latch>
794  <latched>false</latched>
795 </bsbObject>
796 <bsbObject version="2" type="BSBButton">
797  <objectName>b1_08</objectName>
798  <x>111</x>
799  <y>66</y>
800  <width>16</width>
801  <height>16</height>
802  <uuid>{5aab1f61-3538-4087-bb69-229d195b8abb}</uuid>
803  <visible>true</visible>
804  <midichan>0</midichan>
805  <midicc>0</midicc>
806  <type>value</type>
807  <pressedValue>1.00000000</pressedValue>
808  <stringvalue/>
809  <text/>
810  <image>/</image>
811  <eventLine/>
812  <latch>true</latch>
813  <latched>false</latched>
814 </bsbObject>
815 <bsbObject version="2" type="BSBButton">
816  <objectName>b1_09</objectName>
817  <x>130</x>
818  <y>66</y>
819  <width>16</width>
820  <height>16</height>
821  <uuid>{57115402-7c0a-4d58-a7c0-6921036520e7}</uuid>
822  <visible>true</visible>
823  <midichan>0</midichan>
824  <midicc>0</midicc>
825  <type>value</type>
826  <pressedValue>1.00000000</pressedValue>
827  <stringvalue/>
828  <text/>
829  <image>/</image>
830  <eventLine/>
831  <latch>true</latch>
832  <latched>false</latched>
833 </bsbObject>
834 <bsbObject version="2" type="BSBButton">
835  <objectName>b1_10</objectName>
836  <x>144</x>
837  <y>66</y>
838  <width>16</width>
839  <height>16</height>
840  <uuid>{962914e8-a1b1-40e7-94e8-a6928dadbb05}</uuid>
841  <visible>true</visible>
842  <midichan>0</midichan>
843  <midicc>0</midicc>
844  <type>value</type>
845  <pressedValue>1.00000000</pressedValue>
846  <stringvalue/>
847  <text/>
848  <image>/</image>
849  <eventLine/>
850  <latch>true</latch>
851  <latched>false</latched>
852 </bsbObject>
853 <bsbObject version="2" type="BSBButton">
854  <objectName>b1_11</objectName>
855  <x>158</x>
856  <y>66</y>
857  <width>16</width>
858  <height>16</height>
859  <uuid>{e9e68a9d-773f-41bf-9c53-18709747d3f2}</uuid>
860  <visible>true</visible>
861  <midichan>0</midichan>
862  <midicc>0</midicc>
863  <type>value</type>
864  <pressedValue>1.00000000</pressedValue>
865  <stringvalue/>
866  <text/>
867  <image>/</image>
868  <eventLine/>
869  <latch>true</latch>
870  <latched>false</latched>
871 </bsbObject>
872 <bsbObject version="2" type="BSBButton">
873  <objectName>b1_12</objectName>
874  <x>172</x>
875  <y>66</y>
876  <width>16</width>
877  <height>16</height>
878  <uuid>{108cea69-cc86-4271-986e-ab64c4441516}</uuid>
879  <visible>true</visible>
880  <midichan>0</midichan>
881  <midicc>0</midicc>
882  <type>value</type>
883  <pressedValue>1.00000000</pressedValue>
884  <stringvalue/>
885  <text/>
886  <image>/</image>
887  <eventLine/>
888  <latch>true</latch>
889  <latched>false</latched>
890 </bsbObject>
891 <bsbObject version="2" type="BSBButton">
892  <objectName>b1_13</objectName>
893  <x>191</x>
894  <y>66</y>
895  <width>16</width>
896  <height>16</height>
897  <uuid>{b3fe6a56-7815-41b7-9fbb-6cc773c106e3}</uuid>
898  <visible>true</visible>
899  <midichan>0</midichan>
900  <midicc>0</midicc>
901  <type>value</type>
902  <pressedValue>1.00000000</pressedValue>
903  <stringvalue/>
904  <text/>
905  <image>/</image>
906  <eventLine/>
907  <latch>true</latch>
908  <latched>false</latched>
909 </bsbObject>
910 <bsbObject version="2" type="BSBButton">
911  <objectName>b1_14</objectName>
912  <x>205</x>
913  <y>66</y>
914  <width>16</width>
915  <height>16</height>
916  <uuid>{6a5c3d2d-533f-49e0-8ca3-771bc6c833d9}</uuid>
917  <visible>true</visible>
918  <midichan>0</midichan>
919  <midicc>0</midicc>
920  <type>value</type>
921  <pressedValue>1.00000000</pressedValue>
922  <stringvalue/>
923  <text/>
924  <image>/</image>
925  <eventLine/>
926  <latch>true</latch>
927  <latched>false</latched>
928 </bsbObject>
929 <bsbObject version="2" type="BSBButton">
930  <objectName>b1_15</objectName>
931  <x>219</x>
932  <y>66</y>
933  <width>16</width>
934  <height>16</height>
935  <uuid>{35b69a77-2a13-41a3-b89a-d60f9d703f04}</uuid>
936  <visible>true</visible>
937  <midichan>0</midichan>
938  <midicc>0</midicc>
939  <type>value</type>
940  <pressedValue>1.00000000</pressedValue>
941  <stringvalue/>
942  <text/>
943  <image>/</image>
944  <eventLine/>
945  <latch>true</latch>
946  <latched>false</latched>
947 </bsbObject>
948 <bsbObject version="2" type="BSBButton">
949  <objectName>b1_16</objectName>
950  <x>233</x>
951  <y>66</y>
952  <width>16</width>
953  <height>16</height>
954  <uuid>{042cae7c-d764-4b9d-bb1b-a37f9bd193fb}</uuid>
955  <visible>true</visible>
956  <midichan>0</midichan>
957  <midicc>0</midicc>
958  <type>value</type>
959  <pressedValue>1.00000000</pressedValue>
960  <stringvalue/>
961  <text/>
962  <image>/</image>
963  <eventLine/>
964  <latch>true</latch>
965  <latched>false</latched>
966 </bsbObject>
967 <bsbObject version="2" type="BSBButton">
968  <objectName>b1_17</objectName>
969  <x>252</x>
970  <y>66</y>
971  <width>16</width>
972  <height>16</height>
973  <uuid>{afbcb646-24c2-4635-ae97-f5711ffbd1e2}</uuid>
974  <visible>true</visible>
975  <midichan>0</midichan>
976  <midicc>0</midicc>
977  <type>value</type>
978  <pressedValue>1.00000000</pressedValue>
979  <stringvalue/>
980  <text/>
981  <image>/</image>
982  <eventLine/>
983  <latch>true</latch>
984  <latched>false</latched>
985 </bsbObject>
986 <bsbObject version="2" type="BSBButton">
987  <objectName>b1_18</objectName>
988  <x>266</x>
989  <y>66</y>
990  <width>16</width>
991  <height>16</height>
992  <uuid>{7e63df9e-f27d-4c14-ab7e-c5194b03a269}</uuid>
993  <visible>true</visible>
994  <midichan>0</midichan>
995  <midicc>0</midicc>
996  <type>value</type>
997  <pressedValue>1.00000000</pressedValue>
998  <stringvalue/>
999  <text/>
1000  <image>/</image>
1001  <eventLine/>
1002  <latch>true</latch>
1003  <latched>false</latched>
1004 </bsbObject>
1005 <bsbObject version="2" type="BSBButton">
1006  <objectName>b1_19</objectName>
1007  <x>280</x>
1008  <y>66</y>
1009  <width>16</width>
1010  <height>16</height>
1011  <uuid>{a25e5d0c-0fa8-43c0-8b4a-295600ff824b}</uuid>
1012  <visible>true</visible>
1013  <midichan>0</midichan>
1014  <midicc>0</midicc>
1015  <type>value</type>
1016  <pressedValue>1.00000000</pressedValue>
1017  <stringvalue/>
1018  <text/>
1019  <image>/</image>
1020  <eventLine/>
1021  <latch>true</latch>
1022  <latched>false</latched>
1023 </bsbObject>
1024 <bsbObject version="2" type="BSBButton">
1025  <objectName>b1_20</objectName>
1026  <x>294</x>
1027  <y>66</y>
1028  <width>16</width>
1029  <height>16</height>
1030  <uuid>{b99769da-4a13-4fd0-a56e-3632dff9fa4f}</uuid>
1031  <visible>true</visible>
1032  <midichan>0</midichan>
1033  <midicc>0</midicc>
1034  <type>value</type>
1035  <pressedValue>1.00000000</pressedValue>
1036  <stringvalue/>
1037  <text/>
1038  <image>/</image>
1039  <eventLine/>
1040  <latch>true</latch>
1041  <latched>false</latched>
1042 </bsbObject>
1043 <bsbObject version="2" type="BSBButton">
1044  <objectName>b1_21</objectName>
1045  <x>313</x>
1046  <y>66</y>
1047  <width>16</width>
1048  <height>16</height>
1049  <uuid>{ce393610-824f-4ee6-945a-01e5481697ca}</uuid>
1050  <visible>true</visible>
1051  <midichan>0</midichan>
1052  <midicc>0</midicc>
1053  <type>value</type>
1054  <pressedValue>1.00000000</pressedValue>
1055  <stringvalue/>
1056  <text/>
1057  <image>/</image>
1058  <eventLine/>
1059  <latch>true</latch>
1060  <latched>false</latched>
1061 </bsbObject>
1062 <bsbObject version="2" type="BSBButton">
1063  <objectName>b1_22</objectName>
1064  <x>327</x>
1065  <y>66</y>
1066  <width>16</width>
1067  <height>16</height>
1068  <uuid>{d64cf679-83ad-4b7a-b185-9dd15e5d0b9b}</uuid>
1069  <visible>true</visible>
1070  <midichan>0</midichan>
1071  <midicc>0</midicc>
1072  <type>value</type>
1073  <pressedValue>1.00000000</pressedValue>
1074  <stringvalue/>
1075  <text/>
1076  <image>/</image>
1077  <eventLine/>
1078  <latch>true</latch>
1079  <latched>false</latched>
1080 </bsbObject>
1081 <bsbObject version="2" type="BSBButton">
1082  <objectName>b1_23</objectName>
1083  <x>341</x>
1084  <y>66</y>
1085  <width>16</width>
1086  <height>16</height>
1087  <uuid>{33cad89c-1c3e-4c1b-9461-0d0700e7b2ac}</uuid>
1088  <visible>true</visible>
1089  <midichan>0</midichan>
1090  <midicc>0</midicc>
1091  <type>value</type>
1092  <pressedValue>1.00000000</pressedValue>
1093  <stringvalue/>
1094  <text/>
1095  <image>/</image>
1096  <eventLine/>
1097  <latch>true</latch>
1098  <latched>false</latched>
1099 </bsbObject>
1100 <bsbObject version="2" type="BSBButton">
1101  <objectName>b1_24</objectName>
1102  <x>355</x>
1103  <y>66</y>
1104  <width>16</width>
1105  <height>16</height>
1106  <uuid>{34da1ec2-30d3-435e-9666-62c0d0c54ff7}</uuid>
1107  <visible>true</visible>
1108  <midichan>0</midichan>
1109  <midicc>0</midicc>
1110  <type>value</type>
1111  <pressedValue>1.00000000</pressedValue>
1112  <stringvalue/>
1113  <text/>
1114  <image>/</image>
1115  <eventLine/>
1116  <latch>true</latch>
1117  <latched>false</latched>
1118 </bsbObject>
1119 <bsbObject version="2" type="BSBButton">
1120  <objectName>b1_25</objectName>
1121  <x>374</x>
1122  <y>66</y>
1123  <width>16</width>
1124  <height>16</height>
1125  <uuid>{1380eff6-88fd-4fc0-9107-bd642e0f4bfe}</uuid>
1126  <visible>true</visible>
1127  <midichan>0</midichan>
1128  <midicc>0</midicc>
1129  <type>value</type>
1130  <pressedValue>1.00000000</pressedValue>
1131  <stringvalue/>
1132  <text/>
1133  <image>/</image>
1134  <eventLine/>
1135  <latch>true</latch>
1136  <latched>false</latched>
1137 </bsbObject>
1138 <bsbObject version="2" type="BSBButton">
1139  <objectName>b1_26</objectName>
1140  <x>388</x>
1141  <y>66</y>
1142  <width>16</width>
1143  <height>16</height>
1144  <uuid>{f5e483ff-ff0d-4bf5-9db0-0c873dd74451}</uuid>
1145  <visible>true</visible>
1146  <midichan>0</midichan>
1147  <midicc>0</midicc>
1148  <type>value</type>
1149  <pressedValue>1.00000000</pressedValue>
1150  <stringvalue/>
1151  <text/>
1152  <image>/</image>
1153  <eventLine/>
1154  <latch>true</latch>
1155  <latched>false</latched>
1156 </bsbObject>
1157 <bsbObject version="2" type="BSBButton">
1158  <objectName>b1_27</objectName>
1159  <x>402</x>
1160  <y>66</y>
1161  <width>16</width>
1162  <height>16</height>
1163  <uuid>{edf90f66-5c14-4e89-94e0-7f66dc2cd48b}</uuid>
1164  <visible>true</visible>
1165  <midichan>0</midichan>
1166  <midicc>0</midicc>
1167  <type>value</type>
1168  <pressedValue>1.00000000</pressedValue>
1169  <stringvalue/>
1170  <text/>
1171  <image>/</image>
1172  <eventLine/>
1173  <latch>true</latch>
1174  <latched>false</latched>
1175 </bsbObject>
1176 <bsbObject version="2" type="BSBButton">
1177  <objectName>b1_28</objectName>
1178  <x>416</x>
1179  <y>66</y>
1180  <width>16</width>
1181  <height>16</height>
1182  <uuid>{f9e1c776-87e3-49fc-8e04-046ead2d87d5}</uuid>
1183  <visible>true</visible>
1184  <midichan>0</midichan>
1185  <midicc>0</midicc>
1186  <type>value</type>
1187  <pressedValue>1.00000000</pressedValue>
1188  <stringvalue/>
1189  <text/>
1190  <image>/</image>
1191  <eventLine/>
1192  <latch>true</latch>
1193  <latched>false</latched>
1194 </bsbObject>
1195 <bsbObject version="2" type="BSBButton">
1196  <objectName>b1_29</objectName>
1197  <x>435</x>
1198  <y>66</y>
1199  <width>16</width>
1200  <height>16</height>
1201  <uuid>{03a0de35-410b-4cc8-a495-e53411e6e261}</uuid>
1202  <visible>true</visible>
1203  <midichan>0</midichan>
1204  <midicc>0</midicc>
1205  <type>value</type>
1206  <pressedValue>1.00000000</pressedValue>
1207  <stringvalue/>
1208  <text/>
1209  <image>/</image>
1210  <eventLine/>
1211  <latch>true</latch>
1212  <latched>false</latched>
1213 </bsbObject>
1214 <bsbObject version="2" type="BSBButton">
1215  <objectName>b1_30</objectName>
1216  <x>449</x>
1217  <y>66</y>
1218  <width>16</width>
1219  <height>16</height>
1220  <uuid>{61578a6f-68dd-41bc-b005-f07d296d8370}</uuid>
1221  <visible>true</visible>
1222  <midichan>0</midichan>
1223  <midicc>0</midicc>
1224  <type>value</type>
1225  <pressedValue>1.00000000</pressedValue>
1226  <stringvalue/>
1227  <text/>
1228  <image>/</image>
1229  <eventLine/>
1230  <latch>true</latch>
1231  <latched>false</latched>
1232 </bsbObject>
1233 <bsbObject version="2" type="BSBButton">
1234  <objectName>b1_31</objectName>
1235  <x>463</x>
1236  <y>66</y>
1237  <width>16</width>
1238  <height>16</height>
1239  <uuid>{d4f5fbab-cf6b-4f2f-8ac7-6db8d5d4eb4c}</uuid>
1240  <visible>true</visible>
1241  <midichan>0</midichan>
1242  <midicc>0</midicc>
1243  <type>value</type>
1244  <pressedValue>1.00000000</pressedValue>
1245  <stringvalue/>
1246  <text/>
1247  <image>/</image>
1248  <eventLine/>
1249  <latch>true</latch>
1250  <latched>false</latched>
1251 </bsbObject>
1252 <bsbObject version="2" type="BSBButton">
1253  <objectName>b1_32</objectName>
1254  <x>477</x>
1255  <y>66</y>
1256  <width>16</width>
1257  <height>16</height>
1258  <uuid>{0cbb6633-4b84-47b0-8c4f-48ffb731b64e}</uuid>
1259  <visible>true</visible>
1260  <midichan>0</midichan>
1261  <midicc>0</midicc>
1262  <type>value</type>
1263  <pressedValue>1.00000000</pressedValue>
1264  <stringvalue/>
1265  <text/>
1266  <image>/</image>
1267  <eventLine/>
1268  <latch>true</latch>
1269  <latched>false</latched>
1270 </bsbObject>
1271 <bsbObject version="2" type="BSBController">
1272  <objectName>Phase1</objectName>
1273  <x>8</x>
1274  <y>85</y>
1275  <width>485</width>
1276  <height>6</height>
1277  <uuid>{c805b7f7-4837-4ecf-80ab-d20527ec3af1}</uuid>
1278  <visible>true</visible>
1279  <midichan>0</midichan>
1280  <midicc>0</midicc>
1281  <objectName2/>
1282  <xMin>0.00000000</xMin>
1283  <xMax>8.00000000</xMax>
1284  <yMin>0.00000000</yMin>
1285  <yMax>1.00000000</yMax>
1286  <xValue>2.42731738</xValue>
1287  <yValue>0.00000000</yValue>
1288  <type>fill</type>
1289  <pointsize>1</pointsize>
1290  <fadeSpeed>0.00000000</fadeSpeed>
1291  <mouseControl act="press">jump</mouseControl>
1292  <color>
1293   <r>255</r>
1294   <g>0</g>
1295   <b>0</b>
1296  </color>
1297  <randomizable mode="both" group="0">false</randomizable>
1298  <bgcolor>
1299   <r>0</r>
1300   <g>0</g>
1301   <b>0</b>
1302  </bgcolor>
1303 </bsbObject>
1304 <bsbObject version="2" type="BSBButton">
1305  <objectName>b2_01</objectName>
1306  <x>8</x>
1307  <y>98</y>
1308  <width>16</width>
1309  <height>16</height>
1310  <uuid>{466f6f3e-19ce-4127-8066-58f0acf681cf}</uuid>
1311  <visible>true</visible>
1312  <midichan>0</midichan>
1313  <midicc>0</midicc>
1314  <type>value</type>
1315  <pressedValue>1.00000000</pressedValue>
1316  <stringvalue/>
1317  <text/>
1318  <image>/</image>
1319  <eventLine/>
1320  <latch>true</latch>
1321  <latched>false</latched>
1322 </bsbObject>
1323 <bsbObject version="2" type="BSBButton">
1324  <objectName>b2_02</objectName>
1325  <x>22</x>
1326  <y>98</y>
1327  <width>16</width>
1328  <height>16</height>
1329  <uuid>{9489c14e-3304-418f-ae2a-582b81c39652}</uuid>
1330  <visible>true</visible>
1331  <midichan>0</midichan>
1332  <midicc>0</midicc>
1333  <type>value</type>
1334  <pressedValue>1.00000000</pressedValue>
1335  <stringvalue/>
1336  <text/>
1337  <image>/</image>
1338  <eventLine/>
1339  <latch>true</latch>
1340  <latched>false</latched>
1341 </bsbObject>
1342 <bsbObject version="2" type="BSBButton">
1343  <objectName>b2_03</objectName>
1344  <x>36</x>
1345  <y>98</y>
1346  <width>16</width>
1347  <height>16</height>
1348  <uuid>{fa686912-e64a-4c8d-82e9-070ce8e8f3db}</uuid>
1349  <visible>true</visible>
1350  <midichan>0</midichan>
1351  <midicc>0</midicc>
1352  <type>value</type>
1353  <pressedValue>1.00000000</pressedValue>
1354  <stringvalue/>
1355  <text/>
1356  <image>/</image>
1357  <eventLine/>
1358  <latch>true</latch>
1359  <latched>false</latched>
1360 </bsbObject>
1361 <bsbObject version="2" type="BSBButton">
1362  <objectName>b2_04</objectName>
1363  <x>50</x>
1364  <y>98</y>
1365  <width>16</width>
1366  <height>16</height>
1367  <uuid>{2c2e1632-80d0-4aa0-b79a-5c93e0033b59}</uuid>
1368  <visible>true</visible>
1369  <midichan>0</midichan>
1370  <midicc>0</midicc>
1371  <type>value</type>
1372  <pressedValue>1.00000000</pressedValue>
1373  <stringvalue/>
1374  <text/>
1375  <image>/</image>
1376  <eventLine/>
1377  <latch>true</latch>
1378  <latched>false</latched>
1379 </bsbObject>
1380 <bsbObject version="2" type="BSBButton">
1381  <objectName>b2_05</objectName>
1382  <x>69</x>
1383  <y>98</y>
1384  <width>16</width>
1385  <height>16</height>
1386  <uuid>{49cc7d17-6287-409b-842d-7a6e2ca0f4c3}</uuid>
1387  <visible>true</visible>
1388  <midichan>0</midichan>
1389  <midicc>0</midicc>
1390  <type>value</type>
1391  <pressedValue>1.00000000</pressedValue>
1392  <stringvalue/>
1393  <text/>
1394  <image>/</image>
1395  <eventLine/>
1396  <latch>true</latch>
1397  <latched>false</latched>
1398 </bsbObject>
1399 <bsbObject version="2" type="BSBButton">
1400  <objectName>b2_06</objectName>
1401  <x>83</x>
1402  <y>98</y>
1403  <width>16</width>
1404  <height>16</height>
1405  <uuid>{5f544eea-d621-4eb9-a39b-53764d54c0a1}</uuid>
1406  <visible>true</visible>
1407  <midichan>0</midichan>
1408  <midicc>0</midicc>
1409  <type>value</type>
1410  <pressedValue>1.00000000</pressedValue>
1411  <stringvalue/>
1412  <text/>
1413  <image>/</image>
1414  <eventLine/>
1415  <latch>true</latch>
1416  <latched>false</latched>
1417 </bsbObject>
1418 <bsbObject version="2" type="BSBButton">
1419  <objectName>b2_07</objectName>
1420  <x>97</x>
1421  <y>98</y>
1422  <width>16</width>
1423  <height>16</height>
1424  <uuid>{64e54194-310f-41ce-8ed3-2a3082b51484}</uuid>
1425  <visible>true</visible>
1426  <midichan>0</midichan>
1427  <midicc>0</midicc>
1428  <type>value</type>
1429  <pressedValue>1.00000000</pressedValue>
1430  <stringvalue/>
1431  <text/>
1432  <image>/</image>
1433  <eventLine/>
1434  <latch>true</latch>
1435  <latched>false</latched>
1436 </bsbObject>
1437 <bsbObject version="2" type="BSBButton">
1438  <objectName>b2_08</objectName>
1439  <x>111</x>
1440  <y>98</y>
1441  <width>16</width>
1442  <height>16</height>
1443  <uuid>{be9e0fbf-cf81-4231-bcce-e0ccce57af08}</uuid>
1444  <visible>true</visible>
1445  <midichan>0</midichan>
1446  <midicc>0</midicc>
1447  <type>value</type>
1448  <pressedValue>1.00000000</pressedValue>
1449  <stringvalue/>
1450  <text/>
1451  <image>/</image>
1452  <eventLine/>
1453  <latch>true</latch>
1454  <latched>false</latched>
1455 </bsbObject>
1456 <bsbObject version="2" type="BSBButton">
1457  <objectName>b2_09</objectName>
1458  <x>130</x>
1459  <y>98</y>
1460  <width>16</width>
1461  <height>16</height>
1462  <uuid>{bc6c60d3-f469-44a4-a778-a5a9f1c9d4d8}</uuid>
1463  <visible>true</visible>
1464  <midichan>0</midichan>
1465  <midicc>0</midicc>
1466  <type>value</type>
1467  <pressedValue>1.00000000</pressedValue>
1468  <stringvalue/>
1469  <text/>
1470  <image>/</image>
1471  <eventLine/>
1472  <latch>true</latch>
1473  <latched>false</latched>
1474 </bsbObject>
1475 <bsbObject version="2" type="BSBButton">
1476  <objectName>b2_10</objectName>
1477  <x>144</x>
1478  <y>98</y>
1479  <width>16</width>
1480  <height>16</height>
1481  <uuid>{9a6cf0f9-0577-49af-88d3-77cf6da550aa}</uuid>
1482  <visible>true</visible>
1483  <midichan>0</midichan>
1484  <midicc>0</midicc>
1485  <type>value</type>
1486  <pressedValue>1.00000000</pressedValue>
1487  <stringvalue/>
1488  <text/>
1489  <image>/</image>
1490  <eventLine/>
1491  <latch>true</latch>
1492  <latched>false</latched>
1493 </bsbObject>
1494 <bsbObject version="2" type="BSBButton">
1495  <objectName>b2_11</objectName>
1496  <x>158</x>
1497  <y>98</y>
1498  <width>16</width>
1499  <height>16</height>
1500  <uuid>{00ab751a-4f1d-4dbe-98c5-55f3827eb53e}</uuid>
1501  <visible>true</visible>
1502  <midichan>0</midichan>
1503  <midicc>0</midicc>
1504  <type>value</type>
1505  <pressedValue>1.00000000</pressedValue>
1506  <stringvalue/>
1507  <text/>
1508  <image>/</image>
1509  <eventLine/>
1510  <latch>true</latch>
1511  <latched>false</latched>
1512 </bsbObject>
1513 <bsbObject version="2" type="BSBButton">
1514  <objectName>b2_12</objectName>
1515  <x>172</x>
1516  <y>98</y>
1517  <width>16</width>
1518  <height>16</height>
1519  <uuid>{83429edf-248b-4978-9049-7c7631e47ce3}</uuid>
1520  <visible>true</visible>
1521  <midichan>0</midichan>
1522  <midicc>0</midicc>
1523  <type>value</type>
1524  <pressedValue>1.00000000</pressedValue>
1525  <stringvalue/>
1526  <text/>
1527  <image>/</image>
1528  <eventLine/>
1529  <latch>true</latch>
1530  <latched>false</latched>
1531 </bsbObject>
1532 <bsbObject version="2" type="BSBButton">
1533  <objectName>b2_13</objectName>
1534  <x>191</x>
1535  <y>98</y>
1536  <width>16</width>
1537  <height>16</height>
1538  <uuid>{a24c1cb1-dbb3-4178-a952-d7e53b742772}</uuid>
1539  <visible>true</visible>
1540  <midichan>0</midichan>
1541  <midicc>0</midicc>
1542  <type>value</type>
1543  <pressedValue>1.00000000</pressedValue>
1544  <stringvalue/>
1545  <text/>
1546  <image>/</image>
1547  <eventLine/>
1548  <latch>true</latch>
1549  <latched>false</latched>
1550 </bsbObject>
1551 <bsbObject version="2" type="BSBButton">
1552  <objectName>b2_14</objectName>
1553  <x>205</x>
1554  <y>98</y>
1555  <width>16</width>
1556  <height>16</height>
1557  <uuid>{49c0adba-c545-4633-9bd2-81fa22bb6cd0}</uuid>
1558  <visible>true</visible>
1559  <midichan>0</midichan>
1560  <midicc>0</midicc>
1561  <type>value</type>
1562  <pressedValue>1.00000000</pressedValue>
1563  <stringvalue/>
1564  <text/>
1565  <image>/</image>
1566  <eventLine/>
1567  <latch>true</latch>
1568  <latched>false</latched>
1569 </bsbObject>
1570 <bsbObject version="2" type="BSBButton">
1571  <objectName>b2_15</objectName>
1572  <x>219</x>
1573  <y>98</y>
1574  <width>16</width>
1575  <height>16</height>
1576  <uuid>{51c7fde2-38b3-4453-a1bc-95992648bbef}</uuid>
1577  <visible>true</visible>
1578  <midichan>0</midichan>
1579  <midicc>0</midicc>
1580  <type>value</type>
1581  <pressedValue>1.00000000</pressedValue>
1582  <stringvalue/>
1583  <text/>
1584  <image>/</image>
1585  <eventLine/>
1586  <latch>true</latch>
1587  <latched>false</latched>
1588 </bsbObject>
1589 <bsbObject version="2" type="BSBButton">
1590  <objectName>b2_16</objectName>
1591  <x>233</x>
1592  <y>98</y>
1593  <width>16</width>
1594  <height>16</height>
1595  <uuid>{7e58c1d2-882e-4468-b308-2cd448b9b8cd}</uuid>
1596  <visible>true</visible>
1597  <midichan>0</midichan>
1598  <midicc>0</midicc>
1599  <type>value</type>
1600  <pressedValue>1.00000000</pressedValue>
1601  <stringvalue/>
1602  <text/>
1603  <image>/</image>
1604  <eventLine/>
1605  <latch>true</latch>
1606  <latched>false</latched>
1607 </bsbObject>
1608 <bsbObject version="2" type="BSBButton">
1609  <objectName>b2_17</objectName>
1610  <x>252</x>
1611  <y>98</y>
1612  <width>16</width>
1613  <height>16</height>
1614  <uuid>{ff88b2f3-0ca6-4aec-89ad-2c674a9fe1f3}</uuid>
1615  <visible>true</visible>
1616  <midichan>0</midichan>
1617  <midicc>0</midicc>
1618  <type>value</type>
1619  <pressedValue>1.00000000</pressedValue>
1620  <stringvalue/>
1621  <text/>
1622  <image>/</image>
1623  <eventLine/>
1624  <latch>true</latch>
1625  <latched>false</latched>
1626 </bsbObject>
1627 <bsbObject version="2" type="BSBButton">
1628  <objectName>b2_18</objectName>
1629  <x>266</x>
1630  <y>98</y>
1631  <width>16</width>
1632  <height>16</height>
1633  <uuid>{717c7f6e-15cc-487d-9e94-bebbac89d9f7}</uuid>
1634  <visible>true</visible>
1635  <midichan>0</midichan>
1636  <midicc>0</midicc>
1637  <type>value</type>
1638  <pressedValue>1.00000000</pressedValue>
1639  <stringvalue/>
1640  <text/>
1641  <image>/</image>
1642  <eventLine/>
1643  <latch>true</latch>
1644  <latched>false</latched>
1645 </bsbObject>
1646 <bsbObject version="2" type="BSBButton">
1647  <objectName>b2_19</objectName>
1648  <x>280</x>
1649  <y>98</y>
1650  <width>16</width>
1651  <height>16</height>
1652  <uuid>{dc27da2d-f612-49a1-a9bf-e766af122b7b}</uuid>
1653  <visible>true</visible>
1654  <midichan>0</midichan>
1655  <midicc>0</midicc>
1656  <type>value</type>
1657  <pressedValue>1.00000000</pressedValue>
1658  <stringvalue/>
1659  <text/>
1660  <image>/</image>
1661  <eventLine/>
1662  <latch>true</latch>
1663  <latched>false</latched>
1664 </bsbObject>
1665 <bsbObject version="2" type="BSBButton">
1666  <objectName>b2_20</objectName>
1667  <x>294</x>
1668  <y>98</y>
1669  <width>16</width>
1670  <height>16</height>
1671  <uuid>{33ad7ed7-02a9-46f8-a417-dd2954cb67ab}</uuid>
1672  <visible>true</visible>
1673  <midichan>0</midichan>
1674  <midicc>0</midicc>
1675  <type>value</type>
1676  <pressedValue>1.00000000</pressedValue>
1677  <stringvalue/>
1678  <text/>
1679  <image>/</image>
1680  <eventLine/>
1681  <latch>true</latch>
1682  <latched>false</latched>
1683 </bsbObject>
1684 <bsbObject version="2" type="BSBButton">
1685  <objectName>b2_21</objectName>
1686  <x>313</x>
1687  <y>98</y>
1688  <width>16</width>
1689  <height>16</height>
1690  <uuid>{580f19d7-8f81-4503-888e-72715d470842}</uuid>
1691  <visible>true</visible>
1692  <midichan>0</midichan>
1693  <midicc>0</midicc>
1694  <type>value</type>
1695  <pressedValue>1.00000000</pressedValue>
1696  <stringvalue/>
1697  <text/>
1698  <image>/</image>
1699  <eventLine/>
1700  <latch>true</latch>
1701  <latched>false</latched>
1702 </bsbObject>
1703 <bsbObject version="2" type="BSBButton">
1704  <objectName>b2_22</objectName>
1705  <x>327</x>
1706  <y>98</y>
1707  <width>16</width>
1708  <height>16</height>
1709  <uuid>{156d6455-f34c-446f-8e21-eb564a19bc84}</uuid>
1710  <visible>true</visible>
1711  <midichan>0</midichan>
1712  <midicc>0</midicc>
1713  <type>value</type>
1714  <pressedValue>1.00000000</pressedValue>
1715  <stringvalue/>
1716  <text/>
1717  <image>/</image>
1718  <eventLine/>
1719  <latch>true</latch>
1720  <latched>false</latched>
1721 </bsbObject>
1722 <bsbObject version="2" type="BSBButton">
1723  <objectName>b2_23</objectName>
1724  <x>341</x>
1725  <y>98</y>
1726  <width>16</width>
1727  <height>16</height>
1728  <uuid>{23c8103a-7f7a-419f-afc4-489f5cd609c5}</uuid>
1729  <visible>true</visible>
1730  <midichan>0</midichan>
1731  <midicc>0</midicc>
1732  <type>value</type>
1733  <pressedValue>1.00000000</pressedValue>
1734  <stringvalue/>
1735  <text/>
1736  <image>/</image>
1737  <eventLine/>
1738  <latch>true</latch>
1739  <latched>false</latched>
1740 </bsbObject>
1741 <bsbObject version="2" type="BSBButton">
1742  <objectName>b2_24</objectName>
1743  <x>355</x>
1744  <y>98</y>
1745  <width>16</width>
1746  <height>16</height>
1747  <uuid>{a74dd030-843d-453b-a464-8c3b95167fe0}</uuid>
1748  <visible>true</visible>
1749  <midichan>0</midichan>
1750  <midicc>0</midicc>
1751  <type>value</type>
1752  <pressedValue>1.00000000</pressedValue>
1753  <stringvalue/>
1754  <text/>
1755  <image>/</image>
1756  <eventLine/>
1757  <latch>true</latch>
1758  <latched>false</latched>
1759 </bsbObject>
1760 <bsbObject version="2" type="BSBButton">
1761  <objectName>b2_25</objectName>
1762  <x>374</x>
1763  <y>98</y>
1764  <width>16</width>
1765  <height>16</height>
1766  <uuid>{2fdc5b9e-6086-43d4-a6f8-d548b56890c0}</uuid>
1767  <visible>true</visible>
1768  <midichan>0</midichan>
1769  <midicc>0</midicc>
1770  <type>value</type>
1771  <pressedValue>1.00000000</pressedValue>
1772  <stringvalue/>
1773  <text/>
1774  <image>/</image>
1775  <eventLine/>
1776  <latch>true</latch>
1777  <latched>false</latched>
1778 </bsbObject>
1779 <bsbObject version="2" type="BSBButton">
1780  <objectName>b2_26</objectName>
1781  <x>388</x>
1782  <y>98</y>
1783  <width>16</width>
1784  <height>16</height>
1785  <uuid>{39a062af-5e05-4df1-ae77-24903d6609db}</uuid>
1786  <visible>true</visible>
1787  <midichan>0</midichan>
1788  <midicc>0</midicc>
1789  <type>value</type>
1790  <pressedValue>1.00000000</pressedValue>
1791  <stringvalue/>
1792  <text/>
1793  <image>/</image>
1794  <eventLine/>
1795  <latch>true</latch>
1796  <latched>false</latched>
1797 </bsbObject>
1798 <bsbObject version="2" type="BSBButton">
1799  <objectName>b2_27</objectName>
1800  <x>402</x>
1801  <y>98</y>
1802  <width>16</width>
1803  <height>16</height>
1804  <uuid>{2cc59e4b-d52b-4030-b5d2-a5066f9f5cb1}</uuid>
1805  <visible>true</visible>
1806  <midichan>0</midichan>
1807  <midicc>0</midicc>
1808  <type>value</type>
1809  <pressedValue>1.00000000</pressedValue>
1810  <stringvalue/>
1811  <text/>
1812  <image>/</image>
1813  <eventLine/>
1814  <latch>true</latch>
1815  <latched>false</latched>
1816 </bsbObject>
1817 <bsbObject version="2" type="BSBButton">
1818  <objectName>b2_28</objectName>
1819  <x>416</x>
1820  <y>98</y>
1821  <width>16</width>
1822  <height>16</height>
1823  <uuid>{dd26b81b-192a-4328-b3fc-564d4ba7f350}</uuid>
1824  <visible>true</visible>
1825  <midichan>0</midichan>
1826  <midicc>0</midicc>
1827  <type>value</type>
1828  <pressedValue>1.00000000</pressedValue>
1829  <stringvalue/>
1830  <text/>
1831  <image>/</image>
1832  <eventLine/>
1833  <latch>true</latch>
1834  <latched>false</latched>
1835 </bsbObject>
1836 <bsbObject version="2" type="BSBButton">
1837  <objectName>b2_29</objectName>
1838  <x>435</x>
1839  <y>98</y>
1840  <width>16</width>
1841  <height>16</height>
1842  <uuid>{8afd7288-83f3-4b43-a3ea-33b192139fd3}</uuid>
1843  <visible>true</visible>
1844  <midichan>0</midichan>
1845  <midicc>0</midicc>
1846  <type>value</type>
1847  <pressedValue>1.00000000</pressedValue>
1848  <stringvalue/>
1849  <text/>
1850  <image>/</image>
1851  <eventLine/>
1852  <latch>true</latch>
1853  <latched>false</latched>
1854 </bsbObject>
1855 <bsbObject version="2" type="BSBButton">
1856  <objectName>b2_30</objectName>
1857  <x>449</x>
1858  <y>98</y>
1859  <width>16</width>
1860  <height>16</height>
1861  <uuid>{e23278bb-5a36-4936-bc93-772bc570c65e}</uuid>
1862  <visible>true</visible>
1863  <midichan>0</midichan>
1864  <midicc>0</midicc>
1865  <type>value</type>
1866  <pressedValue>1.00000000</pressedValue>
1867  <stringvalue/>
1868  <text/>
1869  <image>/</image>
1870  <eventLine/>
1871  <latch>true</latch>
1872  <latched>false</latched>
1873 </bsbObject>
1874 <bsbObject version="2" type="BSBButton">
1875  <objectName>b2_31</objectName>
1876  <x>463</x>
1877  <y>98</y>
1878  <width>16</width>
1879  <height>16</height>
1880  <uuid>{7b0d829e-ff65-498a-b9e5-1b6126620824}</uuid>
1881  <visible>true</visible>
1882  <midichan>0</midichan>
1883  <midicc>0</midicc>
1884  <type>value</type>
1885  <pressedValue>1.00000000</pressedValue>
1886  <stringvalue/>
1887  <text/>
1888  <image>/</image>
1889  <eventLine/>
1890  <latch>true</latch>
1891  <latched>false</latched>
1892 </bsbObject>
1893 <bsbObject version="2" type="BSBButton">
1894  <objectName>b2_32</objectName>
1895  <x>477</x>
1896  <y>98</y>
1897  <width>16</width>
1898  <height>16</height>
1899  <uuid>{59653cd9-bdb0-44b2-91db-2923b571eae0}</uuid>
1900  <visible>true</visible>
1901  <midichan>0</midichan>
1902  <midicc>0</midicc>
1903  <type>value</type>
1904  <pressedValue>1.00000000</pressedValue>
1905  <stringvalue/>
1906  <text/>
1907  <image>/</image>
1908  <eventLine/>
1909  <latch>true</latch>
1910  <latched>false</latched>
1911 </bsbObject>
1912 <bsbObject version="2" type="BSBController">
1913  <objectName>Phase2</objectName>
1914  <x>8</x>
1915  <y>117</y>
1916  <width>485</width>
1917  <height>6</height>
1918  <uuid>{6d6f60d4-ee09-4f65-be61-b9ee333409df}</uuid>
1919  <visible>true</visible>
1920  <midichan>0</midichan>
1921  <midicc>0</midicc>
1922  <objectName2/>
1923  <xMin>0.00000000</xMin>
1924  <xMax>8.00000000</xMax>
1925  <yMin>0.00000000</yMin>
1926  <yMax>1.00000000</yMax>
1927  <xValue>6.42731810</xValue>
1928  <yValue>0.00000000</yValue>
1929  <type>fill</type>
1930  <pointsize>1</pointsize>
1931  <fadeSpeed>0.00000000</fadeSpeed>
1932  <mouseControl act="press">jump</mouseControl>
1933  <color>
1934   <r>255</r>
1935   <g>0</g>
1936   <b>0</b>
1937  </color>
1938  <randomizable mode="both" group="0">false</randomizable>
1939  <bgcolor>
1940   <r>0</r>
1941   <g>0</g>
1942   <b>0</b>
1943  </bgcolor>
1944 </bsbObject>
1945 <bsbObject version="2" type="BSBButton">
1946  <objectName>b3_01</objectName>
1947  <x>8</x>
1948  <y>130</y>
1949  <width>16</width>
1950  <height>16</height>
1951  <uuid>{9310a4ba-e420-4a23-ba75-d1ec223de8f3}</uuid>
1952  <visible>true</visible>
1953  <midichan>0</midichan>
1954  <midicc>0</midicc>
1955  <type>value</type>
1956  <pressedValue>1.00000000</pressedValue>
1957  <stringvalue/>
1958  <text/>
1959  <image>/</image>
1960  <eventLine/>
1961  <latch>true</latch>
1962  <latched>false</latched>
1963 </bsbObject>
1964 <bsbObject version="2" type="BSBButton">
1965  <objectName>b3_02</objectName>
1966  <x>22</x>
1967  <y>130</y>
1968  <width>16</width>
1969  <height>16</height>
1970  <uuid>{129cbb74-f667-4172-bc02-98f2c2262201}</uuid>
1971  <visible>true</visible>
1972  <midichan>0</midichan>
1973  <midicc>0</midicc>
1974  <type>value</type>
1975  <pressedValue>1.00000000</pressedValue>
1976  <stringvalue/>
1977  <text/>
1978  <image>/</image>
1979  <eventLine/>
1980  <latch>true</latch>
1981  <latched>false</latched>
1982 </bsbObject>
1983 <bsbObject version="2" type="BSBButton">
1984  <objectName>b3_03</objectName>
1985  <x>36</x>
1986  <y>130</y>
1987  <width>16</width>
1988  <height>16</height>
1989  <uuid>{1fe654a9-720f-4df0-befd-0101147e4874}</uuid>
1990  <visible>true</visible>
1991  <midichan>0</midichan>
1992  <midicc>0</midicc>
1993  <type>value</type>
1994  <pressedValue>1.00000000</pressedValue>
1995  <stringvalue/>
1996  <text/>
1997  <image>/</image>
1998  <eventLine/>
1999  <latch>true</latch>
2000  <latched>false</latched>
2001 </bsbObject>
2002 <bsbObject version="2" type="BSBButton">
2003  <objectName>b3_04</objectName>
2004  <x>50</x>
2005  <y>130</y>
2006  <width>16</width>
2007  <height>16</height>
2008  <uuid>{5b1f28c4-af08-4430-b960-3345d9dad3c6}</uuid>
2009  <visible>true</visible>
2010  <midichan>0</midichan>
2011  <midicc>0</midicc>
2012  <type>value</type>
2013  <pressedValue>1.00000000</pressedValue>
2014  <stringvalue/>
2015  <text/>
2016  <image>/</image>
2017  <eventLine/>
2018  <latch>true</latch>
2019  <latched>false</latched>
2020 </bsbObject>
2021 <bsbObject version="2" type="BSBButton">
2022  <objectName>b3_05</objectName>
2023  <x>69</x>
2024  <y>130</y>
2025  <width>16</width>
2026  <height>16</height>
2027  <uuid>{5047e8ec-fc03-44ce-a51e-3f1893cb737e}</uuid>
2028  <visible>true</visible>
2029  <midichan>0</midichan>
2030  <midicc>0</midicc>
2031  <type>value</type>
2032  <pressedValue>1.00000000</pressedValue>
2033  <stringvalue/>
2034  <text/>
2035  <image>/</image>
2036  <eventLine/>
2037  <latch>true</latch>
2038  <latched>false</latched>
2039 </bsbObject>
2040 <bsbObject version="2" type="BSBButton">
2041  <objectName>b3_06</objectName>
2042  <x>83</x>
2043  <y>130</y>
2044  <width>16</width>
2045  <height>16</height>
2046  <uuid>{f7704f0c-ba72-4c2d-bd25-17ff82e9beac}</uuid>
2047  <visible>true</visible>
2048  <midichan>0</midichan>
2049  <midicc>0</midicc>
2050  <type>value</type>
2051  <pressedValue>1.00000000</pressedValue>
2052  <stringvalue/>
2053  <text/>
2054  <image>/</image>
2055  <eventLine/>
2056  <latch>true</latch>
2057  <latched>false</latched>
2058 </bsbObject>
2059 <bsbObject version="2" type="BSBButton">
2060  <objectName>b3_07</objectName>
2061  <x>97</x>
2062  <y>130</y>
2063  <width>16</width>
2064  <height>16</height>
2065  <uuid>{34b705cc-3286-42e6-b96e-fcaaa8c802ef}</uuid>
2066  <visible>true</visible>
2067  <midichan>0</midichan>
2068  <midicc>0</midicc>
2069  <type>value</type>
2070  <pressedValue>1.00000000</pressedValue>
2071  <stringvalue/>
2072  <text/>
2073  <image>/</image>
2074  <eventLine/>
2075  <latch>true</latch>
2076  <latched>false</latched>
2077 </bsbObject>
2078 <bsbObject version="2" type="BSBButton">
2079  <objectName>b3_08</objectName>
2080  <x>111</x>
2081  <y>130</y>
2082  <width>16</width>
2083  <height>16</height>
2084  <uuid>{5819c496-bb2f-4db8-91ea-cef8c4fb23ef}</uuid>
2085  <visible>true</visible>
2086  <midichan>0</midichan>
2087  <midicc>0</midicc>
2088  <type>value</type>
2089  <pressedValue>1.00000000</pressedValue>
2090  <stringvalue/>
2091  <text/>
2092  <image>/</image>
2093  <eventLine/>
2094  <latch>true</latch>
2095  <latched>false</latched>
2096 </bsbObject>
2097 <bsbObject version="2" type="BSBButton">
2098  <objectName>b3_09</objectName>
2099  <x>130</x>
2100  <y>130</y>
2101  <width>16</width>
2102  <height>16</height>
2103  <uuid>{1db54791-aa1f-4d0c-808d-ad7159147e62}</uuid>
2104  <visible>true</visible>
2105  <midichan>0</midichan>
2106  <midicc>0</midicc>
2107  <type>value</type>
2108  <pressedValue>1.00000000</pressedValue>
2109  <stringvalue/>
2110  <text/>
2111  <image>/</image>
2112  <eventLine/>
2113  <latch>true</latch>
2114  <latched>false</latched>
2115 </bsbObject>
2116 <bsbObject version="2" type="BSBButton">
2117  <objectName>b3_10</objectName>
2118  <x>144</x>
2119  <y>130</y>
2120  <width>16</width>
2121  <height>16</height>
2122  <uuid>{2d9537a8-4fc6-4d70-bd4e-b64aa8aaa38a}</uuid>
2123  <visible>true</visible>
2124  <midichan>0</midichan>
2125  <midicc>0</midicc>
2126  <type>value</type>
2127  <pressedValue>1.00000000</pressedValue>
2128  <stringvalue/>
2129  <text/>
2130  <image>/</image>
2131  <eventLine/>
2132  <latch>true</latch>
2133  <latched>false</latched>
2134 </bsbObject>
2135 <bsbObject version="2" type="BSBButton">
2136  <objectName>b3_11</objectName>
2137  <x>158</x>
2138  <y>130</y>
2139  <width>16</width>
2140  <height>16</height>
2141  <uuid>{9bc44a82-0356-4789-831d-e664b0514eb5}</uuid>
2142  <visible>true</visible>
2143  <midichan>0</midichan>
2144  <midicc>0</midicc>
2145  <type>value</type>
2146  <pressedValue>1.00000000</pressedValue>
2147  <stringvalue/>
2148  <text/>
2149  <image>/</image>
2150  <eventLine/>
2151  <latch>true</latch>
2152  <latched>false</latched>
2153 </bsbObject>
2154 <bsbObject version="2" type="BSBButton">
2155  <objectName>b3_12</objectName>
2156  <x>172</x>
2157  <y>130</y>
2158  <width>16</width>
2159  <height>16</height>
2160  <uuid>{e86c3a8a-16bf-4fd3-89f4-68cd349fde3b}</uuid>
2161  <visible>true</visible>
2162  <midichan>0</midichan>
2163  <midicc>0</midicc>
2164  <type>value</type>
2165  <pressedValue>1.00000000</pressedValue>
2166  <stringvalue/>
2167  <text/>
2168  <image>/</image>
2169  <eventLine/>
2170  <latch>true</latch>
2171  <latched>false</latched>
2172 </bsbObject>
2173 <bsbObject version="2" type="BSBButton">
2174  <objectName>b3_13</objectName>
2175  <x>191</x>
2176  <y>130</y>
2177  <width>16</width>
2178  <height>16</height>
2179  <uuid>{ff75b6e8-e2b3-46f1-89c4-293db41fec83}</uuid>
2180  <visible>true</visible>
2181  <midichan>0</midichan>
2182  <midicc>0</midicc>
2183  <type>value</type>
2184  <pressedValue>1.00000000</pressedValue>
2185  <stringvalue/>
2186  <text/>
2187  <image>/</image>
2188  <eventLine/>
2189  <latch>true</latch>
2190  <latched>false</latched>
2191 </bsbObject>
2192 <bsbObject version="2" type="BSBButton">
2193  <objectName>b3_14</objectName>
2194  <x>205</x>
2195  <y>130</y>
2196  <width>16</width>
2197  <height>16</height>
2198  <uuid>{b9087786-b2a3-497f-bd7e-5219726e157f}</uuid>
2199  <visible>true</visible>
2200  <midichan>0</midichan>
2201  <midicc>0</midicc>
2202  <type>value</type>
2203  <pressedValue>1.00000000</pressedValue>
2204  <stringvalue/>
2205  <text/>
2206  <image>/</image>
2207  <eventLine/>
2208  <latch>true</latch>
2209  <latched>false</latched>
2210 </bsbObject>
2211 <bsbObject version="2" type="BSBButton">
2212  <objectName>b3_15</objectName>
2213  <x>219</x>
2214  <y>130</y>
2215  <width>16</width>
2216  <height>16</height>
2217  <uuid>{d93b290b-e0bf-4fdd-9c1a-ecf26e19e0aa}</uuid>
2218  <visible>true</visible>
2219  <midichan>0</midichan>
2220  <midicc>0</midicc>
2221  <type>value</type>
2222  <pressedValue>1.00000000</pressedValue>
2223  <stringvalue/>
2224  <text/>
2225  <image>/</image>
2226  <eventLine/>
2227  <latch>true</latch>
2228  <latched>false</latched>
2229 </bsbObject>
2230 <bsbObject version="2" type="BSBButton">
2231  <objectName>b3_16</objectName>
2232  <x>233</x>
2233  <y>130</y>
2234  <width>16</width>
2235  <height>16</height>
2236  <uuid>{100384e2-c1f8-4eb4-a088-0e0769bde890}</uuid>
2237  <visible>true</visible>
2238  <midichan>0</midichan>
2239  <midicc>0</midicc>
2240  <type>value</type>
2241  <pressedValue>1.00000000</pressedValue>
2242  <stringvalue/>
2243  <text/>
2244  <image>/</image>
2245  <eventLine/>
2246  <latch>true</latch>
2247  <latched>false</latched>
2248 </bsbObject>
2249 <bsbObject version="2" type="BSBButton">
2250  <objectName>b3_17</objectName>
2251  <x>252</x>
2252  <y>130</y>
2253  <width>16</width>
2254  <height>16</height>
2255  <uuid>{f9863d33-a600-4693-82c1-b03ee4e5b2c6}</uuid>
2256  <visible>true</visible>
2257  <midichan>0</midichan>
2258  <midicc>0</midicc>
2259  <type>value</type>
2260  <pressedValue>1.00000000</pressedValue>
2261  <stringvalue/>
2262  <text/>
2263  <image>/</image>
2264  <eventLine/>
2265  <latch>true</latch>
2266  <latched>false</latched>
2267 </bsbObject>
2268 <bsbObject version="2" type="BSBButton">
2269  <objectName>b3_18</objectName>
2270  <x>266</x>
2271  <y>130</y>
2272  <width>16</width>
2273  <height>16</height>
2274  <uuid>{1dc708e7-e748-4410-bab4-f8ae212de9ed}</uuid>
2275  <visible>true</visible>
2276  <midichan>0</midichan>
2277  <midicc>0</midicc>
2278  <type>value</type>
2279  <pressedValue>1.00000000</pressedValue>
2280  <stringvalue/>
2281  <text/>
2282  <image>/</image>
2283  <eventLine/>
2284  <latch>true</latch>
2285  <latched>false</latched>
2286 </bsbObject>
2287 <bsbObject version="2" type="BSBButton">
2288  <objectName>b3_19</objectName>
2289  <x>280</x>
2290  <y>130</y>
2291  <width>16</width>
2292  <height>16</height>
2293  <uuid>{70e89fa7-cf00-4fc9-8358-fb182020edb3}</uuid>
2294  <visible>true</visible>
2295  <midichan>0</midichan>
2296  <midicc>0</midicc>
2297  <type>value</type>
2298  <pressedValue>1.00000000</pressedValue>
2299  <stringvalue/>
2300  <text/>
2301  <image>/</image>
2302  <eventLine/>
2303  <latch>true</latch>
2304  <latched>false</latched>
2305 </bsbObject>
2306 <bsbObject version="2" type="BSBButton">
2307  <objectName>b3_20</objectName>
2308  <x>294</x>
2309  <y>130</y>
2310  <width>16</width>
2311  <height>16</height>
2312  <uuid>{52eca5dc-b91a-4e32-95a5-bc69a25e7752}</uuid>
2313  <visible>true</visible>
2314  <midichan>0</midichan>
2315  <midicc>0</midicc>
2316  <type>value</type>
2317  <pressedValue>1.00000000</pressedValue>
2318  <stringvalue/>
2319  <text/>
2320  <image>/</image>
2321  <eventLine/>
2322  <latch>true</latch>
2323  <latched>false</latched>
2324 </bsbObject>
2325 <bsbObject version="2" type="BSBButton">
2326  <objectName>b3_21</objectName>
2327  <x>313</x>
2328  <y>130</y>
2329  <width>16</width>
2330  <height>16</height>
2331  <uuid>{8fd3dcb0-fc46-4fe6-a886-4fba296ff70e}</uuid>
2332  <visible>true</visible>
2333  <midichan>0</midichan>
2334  <midicc>0</midicc>
2335  <type>value</type>
2336  <pressedValue>1.00000000</pressedValue>
2337  <stringvalue/>
2338  <text/>
2339  <image>/</image>
2340  <eventLine/>
2341  <latch>true</latch>
2342  <latched>false</latched>
2343 </bsbObject>
2344 <bsbObject version="2" type="BSBButton">
2345  <objectName>b3_22</objectName>
2346  <x>327</x>
2347  <y>130</y>
2348  <width>16</width>
2349  <height>16</height>
2350  <uuid>{5fddfa0a-e5f6-4178-b7f6-b54ff4ee133b}</uuid>
2351  <visible>true</visible>
2352  <midichan>0</midichan>
2353  <midicc>0</midicc>
2354  <type>value</type>
2355  <pressedValue>1.00000000</pressedValue>
2356  <stringvalue/>
2357  <text/>
2358  <image>/</image>
2359  <eventLine/>
2360  <latch>true</latch>
2361  <latched>false</latched>
2362 </bsbObject>
2363 <bsbObject version="2" type="BSBButton">
2364  <objectName>b3_23</objectName>
2365  <x>341</x>
2366  <y>130</y>
2367  <width>16</width>
2368  <height>16</height>
2369  <uuid>{e6e9a495-ce5a-4b61-b9e2-101b076a6ab4}</uuid>
2370  <visible>true</visible>
2371  <midichan>0</midichan>
2372  <midicc>0</midicc>
2373  <type>value</type>
2374  <pressedValue>1.00000000</pressedValue>
2375  <stringvalue/>
2376  <text/>
2377  <image>/</image>
2378  <eventLine/>
2379  <latch>true</latch>
2380  <latched>false</latched>
2381 </bsbObject>
2382 <bsbObject version="2" type="BSBButton">
2383  <objectName>b3_24</objectName>
2384  <x>355</x>
2385  <y>130</y>
2386  <width>16</width>
2387  <height>16</height>
2388  <uuid>{b514a3b9-0464-4252-a945-7039207b6f64}</uuid>
2389  <visible>true</visible>
2390  <midichan>0</midichan>
2391  <midicc>0</midicc>
2392  <type>value</type>
2393  <pressedValue>1.00000000</pressedValue>
2394  <stringvalue/>
2395  <text/>
2396  <image>/</image>
2397  <eventLine/>
2398  <latch>true</latch>
2399  <latched>false</latched>
2400 </bsbObject>
2401 <bsbObject version="2" type="BSBButton">
2402  <objectName>b3_25</objectName>
2403  <x>374</x>
2404  <y>130</y>
2405  <width>16</width>
2406  <height>16</height>
2407  <uuid>{c68b979f-e1c5-46d0-be12-e3f3c2b7ae40}</uuid>
2408  <visible>true</visible>
2409  <midichan>0</midichan>
2410  <midicc>0</midicc>
2411  <type>value</type>
2412  <pressedValue>1.00000000</pressedValue>
2413  <stringvalue/>
2414  <text/>
2415  <image>/</image>
2416  <eventLine/>
2417  <latch>true</latch>
2418  <latched>false</latched>
2419 </bsbObject>
2420 <bsbObject version="2" type="BSBButton">
2421  <objectName>b3_26</objectName>
2422  <x>388</x>
2423  <y>130</y>
2424  <width>16</width>
2425  <height>16</height>
2426  <uuid>{832a3d31-b6ed-457c-b23b-77bf2da8ca4a}</uuid>
2427  <visible>true</visible>
2428  <midichan>0</midichan>
2429  <midicc>0</midicc>
2430  <type>value</type>
2431  <pressedValue>1.00000000</pressedValue>
2432  <stringvalue/>
2433  <text/>
2434  <image>/</image>
2435  <eventLine/>
2436  <latch>true</latch>
2437  <latched>false</latched>
2438 </bsbObject>
2439 <bsbObject version="2" type="BSBButton">
2440  <objectName>b3_27</objectName>
2441  <x>402</x>
2442  <y>130</y>
2443  <width>16</width>
2444  <height>16</height>
2445  <uuid>{3f2b4a16-db0d-46ba-beb2-39bd62ef4c10}</uuid>
2446  <visible>true</visible>
2447  <midichan>0</midichan>
2448  <midicc>0</midicc>
2449  <type>value</type>
2450  <pressedValue>1.00000000</pressedValue>
2451  <stringvalue/>
2452  <text/>
2453  <image>/</image>
2454  <eventLine/>
2455  <latch>true</latch>
2456  <latched>false</latched>
2457 </bsbObject>
2458 <bsbObject version="2" type="BSBButton">
2459  <objectName>b3_28</objectName>
2460  <x>416</x>
2461  <y>130</y>
2462  <width>16</width>
2463  <height>16</height>
2464  <uuid>{3a9870b9-9c17-4f37-9b73-46ba231bc6aa}</uuid>
2465  <visible>true</visible>
2466  <midichan>0</midichan>
2467  <midicc>0</midicc>
2468  <type>value</type>
2469  <pressedValue>1.00000000</pressedValue>
2470  <stringvalue/>
2471  <text/>
2472  <image>/</image>
2473  <eventLine/>
2474  <latch>true</latch>
2475  <latched>false</latched>
2476 </bsbObject>
2477 <bsbObject version="2" type="BSBButton">
2478  <objectName>b3_29</objectName>
2479  <x>435</x>
2480  <y>130</y>
2481  <width>16</width>
2482  <height>16</height>
2483  <uuid>{a17a6442-56bc-4f76-8267-982ff0bbcdbf}</uuid>
2484  <visible>true</visible>
2485  <midichan>0</midichan>
2486  <midicc>0</midicc>
2487  <type>value</type>
2488  <pressedValue>1.00000000</pressedValue>
2489  <stringvalue/>
2490  <text/>
2491  <image>/</image>
2492  <eventLine/>
2493  <latch>true</latch>
2494  <latched>false</latched>
2495 </bsbObject>
2496 <bsbObject version="2" type="BSBButton">
2497  <objectName>b3_30</objectName>
2498  <x>449</x>
2499  <y>130</y>
2500  <width>16</width>
2501  <height>16</height>
2502  <uuid>{8bd8d89a-566c-4411-ac87-49c20a65d200}</uuid>
2503  <visible>true</visible>
2504  <midichan>0</midichan>
2505  <midicc>0</midicc>
2506  <type>value</type>
2507  <pressedValue>1.00000000</pressedValue>
2508  <stringvalue/>
2509  <text/>
2510  <image>/</image>
2511  <eventLine/>
2512  <latch>true</latch>
2513  <latched>false</latched>
2514 </bsbObject>
2515 <bsbObject version="2" type="BSBButton">
2516  <objectName>b3_31</objectName>
2517  <x>463</x>
2518  <y>130</y>
2519  <width>16</width>
2520  <height>16</height>
2521  <uuid>{7dca826a-f559-45a9-92ca-72c372b499ab}</uuid>
2522  <visible>true</visible>
2523  <midichan>0</midichan>
2524  <midicc>0</midicc>
2525  <type>value</type>
2526  <pressedValue>1.00000000</pressedValue>
2527  <stringvalue/>
2528  <text/>
2529  <image>/</image>
2530  <eventLine/>
2531  <latch>true</latch>
2532  <latched>false</latched>
2533 </bsbObject>
2534 <bsbObject version="2" type="BSBButton">
2535  <objectName>b3_32</objectName>
2536  <x>477</x>
2537  <y>130</y>
2538  <width>16</width>
2539  <height>16</height>
2540  <uuid>{e755171b-8073-48b8-ad20-1cb0ea368089}</uuid>
2541  <visible>true</visible>
2542  <midichan>0</midichan>
2543  <midicc>0</midicc>
2544  <type>value</type>
2545  <pressedValue>1.00000000</pressedValue>
2546  <stringvalue/>
2547  <text/>
2548  <image>/</image>
2549  <eventLine/>
2550  <latch>true</latch>
2551  <latched>false</latched>
2552 </bsbObject>
2553 <bsbObject version="2" type="BSBController">
2554  <objectName>Phase3</objectName>
2555  <x>8</x>
2556  <y>149</y>
2557  <width>485</width>
2558  <height>6</height>
2559  <uuid>{24ad48d7-576c-4dcc-b67f-5cb1f27f4970}</uuid>
2560  <visible>true</visible>
2561  <midichan>0</midichan>
2562  <midicc>0</midicc>
2563  <objectName2/>
2564  <xMin>0.00000000</xMin>
2565  <xMax>8.00000000</xMax>
2566  <yMin>0.00000000</yMin>
2567  <yMax>1.00000000</yMax>
2568  <xValue>6.42731810</xValue>
2569  <yValue>0.00000000</yValue>
2570  <type>fill</type>
2571  <pointsize>1</pointsize>
2572  <fadeSpeed>0.00000000</fadeSpeed>
2573  <mouseControl act="press">jump</mouseControl>
2574  <color>
2575   <r>255</r>
2576   <g>0</g>
2577   <b>0</b>
2578  </color>
2579  <randomizable mode="both" group="0">false</randomizable>
2580  <bgcolor>
2581   <r>0</r>
2582   <g>0</g>
2583   <b>0</b>
2584  </bgcolor>
2585 </bsbObject>
2586 <bsbObject version="2" type="BSBButton">
2587  <objectName>b4_01</objectName>
2588  <x>8</x>
2589  <y>162</y>
2590  <width>16</width>
2591  <height>16</height>
2592  <uuid>{7db6ca86-c4b5-417b-a5db-299ccc215041}</uuid>
2593  <visible>true</visible>
2594  <midichan>0</midichan>
2595  <midicc>0</midicc>
2596  <type>value</type>
2597  <pressedValue>1.00000000</pressedValue>
2598  <stringvalue/>
2599  <text/>
2600  <image>/</image>
2601  <eventLine/>
2602  <latch>true</latch>
2603  <latched>false</latched>
2604 </bsbObject>
2605 <bsbObject version="2" type="BSBButton">
2606  <objectName>b4_02</objectName>
2607  <x>22</x>
2608  <y>162</y>
2609  <width>16</width>
2610  <height>16</height>
2611  <uuid>{26a453d0-1d7d-4c54-b524-b97178b9556a}</uuid>
2612  <visible>true</visible>
2613  <midichan>0</midichan>
2614  <midicc>0</midicc>
2615  <type>value</type>
2616  <pressedValue>1.00000000</pressedValue>
2617  <stringvalue/>
2618  <text/>
2619  <image>/</image>
2620  <eventLine/>
2621  <latch>true</latch>
2622  <latched>false</latched>
2623 </bsbObject>
2624 <bsbObject version="2" type="BSBButton">
2625  <objectName>b4_03</objectName>
2626  <x>36</x>
2627  <y>162</y>
2628  <width>16</width>
2629  <height>16</height>
2630  <uuid>{3f779521-b9b8-42e9-9d54-fe5eb7d2c2e4}</uuid>
2631  <visible>true</visible>
2632  <midichan>0</midichan>
2633  <midicc>0</midicc>
2634  <type>value</type>
2635  <pressedValue>1.00000000</pressedValue>
2636  <stringvalue/>
2637  <text/>
2638  <image>/</image>
2639  <eventLine/>
2640  <latch>true</latch>
2641  <latched>false</latched>
2642 </bsbObject>
2643 <bsbObject version="2" type="BSBButton">
2644  <objectName>b4_04</objectName>
2645  <x>50</x>
2646  <y>162</y>
2647  <width>16</width>
2648  <height>16</height>
2649  <uuid>{d431479f-e815-45c7-9761-1cbd0a0037b6}</uuid>
2650  <visible>true</visible>
2651  <midichan>0</midichan>
2652  <midicc>0</midicc>
2653  <type>value</type>
2654  <pressedValue>1.00000000</pressedValue>
2655  <stringvalue/>
2656  <text/>
2657  <image>/</image>
2658  <eventLine/>
2659  <latch>true</latch>
2660  <latched>false</latched>
2661 </bsbObject>
2662 <bsbObject version="2" type="BSBButton">
2663  <objectName>b4_05</objectName>
2664  <x>69</x>
2665  <y>162</y>
2666  <width>16</width>
2667  <height>16</height>
2668  <uuid>{5cf11534-0206-4171-9d37-1591b2de4870}</uuid>
2669  <visible>true</visible>
2670  <midichan>0</midichan>
2671  <midicc>0</midicc>
2672  <type>value</type>
2673  <pressedValue>1.00000000</pressedValue>
2674  <stringvalue/>
2675  <text/>
2676  <image>/</image>
2677  <eventLine/>
2678  <latch>true</latch>
2679  <latched>false</latched>
2680 </bsbObject>
2681 <bsbObject version="2" type="BSBButton">
2682  <objectName>b4_06</objectName>
2683  <x>83</x>
2684  <y>162</y>
2685  <width>16</width>
2686  <height>16</height>
2687  <uuid>{3dd5b88a-5bbb-4eae-a6ca-f90bb1fa75b0}</uuid>
2688  <visible>true</visible>
2689  <midichan>0</midichan>
2690  <midicc>0</midicc>
2691  <type>value</type>
2692  <pressedValue>1.00000000</pressedValue>
2693  <stringvalue/>
2694  <text/>
2695  <image>/</image>
2696  <eventLine/>
2697  <latch>true</latch>
2698  <latched>false</latched>
2699 </bsbObject>
2700 <bsbObject version="2" type="BSBButton">
2701  <objectName>b4_07</objectName>
2702  <x>97</x>
2703  <y>162</y>
2704  <width>16</width>
2705  <height>16</height>
2706  <uuid>{46dce909-3c25-41c0-ac17-ea8ac8ea6220}</uuid>
2707  <visible>true</visible>
2708  <midichan>0</midichan>
2709  <midicc>0</midicc>
2710  <type>value</type>
2711  <pressedValue>1.00000000</pressedValue>
2712  <stringvalue/>
2713  <text/>
2714  <image>/</image>
2715  <eventLine/>
2716  <latch>true</latch>
2717  <latched>false</latched>
2718 </bsbObject>
2719 <bsbObject version="2" type="BSBButton">
2720  <objectName>b4_08</objectName>
2721  <x>111</x>
2722  <y>162</y>
2723  <width>16</width>
2724  <height>16</height>
2725  <uuid>{340356d9-08f7-4b6e-a80a-e59676409b75}</uuid>
2726  <visible>true</visible>
2727  <midichan>0</midichan>
2728  <midicc>0</midicc>
2729  <type>value</type>
2730  <pressedValue>1.00000000</pressedValue>
2731  <stringvalue/>
2732  <text/>
2733  <image>/</image>
2734  <eventLine/>
2735  <latch>true</latch>
2736  <latched>false</latched>
2737 </bsbObject>
2738 <bsbObject version="2" type="BSBButton">
2739  <objectName>b4_09</objectName>
2740  <x>130</x>
2741  <y>162</y>
2742  <width>16</width>
2743  <height>16</height>
2744  <uuid>{ad84b6e6-0e9f-4826-9397-08e5fe9b9171}</uuid>
2745  <visible>true</visible>
2746  <midichan>0</midichan>
2747  <midicc>0</midicc>
2748  <type>value</type>
2749  <pressedValue>1.00000000</pressedValue>
2750  <stringvalue/>
2751  <text/>
2752  <image>/</image>
2753  <eventLine/>
2754  <latch>true</latch>
2755  <latched>false</latched>
2756 </bsbObject>
2757 <bsbObject version="2" type="BSBButton">
2758  <objectName>b4_10</objectName>
2759  <x>144</x>
2760  <y>162</y>
2761  <width>16</width>
2762  <height>16</height>
2763  <uuid>{474bbad6-a051-409d-a6b4-51d6607c0fe2}</uuid>
2764  <visible>true</visible>
2765  <midichan>0</midichan>
2766  <midicc>0</midicc>
2767  <type>value</type>
2768  <pressedValue>1.00000000</pressedValue>
2769  <stringvalue/>
2770  <text/>
2771  <image>/</image>
2772  <eventLine/>
2773  <latch>true</latch>
2774  <latched>false</latched>
2775 </bsbObject>
2776 <bsbObject version="2" type="BSBButton">
2777  <objectName>b4_11</objectName>
2778  <x>158</x>
2779  <y>162</y>
2780  <width>16</width>
2781  <height>16</height>
2782  <uuid>{01821513-13fc-4941-9a59-ecf75d877520}</uuid>
2783  <visible>true</visible>
2784  <midichan>0</midichan>
2785  <midicc>0</midicc>
2786  <type>value</type>
2787  <pressedValue>1.00000000</pressedValue>
2788  <stringvalue/>
2789  <text/>
2790  <image>/</image>
2791  <eventLine/>
2792  <latch>true</latch>
2793  <latched>false</latched>
2794 </bsbObject>
2795 <bsbObject version="2" type="BSBButton">
2796  <objectName>b4_12</objectName>
2797  <x>172</x>
2798  <y>162</y>
2799  <width>16</width>
2800  <height>16</height>
2801  <uuid>{482080c7-ba51-42b3-a776-c30277456b12}</uuid>
2802  <visible>true</visible>
2803  <midichan>0</midichan>
2804  <midicc>0</midicc>
2805  <type>value</type>
2806  <pressedValue>1.00000000</pressedValue>
2807  <stringvalue/>
2808  <text/>
2809  <image>/</image>
2810  <eventLine/>
2811  <latch>true</latch>
2812  <latched>false</latched>
2813 </bsbObject>
2814 <bsbObject version="2" type="BSBButton">
2815  <objectName>b4_13</objectName>
2816  <x>191</x>
2817  <y>162</y>
2818  <width>16</width>
2819  <height>16</height>
2820  <uuid>{735eadda-eac2-498f-8800-01dcee516fa9}</uuid>
2821  <visible>true</visible>
2822  <midichan>0</midichan>
2823  <midicc>0</midicc>
2824  <type>value</type>
2825  <pressedValue>1.00000000</pressedValue>
2826  <stringvalue/>
2827  <text/>
2828  <image>/</image>
2829  <eventLine/>
2830  <latch>true</latch>
2831  <latched>false</latched>
2832 </bsbObject>
2833 <bsbObject version="2" type="BSBButton">
2834  <objectName>b4_14</objectName>
2835  <x>205</x>
2836  <y>162</y>
2837  <width>16</width>
2838  <height>16</height>
2839  <uuid>{c7134cf5-f77f-4646-b5ea-bd14c33e07e3}</uuid>
2840  <visible>true</visible>
2841  <midichan>0</midichan>
2842  <midicc>0</midicc>
2843  <type>value</type>
2844  <pressedValue>1.00000000</pressedValue>
2845  <stringvalue/>
2846  <text/>
2847  <image>/</image>
2848  <eventLine/>
2849  <latch>true</latch>
2850  <latched>false</latched>
2851 </bsbObject>
2852 <bsbObject version="2" type="BSBButton">
2853  <objectName>b4_15</objectName>
2854  <x>219</x>
2855  <y>162</y>
2856  <width>16</width>
2857  <height>16</height>
2858  <uuid>{73741b81-357b-4d71-a627-e269b89cefc8}</uuid>
2859  <visible>true</visible>
2860  <midichan>0</midichan>
2861  <midicc>0</midicc>
2862  <type>value</type>
2863  <pressedValue>1.00000000</pressedValue>
2864  <stringvalue/>
2865  <text/>
2866  <image>/</image>
2867  <eventLine/>
2868  <latch>true</latch>
2869  <latched>false</latched>
2870 </bsbObject>
2871 <bsbObject version="2" type="BSBButton">
2872  <objectName>b4_16</objectName>
2873  <x>233</x>
2874  <y>162</y>
2875  <width>16</width>
2876  <height>16</height>
2877  <uuid>{1495c3a7-f864-4fbd-96ad-a4c44d079c70}</uuid>
2878  <visible>true</visible>
2879  <midichan>0</midichan>
2880  <midicc>0</midicc>
2881  <type>value</type>
2882  <pressedValue>1.00000000</pressedValue>
2883  <stringvalue/>
2884  <text/>
2885  <image>/</image>
2886  <eventLine/>
2887  <latch>true</latch>
2888  <latched>false</latched>
2889 </bsbObject>
2890 <bsbObject version="2" type="BSBButton">
2891  <objectName>b4_17</objectName>
2892  <x>252</x>
2893  <y>162</y>
2894  <width>16</width>
2895  <height>16</height>
2896  <uuid>{b27bfc51-96ad-4993-bc6d-1b3ac308977b}</uuid>
2897  <visible>true</visible>
2898  <midichan>0</midichan>
2899  <midicc>0</midicc>
2900  <type>value</type>
2901  <pressedValue>1.00000000</pressedValue>
2902  <stringvalue/>
2903  <text/>
2904  <image>/</image>
2905  <eventLine/>
2906  <latch>true</latch>
2907  <latched>false</latched>
2908 </bsbObject>
2909 <bsbObject version="2" type="BSBButton">
2910  <objectName>b4_18</objectName>
2911  <x>266</x>
2912  <y>162</y>
2913  <width>16</width>
2914  <height>16</height>
2915  <uuid>{41297926-5d87-439f-9260-2b0b1b3e7297}</uuid>
2916  <visible>true</visible>
2917  <midichan>0</midichan>
2918  <midicc>0</midicc>
2919  <type>value</type>
2920  <pressedValue>1.00000000</pressedValue>
2921  <stringvalue/>
2922  <text/>
2923  <image>/</image>
2924  <eventLine/>
2925  <latch>true</latch>
2926  <latched>false</latched>
2927 </bsbObject>
2928 <bsbObject version="2" type="BSBButton">
2929  <objectName>b4_19</objectName>
2930  <x>280</x>
2931  <y>162</y>
2932  <width>16</width>
2933  <height>16</height>
2934  <uuid>{20cff291-a4e2-4255-9178-f8241737d67d}</uuid>
2935  <visible>true</visible>
2936  <midichan>0</midichan>
2937  <midicc>0</midicc>
2938  <type>value</type>
2939  <pressedValue>1.00000000</pressedValue>
2940  <stringvalue/>
2941  <text/>
2942  <image>/</image>
2943  <eventLine/>
2944  <latch>true</latch>
2945  <latched>false</latched>
2946 </bsbObject>
2947 <bsbObject version="2" type="BSBButton">
2948  <objectName>b4_20</objectName>
2949  <x>294</x>
2950  <y>162</y>
2951  <width>16</width>
2952  <height>16</height>
2953  <uuid>{1d4019ba-c770-4661-b2ab-a5a037863274}</uuid>
2954  <visible>true</visible>
2955  <midichan>0</midichan>
2956  <midicc>0</midicc>
2957  <type>value</type>
2958  <pressedValue>1.00000000</pressedValue>
2959  <stringvalue/>
2960  <text/>
2961  <image>/</image>
2962  <eventLine/>
2963  <latch>true</latch>
2964  <latched>false</latched>
2965 </bsbObject>
2966 <bsbObject version="2" type="BSBButton">
2967  <objectName>b4_21</objectName>
2968  <x>313</x>
2969  <y>162</y>
2970  <width>16</width>
2971  <height>16</height>
2972  <uuid>{eed9a08a-0ea1-4c46-aee4-24c3bdc03d4c}</uuid>
2973  <visible>true</visible>
2974  <midichan>0</midichan>
2975  <midicc>0</midicc>
2976  <type>value</type>
2977  <pressedValue>1.00000000</pressedValue>
2978  <stringvalue/>
2979  <text/>
2980  <image>/</image>
2981  <eventLine/>
2982  <latch>true</latch>
2983  <latched>false</latched>
2984 </bsbObject>
2985 <bsbObject version="2" type="BSBButton">
2986  <objectName>b4_22</objectName>
2987  <x>327</x>
2988  <y>162</y>
2989  <width>16</width>
2990  <height>16</height>
2991  <uuid>{b98b3daa-d2a7-4c9b-be20-a7fda87e55e3}</uuid>
2992  <visible>true</visible>
2993  <midichan>0</midichan>
2994  <midicc>0</midicc>
2995  <type>value</type>
2996  <pressedValue>1.00000000</pressedValue>
2997  <stringvalue/>
2998  <text/>
2999  <image>/</image>
3000  <eventLine/>
3001  <latch>true</latch>
3002  <latched>false</latched>
3003 </bsbObject>
3004 <bsbObject version="2" type="BSBButton">
3005  <objectName>b4_23</objectName>
3006  <x>341</x>
3007  <y>162</y>
3008  <width>16</width>
3009  <height>16</height>
3010  <uuid>{8d52a484-6a73-4be3-9b56-1c6dbb4a2e23}</uuid>
3011  <visible>true</visible>
3012  <midichan>0</midichan>
3013  <midicc>0</midicc>
3014  <type>value</type>
3015  <pressedValue>1.00000000</pressedValue>
3016  <stringvalue/>
3017  <text/>
3018  <image>/</image>
3019  <eventLine/>
3020  <latch>true</latch>
3021  <latched>false</latched>
3022 </bsbObject>
3023 <bsbObject version="2" type="BSBButton">
3024  <objectName>b4_24</objectName>
3025  <x>355</x>
3026  <y>162</y>
3027  <width>16</width>
3028  <height>16</height>
3029  <uuid>{665c8940-23b5-4ab4-be6d-a35a76c24381}</uuid>
3030  <visible>true</visible>
3031  <midichan>0</midichan>
3032  <midicc>0</midicc>
3033  <type>value</type>
3034  <pressedValue>1.00000000</pressedValue>
3035  <stringvalue/>
3036  <text/>
3037  <image>/</image>
3038  <eventLine/>
3039  <latch>true</latch>
3040  <latched>false</latched>
3041 </bsbObject>
3042 <bsbObject version="2" type="BSBButton">
3043  <objectName>b4_25</objectName>
3044  <x>374</x>
3045  <y>162</y>
3046  <width>16</width>
3047  <height>16</height>
3048  <uuid>{ac949cc6-56de-45ac-a067-4a3b1b7638ff}</uuid>
3049  <visible>true</visible>
3050  <midichan>0</midichan>
3051  <midicc>0</midicc>
3052  <type>value</type>
3053  <pressedValue>1.00000000</pressedValue>
3054  <stringvalue/>
3055  <text/>
3056  <image>/</image>
3057  <eventLine/>
3058  <latch>true</latch>
3059  <latched>false</latched>
3060 </bsbObject>
3061 <bsbObject version="2" type="BSBButton">
3062  <objectName>b4_26</objectName>
3063  <x>388</x>
3064  <y>162</y>
3065  <width>16</width>
3066  <height>16</height>
3067  <uuid>{343598c1-5720-4541-b92b-2eb0aaf8952a}</uuid>
3068  <visible>true</visible>
3069  <midichan>0</midichan>
3070  <midicc>0</midicc>
3071  <type>value</type>
3072  <pressedValue>1.00000000</pressedValue>
3073  <stringvalue/>
3074  <text/>
3075  <image>/</image>
3076  <eventLine/>
3077  <latch>true</latch>
3078  <latched>false</latched>
3079 </bsbObject>
3080 <bsbObject version="2" type="BSBButton">
3081  <objectName>b4_27</objectName>
3082  <x>402</x>
3083  <y>162</y>
3084  <width>16</width>
3085  <height>16</height>
3086  <uuid>{3d292f9a-7a6c-4e1f-84b4-4a86e4e3ec9c}</uuid>
3087  <visible>true</visible>
3088  <midichan>0</midichan>
3089  <midicc>0</midicc>
3090  <type>value</type>
3091  <pressedValue>1.00000000</pressedValue>
3092  <stringvalue/>
3093  <text/>
3094  <image>/</image>
3095  <eventLine/>
3096  <latch>true</latch>
3097  <latched>false</latched>
3098 </bsbObject>
3099 <bsbObject version="2" type="BSBButton">
3100  <objectName>b4_28</objectName>
3101  <x>416</x>
3102  <y>162</y>
3103  <width>16</width>
3104  <height>16</height>
3105  <uuid>{73a80c78-0d72-40ba-b8fb-bab64ac0b47b}</uuid>
3106  <visible>true</visible>
3107  <midichan>0</midichan>
3108  <midicc>0</midicc>
3109  <type>value</type>
3110  <pressedValue>1.00000000</pressedValue>
3111  <stringvalue/>
3112  <text/>
3113  <image>/</image>
3114  <eventLine/>
3115  <latch>true</latch>
3116  <latched>false</latched>
3117 </bsbObject>
3118 <bsbObject version="2" type="BSBButton">
3119  <objectName>b4_29</objectName>
3120  <x>435</x>
3121  <y>162</y>
3122  <width>16</width>
3123  <height>16</height>
3124  <uuid>{ef99f346-6fa4-49bb-90e9-78661e29acf8}</uuid>
3125  <visible>true</visible>
3126  <midichan>0</midichan>
3127  <midicc>0</midicc>
3128  <type>value</type>
3129  <pressedValue>1.00000000</pressedValue>
3130  <stringvalue/>
3131  <text/>
3132  <image>/</image>
3133  <eventLine/>
3134  <latch>true</latch>
3135  <latched>false</latched>
3136 </bsbObject>
3137 <bsbObject version="2" type="BSBButton">
3138  <objectName>b4_30</objectName>
3139  <x>449</x>
3140  <y>162</y>
3141  <width>16</width>
3142  <height>16</height>
3143  <uuid>{352588ab-eb32-4194-8378-bde660b44851}</uuid>
3144  <visible>true</visible>
3145  <midichan>0</midichan>
3146  <midicc>0</midicc>
3147  <type>value</type>
3148  <pressedValue>1.00000000</pressedValue>
3149  <stringvalue/>
3150  <text/>
3151  <image>/</image>
3152  <eventLine/>
3153  <latch>true</latch>
3154  <latched>false</latched>
3155 </bsbObject>
3156 <bsbObject version="2" type="BSBButton">
3157  <objectName>b4_31</objectName>
3158  <x>463</x>
3159  <y>162</y>
3160  <width>16</width>
3161  <height>16</height>
3162  <uuid>{b4508e12-d50e-4d0e-8b9f-70b4d1f616cf}</uuid>
3163  <visible>true</visible>
3164  <midichan>0</midichan>
3165  <midicc>0</midicc>
3166  <type>value</type>
3167  <pressedValue>1.00000000</pressedValue>
3168  <stringvalue/>
3169  <text/>
3170  <image>/</image>
3171  <eventLine/>
3172  <latch>true</latch>
3173  <latched>false</latched>
3174 </bsbObject>
3175 <bsbObject version="2" type="BSBButton">
3176  <objectName>b4_32</objectName>
3177  <x>477</x>
3178  <y>162</y>
3179  <width>16</width>
3180  <height>16</height>
3181  <uuid>{c93fa9a3-88e8-4c68-a24a-c978f37faa47}</uuid>
3182  <visible>true</visible>
3183  <midichan>0</midichan>
3184  <midicc>0</midicc>
3185  <type>value</type>
3186  <pressedValue>1.00000000</pressedValue>
3187  <stringvalue/>
3188  <text/>
3189  <image>/</image>
3190  <eventLine/>
3191  <latch>true</latch>
3192  <latched>false</latched>
3193 </bsbObject>
3194 <bsbObject version="2" type="BSBController">
3195  <objectName>Phase4</objectName>
3196  <x>8</x>
3197  <y>181</y>
3198  <width>485</width>
3199  <height>6</height>
3200  <uuid>{bbe69e47-5532-4c78-bf77-bd0806de8d9c}</uuid>
3201  <visible>true</visible>
3202  <midichan>0</midichan>
3203  <midicc>0</midicc>
3204  <objectName2/>
3205  <xMin>0.00000000</xMin>
3206  <xMax>8.00000000</xMax>
3207  <yMin>0.00000000</yMin>
3208  <yMax>1.00000000</yMax>
3209  <xValue>2.92731857</xValue>
3210  <yValue>0.00000000</yValue>
3211  <type>fill</type>
3212  <pointsize>1</pointsize>
3213  <fadeSpeed>0.00000000</fadeSpeed>
3214  <mouseControl act="press">jump</mouseControl>
3215  <color>
3216   <r>255</r>
3217   <g>0</g>
3218   <b>0</b>
3219  </color>
3220  <randomizable mode="both" group="0">false</randomizable>
3221  <bgcolor>
3222   <r>0</r>
3223   <g>0</g>
3224   <b>0</b>
3225  </bgcolor>
3226 </bsbObject>
3227 <bsbObject version="2" type="BSBButton">
3228  <objectName>b5_01</objectName>
3229  <x>8</x>
3230  <y>194</y>
3231  <width>16</width>
3232  <height>16</height>
3233  <uuid>{406813a8-8f1c-45ab-9c0e-52e50bb2523b}</uuid>
3234  <visible>true</visible>
3235  <midichan>0</midichan>
3236  <midicc>0</midicc>
3237  <type>value</type>
3238  <pressedValue>1.00000000</pressedValue>
3239  <stringvalue/>
3240  <text/>
3241  <image>/</image>
3242  <eventLine/>
3243  <latch>true</latch>
3244  <latched>false</latched>
3245 </bsbObject>
3246 <bsbObject version="2" type="BSBButton">
3247  <objectName>b5_02</objectName>
3248  <x>22</x>
3249  <y>194</y>
3250  <width>16</width>
3251  <height>16</height>
3252  <uuid>{76c5c22d-8698-4c86-b20e-bb3bc48ba11d}</uuid>
3253  <visible>true</visible>
3254  <midichan>0</midichan>
3255  <midicc>0</midicc>
3256  <type>value</type>
3257  <pressedValue>1.00000000</pressedValue>
3258  <stringvalue/>
3259  <text/>
3260  <image>/</image>
3261  <eventLine/>
3262  <latch>true</latch>
3263  <latched>false</latched>
3264 </bsbObject>
3265 <bsbObject version="2" type="BSBButton">
3266  <objectName>b5_03</objectName>
3267  <x>36</x>
3268  <y>194</y>
3269  <width>16</width>
3270  <height>16</height>
3271  <uuid>{6b205f01-9257-41c4-b960-fbe4b0f9f948}</uuid>
3272  <visible>true</visible>
3273  <midichan>0</midichan>
3274  <midicc>0</midicc>
3275  <type>value</type>
3276  <pressedValue>1.00000000</pressedValue>
3277  <stringvalue/>
3278  <text/>
3279  <image>/</image>
3280  <eventLine/>
3281  <latch>true</latch>
3282  <latched>false</latched>
3283 </bsbObject>
3284 <bsbObject version="2" type="BSBButton">
3285  <objectName>b5_04</objectName>
3286  <x>50</x>
3287  <y>194</y>
3288  <width>16</width>
3289  <height>16</height>
3290  <uuid>{95879c0c-0bc9-41d8-ac05-05661391d2ce}</uuid>
3291  <visible>true</visible>
3292  <midichan>0</midichan>
3293  <midicc>0</midicc>
3294  <type>value</type>
3295  <pressedValue>1.00000000</pressedValue>
3296  <stringvalue/>
3297  <text/>
3298  <image>/</image>
3299  <eventLine/>
3300  <latch>true</latch>
3301  <latched>false</latched>
3302 </bsbObject>
3303 <bsbObject version="2" type="BSBButton">
3304  <objectName>b5_05</objectName>
3305  <x>69</x>
3306  <y>194</y>
3307  <width>16</width>
3308  <height>16</height>
3309  <uuid>{59fa33f7-3f20-455a-83ea-0870ebede8cc}</uuid>
3310  <visible>true</visible>
3311  <midichan>0</midichan>
3312  <midicc>0</midicc>
3313  <type>value</type>
3314  <pressedValue>1.00000000</pressedValue>
3315  <stringvalue/>
3316  <text/>
3317  <image>/</image>
3318  <eventLine/>
3319  <latch>true</latch>
3320  <latched>false</latched>
3321 </bsbObject>
3322 <bsbObject version="2" type="BSBButton">
3323  <objectName>b5_06</objectName>
3324  <x>83</x>
3325  <y>194</y>
3326  <width>16</width>
3327  <height>16</height>
3328  <uuid>{0885ce2b-834c-40cb-b700-07e0fb9aa16c}</uuid>
3329  <visible>true</visible>
3330  <midichan>0</midichan>
3331  <midicc>0</midicc>
3332  <type>value</type>
3333  <pressedValue>1.00000000</pressedValue>
3334  <stringvalue/>
3335  <text/>
3336  <image>/</image>
3337  <eventLine/>
3338  <latch>true</latch>
3339  <latched>false</latched>
3340 </bsbObject>
3341 <bsbObject version="2" type="BSBButton">
3342  <objectName>b5_07</objectName>
3343  <x>97</x>
3344  <y>194</y>
3345  <width>16</width>
3346  <height>16</height>
3347  <uuid>{dd572ad2-2dff-44c3-8040-2ebfc331b8e3}</uuid>
3348  <visible>true</visible>
3349  <midichan>0</midichan>
3350  <midicc>0</midicc>
3351  <type>value</type>
3352  <pressedValue>1.00000000</pressedValue>
3353  <stringvalue/>
3354  <text/>
3355  <image>/</image>
3356  <eventLine/>
3357  <latch>true</latch>
3358  <latched>false</latched>
3359 </bsbObject>
3360 <bsbObject version="2" type="BSBButton">
3361  <objectName>b5_08</objectName>
3362  <x>111</x>
3363  <y>194</y>
3364  <width>16</width>
3365  <height>16</height>
3366  <uuid>{0069f6d3-8fa9-4def-99a0-5c4284469f73}</uuid>
3367  <visible>true</visible>
3368  <midichan>0</midichan>
3369  <midicc>0</midicc>
3370  <type>value</type>
3371  <pressedValue>1.00000000</pressedValue>
3372  <stringvalue/>
3373  <text/>
3374  <image>/</image>
3375  <eventLine/>
3376  <latch>true</latch>
3377  <latched>false</latched>
3378 </bsbObject>
3379 <bsbObject version="2" type="BSBButton">
3380  <objectName>b5_09</objectName>
3381  <x>130</x>
3382  <y>194</y>
3383  <width>16</width>
3384  <height>16</height>
3385  <uuid>{05d8ebd9-ff7c-44a5-b90f-bfca4064d0e9}</uuid>
3386  <visible>true</visible>
3387  <midichan>0</midichan>
3388  <midicc>0</midicc>
3389  <type>value</type>
3390  <pressedValue>1.00000000</pressedValue>
3391  <stringvalue/>
3392  <text/>
3393  <image>/</image>
3394  <eventLine/>
3395  <latch>true</latch>
3396  <latched>false</latched>
3397 </bsbObject>
3398 <bsbObject version="2" type="BSBButton">
3399  <objectName>b5_10</objectName>
3400  <x>144</x>
3401  <y>194</y>
3402  <width>16</width>
3403  <height>16</height>
3404  <uuid>{6d9db04c-cf68-4db2-9a81-61e5b62c1ca0}</uuid>
3405  <visible>true</visible>
3406  <midichan>0</midichan>
3407  <midicc>0</midicc>
3408  <type>value</type>
3409  <pressedValue>1.00000000</pressedValue>
3410  <stringvalue/>
3411  <text/>
3412  <image>/</image>
3413  <eventLine/>
3414  <latch>true</latch>
3415  <latched>false</latched>
3416 </bsbObject>
3417 <bsbObject version="2" type="BSBButton">
3418  <objectName>b5_11</objectName>
3419  <x>158</x>
3420  <y>194</y>
3421  <width>16</width>
3422  <height>16</height>
3423  <uuid>{a3d10f55-501f-4979-b5eb-5ecb6a28dafb}</uuid>
3424  <visible>true</visible>
3425  <midichan>0</midichan>
3426  <midicc>0</midicc>
3427  <type>value</type>
3428  <pressedValue>1.00000000</pressedValue>
3429  <stringvalue/>
3430  <text/>
3431  <image>/</image>
3432  <eventLine/>
3433  <latch>true</latch>
3434  <latched>false</latched>
3435 </bsbObject>
3436 <bsbObject version="2" type="BSBButton">
3437  <objectName>b5_12</objectName>
3438  <x>172</x>
3439  <y>194</y>
3440  <width>16</width>
3441  <height>16</height>
3442  <uuid>{809aa4de-e111-44a3-8442-b1619af6b86e}</uuid>
3443  <visible>true</visible>
3444  <midichan>0</midichan>
3445  <midicc>0</midicc>
3446  <type>value</type>
3447  <pressedValue>1.00000000</pressedValue>
3448  <stringvalue/>
3449  <text/>
3450  <image>/</image>
3451  <eventLine/>
3452  <latch>true</latch>
3453  <latched>false</latched>
3454 </bsbObject>
3455 <bsbObject version="2" type="BSBButton">
3456  <objectName>b5_13</objectName>
3457  <x>191</x>
3458  <y>194</y>
3459  <width>16</width>
3460  <height>16</height>
3461  <uuid>{c7f1358e-cc70-47b3-be7b-8139491d3e76}</uuid>
3462  <visible>true</visible>
3463  <midichan>0</midichan>
3464  <midicc>0</midicc>
3465  <type>value</type>
3466  <pressedValue>1.00000000</pressedValue>
3467  <stringvalue/>
3468  <text/>
3469  <image>/</image>
3470  <eventLine/>
3471  <latch>true</latch>
3472  <latched>false</latched>
3473 </bsbObject>
3474 <bsbObject version="2" type="BSBButton">
3475  <objectName>b5_14</objectName>
3476  <x>205</x>
3477  <y>194</y>
3478  <width>16</width>
3479  <height>16</height>
3480  <uuid>{29fa6ed0-6b2d-4741-9d86-c70f373df69b}</uuid>
3481  <visible>true</visible>
3482  <midichan>0</midichan>
3483  <midicc>0</midicc>
3484  <type>value</type>
3485  <pressedValue>1.00000000</pressedValue>
3486  <stringvalue/>
3487  <text/>
3488  <image>/</image>
3489  <eventLine/>
3490  <latch>true</latch>
3491  <latched>false</latched>
3492 </bsbObject>
3493 <bsbObject version="2" type="BSBButton">
3494  <objectName>b5_15</objectName>
3495  <x>219</x>
3496  <y>194</y>
3497  <width>16</width>
3498  <height>16</height>
3499  <uuid>{42ab06cb-08f8-43dc-9a59-aacde5e174f5}</uuid>
3500  <visible>true</visible>
3501  <midichan>0</midichan>
3502  <midicc>0</midicc>
3503  <type>value</type>
3504  <pressedValue>1.00000000</pressedValue>
3505  <stringvalue/>
3506  <text/>
3507  <image>/</image>
3508  <eventLine/>
3509  <latch>true</latch>
3510  <latched>false</latched>
3511 </bsbObject>
3512 <bsbObject version="2" type="BSBButton">
3513  <objectName>b5_16</objectName>
3514  <x>233</x>
3515  <y>194</y>
3516  <width>16</width>
3517  <height>16</height>
3518  <uuid>{1a16ac6a-0443-4a0a-adea-2f8895a54424}</uuid>
3519  <visible>true</visible>
3520  <midichan>0</midichan>
3521  <midicc>0</midicc>
3522  <type>value</type>
3523  <pressedValue>1.00000000</pressedValue>
3524  <stringvalue/>
3525  <text/>
3526  <image>/</image>
3527  <eventLine/>
3528  <latch>true</latch>
3529  <latched>false</latched>
3530 </bsbObject>
3531 <bsbObject version="2" type="BSBButton">
3532  <objectName>b5_17</objectName>
3533  <x>252</x>
3534  <y>194</y>
3535  <width>16</width>
3536  <height>16</height>
3537  <uuid>{a4601b56-aa3e-4268-9128-5d8047150756}</uuid>
3538  <visible>true</visible>
3539  <midichan>0</midichan>
3540  <midicc>0</midicc>
3541  <type>value</type>
3542  <pressedValue>1.00000000</pressedValue>
3543  <stringvalue/>
3544  <text/>
3545  <image>/</image>
3546  <eventLine/>
3547  <latch>true</latch>
3548  <latched>false</latched>
3549 </bsbObject>
3550 <bsbObject version="2" type="BSBButton">
3551  <objectName>b5_18</objectName>
3552  <x>266</x>
3553  <y>194</y>
3554  <width>16</width>
3555  <height>16</height>
3556  <uuid>{419903f6-52db-418c-be0f-3623bccc34c4}</uuid>
3557  <visible>true</visible>
3558  <midichan>0</midichan>
3559  <midicc>0</midicc>
3560  <type>value</type>
3561  <pressedValue>1.00000000</pressedValue>
3562  <stringvalue/>
3563  <text/>
3564  <image>/</image>
3565  <eventLine/>
3566  <latch>true</latch>
3567  <latched>false</latched>
3568 </bsbObject>
3569 <bsbObject version="2" type="BSBButton">
3570  <objectName>b5_19</objectName>
3571  <x>280</x>
3572  <y>194</y>
3573  <width>16</width>
3574  <height>16</height>
3575  <uuid>{3db21774-50ca-47e0-ac8f-fd09765a7db4}</uuid>
3576  <visible>true</visible>
3577  <midichan>0</midichan>
3578  <midicc>0</midicc>
3579  <type>value</type>
3580  <pressedValue>1.00000000</pressedValue>
3581  <stringvalue/>
3582  <text/>
3583  <image>/</image>
3584  <eventLine/>
3585  <latch>true</latch>
3586  <latched>false</latched>
3587 </bsbObject>
3588 <bsbObject version="2" type="BSBButton">
3589  <objectName>b5_20</objectName>
3590  <x>294</x>
3591  <y>194</y>
3592  <width>16</width>
3593  <height>16</height>
3594  <uuid>{50eb0bba-f57d-4226-9696-9579b55747f8}</uuid>
3595  <visible>true</visible>
3596  <midichan>0</midichan>
3597  <midicc>0</midicc>
3598  <type>value</type>
3599  <pressedValue>1.00000000</pressedValue>
3600  <stringvalue/>
3601  <text/>
3602  <image>/</image>
3603  <eventLine/>
3604  <latch>true</latch>
3605  <latched>false</latched>
3606 </bsbObject>
3607 <bsbObject version="2" type="BSBButton">
3608  <objectName>b5_21</objectName>
3609  <x>313</x>
3610  <y>194</y>
3611  <width>16</width>
3612  <height>16</height>
3613  <uuid>{9f229770-9924-48c9-b321-2fe37a4c30ed}</uuid>
3614  <visible>true</visible>
3615  <midichan>0</midichan>
3616  <midicc>0</midicc>
3617  <type>value</type>
3618  <pressedValue>1.00000000</pressedValue>
3619  <stringvalue/>
3620  <text/>
3621  <image>/</image>
3622  <eventLine/>
3623  <latch>true</latch>
3624  <latched>false</latched>
3625 </bsbObject>
3626 <bsbObject version="2" type="BSBButton">
3627  <objectName>b5_22</objectName>
3628  <x>327</x>
3629  <y>194</y>
3630  <width>16</width>
3631  <height>16</height>
3632  <uuid>{b88669ff-8eb1-4068-be23-bae386dfec7c}</uuid>
3633  <visible>true</visible>
3634  <midichan>0</midichan>
3635  <midicc>0</midicc>
3636  <type>value</type>
3637  <pressedValue>1.00000000</pressedValue>
3638  <stringvalue/>
3639  <text/>
3640  <image>/</image>
3641  <eventLine/>
3642  <latch>true</latch>
3643  <latched>false</latched>
3644 </bsbObject>
3645 <bsbObject version="2" type="BSBButton">
3646  <objectName>b5_23</objectName>
3647  <x>341</x>
3648  <y>194</y>
3649  <width>16</width>
3650  <height>16</height>
3651  <uuid>{19233b90-27d5-499b-ae88-55445b92e81c}</uuid>
3652  <visible>true</visible>
3653  <midichan>0</midichan>
3654  <midicc>0</midicc>
3655  <type>value</type>
3656  <pressedValue>1.00000000</pressedValue>
3657  <stringvalue/>
3658  <text/>
3659  <image>/</image>
3660  <eventLine/>
3661  <latch>true</latch>
3662  <latched>false</latched>
3663 </bsbObject>
3664 <bsbObject version="2" type="BSBButton">
3665  <objectName>b5_24</objectName>
3666  <x>355</x>
3667  <y>194</y>
3668  <width>16</width>
3669  <height>16</height>
3670  <uuid>{28f4bd0c-b500-40ef-bd4c-2ffa3901a64e}</uuid>
3671  <visible>true</visible>
3672  <midichan>0</midichan>
3673  <midicc>0</midicc>
3674  <type>value</type>
3675  <pressedValue>1.00000000</pressedValue>
3676  <stringvalue/>
3677  <text/>
3678  <image>/</image>
3679  <eventLine/>
3680  <latch>true</latch>
3681  <latched>false</latched>
3682 </bsbObject>
3683 <bsbObject version="2" type="BSBButton">
3684  <objectName>b5_25</objectName>
3685  <x>374</x>
3686  <y>194</y>
3687  <width>16</width>
3688  <height>16</height>
3689  <uuid>{3c35a41d-9563-4edb-a460-14a621c7ee9f}</uuid>
3690  <visible>true</visible>
3691  <midichan>0</midichan>
3692  <midicc>0</midicc>
3693  <type>value</type>
3694  <pressedValue>1.00000000</pressedValue>
3695  <stringvalue/>
3696  <text/>
3697  <image>/</image>
3698  <eventLine/>
3699  <latch>true</latch>
3700  <latched>false</latched>
3701 </bsbObject>
3702 <bsbObject version="2" type="BSBButton">
3703  <objectName>b5_26</objectName>
3704  <x>388</x>
3705  <y>194</y>
3706  <width>16</width>
3707  <height>16</height>
3708  <uuid>{12cfab2b-16f0-480b-9cb9-4095d569032a}</uuid>
3709  <visible>true</visible>
3710  <midichan>0</midichan>
3711  <midicc>0</midicc>
3712  <type>value</type>
3713  <pressedValue>1.00000000</pressedValue>
3714  <stringvalue/>
3715  <text/>
3716  <image>/</image>
3717  <eventLine/>
3718  <latch>true</latch>
3719  <latched>false</latched>
3720 </bsbObject>
3721 <bsbObject version="2" type="BSBButton">
3722  <objectName>b5_27</objectName>
3723  <x>402</x>
3724  <y>194</y>
3725  <width>16</width>
3726  <height>16</height>
3727  <uuid>{d8db795e-8a58-4cf1-9e4a-cfc0d585bb12}</uuid>
3728  <visible>true</visible>
3729  <midichan>0</midichan>
3730  <midicc>0</midicc>
3731  <type>value</type>
3732  <pressedValue>1.00000000</pressedValue>
3733  <stringvalue/>
3734  <text/>
3735  <image>/</image>
3736  <eventLine/>
3737  <latch>true</latch>
3738  <latched>false</latched>
3739 </bsbObject>
3740 <bsbObject version="2" type="BSBButton">
3741  <objectName>b5_28</objectName>
3742  <x>416</x>
3743  <y>194</y>
3744  <width>16</width>
3745  <height>16</height>
3746  <uuid>{2660caa1-470b-4a59-a30a-bacd62b2850b}</uuid>
3747  <visible>true</visible>
3748  <midichan>0</midichan>
3749  <midicc>0</midicc>
3750  <type>value</type>
3751  <pressedValue>1.00000000</pressedValue>
3752  <stringvalue/>
3753  <text/>
3754  <image>/</image>
3755  <eventLine/>
3756  <latch>true</latch>
3757  <latched>false</latched>
3758 </bsbObject>
3759 <bsbObject version="2" type="BSBButton">
3760  <objectName>b5_29</objectName>
3761  <x>435</x>
3762  <y>194</y>
3763  <width>16</width>
3764  <height>16</height>
3765  <uuid>{ff86539d-a33b-4893-a4eb-098d7e79f751}</uuid>
3766  <visible>true</visible>
3767  <midichan>0</midichan>
3768  <midicc>0</midicc>
3769  <type>value</type>
3770  <pressedValue>1.00000000</pressedValue>
3771  <stringvalue/>
3772  <text/>
3773  <image>/</image>
3774  <eventLine/>
3775  <latch>true</latch>
3776  <latched>false</latched>
3777 </bsbObject>
3778 <bsbObject version="2" type="BSBButton">
3779  <objectName>b5_30</objectName>
3780  <x>449</x>
3781  <y>194</y>
3782  <width>16</width>
3783  <height>16</height>
3784  <uuid>{d451c1b9-ebd8-4c48-9ada-d67be8779d2f}</uuid>
3785  <visible>true</visible>
3786  <midichan>0</midichan>
3787  <midicc>0</midicc>
3788  <type>value</type>
3789  <pressedValue>1.00000000</pressedValue>
3790  <stringvalue/>
3791  <text/>
3792  <image>/</image>
3793  <eventLine/>
3794  <latch>true</latch>
3795  <latched>false</latched>
3796 </bsbObject>
3797 <bsbObject version="2" type="BSBButton">
3798  <objectName>b5_31</objectName>
3799  <x>463</x>
3800  <y>194</y>
3801  <width>16</width>
3802  <height>16</height>
3803  <uuid>{00c7cf20-7894-4608-bed7-47c324390bfa}</uuid>
3804  <visible>true</visible>
3805  <midichan>0</midichan>
3806  <midicc>0</midicc>
3807  <type>value</type>
3808  <pressedValue>1.00000000</pressedValue>
3809  <stringvalue/>
3810  <text/>
3811  <image>/</image>
3812  <eventLine/>
3813  <latch>true</latch>
3814  <latched>false</latched>
3815 </bsbObject>
3816 <bsbObject version="2" type="BSBButton">
3817  <objectName>b5_32</objectName>
3818  <x>477</x>
3819  <y>194</y>
3820  <width>16</width>
3821  <height>16</height>
3822  <uuid>{4d1c2eb9-a7df-4268-88cc-42b8705fcb12}</uuid>
3823  <visible>true</visible>
3824  <midichan>0</midichan>
3825  <midicc>0</midicc>
3826  <type>value</type>
3827  <pressedValue>1.00000000</pressedValue>
3828  <stringvalue/>
3829  <text/>
3830  <image>/</image>
3831  <eventLine/>
3832  <latch>true</latch>
3833  <latched>false</latched>
3834 </bsbObject>
3835 <bsbObject version="2" type="BSBController">
3836  <objectName>Phase5</objectName>
3837  <x>8</x>
3838  <y>213</y>
3839  <width>485</width>
3840  <height>6</height>
3841  <uuid>{ed21902f-baeb-49f6-b3b4-0cdccf6f6fe7}</uuid>
3842  <visible>true</visible>
3843  <midichan>0</midichan>
3844  <midicc>0</midicc>
3845  <objectName2/>
3846  <xMin>0.00000000</xMin>
3847  <xMax>8.00000000</xMax>
3848  <yMin>0.00000000</yMin>
3849  <yMax>1.00000000</yMax>
3850  <xValue>2.42731738</xValue>
3851  <yValue>0.00000000</yValue>
3852  <type>fill</type>
3853  <pointsize>1</pointsize>
3854  <fadeSpeed>0.00000000</fadeSpeed>
3855  <mouseControl act="press">jump</mouseControl>
3856  <color>
3857   <r>255</r>
3858   <g>0</g>
3859   <b>0</b>
3860  </color>
3861  <randomizable mode="both" group="0">false</randomizable>
3862  <bgcolor>
3863   <r>0</r>
3864   <g>0</g>
3865   <b>0</b>
3866  </bgcolor>
3867 </bsbObject>
3868 <bsbObject version="2" type="BSBButton">
3869  <objectName>b6_01</objectName>
3870  <x>8</x>
3871  <y>226</y>
3872  <width>16</width>
3873  <height>16</height>
3874  <uuid>{8129afea-11a9-4137-b681-895b01028071}</uuid>
3875  <visible>true</visible>
3876  <midichan>0</midichan>
3877  <midicc>0</midicc>
3878  <type>value</type>
3879  <pressedValue>1.00000000</pressedValue>
3880  <stringvalue/>
3881  <text/>
3882  <image>/</image>
3883  <eventLine/>
3884  <latch>true</latch>
3885  <latched>false</latched>
3886 </bsbObject>
3887 <bsbObject version="2" type="BSBButton">
3888  <objectName>b6_02</objectName>
3889  <x>22</x>
3890  <y>226</y>
3891  <width>16</width>
3892  <height>16</height>
3893  <uuid>{95153b14-fec9-48c4-8b26-cc0f87acbc36}</uuid>
3894  <visible>true</visible>
3895  <midichan>0</midichan>
3896  <midicc>0</midicc>
3897  <type>value</type>
3898  <pressedValue>1.00000000</pressedValue>
3899  <stringvalue/>
3900  <text/>
3901  <image>/</image>
3902  <eventLine/>
3903  <latch>true</latch>
3904  <latched>false</latched>
3905 </bsbObject>
3906 <bsbObject version="2" type="BSBButton">
3907  <objectName>b6_03</objectName>
3908  <x>36</x>
3909  <y>226</y>
3910  <width>16</width>
3911  <height>16</height>
3912  <uuid>{a103e794-d3bc-4d32-ac9a-f6fda3046c48}</uuid>
3913  <visible>true</visible>
3914  <midichan>0</midichan>
3915  <midicc>0</midicc>
3916  <type>value</type>
3917  <pressedValue>1.00000000</pressedValue>
3918  <stringvalue/>
3919  <text/>
3920  <image>/</image>
3921  <eventLine/>
3922  <latch>true</latch>
3923  <latched>false</latched>
3924 </bsbObject>
3925 <bsbObject version="2" type="BSBButton">
3926  <objectName>b6_04</objectName>
3927  <x>50</x>
3928  <y>226</y>
3929  <width>16</width>
3930  <height>16</height>
3931  <uuid>{89146815-e0b5-4709-90c9-1957559e5bc4}</uuid>
3932  <visible>true</visible>
3933  <midichan>0</midichan>
3934  <midicc>0</midicc>
3935  <type>value</type>
3936  <pressedValue>1.00000000</pressedValue>
3937  <stringvalue/>
3938  <text/>
3939  <image>/</image>
3940  <eventLine/>
3941  <latch>true</latch>
3942  <latched>false</latched>
3943 </bsbObject>
3944 <bsbObject version="2" type="BSBButton">
3945  <objectName>b6_05</objectName>
3946  <x>69</x>
3947  <y>226</y>
3948  <width>16</width>
3949  <height>16</height>
3950  <uuid>{1d4477fe-84a2-4ada-b1b0-25785e0ce053}</uuid>
3951  <visible>true</visible>
3952  <midichan>0</midichan>
3953  <midicc>0</midicc>
3954  <type>value</type>
3955  <pressedValue>1.00000000</pressedValue>
3956  <stringvalue/>
3957  <text/>
3958  <image>/</image>
3959  <eventLine/>
3960  <latch>true</latch>
3961  <latched>false</latched>
3962 </bsbObject>
3963 <bsbObject version="2" type="BSBButton">
3964  <objectName>b6_06</objectName>
3965  <x>83</x>
3966  <y>226</y>
3967  <width>16</width>
3968  <height>16</height>
3969  <uuid>{19a0bf7a-0d37-492c-883c-596a3fe0c42c}</uuid>
3970  <visible>true</visible>
3971  <midichan>0</midichan>
3972  <midicc>0</midicc>
3973  <type>value</type>
3974  <pressedValue>1.00000000</pressedValue>
3975  <stringvalue/>
3976  <text/>
3977  <image>/</image>
3978  <eventLine/>
3979  <latch>true</latch>
3980  <latched>false</latched>
3981 </bsbObject>
3982 <bsbObject version="2" type="BSBButton">
3983  <objectName>b6_07</objectName>
3984  <x>97</x>
3985  <y>226</y>
3986  <width>16</width>
3987  <height>16</height>
3988  <uuid>{a654f771-cee2-4eac-8e68-a2e23ab28c90}</uuid>
3989  <visible>true</visible>
3990  <midichan>0</midichan>
3991  <midicc>0</midicc>
3992  <type>value</type>
3993  <pressedValue>1.00000000</pressedValue>
3994  <stringvalue/>
3995  <text/>
3996  <image>/</image>
3997  <eventLine/>
3998  <latch>true</latch>
3999  <latched>false</latched>
4000 </bsbObject>
4001 <bsbObject version="2" type="BSBButton">
4002  <objectName>b6_08</objectName>
4003  <x>111</x>
4004  <y>226</y>
4005  <width>16</width>
4006  <height>16</height>
4007  <uuid>{575bd58d-1cd7-43c2-bc26-2e424f11a14c}</uuid>
4008  <visible>true</visible>
4009  <midichan>0</midichan>
4010  <midicc>0</midicc>
4011  <type>value</type>
4012  <pressedValue>1.00000000</pressedValue>
4013  <stringvalue/>
4014  <text/>
4015  <image>/</image>
4016  <eventLine/>
4017  <latch>true</latch>
4018  <latched>false</latched>
4019 </bsbObject>
4020 <bsbObject version="2" type="BSBButton">
4021  <objectName>b6_09</objectName>
4022  <x>130</x>
4023  <y>226</y>
4024  <width>16</width>
4025  <height>16</height>
4026  <uuid>{2cbf1035-4904-4d18-8b66-e8953f97b2ba}</uuid>
4027  <visible>true</visible>
4028  <midichan>0</midichan>
4029  <midicc>0</midicc>
4030  <type>value</type>
4031  <pressedValue>1.00000000</pressedValue>
4032  <stringvalue/>
4033  <text/>
4034  <image>/</image>
4035  <eventLine/>
4036  <latch>true</latch>
4037  <latched>false</latched>
4038 </bsbObject>
4039 <bsbObject version="2" type="BSBButton">
4040  <objectName>b6_10</objectName>
4041  <x>144</x>
4042  <y>226</y>
4043  <width>16</width>
4044  <height>16</height>
4045  <uuid>{92875694-ac1d-4b42-b31c-fc168cd05840}</uuid>
4046  <visible>true</visible>
4047  <midichan>0</midichan>
4048  <midicc>0</midicc>
4049  <type>value</type>
4050  <pressedValue>1.00000000</pressedValue>
4051  <stringvalue/>
4052  <text/>
4053  <image>/</image>
4054  <eventLine/>
4055  <latch>true</latch>
4056  <latched>false</latched>
4057 </bsbObject>
4058 <bsbObject version="2" type="BSBButton">
4059  <objectName>b6_11</objectName>
4060  <x>158</x>
4061  <y>226</y>
4062  <width>16</width>
4063  <height>16</height>
4064  <uuid>{60ec5c91-9991-4acb-af43-63aa7658024f}</uuid>
4065  <visible>true</visible>
4066  <midichan>0</midichan>
4067  <midicc>0</midicc>
4068  <type>value</type>
4069  <pressedValue>1.00000000</pressedValue>
4070  <stringvalue/>
4071  <text/>
4072  <image>/</image>
4073  <eventLine/>
4074  <latch>true</latch>
4075  <latched>false</latched>
4076 </bsbObject>
4077 <bsbObject version="2" type="BSBButton">
4078  <objectName>b6_12</objectName>
4079  <x>172</x>
4080  <y>226</y>
4081  <width>16</width>
4082  <height>16</height>
4083  <uuid>{5bd4ded7-6391-4424-b7c7-46e1fec06464}</uuid>
4084  <visible>true</visible>
4085  <midichan>0</midichan>
4086  <midicc>0</midicc>
4087  <type>value</type>
4088  <pressedValue>1.00000000</pressedValue>
4089  <stringvalue/>
4090  <text/>
4091  <image>/</image>
4092  <eventLine/>
4093  <latch>true</latch>
4094  <latched>false</latched>
4095 </bsbObject>
4096 <bsbObject version="2" type="BSBButton">
4097  <objectName>b6_13</objectName>
4098  <x>191</x>
4099  <y>226</y>
4100  <width>16</width>
4101  <height>16</height>
4102  <uuid>{336682ce-5f0f-4c05-83a0-bef8e69efc09}</uuid>
4103  <visible>true</visible>
4104  <midichan>0</midichan>
4105  <midicc>0</midicc>
4106  <type>value</type>
4107  <pressedValue>1.00000000</pressedValue>
4108  <stringvalue/>
4109  <text/>
4110  <image>/</image>
4111  <eventLine/>
4112  <latch>true</latch>
4113  <latched>false</latched>
4114 </bsbObject>
4115 <bsbObject version="2" type="BSBButton">
4116  <objectName>b6_14</objectName>
4117  <x>205</x>
4118  <y>226</y>
4119  <width>16</width>
4120  <height>16</height>
4121  <uuid>{83b606a0-dfbc-42fd-8ec1-a159ae814d55}</uuid>
4122  <visible>true</visible>
4123  <midichan>0</midichan>
4124  <midicc>0</midicc>
4125  <type>value</type>
4126  <pressedValue>1.00000000</pressedValue>
4127  <stringvalue/>
4128  <text/>
4129  <image>/</image>
4130  <eventLine/>
4131  <latch>true</latch>
4132  <latched>false</latched>
4133 </bsbObject>
4134 <bsbObject version="2" type="BSBButton">
4135  <objectName>b6_15</objectName>
4136  <x>219</x>
4137  <y>226</y>
4138  <width>16</width>
4139  <height>16</height>
4140  <uuid>{54c71d34-3408-4584-8f22-36199703f2e7}</uuid>
4141  <visible>true</visible>
4142  <midichan>0</midichan>
4143  <midicc>0</midicc>
4144  <type>value</type>
4145  <pressedValue>1.00000000</pressedValue>
4146  <stringvalue/>
4147  <text/>
4148  <image>/</image>
4149  <eventLine/>
4150  <latch>true</latch>
4151  <latched>false</latched>
4152 </bsbObject>
4153 <bsbObject version="2" type="BSBButton">
4154  <objectName>b6_16</objectName>
4155  <x>233</x>
4156  <y>226</y>
4157  <width>16</width>
4158  <height>16</height>
4159  <uuid>{9aac7a35-b925-4c35-80b0-70f8a2b19b6f}</uuid>
4160  <visible>true</visible>
4161  <midichan>0</midichan>
4162  <midicc>0</midicc>
4163  <type>value</type>
4164  <pressedValue>1.00000000</pressedValue>
4165  <stringvalue/>
4166  <text/>
4167  <image>/</image>
4168  <eventLine/>
4169  <latch>true</latch>
4170  <latched>false</latched>
4171 </bsbObject>
4172 <bsbObject version="2" type="BSBButton">
4173  <objectName>b6_17</objectName>
4174  <x>252</x>
4175  <y>226</y>
4176  <width>16</width>
4177  <height>16</height>
4178  <uuid>{b577ce0b-bf03-4ba6-9a65-8564912793a5}</uuid>
4179  <visible>true</visible>
4180  <midichan>0</midichan>
4181  <midicc>0</midicc>
4182  <type>value</type>
4183  <pressedValue>1.00000000</pressedValue>
4184  <stringvalue/>
4185  <text/>
4186  <image>/</image>
4187  <eventLine/>
4188  <latch>true</latch>
4189  <latched>false</latched>
4190 </bsbObject>
4191 <bsbObject version="2" type="BSBButton">
4192  <objectName>b6_18</objectName>
4193  <x>266</x>
4194  <y>226</y>
4195  <width>16</width>
4196  <height>16</height>
4197  <uuid>{f129cddf-9854-4462-9630-5776e4f3b74f}</uuid>
4198  <visible>true</visible>
4199  <midichan>0</midichan>
4200  <midicc>0</midicc>
4201  <type>value</type>
4202  <pressedValue>1.00000000</pressedValue>
4203  <stringvalue/>
4204  <text/>
4205  <image>/</image>
4206  <eventLine/>
4207  <latch>true</latch>
4208  <latched>false</latched>
4209 </bsbObject>
4210 <bsbObject version="2" type="BSBButton">
4211  <objectName>b6_19</objectName>
4212  <x>280</x>
4213  <y>226</y>
4214  <width>16</width>
4215  <height>16</height>
4216  <uuid>{85f2339a-9e88-42fb-ad0b-18f3ddab503f}</uuid>
4217  <visible>true</visible>
4218  <midichan>0</midichan>
4219  <midicc>0</midicc>
4220  <type>value</type>
4221  <pressedValue>1.00000000</pressedValue>
4222  <stringvalue/>
4223  <text/>
4224  <image>/</image>
4225  <eventLine/>
4226  <latch>true</latch>
4227  <latched>false</latched>
4228 </bsbObject>
4229 <bsbObject version="2" type="BSBButton">
4230  <objectName>b6_20</objectName>
4231  <x>294</x>
4232  <y>226</y>
4233  <width>16</width>
4234  <height>16</height>
4235  <uuid>{17cfa9e5-1dd1-4ffb-98e2-b84b7be32ad2}</uuid>
4236  <visible>true</visible>
4237  <midichan>0</midichan>
4238  <midicc>0</midicc>
4239  <type>value</type>
4240  <pressedValue>1.00000000</pressedValue>
4241  <stringvalue/>
4242  <text/>
4243  <image>/</image>
4244  <eventLine/>
4245  <latch>true</latch>
4246  <latched>false</latched>
4247 </bsbObject>
4248 <bsbObject version="2" type="BSBButton">
4249  <objectName>b6_21</objectName>
4250  <x>313</x>
4251  <y>226</y>
4252  <width>16</width>
4253  <height>16</height>
4254  <uuid>{b6cfec2a-7120-4ff1-90af-699d812dbb71}</uuid>
4255  <visible>true</visible>
4256  <midichan>0</midichan>
4257  <midicc>0</midicc>
4258  <type>value</type>
4259  <pressedValue>1.00000000</pressedValue>
4260  <stringvalue/>
4261  <text/>
4262  <image>/</image>
4263  <eventLine/>
4264  <latch>true</latch>
4265  <latched>false</latched>
4266 </bsbObject>
4267 <bsbObject version="2" type="BSBButton">
4268  <objectName>b6_22</objectName>
4269  <x>327</x>
4270  <y>226</y>
4271  <width>16</width>
4272  <height>16</height>
4273  <uuid>{deffae90-e624-4375-8e67-19b16f1f7d13}</uuid>
4274  <visible>true</visible>
4275  <midichan>0</midichan>
4276  <midicc>0</midicc>
4277  <type>value</type>
4278  <pressedValue>1.00000000</pressedValue>
4279  <stringvalue/>
4280  <text/>
4281  <image>/</image>
4282  <eventLine/>
4283  <latch>true</latch>
4284  <latched>false</latched>
4285 </bsbObject>
4286 <bsbObject version="2" type="BSBButton">
4287  <objectName>b6_23</objectName>
4288  <x>341</x>
4289  <y>226</y>
4290  <width>16</width>
4291  <height>16</height>
4292  <uuid>{f86a9e02-d551-4716-8bf4-f5fb874d2339}</uuid>
4293  <visible>true</visible>
4294  <midichan>0</midichan>
4295  <midicc>0</midicc>
4296  <type>value</type>
4297  <pressedValue>1.00000000</pressedValue>
4298  <stringvalue/>
4299  <text/>
4300  <image>/</image>
4301  <eventLine/>
4302  <latch>true</latch>
4303  <latched>false</latched>
4304 </bsbObject>
4305 <bsbObject version="2" type="BSBButton">
4306  <objectName>b6_24</objectName>
4307  <x>355</x>
4308  <y>226</y>
4309  <width>16</width>
4310  <height>16</height>
4311  <uuid>{573b7428-91d6-4369-bf58-fc1ec94e27f0}</uuid>
4312  <visible>true</visible>
4313  <midichan>0</midichan>
4314  <midicc>0</midicc>
4315  <type>value</type>
4316  <pressedValue>1.00000000</pressedValue>
4317  <stringvalue/>
4318  <text/>
4319  <image>/</image>
4320  <eventLine/>
4321  <latch>true</latch>
4322  <latched>false</latched>
4323 </bsbObject>
4324 <bsbObject version="2" type="BSBButton">
4325  <objectName>b6_25</objectName>
4326  <x>374</x>
4327  <y>226</y>
4328  <width>16</width>
4329  <height>16</height>
4330  <uuid>{3b6be76b-71a5-4cfa-a57d-48e7f6b02952}</uuid>
4331  <visible>true</visible>
4332  <midichan>0</midichan>
4333  <midicc>0</midicc>
4334  <type>value</type>
4335  <pressedValue>1.00000000</pressedValue>
4336  <stringvalue/>
4337  <text/>
4338  <image>/</image>
4339  <eventLine/>
4340  <latch>true</latch>
4341  <latched>false</latched>
4342 </bsbObject>
4343 <bsbObject version="2" type="BSBButton">
4344  <objectName>b6_26</objectName>
4345  <x>388</x>
4346  <y>226</y>
4347  <width>16</width>
4348  <height>16</height>
4349  <uuid>{5104a6f5-c16e-444c-b45d-e54d8f0cb284}</uuid>
4350  <visible>true</visible>
4351  <midichan>0</midichan>
4352  <midicc>0</midicc>
4353  <type>value</type>
4354  <pressedValue>1.00000000</pressedValue>
4355  <stringvalue/>
4356  <text/>
4357  <image>/</image>
4358  <eventLine/>
4359  <latch>true</latch>
4360  <latched>false</latched>
4361 </bsbObject>
4362 <bsbObject version="2" type="BSBButton">
4363  <objectName>b6_27</objectName>
4364  <x>402</x>
4365  <y>226</y>
4366  <width>16</width>
4367  <height>16</height>
4368  <uuid>{b02d62ad-dca3-45ea-a7eb-ec77d6f45eb9}</uuid>
4369  <visible>true</visible>
4370  <midichan>0</midichan>
4371  <midicc>0</midicc>
4372  <type>value</type>
4373  <pressedValue>1.00000000</pressedValue>
4374  <stringvalue/>
4375  <text/>
4376  <image>/</image>
4377  <eventLine/>
4378  <latch>true</latch>
4379  <latched>false</latched>
4380 </bsbObject>
4381 <bsbObject version="2" type="BSBButton">
4382  <objectName>b6_28</objectName>
4383  <x>416</x>
4384  <y>226</y>
4385  <width>16</width>
4386  <height>16</height>
4387  <uuid>{dcecd73e-1574-4a86-b515-5836cbfb952d}</uuid>
4388  <visible>true</visible>
4389  <midichan>0</midichan>
4390  <midicc>0</midicc>
4391  <type>value</type>
4392  <pressedValue>1.00000000</pressedValue>
4393  <stringvalue/>
4394  <text/>
4395  <image>/</image>
4396  <eventLine/>
4397  <latch>true</latch>
4398  <latched>false</latched>
4399 </bsbObject>
4400 <bsbObject version="2" type="BSBButton">
4401  <objectName>b6_29</objectName>
4402  <x>435</x>
4403  <y>226</y>
4404  <width>16</width>
4405  <height>16</height>
4406  <uuid>{c748b610-bcd3-4696-98d4-4e0630b6132b}</uuid>
4407  <visible>true</visible>
4408  <midichan>0</midichan>
4409  <midicc>0</midicc>
4410  <type>value</type>
4411  <pressedValue>1.00000000</pressedValue>
4412  <stringvalue/>
4413  <text/>
4414  <image>/</image>
4415  <eventLine/>
4416  <latch>true</latch>
4417  <latched>false</latched>
4418 </bsbObject>
4419 <bsbObject version="2" type="BSBButton">
4420  <objectName>b6_30</objectName>
4421  <x>449</x>
4422  <y>226</y>
4423  <width>16</width>
4424  <height>16</height>
4425  <uuid>{4b65b14c-2e70-4abc-8a21-c89084bb5b07}</uuid>
4426  <visible>true</visible>
4427  <midichan>0</midichan>
4428  <midicc>0</midicc>
4429  <type>value</type>
4430  <pressedValue>1.00000000</pressedValue>
4431  <stringvalue/>
4432  <text/>
4433  <image>/</image>
4434  <eventLine/>
4435  <latch>true</latch>
4436  <latched>false</latched>
4437 </bsbObject>
4438 <bsbObject version="2" type="BSBButton">
4439  <objectName>b6_31</objectName>
4440  <x>463</x>
4441  <y>226</y>
4442  <width>16</width>
4443  <height>16</height>
4444  <uuid>{b1377fdb-b4bd-436c-82e4-e92a0a9af8a3}</uuid>
4445  <visible>true</visible>
4446  <midichan>0</midichan>
4447  <midicc>0</midicc>
4448  <type>value</type>
4449  <pressedValue>1.00000000</pressedValue>
4450  <stringvalue/>
4451  <text/>
4452  <image>/</image>
4453  <eventLine/>
4454  <latch>true</latch>
4455  <latched>false</latched>
4456 </bsbObject>
4457 <bsbObject version="2" type="BSBButton">
4458  <objectName>b6_32</objectName>
4459  <x>477</x>
4460  <y>226</y>
4461  <width>16</width>
4462  <height>16</height>
4463  <uuid>{ace0cd67-a8ea-4945-ba1d-b9d5c2e67bee}</uuid>
4464  <visible>true</visible>
4465  <midichan>0</midichan>
4466  <midicc>0</midicc>
4467  <type>value</type>
4468  <pressedValue>1.00000000</pressedValue>
4469  <stringvalue/>
4470  <text/>
4471  <image>/</image>
4472  <eventLine/>
4473  <latch>true</latch>
4474  <latched>false</latched>
4475 </bsbObject>
4476 <bsbObject version="2" type="BSBController">
4477  <objectName>Phase6</objectName>
4478  <x>8</x>
4479  <y>245</y>
4480  <width>485</width>
4481  <height>6</height>
4482  <uuid>{de735a57-5ee9-40eb-abb7-493e6e396e60}</uuid>
4483  <visible>true</visible>
4484  <midichan>0</midichan>
4485  <midicc>0</midicc>
4486  <objectName2/>
4487  <xMin>0.00000000</xMin>
4488  <xMax>8.00000000</xMax>
4489  <yMin>0.00000000</yMin>
4490  <yMax>1.00000000</yMax>
4491  <xValue>1.92731690</xValue>
4492  <yValue>0.00000000</yValue>
4493  <type>fill</type>
4494  <pointsize>1</pointsize>
4495  <fadeSpeed>0.00000000</fadeSpeed>
4496  <mouseControl act="press">jump</mouseControl>
4497  <color>
4498   <r>255</r>
4499   <g>0</g>
4500   <b>0</b>
4501  </color>
4502  <randomizable mode="both" group="0">false</randomizable>
4503  <bgcolor>
4504   <r>0</r>
4505   <g>0</g>
4506   <b>0</b>
4507  </bgcolor>
4508 </bsbObject>
4509 <bsbObject version="2" type="BSBLabel">
4510  <objectName/>
4511  <x>8</x>
4512  <y>41</y>
4513  <width>50</width>
4514  <height>25</height>
4515  <uuid>{ce031bf3-27d3-4f87-bf63-dd26d49d7497}</uuid>
4516  <visible>true</visible>
4517  <midichan>0</midichan>
4518  <midicc>0</midicc>
4519  <label>1</label>
4520  <alignment>left</alignment>
4521  <font>Liberation Sans</font>
4522  <fontsize>14</fontsize>
4523  <precision>3</precision>
4524  <color>
4525   <r>0</r>
4526   <g>0</g>
4527   <b>0</b>
4528  </color>
4529  <bgcolor mode="nobackground">
4530   <r>255</r>
4531   <g>255</g>
4532   <b>255</b>
4533  </bgcolor>
4534  <bordermode>noborder</bordermode>
4535  <borderradius>1</borderradius>
4536  <borderwidth>1</borderwidth>
4537 </bsbObject>
4538 <bsbObject version="2" type="BSBLabel">
4539  <objectName/>
4540  <x>69</x>
4541  <y>41</y>
4542  <width>50</width>
4543  <height>25</height>
4544  <uuid>{2ed7fe04-e9d4-4687-a4ca-c9261a5ad2d0}</uuid>
4545  <visible>true</visible>
4546  <midichan>0</midichan>
4547  <midicc>0</midicc>
4548  <label>2</label>
4549  <alignment>left</alignment>
4550  <font>Liberation Sans</font>
4551  <fontsize>14</fontsize>
4552  <precision>3</precision>
4553  <color>
4554   <r>0</r>
4555   <g>0</g>
4556   <b>0</b>
4557  </color>
4558  <bgcolor mode="nobackground">
4559   <r>255</r>
4560   <g>255</g>
4561   <b>255</b>
4562  </bgcolor>
4563  <bordermode>noborder</bordermode>
4564  <borderradius>1</borderradius>
4565  <borderwidth>1</borderwidth>
4566 </bsbObject>
4567 <bsbObject version="2" type="BSBLabel">
4568  <objectName/>
4569  <x>130</x>
4570  <y>41</y>
4571  <width>50</width>
4572  <height>25</height>
4573  <uuid>{fe29f849-dd8a-4734-991a-93653e2c0b16}</uuid>
4574  <visible>true</visible>
4575  <midichan>0</midichan>
4576  <midicc>0</midicc>
4577  <label>3</label>
4578  <alignment>left</alignment>
4579  <font>Liberation Sans</font>
4580  <fontsize>14</fontsize>
4581  <precision>3</precision>
4582  <color>
4583   <r>0</r>
4584   <g>0</g>
4585   <b>0</b>
4586  </color>
4587  <bgcolor mode="nobackground">
4588   <r>255</r>
4589   <g>255</g>
4590   <b>255</b>
4591  </bgcolor>
4592  <bordermode>noborder</bordermode>
4593  <borderradius>1</borderradius>
4594  <borderwidth>1</borderwidth>
4595 </bsbObject>
4596 <bsbObject version="2" type="BSBLabel">
4597  <objectName/>
4598  <x>191</x>
4599  <y>42</y>
4600  <width>50</width>
4601  <height>25</height>
4602  <uuid>{361f49ca-de84-400a-b6c5-698aa12db8aa}</uuid>
4603  <visible>true</visible>
4604  <midichan>0</midichan>
4605  <midicc>0</midicc>
4606  <label>4</label>
4607  <alignment>left</alignment>
4608  <font>Liberation Sans</font>
4609  <fontsize>14</fontsize>
4610  <precision>3</precision>
4611  <color>
4612   <r>0</r>
4613   <g>0</g>
4614   <b>0</b>
4615  </color>
4616  <bgcolor mode="nobackground">
4617   <r>255</r>
4618   <g>255</g>
4619   <b>255</b>
4620  </bgcolor>
4621  <bordermode>noborder</bordermode>
4622  <borderradius>1</borderradius>
4623  <borderwidth>1</borderwidth>
4624 </bsbObject>
4625 <bsbObject version="2" type="BSBLabel">
4626  <objectName/>
4627  <x>252</x>
4628  <y>41</y>
4629  <width>50</width>
4630  <height>25</height>
4631  <uuid>{3cbd1a52-b714-4bad-9443-4de8646a59de}</uuid>
4632  <visible>true</visible>
4633  <midichan>0</midichan>
4634  <midicc>0</midicc>
4635  <label>5</label>
4636  <alignment>left</alignment>
4637  <font>Liberation Sans</font>
4638  <fontsize>14</fontsize>
4639  <precision>3</precision>
4640  <color>
4641   <r>0</r>
4642   <g>0</g>
4643   <b>0</b>
4644  </color>
4645  <bgcolor mode="nobackground">
4646   <r>255</r>
4647   <g>255</g>
4648   <b>255</b>
4649  </bgcolor>
4650  <bordermode>noborder</bordermode>
4651  <borderradius>1</borderradius>
4652  <borderwidth>1</borderwidth>
4653 </bsbObject>
4654 <bsbObject version="2" type="BSBLabel">
4655  <objectName/>
4656  <x>313</x>
4657  <y>42</y>
4658  <width>50</width>
4659  <height>25</height>
4660  <uuid>{e417a667-3c4c-4098-8dff-3bfe67f5858c}</uuid>
4661  <visible>true</visible>
4662  <midichan>0</midichan>
4663  <midicc>0</midicc>
4664  <label>6</label>
4665  <alignment>left</alignment>
4666  <font>Liberation Sans</font>
4667  <fontsize>14</fontsize>
4668  <precision>3</precision>
4669  <color>
4670   <r>0</r>
4671   <g>0</g>
4672   <b>0</b>
4673  </color>
4674  <bgcolor mode="nobackground">
4675   <r>255</r>
4676   <g>255</g>
4677   <b>255</b>
4678  </bgcolor>
4679  <bordermode>noborder</bordermode>
4680  <borderradius>1</borderradius>
4681  <borderwidth>1</borderwidth>
4682 </bsbObject>
4683 <bsbObject version="2" type="BSBLabel">
4684  <objectName/>
4685  <x>374</x>
4686  <y>41</y>
4687  <width>50</width>
4688  <height>25</height>
4689  <uuid>{ea421b55-45fb-416c-b972-53774de8db9c}</uuid>
4690  <visible>true</visible>
4691  <midichan>0</midichan>
4692  <midicc>0</midicc>
4693  <label>7</label>
4694  <alignment>left</alignment>
4695  <font>Liberation Sans</font>
4696  <fontsize>14</fontsize>
4697  <precision>3</precision>
4698  <color>
4699   <r>0</r>
4700   <g>0</g>
4701   <b>0</b>
4702  </color>
4703  <bgcolor mode="nobackground">
4704   <r>255</r>
4705   <g>255</g>
4706   <b>255</b>
4707  </bgcolor>
4708  <bordermode>noborder</bordermode>
4709  <borderradius>1</borderradius>
4710  <borderwidth>1</borderwidth>
4711 </bsbObject>
4712 <bsbObject version="2" type="BSBLabel">
4713  <objectName/>
4714  <x>435</x>
4715  <y>41</y>
4716  <width>50</width>
4717  <height>25</height>
4718  <uuid>{f94eaf23-aab3-4ca2-b20e-b02a755bd082}</uuid>
4719  <visible>true</visible>
4720  <midichan>0</midichan>
4721  <midicc>0</midicc>
4722  <label>8</label>
4723  <alignment>left</alignment>
4724  <font>Liberation Sans</font>
4725  <fontsize>14</fontsize>
4726  <precision>3</precision>
4727  <color>
4728   <r>0</r>
4729   <g>0</g>
4730   <b>0</b>
4731  </color>
4732  <bgcolor mode="nobackground">
4733   <r>255</r>
4734   <g>255</g>
4735   <b>255</b>
4736  </bgcolor>
4737  <bordermode>noborder</bordermode>
4738  <borderradius>1</borderradius>
4739  <borderwidth>1</borderwidth>
4740 </bsbObject>
4741 <bsbObject version="2" type="BSBButton">
4742  <objectName/>
4743  <x>90</x>
4744  <y>10</y>
4745  <width>80</width>
4746  <height>26</height>
4747  <uuid>{3ec62cce-84d1-4781-ab0a-6189f9be68f0}</uuid>
4748  <visible>true</visible>
4749  <midichan>0</midichan>
4750  <midicc>0</midicc>
4751  <type>event</type>
4752  <pressedValue>1.00000000</pressedValue>
4753  <stringvalue/>
4754  <text>Randomize</text>
4755  <image>/</image>
4756  <eventLine>i 102 0 0.001</eventLine>
4757  <latch>false</latch>
4758  <latched>false</latched>
4759 </bsbObject>
4760 <bsbObject version="2" type="BSBSpinBox">
4761  <objectName>Tempo</objectName>
4762  <x>230</x>
4763  <y>10</y>
4764  <width>54</width>
4765  <height>26</height>
4766  <uuid>{a73e949b-37c6-4ceb-9048-4d1b01561f3e}</uuid>
4767  <visible>true</visible>
4768  <midichan>0</midichan>
4769  <midicc>0</midicc>
4770  <alignment>right</alignment>
4771  <font>Liberation Sans</font>
4772  <fontsize>14</fontsize>
4773  <color>
4774   <r>0</r>
4775   <g>0</g>
4776   <b>0</b>
4777  </color>
4778  <bgcolor mode="nobackground">
4779   <r>255</r>
4780   <g>255</g>
4781   <b>255</b>
4782  </bgcolor>
4783  <resolution>1.00000000</resolution>
4784  <minimum>1</minimum>
4785  <maximum>999</maximum>
4786  <randomizable group="0">false</randomizable>
4787  <value>220</value>
4788 </bsbObject>
4789 <bsbObject version="2" type="BSBLabel">
4790  <objectName/>
4791  <x>170</x>
4792  <y>11</y>
4793  <width>60</width>
4794  <height>30</height>
4795  <uuid>{75d8a74f-dbf7-405b-a4db-7e4440227227}</uuid>
4796  <visible>true</visible>
4797  <midichan>0</midichan>
4798  <midicc>0</midicc>
4799  <label>Tempo</label>
4800  <alignment>right</alignment>
4801  <font>Liberation Sans</font>
4802  <fontsize>10</fontsize>
4803  <precision>3</precision>
4804  <color>
4805   <r>0</r>
4806   <g>0</g>
4807   <b>0</b>
4808  </color>
4809  <bgcolor mode="nobackground">
4810   <r>255</r>
4811   <g>255</g>
4812   <b>255</b>
4813  </bgcolor>
4814  <bordermode>noborder</bordermode>
4815  <borderradius>1</borderradius>
4816  <borderwidth>1</borderwidth>
4817 </bsbObject>
4818 <bsbObject version="2" type="BSBHSlider">
4819  <objectName>Gain1</objectName>
4820  <x>503</x>
4821  <y>67</y>
4822  <width>170</width>
4823  <height>27</height>
4824  <uuid>{7fe81691-70ec-4282-9a2a-9cc5a9c6aa5c}</uuid>
4825  <visible>true</visible>
4826  <midichan>0</midichan>
4827  <midicc>0</midicc>
4828  <minimum>0.00000000</minimum>
4829  <maximum>1.00000000</maximum>
4830  <value>1.00000000</value>
4831  <mode>lin</mode>
4832  <mouseControl act="jump">continuous</mouseControl>
4833  <resolution>-1.00000000</resolution>
4834  <randomizable group="0">false</randomizable>
4835 </bsbObject>
4836 <bsbObject version="2" type="BSBHSlider">
4837  <objectName>Transpose1</objectName>
4838  <x>742</x>
4839  <y>67</y>
4840  <width>170</width>
4841  <height>27</height>
4842  <uuid>{10ab0c67-4d18-4cdf-9b41-a1d2fc6199f0}</uuid>
4843  <visible>true</visible>
4844  <midichan>0</midichan>
4845  <midicc>0</midicc>
4846  <minimum>25.00000000</minimum>
4847  <maximum>300.00000000</maximum>
4848  <value>207.07405090</value>
4849  <mode>lin</mode>
4850  <mouseControl act="jump">continuous</mouseControl>
4851  <resolution>-1.00000000</resolution>
4852  <randomizable group="0">false</randomizable>
4853 </bsbObject>
4854 <bsbObject version="2" type="BSBHSlider">
4855  <objectName>Delay1</objectName>
4856  <x>917</x>
4857  <y>67</y>
4858  <width>170</width>
4859  <height>27</height>
4860  <uuid>{29552893-1218-4400-a821-82a9e3ab1ee1}</uuid>
4861  <visible>true</visible>
4862  <midichan>0</midichan>
4863  <midicc>0</midicc>
4864  <minimum>0.00000000</minimum>
4865  <maximum>0.10000000</maximum>
4866  <value>0.02242109</value>
4867  <mode>lin</mode>
4868  <mouseControl act="jump">continuous</mouseControl>
4869  <resolution>-1.00000000</resolution>
4870  <randomizable group="0">false</randomizable>
4871 </bsbObject>
4872 <bsbObject version="2" type="BSBSpinBox">
4873  <objectName>Cycle1</objectName>
4874  <x>678</x>
4875  <y>67</y>
4876  <width>60</width>
4877  <height>27</height>
4878  <uuid>{82ba499f-6f1b-461b-9837-52fd9cc6c4e6}</uuid>
4879  <visible>true</visible>
4880  <midichan>0</midichan>
4881  <midicc>0</midicc>
4882  <alignment>right</alignment>
4883  <font>Liberation Sans</font>
4884  <fontsize>14</fontsize>
4885  <color>
4886   <r>0</r>
4887   <g>0</g>
4888   <b>0</b>
4889  </color>
4890  <bgcolor mode="nobackground">
4891   <r>255</r>
4892   <g>255</g>
4893   <b>255</b>
4894  </bgcolor>
4895  <resolution>0.25000000</resolution>
4896  <minimum>0</minimum>
4897  <maximum>8</maximum>
4898  <randomizable group="0">false</randomizable>
4899  <value>5.5</value>
4900 </bsbObject>
4901 <bsbObject version="2" type="BSBHSlider">
4902  <objectName>Gain2</objectName>
4903  <x>503</x>
4904  <y>98</y>
4905  <width>170</width>
4906  <height>27</height>
4907  <uuid>{cad3da27-3df0-4a5c-84c2-d2126137572b}</uuid>
4908  <visible>true</visible>
4909  <midichan>0</midichan>
4910  <midicc>0</midicc>
4911  <minimum>0.00000000</minimum>
4912  <maximum>1.00000000</maximum>
4913  <value>1.00000000</value>
4914  <mode>lin</mode>
4915  <mouseControl act="jump">continuous</mouseControl>
4916  <resolution>-1.00000000</resolution>
4917  <randomizable group="0">false</randomizable>
4918 </bsbObject>
4919 <bsbObject version="2" type="BSBHSlider">
4920  <objectName>Transpose2</objectName>
4921  <x>742</x>
4922  <y>98</y>
4923  <width>170</width>
4924  <height>27</height>
4925  <uuid>{efa36d95-6b3b-4f63-919e-554f6664efec}</uuid>
4926  <visible>true</visible>
4927  <midichan>0</midichan>
4928  <midicc>0</midicc>
4929  <minimum>25.00000000</minimum>
4930  <maximum>300.00000000</maximum>
4931  <value>258.73852539</value>
4932  <mode>lin</mode>
4933  <mouseControl act="jump">continuous</mouseControl>
4934  <resolution>-1.00000000</resolution>
4935  <randomizable group="0">false</randomizable>
4936 </bsbObject>
4937 <bsbObject version="2" type="BSBHSlider">
4938  <objectName>Delay2</objectName>
4939  <x>917</x>
4940  <y>98</y>
4941  <width>170</width>
4942  <height>27</height>
4943  <uuid>{c32d3471-c00c-4bbb-983f-f9b18c640407}</uuid>
4944  <visible>true</visible>
4945  <midichan>0</midichan>
4946  <midicc>0</midicc>
4947  <minimum>0.00000000</minimum>
4948  <maximum>0.10000000</maximum>
4949  <value>0.01556092</value>
4950  <mode>lin</mode>
4951  <mouseControl act="jump">continuous</mouseControl>
4952  <resolution>-1.00000000</resolution>
4953  <randomizable group="0">false</randomizable>
4954 </bsbObject>
4955 <bsbObject version="2" type="BSBSpinBox">
4956  <objectName>Cycle2</objectName>
4957  <x>678</x>
4958  <y>98</y>
4959  <width>60</width>
4960  <height>27</height>
4961  <uuid>{83746c05-1c36-41e7-b310-bbe574493461}</uuid>
4962  <visible>true</visible>
4963  <midichan>0</midichan>
4964  <midicc>0</midicc>
4965  <alignment>right</alignment>
4966  <font>Liberation Sans</font>
4967  <fontsize>14</fontsize>
4968  <color>
4969   <r>0</r>
4970   <g>0</g>
4971   <b>0</b>
4972  </color>
4973  <bgcolor mode="nobackground">
4974   <r>255</r>
4975   <g>255</g>
4976   <b>255</b>
4977  </bgcolor>
4978  <resolution>0.25000000</resolution>
4979  <minimum>0</minimum>
4980  <maximum>8</maximum>
4981  <randomizable group="0">false</randomizable>
4982  <value>6.5</value>
4983 </bsbObject>
4984 <bsbObject version="2" type="BSBHSlider">
4985  <objectName>Gain3</objectName>
4986  <x>503</x>
4987  <y>130</y>
4988  <width>170</width>
4989  <height>27</height>
4990  <uuid>{daab465a-5249-409e-ba93-b7c17f2b24ef}</uuid>
4991  <visible>true</visible>
4992  <midichan>0</midichan>
4993  <midicc>0</midicc>
4994  <minimum>0.00000000</minimum>
4995  <maximum>1.00000000</maximum>
4996  <value>1.00000000</value>
4997  <mode>lin</mode>
4998  <mouseControl act="jump">continuous</mouseControl>
4999  <resolution>-1.00000000</resolution>
5000  <randomizable group="0">false</randomizable>
5001 </bsbObject>
5002 <bsbObject version="2" type="BSBHSlider">
5003  <objectName>Transpose3</objectName>
5004  <x>742</x>
5005  <y>130</y>
5006  <width>170</width>
5007  <height>27</height>
5008  <uuid>{5ec2ee39-3396-4241-872f-fac8cd1940b0}</uuid>
5009  <visible>true</visible>
5010  <midichan>0</midichan>
5011  <midicc>0</midicc>
5012  <minimum>25.00000000</minimum>
5013  <maximum>300.00000000</maximum>
5014  <value>286.77276611</value>
5015  <mode>lin</mode>
5016  <mouseControl act="jump">continuous</mouseControl>
5017  <resolution>-1.00000000</resolution>
5018  <randomizable group="0">false</randomizable>
5019 </bsbObject>
5020 <bsbObject version="2" type="BSBHSlider">
5021  <objectName>Delay3</objectName>
5022  <x>917</x>
5023  <y>130</y>
5024  <width>170</width>
5025  <height>27</height>
5026  <uuid>{11db9f2a-8c2e-4d86-b25d-9daa402a3b30}</uuid>
5027  <visible>true</visible>
5028  <midichan>0</midichan>
5029  <midicc>0</midicc>
5030  <minimum>0.00000000</minimum>
5031  <maximum>0.10000000</maximum>
5032  <value>0.00105907</value>
5033  <mode>lin</mode>
5034  <mouseControl act="jump">continuous</mouseControl>
5035  <resolution>-1.00000000</resolution>
5036  <randomizable group="0">false</randomizable>
5037 </bsbObject>
5038 <bsbObject version="2" type="BSBSpinBox">
5039  <objectName>Cycle3</objectName>
5040  <x>678</x>
5041  <y>130</y>
5042  <width>60</width>
5043  <height>27</height>
5044  <uuid>{e1f48976-3ee3-44ec-9497-9ac1796d9f06}</uuid>
5045  <visible>true</visible>
5046  <midichan>0</midichan>
5047  <midicc>0</midicc>
5048  <alignment>right</alignment>
5049  <font>Liberation Sans</font>
5050  <fontsize>14</fontsize>
5051  <color>
5052   <r>0</r>
5053   <g>0</g>
5054   <b>0</b>
5055  </color>
5056  <bgcolor mode="nobackground">
5057   <r>255</r>
5058   <g>255</g>
5059   <b>255</b>
5060  </bgcolor>
5061  <resolution>0.25000000</resolution>
5062  <minimum>0</minimum>
5063  <maximum>8</maximum>
5064  <randomizable group="0">false</randomizable>
5065  <value>6.5</value>
5066 </bsbObject>
5067 <bsbObject version="2" type="BSBHSlider">
5068  <objectName>Gain4</objectName>
5069  <x>503</x>
5070  <y>162</y>
5071  <width>170</width>
5072  <height>27</height>
5073  <uuid>{a93be628-1544-46f7-8747-1a95d9feddd6}</uuid>
5074  <visible>true</visible>
5075  <midichan>0</midichan>
5076  <midicc>0</midicc>
5077  <minimum>0.00000000</minimum>
5078  <maximum>1.00000000</maximum>
5079  <value>1.00000000</value>
5080  <mode>lin</mode>
5081  <mouseControl act="jump">continuous</mouseControl>
5082  <resolution>-1.00000000</resolution>
5083  <randomizable group="0">false</randomizable>
5084 </bsbObject>
5085 <bsbObject version="2" type="BSBHSlider">
5086  <objectName>Transpose4</objectName>
5087  <x>742</x>
5088  <y>162</y>
5089  <width>170</width>
5090  <height>27</height>
5091  <uuid>{2daee707-eba3-4e52-a4e4-235881e89e50}</uuid>
5092  <visible>true</visible>
5093  <midichan>0</midichan>
5094  <midicc>0</midicc>
5095  <minimum>25.00000000</minimum>
5096  <maximum>300.00000000</maximum>
5097  <value>72.86204529</value>
5098  <mode>lin</mode>
5099  <mouseControl act="jump">continuous</mouseControl>
5100  <resolution>-1.00000000</resolution>
5101  <randomizable group="0">false</randomizable>
5102 </bsbObject>
5103 <bsbObject version="2" type="BSBHSlider">
5104  <objectName>Delay4</objectName>
5105  <x>917</x>
5106  <y>162</y>
5107  <width>170</width>
5108  <height>27</height>
5109  <uuid>{a159be9d-8911-4182-82e6-cde9514b612f}</uuid>
5110  <visible>true</visible>
5111  <midichan>0</midichan>
5112  <midicc>0</midicc>
5113  <minimum>0.00000000</minimum>
5114  <maximum>0.10000000</maximum>
5115  <value>0.00559661</value>
5116  <mode>lin</mode>
5117  <mouseControl act="jump">continuous</mouseControl>
5118  <resolution>-1.00000000</resolution>
5119  <randomizable group="0">false</randomizable>
5120 </bsbObject>
5121 <bsbObject version="2" type="BSBSpinBox">
5122  <objectName>Cycle4</objectName>
5123  <x>678</x>
5124  <y>162</y>
5125  <width>60</width>
5126  <height>27</height>
5127  <uuid>{22479c32-cf5f-430f-bdbd-1d55eb32dbba}</uuid>
5128  <visible>true</visible>
5129  <midichan>0</midichan>
5130  <midicc>0</midicc>
5131  <alignment>right</alignment>
5132  <font>Liberation Sans</font>
5133  <fontsize>14</fontsize>
5134  <color>
5135   <r>0</r>
5136   <g>0</g>
5137   <b>0</b>
5138  </color>
5139  <bgcolor mode="nobackground">
5140   <r>255</r>
5141   <g>255</g>
5142   <b>255</b>
5143  </bgcolor>
5144  <resolution>0.25000000</resolution>
5145  <minimum>0</minimum>
5146  <maximum>8</maximum>
5147  <randomizable group="0">false</randomizable>
5148  <value>7</value>
5149 </bsbObject>
5150 <bsbObject version="2" type="BSBHSlider">
5151  <objectName>Gain5</objectName>
5152  <x>503</x>
5153  <y>194</y>
5154  <width>170</width>
5155  <height>27</height>
5156  <uuid>{baa2bfd0-8b1f-418b-abe1-1751b0ad79c6}</uuid>
5157  <visible>true</visible>
5158  <midichan>0</midichan>
5159  <midicc>0</midicc>
5160  <minimum>0.00000000</minimum>
5161  <maximum>1.00000000</maximum>
5162  <value>1.00000000</value>
5163  <mode>lin</mode>
5164  <mouseControl act="jump">continuous</mouseControl>
5165  <resolution>-1.00000000</resolution>
5166  <randomizable group="0">false</randomizable>
5167 </bsbObject>
5168 <bsbObject version="2" type="BSBHSlider">
5169  <objectName>Transpose5</objectName>
5170  <x>742</x>
5171  <y>194</y>
5172  <width>170</width>
5173  <height>27</height>
5174  <uuid>{e0645640-8fa0-479d-a7c0-ef40c1dcd031}</uuid>
5175  <visible>true</visible>
5176  <midichan>0</midichan>
5177  <midicc>0</midicc>
5178  <minimum>25.00000000</minimum>
5179  <maximum>300.00000000</maximum>
5180  <value>270.69818115</value>
5181  <mode>lin</mode>
5182  <mouseControl act="jump">continuous</mouseControl>
5183  <resolution>-1.00000000</resolution>
5184  <randomizable group="0">false</randomizable>
5185 </bsbObject>
5186 <bsbObject version="2" type="BSBHSlider">
5187  <objectName>Delay5</objectName>
5188  <x>917</x>
5189  <y>194</y>
5190  <width>170</width>
5191  <height>27</height>
5192  <uuid>{75a4910a-b2f5-4ba4-8ad4-87b3ffcf8b68}</uuid>
5193  <visible>true</visible>
5194  <midichan>0</midichan>
5195  <midicc>0</midicc>
5196  <minimum>0.00000000</minimum>
5197  <maximum>0.10000000</maximum>
5198  <value>0.01900059</value>
5199  <mode>lin</mode>
5200  <mouseControl act="jump">continuous</mouseControl>
5201  <resolution>-1.00000000</resolution>
5202  <randomizable group="0">false</randomizable>
5203 </bsbObject>
5204 <bsbObject version="2" type="BSBSpinBox">
5205  <objectName>Cycle5</objectName>
5206  <x>678</x>
5207  <y>194</y>
5208  <width>60</width>
5209  <height>27</height>
5210  <uuid>{c86aaa79-c9ed-4066-ab93-11e40a920ce2}</uuid>
5211  <visible>true</visible>
5212  <midichan>0</midichan>
5213  <midicc>0</midicc>
5214  <alignment>right</alignment>
5215  <font>Liberation Sans</font>
5216  <fontsize>14</fontsize>
5217  <color>
5218   <r>0</r>
5219   <g>0</g>
5220   <b>0</b>
5221  </color>
5222  <bgcolor mode="nobackground">
5223   <r>255</r>
5224   <g>255</g>
5225   <b>255</b>
5226  </bgcolor>
5227  <resolution>0.25000000</resolution>
5228  <minimum>0</minimum>
5229  <maximum>8</maximum>
5230  <randomizable group="0">false</randomizable>
5231  <value>5.5</value>
5232 </bsbObject>
5233 <bsbObject version="2" type="BSBHSlider">
5234  <objectName>Gain6</objectName>
5235  <x>503</x>
5236  <y>226</y>
5237  <width>170</width>
5238  <height>27</height>
5239  <uuid>{92dccd93-a81b-4440-a666-9d3944400c22}</uuid>
5240  <visible>true</visible>
5241  <midichan>0</midichan>
5242  <midicc>0</midicc>
5243  <minimum>0.00000000</minimum>
5244  <maximum>1.00000000</maximum>
5245  <value>1.00000000</value>
5246  <mode>lin</mode>
5247  <mouseControl act="jump">continuous</mouseControl>
5248  <resolution>-1.00000000</resolution>
5249  <randomizable group="0">false</randomizable>
5250 </bsbObject>
5251 <bsbObject version="2" type="BSBHSlider">
5252  <objectName>Transpose6</objectName>
5253  <x>742</x>
5254  <y>226</y>
5255  <width>170</width>
5256  <height>27</height>
5257  <uuid>{fae03a24-23ce-41f6-91ca-2a47ceeefab7}</uuid>
5258  <visible>true</visible>
5259  <midichan>0</midichan>
5260  <midicc>0</midicc>
5261  <minimum>25.00000000</minimum>
5262  <maximum>300.00000000</maximum>
5263  <value>241.10981750</value>
5264  <mode>lin</mode>
5265  <mouseControl act="jump">continuous</mouseControl>
5266  <resolution>-1.00000000</resolution>
5267  <randomizable group="0">false</randomizable>
5268 </bsbObject>
5269 <bsbObject version="2" type="BSBHSlider">
5270  <objectName>Delay6</objectName>
5271  <x>917</x>
5272  <y>226</y>
5273  <width>170</width>
5274  <height>27</height>
5275  <uuid>{12b91cb3-0a19-4ff2-882d-d8cb89ac8f3f}</uuid>
5276  <visible>true</visible>
5277  <midichan>0</midichan>
5278  <midicc>0</midicc>
5279  <minimum>0.00000000</minimum>
5280  <maximum>0.10000000</maximum>
5281  <value>0.00889438</value>
5282  <mode>lin</mode>
5283  <mouseControl act="jump">continuous</mouseControl>
5284  <resolution>-1.00000000</resolution>
5285  <randomizable group="0">false</randomizable>
5286 </bsbObject>
5287 <bsbObject version="2" type="BSBSpinBox">
5288  <objectName>Cycle6</objectName>
5289  <x>678</x>
5290  <y>226</y>
5291  <width>60</width>
5292  <height>27</height>
5293  <uuid>{585aaa8a-36cb-40e6-a108-a33216932860}</uuid>
5294  <visible>true</visible>
5295  <midichan>0</midichan>
5296  <midicc>0</midicc>
5297  <alignment>right</alignment>
5298  <font>Liberation Sans</font>
5299  <fontsize>14</fontsize>
5300  <color>
5301   <r>0</r>
5302   <g>0</g>
5303   <b>0</b>
5304  </color>
5305  <bgcolor mode="nobackground">
5306   <r>255</r>
5307   <g>255</g>
5308   <b>255</b>
5309  </bgcolor>
5310  <resolution>0.25000000</resolution>
5311  <minimum>0</minimum>
5312  <maximum>8</maximum>
5313  <randomizable group="0">false</randomizable>
5314  <value>5</value>
5315 </bsbObject>
5316 <bsbObject version="2" type="BSBLabel">
5317  <objectName/>
5318  <x>777</x>
5319  <y>43</y>
5320  <width>100</width>
5321  <height>25</height>
5322  <uuid>{35c715b1-7877-433b-b7ce-a792d5ae7a4d}</uuid>
5323  <visible>true</visible>
5324  <midichan>0</midichan>
5325  <midicc>0</midicc>
5326  <label>Transpose</label>
5327  <alignment>center</alignment>
5328  <font>Liberation Sans</font>
5329  <fontsize>10</fontsize>
5330  <precision>3</precision>
5331  <color>
5332   <r>0</r>
5333   <g>0</g>
5334   <b>0</b>
5335  </color>
5336  <bgcolor mode="nobackground">
5337   <r>255</r>
5338   <g>255</g>
5339   <b>255</b>
5340  </bgcolor>
5341  <bordermode>noborder</bordermode>
5342  <borderradius>1</borderradius>
5343  <borderwidth>1</borderwidth>
5344 </bsbObject>
5345 <bsbObject version="2" type="BSBLabel">
5346  <objectName/>
5347  <x>940</x>
5348  <y>43</y>
5349  <width>120</width>
5350  <height>25</height>
5351  <uuid>{013f94f2-a46d-4191-a2f7-f12ee81e12c7}</uuid>
5352  <visible>true</visible>
5353  <midichan>0</midichan>
5354  <midicc>0</midicc>
5355  <label>Delay (0 - 0.1 s)</label>
5356  <alignment>center</alignment>
5357  <font>Liberation Sans</font>
5358  <fontsize>10</fontsize>
5359  <precision>3</precision>
5360  <color>
5361   <r>0</r>
5362   <g>0</g>
5363   <b>0</b>
5364  </color>
5365  <bgcolor mode="nobackground">
5366   <r>255</r>
5367   <g>255</g>
5368   <b>255</b>
5369  </bgcolor>
5370  <bordermode>noborder</bordermode>
5371  <borderradius>1</borderradius>
5372  <borderwidth>1</borderwidth>
5373 </bsbObject>
5374 <bsbObject version="2" type="BSBLabel">
5375  <objectName/>
5376  <x>540</x>
5377  <y>43</y>
5378  <width>100</width>
5379  <height>25</height>
5380  <uuid>{7c945fd6-92be-427f-bceb-ab7630e97198}</uuid>
5381  <visible>true</visible>
5382  <midichan>0</midichan>
5383  <midicc>0</midicc>
5384  <label>Gain</label>
5385  <alignment>center</alignment>
5386  <font>Liberation Sans</font>
5387  <fontsize>10</fontsize>
5388  <precision>3</precision>
5389  <color>
5390   <r>0</r>
5391   <g>0</g>
5392   <b>0</b>
5393  </color>
5394  <bgcolor mode="nobackground">
5395   <r>255</r>
5396   <g>255</g>
5397   <b>255</b>
5398  </bgcolor>
5399  <bordermode>noborder</bordermode>
5400  <borderradius>1</borderradius>
5401  <borderwidth>1</borderwidth>
5402 </bsbObject>
5403 <bsbObject version="2" type="BSBLabel">
5404  <objectName/>
5405  <x>657</x>
5406  <y>43</y>
5407  <width>100</width>
5408  <height>25</height>
5409  <uuid>{d604a2a6-123b-4883-9e29-bf844e323419}</uuid>
5410  <visible>true</visible>
5411  <midichan>0</midichan>
5412  <midicc>0</midicc>
5413  <label>Cycle Range</label>
5414  <alignment>center</alignment>
5415  <font>Liberation Sans</font>
5416  <fontsize>10</fontsize>
5417  <precision>3</precision>
5418  <color>
5419   <r>0</r>
5420   <g>0</g>
5421   <b>0</b>
5422  </color>
5423  <bgcolor mode="nobackground">
5424   <r>255</r>
5425   <g>255</g>
5426   <b>255</b>
5427  </bgcolor>
5428  <bordermode>noborder</bordermode>
5429  <borderradius>1</borderradius>
5430  <borderwidth>1</borderwidth>
5431 </bsbObject>
5432 <bsbObject version="2" type="BSBLabel">
5433  <objectName/>
5434  <x>8</x>
5435  <y>333</y>
5436  <width>220</width>
5437  <height>30</height>
5438  <uuid>{a79e966a-f875-4240-9f22-44a0a2fde9ac}</uuid>
5439  <visible>true</visible>
5440  <midichan>0</midichan>
5441  <midicc>0</midicc>
5442  <label>Reverb Time</label>
5443  <alignment>left</alignment>
5444  <font>Liberation Sans</font>
5445  <fontsize>10</fontsize>
5446  <precision>3</precision>
5447  <color>
5448   <r>0</r>
5449   <g>0</g>
5450   <b>0</b>
5451  </color>
5452  <bgcolor mode="nobackground">
5453   <r>255</r>
5454   <g>255</g>
5455   <b>255</b>
5456  </bgcolor>
5457  <bordermode>noborder</bordermode>
5458  <borderradius>1</borderradius>
5459  <borderwidth>1</borderwidth>
5460 </bsbObject>
5461 <bsbObject version="2" type="BSBHSlider">
5462  <objectName>RvbTime</objectName>
5463  <x>8</x>
5464  <y>311</y>
5465  <width>460</width>
5466  <height>27</height>
5467  <uuid>{774f68ec-19bc-4a55-9a46-523c4f691bc3}</uuid>
5468  <visible>true</visible>
5469  <midichan>0</midichan>
5470  <midicc>0</midicc>
5471  <minimum>0.00000000</minimum>
5472  <maximum>1.00000000</maximum>
5473  <value>0.69999999</value>
5474  <mode>lin</mode>
5475  <mouseControl act="jump">continuous</mouseControl>
5476  <resolution>-1.00000000</resolution>
5477  <randomizable group="0">false</randomizable>
5478 </bsbObject>
5479 <bsbObject version="2" type="BSBDisplay">
5480  <objectName>RvbTime</objectName>
5481  <x>408</x>
5482  <y>333</y>
5483  <width>60</width>
5484  <height>30</height>
5485  <uuid>{374358b4-4923-4722-a810-00f8348a4757}</uuid>
5486  <visible>true</visible>
5487  <midichan>0</midichan>
5488  <midicc>0</midicc>
5489  <label>0.700</label>
5490  <alignment>right</alignment>
5491  <font>Liberation Sans</font>
5492  <fontsize>9</fontsize>
5493  <precision>3</precision>
5494  <color>
5495   <r>0</r>
5496   <g>0</g>
5497   <b>0</b>
5498  </color>
5499  <bgcolor mode="nobackground">
5500   <r>255</r>
5501   <g>255</g>
5502   <b>255</b>
5503  </bgcolor>
5504  <bordermode>noborder</bordermode>
5505  <borderradius>1</borderradius>
5506  <borderwidth>1</borderwidth>
5507 </bsbObject>
5508 <bsbObject version="2" type="BSBLabel">
5509  <objectName/>
5510  <x>8</x>
5511  <y>378</y>
5512  <width>220</width>
5513  <height>30</height>
5514  <uuid>{c585910c-5c7b-4b62-a1ee-621ef36f2471}</uuid>
5515  <visible>true</visible>
5516  <midichan>0</midichan>
5517  <midicc>0</midicc>
5518  <label>Reverb Filter Cutoff</label>
5519  <alignment>left</alignment>
5520  <font>Liberation Sans</font>
5521  <fontsize>10</fontsize>
5522  <precision>3</precision>
5523  <color>
5524   <r>0</r>
5525   <g>0</g>
5526   <b>0</b>
5527  </color>
5528  <bgcolor mode="nobackground">
5529   <r>255</r>
5530   <g>255</g>
5531   <b>255</b>
5532  </bgcolor>
5533  <bordermode>noborder</bordermode>
5534  <borderradius>1</borderradius>
5535  <borderwidth>1</borderwidth>
5536 </bsbObject>
5537 <bsbObject version="2" type="BSBHSlider">
5538  <objectName>RvbCutoff</objectName>
5539  <x>8</x>
5540  <y>356</y>
5541  <width>460</width>
5542  <height>27</height>
5543  <uuid>{6c2049fd-2453-4586-9e58-7fa6ed2c3f24}</uuid>
5544  <visible>true</visible>
5545  <midichan>0</midichan>
5546  <midicc>0</midicc>
5547  <minimum>20.00000000</minimum>
5548  <maximum>20000.00000000</maximum>
5549  <value>10000.00000000</value>
5550  <mode>lin</mode>
5551  <mouseControl act="jump">continuous</mouseControl>
5552  <resolution>-1.00000000</resolution>
5553  <randomizable group="0">false</randomizable>
5554 </bsbObject>
5555 <bsbObject version="2" type="BSBDisplay">
5556  <objectName>RvbCutoff</objectName>
5557  <x>408</x>
5558  <y>378</y>
5559  <width>60</width>
5560  <height>30</height>
5561  <uuid>{e13cb450-7bfd-4035-b9c1-48b342dafb8f}</uuid>
5562  <visible>true</visible>
5563  <midichan>0</midichan>
5564  <midicc>0</midicc>
5565  <label>10000.000</label>
5566  <alignment>right</alignment>
5567  <font>Liberation Sans</font>
5568  <fontsize>9</fontsize>
5569  <precision>3</precision>
5570  <color>
5571   <r>0</r>
5572   <g>0</g>
5573   <b>0</b>
5574  </color>
5575  <bgcolor mode="nobackground">
5576   <r>255</r>
5577   <g>255</g>
5578   <b>255</b>
5579  </bgcolor>
5580  <bordermode>noborder</bordermode>
5581  <borderradius>1</borderradius>
5582  <borderwidth>1</borderwidth>
5583 </bsbObject>
5584 <bsbObject version="2" type="BSBLabel">
5585  <objectName/>
5586  <x>503</x>
5587  <y>287</y>
5588  <width>220</width>
5589  <height>30</height>
5590  <uuid>{46b3098d-2d8a-41ff-8a9f-f113d48715e0}</uuid>
5591  <visible>true</visible>
5592  <midichan>0</midichan>
5593  <midicc>0</midicc>
5594  <label>Delay Send</label>
5595  <alignment>left</alignment>
5596  <font>Liberation Sans</font>
5597  <fontsize>10</fontsize>
5598  <precision>3</precision>
5599  <color>
5600   <r>0</r>
5601   <g>0</g>
5602   <b>0</b>
5603  </color>
5604  <bgcolor mode="nobackground">
5605   <r>255</r>
5606   <g>255</g>
5607   <b>255</b>
5608  </bgcolor>
5609  <bordermode>noborder</bordermode>
5610  <borderradius>1</borderradius>
5611  <borderwidth>1</borderwidth>
5612 </bsbObject>
5613 <bsbObject version="2" type="BSBHSlider">
5614  <objectName>DelSend</objectName>
5615  <x>503</x>
5616  <y>265</y>
5617  <width>460</width>
5618  <height>27</height>
5619  <uuid>{2ada7bfe-15cb-4d69-ab5f-9b4345480ecc}</uuid>
5620  <visible>true</visible>
5621  <midichan>0</midichan>
5622  <midicc>0</midicc>
5623  <minimum>0.00000000</minimum>
5624  <maximum>1.00000000</maximum>
5625  <value>0.20000000</value>
5626  <mode>lin</mode>
5627  <mouseControl act="jump">continuous</mouseControl>
5628  <resolution>-1.00000000</resolution>
5629  <randomizable group="0">false</randomizable>
5630 </bsbObject>
5631 <bsbObject version="2" type="BSBDisplay">
5632  <objectName>DelSend</objectName>
5633  <x>903</x>
5634  <y>287</y>
5635  <width>60</width>
5636  <height>30</height>
5637  <uuid>{878936ab-0051-40f0-b47b-2669f4387f17}</uuid>
5638  <visible>true</visible>
5639  <midichan>0</midichan>
5640  <midicc>0</midicc>
5641  <label>0.200</label>
5642  <alignment>right</alignment>
5643  <font>Liberation Sans</font>
5644  <fontsize>9</fontsize>
5645  <precision>3</precision>
5646  <color>
5647   <r>0</r>
5648   <g>0</g>
5649   <b>0</b>
5650  </color>
5651  <bgcolor mode="nobackground">
5652   <r>255</r>
5653   <g>255</g>
5654   <b>255</b>
5655  </bgcolor>
5656  <bordermode>noborder</bordermode>
5657  <borderradius>1</borderradius>
5658  <borderwidth>1</borderwidth>
5659 </bsbObject>
5660 <bsbObject version="2" type="BSBLabel">
5661  <objectName/>
5662  <x>503</x>
5663  <y>333</y>
5664  <width>220</width>
5665  <height>30</height>
5666  <uuid>{42e4795f-cf6e-4757-be63-c2570266d891}</uuid>
5667  <visible>true</visible>
5668  <midichan>0</midichan>
5669  <midicc>0</midicc>
5670  <label>Delay Feedback</label>
5671  <alignment>left</alignment>
5672  <font>Liberation Sans</font>
5673  <fontsize>10</fontsize>
5674  <precision>3</precision>
5675  <color>
5676   <r>0</r>
5677   <g>0</g>
5678   <b>0</b>
5679  </color>
5680  <bgcolor mode="nobackground">
5681   <r>255</r>
5682   <g>255</g>
5683   <b>255</b>
5684  </bgcolor>
5685  <bordermode>noborder</bordermode>
5686  <borderradius>1</borderradius>
5687  <borderwidth>1</borderwidth>
5688 </bsbObject>
5689 <bsbObject version="2" type="BSBHSlider">
5690  <objectName>DelFB</objectName>
5691  <x>503</x>
5692  <y>311</y>
5693  <width>460</width>
5694  <height>27</height>
5695  <uuid>{2f0070a0-4431-470b-a38e-7d0e52e2c096}</uuid>
5696  <visible>true</visible>
5697  <midichan>0</midichan>
5698  <midicc>0</midicc>
5699  <minimum>0.00000000</minimum>
5700  <maximum>1.00000000</maximum>
5701  <value>0.40000001</value>
5702  <mode>lin</mode>
5703  <mouseControl act="jump">continuous</mouseControl>
5704  <resolution>-1.00000000</resolution>
5705  <randomizable group="0">false</randomizable>
5706 </bsbObject>
5707 <bsbObject version="2" type="BSBDisplay">
5708  <objectName>DelFB</objectName>
5709  <x>903</x>
5710  <y>333</y>
5711  <width>60</width>
5712  <height>30</height>
5713  <uuid>{09e055ba-3e6d-429c-bb71-553883c7d68d}</uuid>
5714  <visible>true</visible>
5715  <midichan>0</midichan>
5716  <midicc>0</midicc>
5717  <label>0.400</label>
5718  <alignment>right</alignment>
5719  <font>Liberation Sans</font>
5720  <fontsize>9</fontsize>
5721  <precision>3</precision>
5722  <color>
5723   <r>0</r>
5724   <g>0</g>
5725   <b>0</b>
5726  </color>
5727  <bgcolor mode="nobackground">
5728   <r>255</r>
5729   <g>255</g>
5730   <b>255</b>
5731  </bgcolor>
5732  <bordermode>noborder</bordermode>
5733  <borderradius>1</borderradius>
5734  <borderwidth>1</borderwidth>
5735 </bsbObject>
5736 <bsbObject version="2" type="BSBSpinBox">
5737  <objectName>DelayL</objectName>
5738  <x>589</x>
5739  <y>362</y>
5740  <width>50</width>
5741  <height>27</height>
5742  <uuid>{fdb65ab4-90b1-4893-a07e-662cf7259fea}</uuid>
5743  <visible>true</visible>
5744  <midichan>0</midichan>
5745  <midicc>0</midicc>
5746  <alignment>right</alignment>
5747  <font>Liberation Sans</font>
5748  <fontsize>14</fontsize>
5749  <color>
5750   <r>0</r>
5751   <g>0</g>
5752   <b>0</b>
5753  </color>
5754  <bgcolor mode="nobackground">
5755   <r>255</r>
5756   <g>255</g>
5757   <b>255</b>
5758  </bgcolor>
5759  <resolution>1.00000000</resolution>
5760  <minimum>1</minimum>
5761  <maximum>32</maximum>
5762  <randomizable group="0">false</randomizable>
5763  <value>12</value>
5764 </bsbObject>
5765 <bsbObject version="2" type="BSBLabel">
5766  <objectName/>
5767  <x>509</x>
5768  <y>364</y>
5769  <width>80</width>
5770  <height>27</height>
5771  <uuid>{a063b258-0c50-4391-aa2a-ccedcf10962c}</uuid>
5772  <visible>true</visible>
5773  <midichan>0</midichan>
5774  <midicc>0</midicc>
5775  <label>Delay L</label>
5776  <alignment>right</alignment>
5777  <font>Liberation Sans</font>
5778  <fontsize>10</fontsize>
5779  <precision>3</precision>
5780  <color>
5781   <r>0</r>
5782   <g>0</g>
5783   <b>0</b>
5784  </color>
5785  <bgcolor mode="nobackground">
5786   <r>255</r>
5787   <g>255</g>
5788   <b>255</b>
5789  </bgcolor>
5790  <bordermode>noborder</bordermode>
5791  <borderradius>1</borderradius>
5792  <borderwidth>1</borderwidth>
5793 </bsbObject>
5794 <bsbObject version="2" type="BSBSpinBox">
5795  <objectName>DelayR</objectName>
5796  <x>748</x>
5797  <y>362</y>
5798  <width>50</width>
5799  <height>27</height>
5800  <uuid>{f418902f-8559-4a3b-b3e8-70abec9d6edf}</uuid>
5801  <visible>true</visible>
5802  <midichan>0</midichan>
5803  <midicc>0</midicc>
5804  <alignment>right</alignment>
5805  <font>Liberation Sans</font>
5806  <fontsize>14</fontsize>
5807  <color>
5808   <r>0</r>
5809   <g>0</g>
5810   <b>0</b>
5811  </color>
5812  <bgcolor mode="nobackground">
5813   <r>255</r>
5814   <g>255</g>
5815   <b>255</b>
5816  </bgcolor>
5817  <resolution>1.00000000</resolution>
5818  <minimum>1</minimum>
5819  <maximum>32</maximum>
5820  <randomizable group="0">false</randomizable>
5821  <value>20</value>
5822 </bsbObject>
5823 <bsbObject version="2" type="BSBLabel">
5824  <objectName/>
5825  <x>668</x>
5826  <y>364</y>
5827  <width>80</width>
5828  <height>27</height>
5829  <uuid>{e6d42881-d69f-4ee0-932c-9ec0eee1921a}</uuid>
5830  <visible>true</visible>
5831  <midichan>0</midichan>
5832  <midicc>0</midicc>
5833  <label>Delay R</label>
5834  <alignment>right</alignment>
5835  <font>Liberation Sans</font>
5836  <fontsize>10</fontsize>
5837  <precision>3</precision>
5838  <color>
5839   <r>0</r>
5840   <g>0</g>
5841   <b>0</b>
5842  </color>
5843  <bgcolor mode="nobackground">
5844   <r>255</r>
5845   <g>255</g>
5846   <b>255</b>
5847  </bgcolor>
5848  <bordermode>noborder</bordermode>
5849  <borderradius>1</borderradius>
5850  <borderwidth>1</borderwidth>
5851 </bsbObject>
5852 <bsbObject version="2" type="BSBKnob">
5853  <objectName>Master</objectName>
5854  <x>997</x>
5855  <y>270</y>
5856  <width>80</width>
5857  <height>80</height>
5858  <uuid>{65c8795c-6a2a-4322-a853-754ed13bf542}</uuid>
5859  <visible>true</visible>
5860  <midichan>0</midichan>
5861  <midicc>0</midicc>
5862  <minimum>0.00000000</minimum>
5863  <maximum>1.00000000</maximum>
5864  <value>1.00000000</value>
5865  <mode>lin</mode>
5866  <mouseControl act="jump">continuous</mouseControl>
5867  <resolution>0.01000000</resolution>
5868  <randomizable group="0">false</randomizable>
5869 </bsbObject>
5870 <bsbObject version="2" type="BSBLabel">
5871  <objectName/>
5872  <x>987</x>
5873  <y>350</y>
5874  <width>100</width>
5875  <height>40</height>
5876  <uuid>{1fa5fdb4-b075-4621-8e64-adef7ec31a27}</uuid>
5877  <visible>true</visible>
5878  <midichan>0</midichan>
5879  <midicc>0</midicc>
5880  <label>Master
5881Gain</label>
5882  <alignment>center</alignment>
5883  <font>Liberation Sans</font>
5884  <fontsize>10</fontsize>
5885  <precision>3</precision>
5886  <color>
5887   <r>0</r>
5888   <g>0</g>
5889   <b>0</b>
5890  </color>
5891  <bgcolor mode="nobackground">
5892   <r>255</r>
5893   <g>255</g>
5894   <b>255</b>
5895  </bgcolor>
5896  <bordermode>noborder</bordermode>
5897  <borderradius>1</borderradius>
5898  <borderwidth>1</borderwidth>
5899 </bsbObject>
5900</bsbPanel>
5901<bsbPresets>
5902</bsbPresets>
5903<EventPanel name="" tempo="60.00000000" loop="8.00000000" x="913" y="162" width="655" height="346" visible="true" loopStart="0" loopEnd="0">    </EventPanel>
5904