1;Written by Iain McCurdy, 2010
2
3; Modified for QuteCsound by René, January 2011.
4; Thanks to Andres CABRERA for the mouse channels names.
5
6; Tested on Ubuntu 10.04 with csound-float 5.13.0 and QuteCsound svn rev 817 with "Widgets are an independent window" ON.
7
8
9/*
10Mouse Keyboard
11--------------
12This csd was originally written for use by someone who only had the use of a head-mouse for music performance.
13A graphical keyboard is drawn on the screen. Notes are played by moving the mouse over a particular key.
14As well as activating that note, dynamic control is possible by moving the mouse vertically up the key.
15As the user moves the mouse right to the very bottom of the key, a modulation effect is also introduced.
16No clicking is required enabling better timing in performance. The GUI window needs to be in focus for this to work.
17The user can change the functioning (or non-functioning) of the left click mouse button using the menu Mode.
18The user can choose between different stereo wav sounds using the browse button within the GUI.
19Reverb and ping-pong delay effects are provided, the parameters of which the user can change are in the GUI.
20The mouse relative position is given by the channels _MouseRelX and _MouseRelY.
21
22If the windows need to be resized, for example to accomodate use on a netbook, it is mandatory to manually update the values of boxes dimensions and positions in the csd file.
23
24Professional head mouse or iris tracking software can be very expensive and requires practice.
25iNavigate is a free option for Mac OS 10.5 if the user wants to experiment with this approach.
26*/
27
28
29;Notes on modifications from original csd:
30;	No automatic rescale
31;	Add control widgets in GUI
32;	reverse volume, upper position is 0.0, bottom position (of black key) is 1.0
33;	Replaced audio file by an audio generator
34
35
36;my flags on Ubuntu: -odac -b1024 -B2048 -+rtaudio=alsa -+rtmidi=null -m0
37<CsoundSynthesizer>
38<CsOptions>
39
40</CsOptions>
41<CsInstruments>
42sr 		= 44100	;SAMPLE RATE
43ksmps 	= 32		;NUMBER OF AUDIO SAMPLES IN EACH CONTROL CYCLE
44nchnls 	= 2		;NUMBER OF CHANNELS (2=STEREO)
450dbfs	= 1		;MAXIMUM AMPLITUDE REGARDLESS OF BIT DEPTH
46
47
48gisine		ftgen	0,0,4096,10,1	;A SINE WAVE
49
50;TABLE TO MAP MOUSE LOCATION ALONG THE Y-AXIS TO VARIOUS CONTROL PARAMETERS
51giampscale	ftgen	0,0,1024,7,0,240,1,1024-240,1
52gimodscale	ftgen	0,0,1024,7,0,600,0,1024-600,1
53giLPFscale	ftgen	0,0,1024,7,0,800,1,224,1
54
55giOct_White	ftgen	0,0,16,-2,7,7,7,7,7,7,7,8,8,8,8,8,8,8,9										;OCT TABLE FOR WHITES KEYS
56giSemis_White	ftgen	0,0,16,-2,0,2/12,4/12,5/12,7/12,9/12,11/12,0,2/12,4/12,5/12,7/12,9/12,11/12		;SEMIS TABLE FOR WHITES KEYS
57
58
59			zakinit	2,1	;INITIALISE ZAK SPACE FOR VARIABLE STORAGE
60
61
62instr 	1	;SENSES MOUSE POSITION AND PLAYS SOUND (ALWAYS ON)
63
64	ktrig	metro	10
65	if ktrig = 1 then
66		kportamento	invalue	"Portamento"						;TIME IT TAKES TO SLIDE BETWEEN NOTES. TRY VALUES WITHIN THE RANGE 0 - 0.3
67		kOctaveTrans	invalue	"Octave"							;THIS DEFINES THE AMOUNT OF TRANSPOSITION IN OCTAVES, IDEALLY THIS SHOULD BE A WHOLE NUMBER, I.E. '1', '0', '-1' ETC.
68		kClick		invalue	"Mode"							;Click OPTION:	;0 = NO LEFT CLICK IS REQUIRED TO PLAY A NOTE. A NOTE PLAYS CONTINUOUSLY
69																		;1 = IT IS REQUIRED TO LEFT CLICK TO PLAY A NOTE
70																		;2 = LEFT CLICK STOPS A NOTE PLAYING
71		kampport		invalue	"AmpPort"							;DEFINE AMPLITUDE PORTAMENTO TIME (SMOOTHING)
72		kmodfrq		invalue	"ModFrq"							;DEFINE MODULATION FREQUENCY (VIBRATO/TREMOLO)
73		kvibdep		invalue	"VibDep"							;DEFINE MAXIMUM VIBRATO DEPTH (PITCH MODULATION)
74		ktrmdep		invalue	"TrmDep"							;DEFINE MAXIMUM TREMOLO DEPTH (AMPLITUDE MODULATION)
75
76		;GUI FOR INSTR 2, PING PONG DELAY
77		gkDelayTime	invalue	"DelayTime"						;DELAY TIME IN SECONDS
78		gkReverbMix	invalue	"ReverbMix"						;AMOUNT OF REVERB. TRY VALUES WITHIN THE RANGE 0-1. 0=NO REVERB, 1=LOTS OF REVERB!
79		gkDelayMix	invalue	"DelayMix"						;AMOUNT OF DELAY EFFECT. TRY VALUES WITHIN THE RANGE 0-1. 0=NO DELAY, 1=LOTS OF DELAY!
80
81	endif
82
83;KEYS WIDGETS SIZES AND POSITIONS
84
85	iy_all	= 100
86	ix_offset	= 2
87
88	;White notes
89	iwidth_W	= 60
90	iheight_W	= 300
91
92	;ixN_W	= ix_offset + (N-1) * iwidth_W
93
94	;Black notes
95	iwidth_B	= 40
96	iheight_B	= 200
97
98	ix1_B	= 36		;upper left corner coordinates
99	ix2_B	= 106
100	ix3_B	= 212
101	ix4_B	= 282
102	ix5_B	= 352
103	ix6_B	= 456
104	ix7_B	= 526
105	ix8_B	= 632
106	ix9_B	= 702
107	ix10_B	= 772
108
109;MOUSE POSITION IN WIDGET PANEL AND SENSE MOUSE LEFT BUTTON
110	krelx	invalue	"_MouseRelX"
111	krely	invalue	"_MouseRelY"
112	kb1		invalue	"_MouseBut1"
113
114
115;MOUSE ON KEYBOARD AREA
116	kon_kbd	init	0
117	if (ix_offset <= krelx && krelx <= ix_offset+15*iwidth_W && iy_all <= krely  && krely <= iy_all+iheight_W) then
118		kon_kbd	= 1
119	else
120		kon_kbd	= 0
121	endif
122
123	ky		init	1								;amplitude init
124
125;MOUSE ON A BLACK KEY
126	kon_Black	init	0
127
128#define BLACK_KEY(N) #(ix$N_B <= krelx && krelx <= ix$N_B + iwidth_B)#
129
130	if (iy_all <= krely && krely <= iy_all+iheight_B) then
131
132		ky	=	(krely - iy_all)/iheight_B			;amplitude 0 to 1
133
134		if		$BLACK_KEY(1)	then
135				kon_Black	= 1
136				koctave	= 7
137				ksemis	= 1/12
138		elseif	$BLACK_KEY(2)	then
139				kon_Black	= 1
140				koctave	= 7
141				ksemis	= 3/12
142		elseif	$BLACK_KEY(3)	then
143				kon_Black	= 1
144				koctave	= 7
145				ksemis	= 6/12
146		elseif	$BLACK_KEY(4)	then
147				kon_Black	= 1
148				koctave	= 7
149				ksemis	= 8/12
150		elseif	$BLACK_KEY(5)	then
151				kon_Black	= 1
152				koctave	= 7
153				ksemis	= 10/12
154		elseif	$BLACK_KEY(6)	then
155				kon_Black	= 1
156				koctave	= 8
157				ksemis	= 1/12
158		elseif	$BLACK_KEY(7)	then
159				kon_Black	= 1
160				koctave	= 8
161				ksemis	= 3/12
162		elseif	$BLACK_KEY(8)	then
163				kon_Black	= 1
164				koctave	= 8
165				ksemis	= 6/12
166		elseif	$BLACK_KEY(9)	then
167				kon_Black	= 1
168				koctave	= 8
169				ksemis	= 8/12
170		elseif	$BLACK_KEY(10)	then
171				kon_Black	= 1
172				koctave	= 8
173				ksemis	= 10/12
174		else
175				kon_Black	= 0
176		endif
177	else
178		kon_Black	= 0
179	endif
180
181;MOUSE ON A WHITE KEY
182	kon_White	init	0
183	if (kon_kbd = 1 && kon_Black = 0) then
184		kx		= krelx - ix_offset
185		kKey		= int(kx/iwidth_W)
186		koctave	table	kKey, giOct_White
187		ksemis	table	kKey, giSemis_White
188		kon_White	= 1
189	else
190		kon_White	= 0
191	endif
192
193	kgate	= kon_Black + kon_White
194
195	;CHECK TO SEE WHICH LEFT CLICK BUTTON MODE HAS BEEN SELECTED AND IMPLEMENT THE APPROPRIATE BEHAVIOUR
196	if		kClick=1	then											;IF 'LEFT CLICK ACTIVATES NOTE' MODE HAS BEEN SELECTED...
197		ky1	=	ky * kb1
198	elseif	kClick=2	then											;IF 'LEFT CLICK DE-ACTIVATES NOTE' MODE HAS BEEN SELECTED...
199		ky1	=	ky * (1-kb1)
200	else
201		ky1	=	ky
202	endif														;END OF CONDITIONAL BRANCHING
203
204	kamp			table	ky1, giampscale,1							;CREATE AN AMPLITUDE VALUE ACCORDING TO Y POSITION (ky) ON KEY AND AMPLITUDE SCALING TABLE (giampscale)
205	kamp			portk	kamp*kgate, kampport						;SMOOTH AMPLITUDE VARIABLE USING portk OPCODE (A KIND OF LOW PASS FILTER FOR K-RATE SIGNALS)
206
207	koct			portk	koctave+ksemis+kOctaveTrans, kportamento		;COMBINE OCTAVE, SEMITONES AND TRANSPOSE VALUES AND APPLY PORTAMENTO SMOOTHING
208	kmoddepth		table	ky1, gimodscale,1							;CREATE AN MODULATION DEPTH VALUE ACCORDING TO Y POSITION (ky) ON KEY AND MODULATION DEPTH SCALING TABLE (gimodscale)				;
209	kmoddepth		portk	kmoddepth, kampport							;APPLY PORTAMENTO SMOOTHING
210	kmod			oscili	kmoddepth, kmodfrq, gisine					;CREATE AN LFO FOR MODULATION
211	koct			=		koct + (kmod*kvibdep)						;APPLY VIBRATO
212
213	ktrm			oscili	ktrmdep*.5*kmoddepth, kmodfrq, gisine			;CREATE TREMOLO LFO
214	ktrm			=		ktrm+.5									;ADD OFFSET
215
216	kfrq			=		cpsoct(koct)						;CONVERT PITCH IN OCT FORMAT TO Hz
217
218	aL			vco2	kamp*ktrm, kfrq		;CREATE AUDIO SIGNAL (LEFT CHANNEL) USING vco2 OPCODE
219	aR			=		aL			;COPY AUDIO SIGNAL (RIGHT CHANNEL)
220				rireturn											;RETURN FROM REINITIALISATION PASS
221
222	kcfoct		table	ky1, giLPFscale, 1							;CREATE AN FILTER CUTOFF VALUE (OCT FORMAT) ACCORDING TO Y POSITION (ky) ON KEY AND FILTER CUTOFF SCALING TABLE (giLPFscale)				;
223	kcfoct		=		(kcfoct*7)+7								;RE-RANGE AND OFFSET FILTER CUTOFF VALUE
224	kcf			=		cpsoct(kcfoct)								;CONVERT FROM OCT TO CPS FORMAT
225	kcf			portk	kcf, kampport								;APPLY PORTAMENTO SMOOTHING
226	aL			butlp	aL, kcf									;APPLY LOW-PASS FILTERING (LEFT CHANNEL)
227	aR			butlp	aR, kcf									;APPLY LOW-PASS FILTERING (RIGHT CHANNEL)
228				zawm		aL, 1									;WRITE TO ZAK VARIABLE WITH MIXING (LEFT CHANNEL)
229				zawm		aR, 2									;WRITE TO ZAK VARIABLE WITH MIXING (RIGHT CHANNEL)
230endin
231
232instr	2	; PING PONG DELAY
233	idlyFB		init		0.3										;DELAY FEEDBACK AMOUNT (0 - 1)
234	iRoomSize		init		0.9										;REVERB ROOM SIZE (0 - 1)
235	iHFDamp		init		0.5										;REVERB HIGH FREQUENCY DAMPING (0 - 1)
236
237	ainL			zar		1										;READ ZAK AUDIO VARIABLE LEFT CHANNEL (WRITTEN BY INSTR 1)
238	ainR			zar		2										;READ ZAK AUDIO VARIABLE RIGHT CHANNEL (WRITTEN BY INSTR 1)
239
240	;LEFT CHANNEL OFFSETTING DELAY (NO FEEDBACK!)
241	aBuffer		delayr	2.5										;INITIALISE DELAY BUFFER
242	aLeftOffset	deltap3	gkDelayTime * 0.5							;READ AUDIO FROM DELAY TAP
243				delayw	ainL										;WRITE AUDIO INTO BUFFER
244
245	;LEFT CHANNEL DELAY WITH FEEDBACK
246	aBuffer		delayr	5.0										;INITIALISE DELAY BUFFER
247	aDlySigL		deltap3	gkDelayTime								;READ AUDIO FROM DELAY TAP
248				delayw	aLeftOffset+(aDlySigL*idlyFB)					;WRITE AUDIO INTO BUFFER
249
250	;RIGHT CHANNEL DELAY WITH FEEDBACK
251	aBuffer		delayr	5.0										;INITIALISE DELAY BUFFER
252	aDlySigR		deltap3	gkDelayTime								;READ AUDIO FROM DELAY TAP
253				delayw	ainR+(aDlySigR * idlyFB)						;WRITE AUDIO INTO BUFFER
254
255	amixL		ntrpol	ainL, aDlySigL+aLeftOffset, gkDelayMix			;CREATE DRY/WET MIX FOR PING-PONG DELAY (LEFT CHANNEL)
256	amixR		ntrpol	ainR, aDlySigR, gkDelayMix					;CREATE DRY/WET MIX FOR PING-PONG DELAY (RIGHT CHANNEL)
257
258				denorm	amixL, amixR								;DENORMALIZE BOTH CHANNELS OF AUDIO SIGNAL
259	arvbL, arvbR 	freeverb 	amixL, amixR, iRoomSize, iHFDamp , sr			;CREATE REVERB SIGNAL USING freeverb OPCODE
260	amixL		ntrpol	amixL, arvbL, gkReverbMix					;CREATE A DRY/WET MIX BETWEEN THE DRY AND THE REVERBERATED SIGNAL
261	amixR		ntrpol	amixR, arvbR, gkReverbMix					;CREATE A DRY/WET MIX BETWEEN THE DRY AND THE REVERBERATED SIGNAL
262				outs		amixL, amixR								;SEND DELAY OUTPUT SIGNALS TO THE SPEAKERS
263				zacl		1,2										;CLEAR ZAK VARIABLES
264endin
265</CsInstruments>
266<CsScore>
267;INSTR | START | DURATION
268i 1 		0	   3600		;SOUND PRODUCING INSTRUMENT
269i 2 		0	   3600		;PING-PONG DELAY AND REVERB
270</CsScore>
271</CsoundSynthesizer>
272
273
274<bsbPanel>
275 <label>Widgets</label>
276 <objectName/>
277 <x>72</x>
278 <y>179</y>
279 <width>400</width>
280 <height>200</height>
281 <visible>true</visible>
282 <uuid/>
283 <bgcolor mode="background">
284  <r>206</r>
285  <g>206</g>
286  <b>206</b>
287 </bgcolor>
288 <bsbObject version="2" type="BSBLabel">
289  <objectName/>
290  <x>4</x>
291  <y>16</y>
292  <width>220</width>
293  <height>51</height>
294  <uuid>{8696498c-ea5a-4002-80e2-b73942e10bb0}</uuid>
295  <visible>true</visible>
296  <midichan>0</midichan>
297  <midicc>0</midicc>
298  <label>Mouse Keyboard</label>
299  <alignment>center</alignment>
300  <font>Liberation Sans</font>
301  <fontsize>24</fontsize>
302  <precision>3</precision>
303  <color>
304   <r>0</r>
305   <g>0</g>
306   <b>0</b>
307  </color>
308  <bgcolor mode="nobackground">
309   <r>255</r>
310   <g>255</g>
311   <b>255</b>
312  </bgcolor>
313  <bordermode>noborder</bordermode>
314  <borderradius>1</borderradius>
315  <borderwidth>1</borderwidth>
316 </bsbObject>
317 <bsbObject version="2" type="BSBLabel">
318  <objectName/>
319  <x>2</x>
320  <y>100</y>
321  <width>60</width>
322  <height>300</height>
323  <uuid>{6aa6f818-c40c-4f0d-9eeb-f1c5651e3d6d}</uuid>
324  <visible>true</visible>
325  <midichan>0</midichan>
326  <midicc>0</midicc>
327  <label/>
328  <alignment>center</alignment>
329  <font>Liberation Sans</font>
330  <fontsize>20</fontsize>
331  <precision>3</precision>
332  <color>
333   <r>0</r>
334   <g>0</g>
335   <b>0</b>
336  </color>
337  <bgcolor mode="background">
338   <r>255</r>
339   <g>255</g>
340   <b>255</b>
341  </bgcolor>
342  <bordermode>border</bordermode>
343  <borderradius>1</borderradius>
344  <borderwidth>2</borderwidth>
345 </bsbObject>
346 <bsbObject version="2" type="BSBLabel">
347  <objectName/>
348  <x>62</x>
349  <y>100</y>
350  <width>60</width>
351  <height>300</height>
352  <uuid>{3c683070-f695-4af9-94dc-3d7843d19dc8}</uuid>
353  <visible>true</visible>
354  <midichan>0</midichan>
355  <midicc>0</midicc>
356  <label/>
357  <alignment>center</alignment>
358  <font>Liberation Sans</font>
359  <fontsize>20</fontsize>
360  <precision>3</precision>
361  <color>
362   <r>0</r>
363   <g>0</g>
364   <b>0</b>
365  </color>
366  <bgcolor mode="background">
367   <r>255</r>
368   <g>255</g>
369   <b>255</b>
370  </bgcolor>
371  <bordermode>border</bordermode>
372  <borderradius>1</borderradius>
373  <borderwidth>2</borderwidth>
374 </bsbObject>
375 <bsbObject version="2" type="BSBLabel">
376  <objectName/>
377  <x>122</x>
378  <y>100</y>
379  <width>60</width>
380  <height>300</height>
381  <uuid>{a6839b00-9350-4dcd-bfd7-a172629ebcec}</uuid>
382  <visible>true</visible>
383  <midichan>0</midichan>
384  <midicc>0</midicc>
385  <label/>
386  <alignment>center</alignment>
387  <font>Liberation Sans</font>
388  <fontsize>20</fontsize>
389  <precision>3</precision>
390  <color>
391   <r>0</r>
392   <g>0</g>
393   <b>0</b>
394  </color>
395  <bgcolor mode="background">
396   <r>255</r>
397   <g>255</g>
398   <b>255</b>
399  </bgcolor>
400  <bordermode>border</bordermode>
401  <borderradius>1</borderradius>
402  <borderwidth>2</borderwidth>
403 </bsbObject>
404 <bsbObject version="2" type="BSBLabel">
405  <objectName/>
406  <x>182</x>
407  <y>100</y>
408  <width>60</width>
409  <height>300</height>
410  <uuid>{bae8c0bb-03d2-4099-ae9a-1763d781d57c}</uuid>
411  <visible>true</visible>
412  <midichan>0</midichan>
413  <midicc>0</midicc>
414  <label/>
415  <alignment>center</alignment>
416  <font>Liberation Sans</font>
417  <fontsize>20</fontsize>
418  <precision>3</precision>
419  <color>
420   <r>0</r>
421   <g>0</g>
422   <b>0</b>
423  </color>
424  <bgcolor mode="background">
425   <r>255</r>
426   <g>255</g>
427   <b>255</b>
428  </bgcolor>
429  <bordermode>border</bordermode>
430  <borderradius>1</borderradius>
431  <borderwidth>2</borderwidth>
432 </bsbObject>
433 <bsbObject version="2" type="BSBLabel">
434  <objectName/>
435  <x>242</x>
436  <y>100</y>
437  <width>60</width>
438  <height>300</height>
439  <uuid>{b0854f55-06b9-44a8-a514-5209d08553cb}</uuid>
440  <visible>true</visible>
441  <midichan>0</midichan>
442  <midicc>0</midicc>
443  <label/>
444  <alignment>center</alignment>
445  <font>Liberation Sans</font>
446  <fontsize>20</fontsize>
447  <precision>3</precision>
448  <color>
449   <r>0</r>
450   <g>0</g>
451   <b>0</b>
452  </color>
453  <bgcolor mode="background">
454   <r>255</r>
455   <g>255</g>
456   <b>255</b>
457  </bgcolor>
458  <bordermode>border</bordermode>
459  <borderradius>1</borderradius>
460  <borderwidth>2</borderwidth>
461 </bsbObject>
462 <bsbObject version="2" type="BSBLabel">
463  <objectName/>
464  <x>302</x>
465  <y>100</y>
466  <width>60</width>
467  <height>300</height>
468  <uuid>{3a09e244-6262-4741-a925-27e139a46cc6}</uuid>
469  <visible>true</visible>
470  <midichan>0</midichan>
471  <midicc>0</midicc>
472  <label/>
473  <alignment>center</alignment>
474  <font>Liberation Sans</font>
475  <fontsize>20</fontsize>
476  <precision>3</precision>
477  <color>
478   <r>0</r>
479   <g>0</g>
480   <b>0</b>
481  </color>
482  <bgcolor mode="background">
483   <r>255</r>
484   <g>255</g>
485   <b>255</b>
486  </bgcolor>
487  <bordermode>border</bordermode>
488  <borderradius>1</borderradius>
489  <borderwidth>2</borderwidth>
490 </bsbObject>
491 <bsbObject version="2" type="BSBLabel">
492  <objectName/>
493  <x>362</x>
494  <y>100</y>
495  <width>60</width>
496  <height>300</height>
497  <uuid>{865a22bd-dce9-41c6-80b1-7f22bfee61f8}</uuid>
498  <visible>true</visible>
499  <midichan>0</midichan>
500  <midicc>0</midicc>
501  <label/>
502  <alignment>center</alignment>
503  <font>Liberation Sans</font>
504  <fontsize>20</fontsize>
505  <precision>3</precision>
506  <color>
507   <r>0</r>
508   <g>0</g>
509   <b>0</b>
510  </color>
511  <bgcolor mode="background">
512   <r>255</r>
513   <g>255</g>
514   <b>255</b>
515  </bgcolor>
516  <bordermode>border</bordermode>
517  <borderradius>1</borderradius>
518  <borderwidth>2</borderwidth>
519 </bsbObject>
520 <bsbObject version="2" type="BSBLabel">
521  <objectName/>
522  <x>36</x>
523  <y>100</y>
524  <width>40</width>
525  <height>200</height>
526  <uuid>{61df7d9b-ddbd-4811-8759-61f4639750ac}</uuid>
527  <visible>true</visible>
528  <midichan>0</midichan>
529  <midicc>0</midicc>
530  <label/>
531  <alignment>center</alignment>
532  <font>Liberation Sans</font>
533  <fontsize>20</fontsize>
534  <precision>3</precision>
535  <color>
536   <r>0</r>
537   <g>0</g>
538   <b>0</b>
539  </color>
540  <bgcolor mode="background">
541   <r>0</r>
542   <g>0</g>
543   <b>0</b>
544  </bgcolor>
545  <bordermode>border</bordermode>
546  <borderradius>1</borderradius>
547  <borderwidth>2</borderwidth>
548 </bsbObject>
549 <bsbObject version="2" type="BSBLabel">
550  <objectName/>
551  <x>106</x>
552  <y>100</y>
553  <width>40</width>
554  <height>200</height>
555  <uuid>{e890b8d8-a231-41b5-aab5-d9e13a2cebca}</uuid>
556  <visible>true</visible>
557  <midichan>0</midichan>
558  <midicc>0</midicc>
559  <label/>
560  <alignment>center</alignment>
561  <font>Liberation Sans</font>
562  <fontsize>20</fontsize>
563  <precision>3</precision>
564  <color>
565   <r>0</r>
566   <g>0</g>
567   <b>0</b>
568  </color>
569  <bgcolor mode="background">
570   <r>0</r>
571   <g>0</g>
572   <b>0</b>
573  </bgcolor>
574  <bordermode>border</bordermode>
575  <borderradius>1</borderradius>
576  <borderwidth>2</borderwidth>
577 </bsbObject>
578 <bsbObject version="2" type="BSBLabel">
579  <objectName/>
580  <x>212</x>
581  <y>100</y>
582  <width>40</width>
583  <height>200</height>
584  <uuid>{190d5200-e15a-4f87-8f0a-a276d53b36da}</uuid>
585  <visible>true</visible>
586  <midichan>0</midichan>
587  <midicc>0</midicc>
588  <label/>
589  <alignment>center</alignment>
590  <font>Liberation Sans</font>
591  <fontsize>20</fontsize>
592  <precision>3</precision>
593  <color>
594   <r>0</r>
595   <g>0</g>
596   <b>0</b>
597  </color>
598  <bgcolor mode="background">
599   <r>0</r>
600   <g>0</g>
601   <b>0</b>
602  </bgcolor>
603  <bordermode>border</bordermode>
604  <borderradius>1</borderradius>
605  <borderwidth>2</borderwidth>
606 </bsbObject>
607 <bsbObject version="2" type="BSBLabel">
608  <objectName/>
609  <x>282</x>
610  <y>100</y>
611  <width>40</width>
612  <height>200</height>
613  <uuid>{debe3eff-6c42-43e3-824f-121054ff21d5}</uuid>
614  <visible>true</visible>
615  <midichan>0</midichan>
616  <midicc>0</midicc>
617  <label/>
618  <alignment>center</alignment>
619  <font>Liberation Sans</font>
620  <fontsize>20</fontsize>
621  <precision>3</precision>
622  <color>
623   <r>0</r>
624   <g>0</g>
625   <b>0</b>
626  </color>
627  <bgcolor mode="background">
628   <r>0</r>
629   <g>0</g>
630   <b>0</b>
631  </bgcolor>
632  <bordermode>border</bordermode>
633  <borderradius>1</borderradius>
634  <borderwidth>2</borderwidth>
635 </bsbObject>
636 <bsbObject version="2" type="BSBLabel">
637  <objectName/>
638  <x>352</x>
639  <y>100</y>
640  <width>40</width>
641  <height>200</height>
642  <uuid>{a999fbb8-a44a-46be-ac45-9be60705c808}</uuid>
643  <visible>true</visible>
644  <midichan>0</midichan>
645  <midicc>0</midicc>
646  <label/>
647  <alignment>center</alignment>
648  <font>Liberation Sans</font>
649  <fontsize>20</fontsize>
650  <precision>3</precision>
651  <color>
652   <r>0</r>
653   <g>0</g>
654   <b>0</b>
655  </color>
656  <bgcolor mode="background">
657   <r>0</r>
658   <g>0</g>
659   <b>0</b>
660  </bgcolor>
661  <bordermode>border</bordermode>
662  <borderradius>1</borderradius>
663  <borderwidth>2</borderwidth>
664 </bsbObject>
665 <bsbObject version="2" type="BSBLabel">
666  <objectName/>
667  <x>422</x>
668  <y>100</y>
669  <width>60</width>
670  <height>300</height>
671  <uuid>{8531d8e1-59ea-4580-90aa-ff141d0ae7a7}</uuid>
672  <visible>true</visible>
673  <midichan>0</midichan>
674  <midicc>0</midicc>
675  <label/>
676  <alignment>center</alignment>
677  <font>Liberation Sans</font>
678  <fontsize>20</fontsize>
679  <precision>3</precision>
680  <color>
681   <r>0</r>
682   <g>0</g>
683   <b>0</b>
684  </color>
685  <bgcolor mode="background">
686   <r>255</r>
687   <g>255</g>
688   <b>255</b>
689  </bgcolor>
690  <bordermode>border</bordermode>
691  <borderradius>1</borderradius>
692  <borderwidth>2</borderwidth>
693 </bsbObject>
694 <bsbObject version="2" type="BSBLabel">
695  <objectName/>
696  <x>482</x>
697  <y>100</y>
698  <width>60</width>
699  <height>300</height>
700  <uuid>{c1c7c643-fae0-4890-ae3d-35c3ffc3c5e3}</uuid>
701  <visible>true</visible>
702  <midichan>0</midichan>
703  <midicc>0</midicc>
704  <label/>
705  <alignment>center</alignment>
706  <font>Liberation Sans</font>
707  <fontsize>20</fontsize>
708  <precision>3</precision>
709  <color>
710   <r>0</r>
711   <g>0</g>
712   <b>0</b>
713  </color>
714  <bgcolor mode="background">
715   <r>255</r>
716   <g>255</g>
717   <b>255</b>
718  </bgcolor>
719  <bordermode>border</bordermode>
720  <borderradius>1</borderradius>
721  <borderwidth>2</borderwidth>
722 </bsbObject>
723 <bsbObject version="2" type="BSBLabel">
724  <objectName/>
725  <x>542</x>
726  <y>100</y>
727  <width>60</width>
728  <height>300</height>
729  <uuid>{72ee5338-4bea-4b3d-bb3b-5316200c87c1}</uuid>
730  <visible>true</visible>
731  <midichan>0</midichan>
732  <midicc>0</midicc>
733  <label/>
734  <alignment>center</alignment>
735  <font>Liberation Sans</font>
736  <fontsize>20</fontsize>
737  <precision>3</precision>
738  <color>
739   <r>0</r>
740   <g>0</g>
741   <b>0</b>
742  </color>
743  <bgcolor mode="background">
744   <r>255</r>
745   <g>255</g>
746   <b>255</b>
747  </bgcolor>
748  <bordermode>border</bordermode>
749  <borderradius>1</borderradius>
750  <borderwidth>2</borderwidth>
751 </bsbObject>
752 <bsbObject version="2" type="BSBLabel">
753  <objectName/>
754  <x>602</x>
755  <y>100</y>
756  <width>60</width>
757  <height>300</height>
758  <uuid>{129baaca-2098-4c12-900e-6ab5df07b404}</uuid>
759  <visible>true</visible>
760  <midichan>0</midichan>
761  <midicc>0</midicc>
762  <label/>
763  <alignment>center</alignment>
764  <font>Liberation Sans</font>
765  <fontsize>20</fontsize>
766  <precision>3</precision>
767  <color>
768   <r>0</r>
769   <g>0</g>
770   <b>0</b>
771  </color>
772  <bgcolor mode="background">
773   <r>255</r>
774   <g>255</g>
775   <b>255</b>
776  </bgcolor>
777  <bordermode>border</bordermode>
778  <borderradius>1</borderradius>
779  <borderwidth>2</borderwidth>
780 </bsbObject>
781 <bsbObject version="2" type="BSBLabel">
782  <objectName/>
783  <x>662</x>
784  <y>100</y>
785  <width>60</width>
786  <height>300</height>
787  <uuid>{070504c2-573d-45b3-8731-89f35fbfdcfc}</uuid>
788  <visible>true</visible>
789  <midichan>0</midichan>
790  <midicc>0</midicc>
791  <label/>
792  <alignment>center</alignment>
793  <font>Liberation Sans</font>
794  <fontsize>20</fontsize>
795  <precision>3</precision>
796  <color>
797   <r>0</r>
798   <g>0</g>
799   <b>0</b>
800  </color>
801  <bgcolor mode="background">
802   <r>255</r>
803   <g>255</g>
804   <b>255</b>
805  </bgcolor>
806  <bordermode>border</bordermode>
807  <borderradius>1</borderradius>
808  <borderwidth>2</borderwidth>
809 </bsbObject>
810 <bsbObject version="2" type="BSBLabel">
811  <objectName/>
812  <x>722</x>
813  <y>100</y>
814  <width>60</width>
815  <height>300</height>
816  <uuid>{222e95a8-b4e9-4ebb-b91b-cf4f7f459805}</uuid>
817  <visible>true</visible>
818  <midichan>0</midichan>
819  <midicc>0</midicc>
820  <label/>
821  <alignment>center</alignment>
822  <font>Liberation Sans</font>
823  <fontsize>20</fontsize>
824  <precision>3</precision>
825  <color>
826   <r>0</r>
827   <g>0</g>
828   <b>0</b>
829  </color>
830  <bgcolor mode="background">
831   <r>255</r>
832   <g>255</g>
833   <b>255</b>
834  </bgcolor>
835  <bordermode>border</bordermode>
836  <borderradius>1</borderradius>
837  <borderwidth>2</borderwidth>
838 </bsbObject>
839 <bsbObject version="2" type="BSBLabel">
840  <objectName/>
841  <x>782</x>
842  <y>100</y>
843  <width>60</width>
844  <height>300</height>
845  <uuid>{221b96c6-196d-498d-bd36-3975e0b37406}</uuid>
846  <visible>true</visible>
847  <midichan>0</midichan>
848  <midicc>0</midicc>
849  <label/>
850  <alignment>center</alignment>
851  <font>Liberation Sans</font>
852  <fontsize>20</fontsize>
853  <precision>3</precision>
854  <color>
855   <r>0</r>
856   <g>0</g>
857   <b>0</b>
858  </color>
859  <bgcolor mode="background">
860   <r>255</r>
861   <g>255</g>
862   <b>255</b>
863  </bgcolor>
864  <bordermode>border</bordermode>
865  <borderradius>1</borderradius>
866  <borderwidth>2</borderwidth>
867 </bsbObject>
868 <bsbObject version="2" type="BSBLabel">
869  <objectName/>
870  <x>456</x>
871  <y>100</y>
872  <width>40</width>
873  <height>200</height>
874  <uuid>{30ee3225-575a-44d0-affe-c33ae51af772}</uuid>
875  <visible>true</visible>
876  <midichan>0</midichan>
877  <midicc>0</midicc>
878  <label/>
879  <alignment>center</alignment>
880  <font>Liberation Sans</font>
881  <fontsize>20</fontsize>
882  <precision>3</precision>
883  <color>
884   <r>0</r>
885   <g>0</g>
886   <b>0</b>
887  </color>
888  <bgcolor mode="background">
889   <r>0</r>
890   <g>0</g>
891   <b>0</b>
892  </bgcolor>
893  <bordermode>border</bordermode>
894  <borderradius>1</borderradius>
895  <borderwidth>2</borderwidth>
896 </bsbObject>
897 <bsbObject version="2" type="BSBLabel">
898  <objectName/>
899  <x>526</x>
900  <y>100</y>
901  <width>40</width>
902  <height>200</height>
903  <uuid>{e4a7a68e-3801-4b25-a5e3-ba23ad91cb4a}</uuid>
904  <visible>true</visible>
905  <midichan>0</midichan>
906  <midicc>0</midicc>
907  <label/>
908  <alignment>center</alignment>
909  <font>Liberation Sans</font>
910  <fontsize>20</fontsize>
911  <precision>3</precision>
912  <color>
913   <r>0</r>
914   <g>0</g>
915   <b>0</b>
916  </color>
917  <bgcolor mode="background">
918   <r>0</r>
919   <g>0</g>
920   <b>0</b>
921  </bgcolor>
922  <bordermode>border</bordermode>
923  <borderradius>1</borderradius>
924  <borderwidth>2</borderwidth>
925 </bsbObject>
926 <bsbObject version="2" type="BSBLabel">
927  <objectName/>
928  <x>632</x>
929  <y>100</y>
930  <width>40</width>
931  <height>200</height>
932  <uuid>{bf581f89-a373-4302-ba59-f85e1b2a5519}</uuid>
933  <visible>true</visible>
934  <midichan>0</midichan>
935  <midicc>0</midicc>
936  <label/>
937  <alignment>center</alignment>
938  <font>Liberation Sans</font>
939  <fontsize>20</fontsize>
940  <precision>3</precision>
941  <color>
942   <r>0</r>
943   <g>0</g>
944   <b>0</b>
945  </color>
946  <bgcolor mode="background">
947   <r>0</r>
948   <g>0</g>
949   <b>0</b>
950  </bgcolor>
951  <bordermode>border</bordermode>
952  <borderradius>1</borderradius>
953  <borderwidth>2</borderwidth>
954 </bsbObject>
955 <bsbObject version="2" type="BSBLabel">
956  <objectName/>
957  <x>702</x>
958  <y>100</y>
959  <width>40</width>
960  <height>200</height>
961  <uuid>{2f2ed15f-5881-4f06-87db-9547cef44df6}</uuid>
962  <visible>true</visible>
963  <midichan>0</midichan>
964  <midicc>0</midicc>
965  <label/>
966  <alignment>center</alignment>
967  <font>Liberation Sans</font>
968  <fontsize>20</fontsize>
969  <precision>3</precision>
970  <color>
971   <r>0</r>
972   <g>0</g>
973   <b>0</b>
974  </color>
975  <bgcolor mode="background">
976   <r>0</r>
977   <g>0</g>
978   <b>0</b>
979  </bgcolor>
980  <bordermode>border</bordermode>
981  <borderradius>1</borderradius>
982  <borderwidth>2</borderwidth>
983 </bsbObject>
984 <bsbObject version="2" type="BSBLabel">
985  <objectName/>
986  <x>772</x>
987  <y>100</y>
988  <width>40</width>
989  <height>200</height>
990  <uuid>{8e09f51b-38bc-4db5-a4d2-bbe4270d2785}</uuid>
991  <visible>true</visible>
992  <midichan>0</midichan>
993  <midicc>0</midicc>
994  <label/>
995  <alignment>center</alignment>
996  <font>Liberation Sans</font>
997  <fontsize>20</fontsize>
998  <precision>3</precision>
999  <color>
1000   <r>0</r>
1001   <g>0</g>
1002   <b>0</b>
1003  </color>
1004  <bgcolor mode="background">
1005   <r>0</r>
1006   <g>0</g>
1007   <b>0</b>
1008  </bgcolor>
1009  <bordermode>border</bordermode>
1010  <borderradius>1</borderradius>
1011  <borderwidth>2</borderwidth>
1012 </bsbObject>
1013 <bsbObject version="2" type="BSBLabel">
1014  <objectName/>
1015  <x>2</x>
1016  <y>103</y>
1017  <width>30</width>
1018  <height>25</height>
1019  <uuid>{08c8594e-6119-4860-b97b-399dba37bdb8}</uuid>
1020  <visible>true</visible>
1021  <midichan>0</midichan>
1022  <midicc>0</midicc>
1023  <label>C</label>
1024  <alignment>center</alignment>
1025  <font>Liberation Sans</font>
1026  <fontsize>12</fontsize>
1027  <precision>3</precision>
1028  <color>
1029   <r>0</r>
1030   <g>0</g>
1031   <b>0</b>
1032  </color>
1033  <bgcolor mode="nobackground">
1034   <r>255</r>
1035   <g>255</g>
1036   <b>255</b>
1037  </bgcolor>
1038  <bordermode>noborder</bordermode>
1039  <borderradius>1</borderradius>
1040  <borderwidth>1</borderwidth>
1041 </bsbObject>
1042 <bsbObject version="2" type="BSBLabel">
1043  <objectName/>
1044  <x>39</x>
1045  <y>103</y>
1046  <width>30</width>
1047  <height>25</height>
1048  <uuid>{217c1815-d9eb-42bc-9957-8e9488917ba5}</uuid>
1049  <visible>true</visible>
1050  <midichan>0</midichan>
1051  <midicc>0</midicc>
1052  <label>C#</label>
1053  <alignment>center</alignment>
1054  <font>Liberation Sans</font>
1055  <fontsize>12</fontsize>
1056  <precision>3</precision>
1057  <color>
1058   <r>255</r>
1059   <g>255</g>
1060   <b>255</b>
1061  </color>
1062  <bgcolor mode="nobackground">
1063   <r>255</r>
1064   <g>255</g>
1065   <b>255</b>
1066  </bgcolor>
1067  <bordermode>noborder</bordermode>
1068  <borderradius>1</borderradius>
1069  <borderwidth>1</borderwidth>
1070 </bsbObject>
1071 <bsbObject version="2" type="BSBLabel">
1072  <objectName/>
1073  <x>74</x>
1074  <y>103</y>
1075  <width>30</width>
1076  <height>25</height>
1077  <uuid>{c2eb661f-2add-40a1-b06f-7ef2f78a8721}</uuid>
1078  <visible>true</visible>
1079  <midichan>0</midichan>
1080  <midicc>0</midicc>
1081  <label>D</label>
1082  <alignment>center</alignment>
1083  <font>Liberation Sans</font>
1084  <fontsize>12</fontsize>
1085  <precision>3</precision>
1086  <color>
1087   <r>0</r>
1088   <g>0</g>
1089   <b>0</b>
1090  </color>
1091  <bgcolor mode="nobackground">
1092   <r>255</r>
1093   <g>255</g>
1094   <b>255</b>
1095  </bgcolor>
1096  <bordermode>noborder</bordermode>
1097  <borderradius>1</borderradius>
1098  <borderwidth>1</borderwidth>
1099 </bsbObject>
1100 <bsbObject version="2" type="BSBLabel">
1101  <objectName/>
1102  <x>110</x>
1103  <y>103</y>
1104  <width>30</width>
1105  <height>25</height>
1106  <uuid>{e128fb16-a520-4aba-b8b1-2e7808b1725a}</uuid>
1107  <visible>true</visible>
1108  <midichan>0</midichan>
1109  <midicc>0</midicc>
1110  <label>D#</label>
1111  <alignment>center</alignment>
1112  <font>Liberation Sans</font>
1113  <fontsize>12</fontsize>
1114  <precision>3</precision>
1115  <color>
1116   <r>255</r>
1117   <g>255</g>
1118   <b>255</b>
1119  </color>
1120  <bgcolor mode="nobackground">
1121   <r>255</r>
1122   <g>255</g>
1123   <b>255</b>
1124  </bgcolor>
1125  <bordermode>noborder</bordermode>
1126  <borderradius>1</borderradius>
1127  <borderwidth>1</borderwidth>
1128 </bsbObject>
1129 <bsbObject version="2" type="BSBLabel">
1130  <objectName/>
1131  <x>142</x>
1132  <y>103</y>
1133  <width>30</width>
1134  <height>25</height>
1135  <uuid>{5c468762-a4a4-458d-a81e-83927d9fe589}</uuid>
1136  <visible>true</visible>
1137  <midichan>0</midichan>
1138  <midicc>0</midicc>
1139  <label>E</label>
1140  <alignment>center</alignment>
1141  <font>Liberation Sans</font>
1142  <fontsize>12</fontsize>
1143  <precision>3</precision>
1144  <color>
1145   <r>0</r>
1146   <g>0</g>
1147   <b>0</b>
1148  </color>
1149  <bgcolor mode="nobackground">
1150   <r>255</r>
1151   <g>255</g>
1152   <b>255</b>
1153  </bgcolor>
1154  <bordermode>noborder</bordermode>
1155  <borderradius>1</borderradius>
1156  <borderwidth>1</borderwidth>
1157 </bsbObject>
1158 <bsbObject version="2" type="BSBLabel">
1159  <objectName/>
1160  <x>180</x>
1161  <y>103</y>
1162  <width>30</width>
1163  <height>25</height>
1164  <uuid>{0064bc2c-741b-41a5-baa2-bedad6e05ff5}</uuid>
1165  <visible>true</visible>
1166  <midichan>0</midichan>
1167  <midicc>0</midicc>
1168  <label>F</label>
1169  <alignment>center</alignment>
1170  <font>Liberation Sans</font>
1171  <fontsize>12</fontsize>
1172  <precision>3</precision>
1173  <color>
1174   <r>0</r>
1175   <g>0</g>
1176   <b>0</b>
1177  </color>
1178  <bgcolor mode="nobackground">
1179   <r>255</r>
1180   <g>255</g>
1181   <b>255</b>
1182  </bgcolor>
1183  <bordermode>noborder</bordermode>
1184  <borderradius>1</borderradius>
1185  <borderwidth>1</borderwidth>
1186 </bsbObject>
1187 <bsbObject version="2" type="BSBLabel">
1188  <objectName/>
1189  <x>216</x>
1190  <y>103</y>
1191  <width>30</width>
1192  <height>25</height>
1193  <uuid>{85835b5d-70f5-4b94-a732-d3155412686e}</uuid>
1194  <visible>true</visible>
1195  <midichan>0</midichan>
1196  <midicc>0</midicc>
1197  <label>F#</label>
1198  <alignment>center</alignment>
1199  <font>Liberation Sans</font>
1200  <fontsize>12</fontsize>
1201  <precision>3</precision>
1202  <color>
1203   <r>255</r>
1204   <g>255</g>
1205   <b>255</b>
1206  </color>
1207  <bgcolor mode="nobackground">
1208   <r>255</r>
1209   <g>255</g>
1210   <b>255</b>
1211  </bgcolor>
1212  <bordermode>noborder</bordermode>
1213  <borderradius>1</borderradius>
1214  <borderwidth>1</borderwidth>
1215 </bsbObject>
1216 <bsbObject version="2" type="BSBLabel">
1217  <objectName/>
1218  <x>250</x>
1219  <y>103</y>
1220  <width>30</width>
1221  <height>25</height>
1222  <uuid>{0fc10f9e-ef64-4bf3-a8c4-d1b4f9c39b52}</uuid>
1223  <visible>true</visible>
1224  <midichan>0</midichan>
1225  <midicc>0</midicc>
1226  <label>G</label>
1227  <alignment>center</alignment>
1228  <font>Liberation Sans</font>
1229  <fontsize>12</fontsize>
1230  <precision>3</precision>
1231  <color>
1232   <r>0</r>
1233   <g>0</g>
1234   <b>0</b>
1235  </color>
1236  <bgcolor mode="nobackground">
1237   <r>255</r>
1238   <g>255</g>
1239   <b>255</b>
1240  </bgcolor>
1241  <bordermode>noborder</bordermode>
1242  <borderradius>1</borderradius>
1243  <borderwidth>1</borderwidth>
1244 </bsbObject>
1245 <bsbObject version="2" type="BSBLabel">
1246  <objectName/>
1247  <x>286</x>
1248  <y>103</y>
1249  <width>30</width>
1250  <height>25</height>
1251  <uuid>{af2b8459-3659-4754-b64b-ead485847f0b}</uuid>
1252  <visible>true</visible>
1253  <midichan>0</midichan>
1254  <midicc>0</midicc>
1255  <label>G#</label>
1256  <alignment>center</alignment>
1257  <font>Liberation Sans</font>
1258  <fontsize>12</fontsize>
1259  <precision>3</precision>
1260  <color>
1261   <r>255</r>
1262   <g>255</g>
1263   <b>255</b>
1264  </color>
1265  <bgcolor mode="nobackground">
1266   <r>255</r>
1267   <g>255</g>
1268   <b>255</b>
1269  </bgcolor>
1270  <bordermode>noborder</bordermode>
1271  <borderradius>1</borderradius>
1272  <borderwidth>1</borderwidth>
1273 </bsbObject>
1274 <bsbObject version="2" type="BSBLabel">
1275  <objectName/>
1276  <x>320</x>
1277  <y>103</y>
1278  <width>30</width>
1279  <height>25</height>
1280  <uuid>{dfbf7db5-a784-4e4c-8ab6-fb3e79edae0e}</uuid>
1281  <visible>true</visible>
1282  <midichan>0</midichan>
1283  <midicc>0</midicc>
1284  <label>A</label>
1285  <alignment>center</alignment>
1286  <font>Liberation Sans</font>
1287  <fontsize>12</fontsize>
1288  <precision>3</precision>
1289  <color>
1290   <r>0</r>
1291   <g>0</g>
1292   <b>0</b>
1293  </color>
1294  <bgcolor mode="nobackground">
1295   <r>255</r>
1296   <g>255</g>
1297   <b>255</b>
1298  </bgcolor>
1299  <bordermode>noborder</bordermode>
1300  <borderradius>1</borderradius>
1301  <borderwidth>1</borderwidth>
1302 </bsbObject>
1303 <bsbObject version="2" type="BSBLabel">
1304  <objectName/>
1305  <x>356</x>
1306  <y>103</y>
1307  <width>30</width>
1308  <height>25</height>
1309  <uuid>{0988a89d-8f56-4d4b-9c02-34e81797acdd}</uuid>
1310  <visible>true</visible>
1311  <midichan>0</midichan>
1312  <midicc>0</midicc>
1313  <label>A#</label>
1314  <alignment>center</alignment>
1315  <font>Liberation Sans</font>
1316  <fontsize>12</fontsize>
1317  <precision>3</precision>
1318  <color>
1319   <r>255</r>
1320   <g>255</g>
1321   <b>255</b>
1322  </color>
1323  <bgcolor mode="nobackground">
1324   <r>255</r>
1325   <g>255</g>
1326   <b>255</b>
1327  </bgcolor>
1328  <bordermode>noborder</bordermode>
1329  <borderradius>1</borderradius>
1330  <borderwidth>1</borderwidth>
1331 </bsbObject>
1332 <bsbObject version="2" type="BSBLabel">
1333  <objectName/>
1334  <x>390</x>
1335  <y>103</y>
1336  <width>30</width>
1337  <height>25</height>
1338  <uuid>{80a1b6b9-4101-4ce6-a71a-a0f15f0c1286}</uuid>
1339  <visible>true</visible>
1340  <midichan>0</midichan>
1341  <midicc>0</midicc>
1342  <label>B</label>
1343  <alignment>center</alignment>
1344  <font>Liberation Sans</font>
1345  <fontsize>12</fontsize>
1346  <precision>3</precision>
1347  <color>
1348   <r>0</r>
1349   <g>0</g>
1350   <b>0</b>
1351  </color>
1352  <bgcolor mode="nobackground">
1353   <r>255</r>
1354   <g>255</g>
1355   <b>255</b>
1356  </bgcolor>
1357  <bordermode>noborder</bordermode>
1358  <borderradius>1</borderradius>
1359  <borderwidth>1</borderwidth>
1360 </bsbObject>
1361 <bsbObject version="2" type="BSBLabel">
1362  <objectName/>
1363  <x>424</x>
1364  <y>103</y>
1365  <width>30</width>
1366  <height>25</height>
1367  <uuid>{05345e72-1676-41d9-a2fb-5b2812eb7f21}</uuid>
1368  <visible>true</visible>
1369  <midichan>0</midichan>
1370  <midicc>0</midicc>
1371  <label>C</label>
1372  <alignment>center</alignment>
1373  <font>Liberation Sans</font>
1374  <fontsize>12</fontsize>
1375  <precision>3</precision>
1376  <color>
1377   <r>0</r>
1378   <g>0</g>
1379   <b>0</b>
1380  </color>
1381  <bgcolor mode="nobackground">
1382   <r>255</r>
1383   <g>255</g>
1384   <b>255</b>
1385  </bgcolor>
1386  <bordermode>noborder</bordermode>
1387  <borderradius>1</borderradius>
1388  <borderwidth>1</borderwidth>
1389 </bsbObject>
1390 <bsbObject version="2" type="BSBLabel">
1391  <objectName/>
1392  <x>460</x>
1393  <y>103</y>
1394  <width>30</width>
1395  <height>25</height>
1396  <uuid>{c34956f2-6065-4c87-8890-4285b1bf5dd5}</uuid>
1397  <visible>true</visible>
1398  <midichan>0</midichan>
1399  <midicc>0</midicc>
1400  <label>C#</label>
1401  <alignment>center</alignment>
1402  <font>Liberation Sans</font>
1403  <fontsize>12</fontsize>
1404  <precision>3</precision>
1405  <color>
1406   <r>255</r>
1407   <g>255</g>
1408   <b>255</b>
1409  </color>
1410  <bgcolor mode="nobackground">
1411   <r>255</r>
1412   <g>255</g>
1413   <b>255</b>
1414  </bgcolor>
1415  <bordermode>noborder</bordermode>
1416  <borderradius>1</borderradius>
1417  <borderwidth>1</borderwidth>
1418 </bsbObject>
1419 <bsbObject version="2" type="BSBLabel">
1420  <objectName/>
1421  <x>494</x>
1422  <y>103</y>
1423  <width>30</width>
1424  <height>25</height>
1425  <uuid>{52c84820-7240-498b-90d4-adad7e1d5ad3}</uuid>
1426  <visible>true</visible>
1427  <midichan>0</midichan>
1428  <midicc>0</midicc>
1429  <label>D</label>
1430  <alignment>center</alignment>
1431  <font>Liberation Sans</font>
1432  <fontsize>12</fontsize>
1433  <precision>3</precision>
1434  <color>
1435   <r>0</r>
1436   <g>0</g>
1437   <b>0</b>
1438  </color>
1439  <bgcolor mode="nobackground">
1440   <r>255</r>
1441   <g>255</g>
1442   <b>255</b>
1443  </bgcolor>
1444  <bordermode>noborder</bordermode>
1445  <borderradius>1</borderradius>
1446  <borderwidth>1</borderwidth>
1447 </bsbObject>
1448 <bsbObject version="2" type="BSBLabel">
1449  <objectName/>
1450  <x>530</x>
1451  <y>103</y>
1452  <width>30</width>
1453  <height>25</height>
1454  <uuid>{b7e7faa7-a237-4186-b5bb-76f2799a0a59}</uuid>
1455  <visible>true</visible>
1456  <midichan>0</midichan>
1457  <midicc>0</midicc>
1458  <label>D#</label>
1459  <alignment>center</alignment>
1460  <font>Liberation Sans</font>
1461  <fontsize>12</fontsize>
1462  <precision>3</precision>
1463  <color>
1464   <r>255</r>
1465   <g>255</g>
1466   <b>255</b>
1467  </color>
1468  <bgcolor mode="nobackground">
1469   <r>255</r>
1470   <g>255</g>
1471   <b>255</b>
1472  </bgcolor>
1473  <bordermode>noborder</bordermode>
1474  <borderradius>1</borderradius>
1475  <borderwidth>1</borderwidth>
1476 </bsbObject>
1477 <bsbObject version="2" type="BSBLabel">
1478  <objectName/>
1479  <x>566</x>
1480  <y>103</y>
1481  <width>30</width>
1482  <height>25</height>
1483  <uuid>{e2ae0fef-453c-48f1-ae30-c55063cfebaf}</uuid>
1484  <visible>true</visible>
1485  <midichan>0</midichan>
1486  <midicc>0</midicc>
1487  <label>E</label>
1488  <alignment>center</alignment>
1489  <font>Liberation Sans</font>
1490  <fontsize>12</fontsize>
1491  <precision>3</precision>
1492  <color>
1493   <r>0</r>
1494   <g>0</g>
1495   <b>0</b>
1496  </color>
1497  <bgcolor mode="nobackground">
1498   <r>255</r>
1499   <g>255</g>
1500   <b>255</b>
1501  </bgcolor>
1502  <bordermode>noborder</bordermode>
1503  <borderradius>1</borderradius>
1504  <borderwidth>1</borderwidth>
1505 </bsbObject>
1506 <bsbObject version="2" type="BSBLabel">
1507  <objectName/>
1508  <x>600</x>
1509  <y>103</y>
1510  <width>30</width>
1511  <height>25</height>
1512  <uuid>{2f1f4221-aaff-407a-b530-a071be4b812d}</uuid>
1513  <visible>true</visible>
1514  <midichan>0</midichan>
1515  <midicc>0</midicc>
1516  <label>F</label>
1517  <alignment>center</alignment>
1518  <font>Liberation Sans</font>
1519  <fontsize>12</fontsize>
1520  <precision>3</precision>
1521  <color>
1522   <r>0</r>
1523   <g>0</g>
1524   <b>0</b>
1525  </color>
1526  <bgcolor mode="nobackground">
1527   <r>255</r>
1528   <g>255</g>
1529   <b>255</b>
1530  </bgcolor>
1531  <bordermode>noborder</bordermode>
1532  <borderradius>1</borderradius>
1533  <borderwidth>1</borderwidth>
1534 </bsbObject>
1535 <bsbObject version="2" type="BSBLabel">
1536  <objectName/>
1537  <x>636</x>
1538  <y>103</y>
1539  <width>30</width>
1540  <height>25</height>
1541  <uuid>{e55f4426-29f2-4489-83b2-2daacaa175b3}</uuid>
1542  <visible>true</visible>
1543  <midichan>0</midichan>
1544  <midicc>0</midicc>
1545  <label>F#</label>
1546  <alignment>center</alignment>
1547  <font>Liberation Sans</font>
1548  <fontsize>12</fontsize>
1549  <precision>3</precision>
1550  <color>
1551   <r>255</r>
1552   <g>255</g>
1553   <b>255</b>
1554  </color>
1555  <bgcolor mode="nobackground">
1556   <r>255</r>
1557   <g>255</g>
1558   <b>255</b>
1559  </bgcolor>
1560  <bordermode>noborder</bordermode>
1561  <borderradius>1</borderradius>
1562  <borderwidth>1</borderwidth>
1563 </bsbObject>
1564 <bsbObject version="2" type="BSBLabel">
1565  <objectName/>
1566  <x>670</x>
1567  <y>103</y>
1568  <width>30</width>
1569  <height>25</height>
1570  <uuid>{3960d1a8-1746-4dca-919c-52fb88666aaf}</uuid>
1571  <visible>true</visible>
1572  <midichan>0</midichan>
1573  <midicc>0</midicc>
1574  <label>G</label>
1575  <alignment>center</alignment>
1576  <font>Liberation Sans</font>
1577  <fontsize>12</fontsize>
1578  <precision>3</precision>
1579  <color>
1580   <r>0</r>
1581   <g>0</g>
1582   <b>0</b>
1583  </color>
1584  <bgcolor mode="nobackground">
1585   <r>255</r>
1586   <g>255</g>
1587   <b>255</b>
1588  </bgcolor>
1589  <bordermode>noborder</bordermode>
1590  <borderradius>1</borderradius>
1591  <borderwidth>1</borderwidth>
1592 </bsbObject>
1593 <bsbObject version="2" type="BSBLabel">
1594  <objectName/>
1595  <x>706</x>
1596  <y>103</y>
1597  <width>30</width>
1598  <height>25</height>
1599  <uuid>{4b55970e-c2eb-40c1-98f2-4292ba31b81a}</uuid>
1600  <visible>true</visible>
1601  <midichan>0</midichan>
1602  <midicc>0</midicc>
1603  <label>G#</label>
1604  <alignment>center</alignment>
1605  <font>Liberation Sans</font>
1606  <fontsize>12</fontsize>
1607  <precision>3</precision>
1608  <color>
1609   <r>255</r>
1610   <g>255</g>
1611   <b>255</b>
1612  </color>
1613  <bgcolor mode="nobackground">
1614   <r>255</r>
1615   <g>255</g>
1616   <b>255</b>
1617  </bgcolor>
1618  <bordermode>noborder</bordermode>
1619  <borderradius>1</borderradius>
1620  <borderwidth>1</borderwidth>
1621 </bsbObject>
1622 <bsbObject version="2" type="BSBLabel">
1623  <objectName/>
1624  <x>740</x>
1625  <y>103</y>
1626  <width>30</width>
1627  <height>25</height>
1628  <uuid>{a74e4583-8792-4e0b-919c-01c8df951efb}</uuid>
1629  <visible>true</visible>
1630  <midichan>0</midichan>
1631  <midicc>0</midicc>
1632  <label>A</label>
1633  <alignment>center</alignment>
1634  <font>Liberation Sans</font>
1635  <fontsize>12</fontsize>
1636  <precision>3</precision>
1637  <color>
1638   <r>0</r>
1639   <g>0</g>
1640   <b>0</b>
1641  </color>
1642  <bgcolor mode="nobackground">
1643   <r>255</r>
1644   <g>255</g>
1645   <b>255</b>
1646  </bgcolor>
1647  <bordermode>noborder</bordermode>
1648  <borderradius>1</borderradius>
1649  <borderwidth>1</borderwidth>
1650 </bsbObject>
1651 <bsbObject version="2" type="BSBLabel">
1652  <objectName/>
1653  <x>776</x>
1654  <y>103</y>
1655  <width>30</width>
1656  <height>25</height>
1657  <uuid>{c53a96ef-aead-4229-b590-a0a13a2004e2}</uuid>
1658  <visible>true</visible>
1659  <midichan>0</midichan>
1660  <midicc>0</midicc>
1661  <label>A#</label>
1662  <alignment>center</alignment>
1663  <font>Liberation Sans</font>
1664  <fontsize>12</fontsize>
1665  <precision>3</precision>
1666  <color>
1667   <r>255</r>
1668   <g>255</g>
1669   <b>255</b>
1670  </color>
1671  <bgcolor mode="nobackground">
1672   <r>255</r>
1673   <g>255</g>
1674   <b>255</b>
1675  </bgcolor>
1676  <bordermode>noborder</bordermode>
1677  <borderradius>1</borderradius>
1678  <borderwidth>1</borderwidth>
1679 </bsbObject>
1680 <bsbObject version="2" type="BSBLabel">
1681  <objectName/>
1682  <x>811</x>
1683  <y>103</y>
1684  <width>30</width>
1685  <height>25</height>
1686  <uuid>{09393dfb-946d-45b5-bccb-4050cc70266d}</uuid>
1687  <visible>true</visible>
1688  <midichan>0</midichan>
1689  <midicc>0</midicc>
1690  <label>B</label>
1691  <alignment>center</alignment>
1692  <font>Liberation Sans</font>
1693  <fontsize>12</fontsize>
1694  <precision>3</precision>
1695  <color>
1696   <r>0</r>
1697   <g>0</g>
1698   <b>0</b>
1699  </color>
1700  <bgcolor mode="nobackground">
1701   <r>255</r>
1702   <g>255</g>
1703   <b>255</b>
1704  </bgcolor>
1705  <bordermode>noborder</bordermode>
1706  <borderradius>1</borderradius>
1707  <borderwidth>1</borderwidth>
1708 </bsbObject>
1709 <bsbObject version="2" type="BSBLabel">
1710  <objectName/>
1711  <x>842</x>
1712  <y>100</y>
1713  <width>60</width>
1714  <height>300</height>
1715  <uuid>{97fad51f-43d9-402f-9ee9-3719368f4927}</uuid>
1716  <visible>true</visible>
1717  <midichan>0</midichan>
1718  <midicc>0</midicc>
1719  <label/>
1720  <alignment>center</alignment>
1721  <font>Liberation Sans</font>
1722  <fontsize>20</fontsize>
1723  <precision>3</precision>
1724  <color>
1725   <r>0</r>
1726   <g>0</g>
1727   <b>0</b>
1728  </color>
1729  <bgcolor mode="background">
1730   <r>255</r>
1731   <g>255</g>
1732   <b>255</b>
1733  </bgcolor>
1734  <bordermode>border</bordermode>
1735  <borderradius>1</borderradius>
1736  <borderwidth>2</borderwidth>
1737 </bsbObject>
1738 <bsbObject version="2" type="BSBLabel">
1739  <objectName/>
1740  <x>856</x>
1741  <y>103</y>
1742  <width>30</width>
1743  <height>25</height>
1744  <uuid>{af5356c7-c699-460f-8a6d-0f0a7421249b}</uuid>
1745  <visible>true</visible>
1746  <midichan>0</midichan>
1747  <midicc>0</midicc>
1748  <label>C</label>
1749  <alignment>center</alignment>
1750  <font>Liberation Sans</font>
1751  <fontsize>12</fontsize>
1752  <precision>3</precision>
1753  <color>
1754   <r>0</r>
1755   <g>0</g>
1756   <b>0</b>
1757  </color>
1758  <bgcolor mode="nobackground">
1759   <r>255</r>
1760   <g>255</g>
1761   <b>255</b>
1762  </bgcolor>
1763  <bordermode>noborder</bordermode>
1764  <borderradius>1</borderradius>
1765  <borderwidth>1</borderwidth>
1766 </bsbObject>
1767 <bsbObject version="2" type="BSBLabel">
1768  <objectName/>
1769  <x>911</x>
1770  <y>100</y>
1771  <width>175</width>
1772  <height>300</height>
1773  <uuid>{e83a6502-9e63-4273-bb0d-7f85d4801d4a}</uuid>
1774  <visible>true</visible>
1775  <midichan>0</midichan>
1776  <midicc>0</midicc>
1777  <label/>
1778  <alignment>left</alignment>
1779  <font>Liberation Sans</font>
1780  <fontsize>10</fontsize>
1781  <precision>3</precision>
1782  <color>
1783   <r>0</r>
1784   <g>0</g>
1785   <b>0</b>
1786  </color>
1787  <bgcolor mode="background">
1788   <r>166</r>
1789   <g>163</g>
1790   <b>157</b>
1791  </bgcolor>
1792  <bordermode>noborder</bordermode>
1793  <borderradius>10</borderradius>
1794  <borderwidth>4</borderwidth>
1795 </bsbObject>
1796 <bsbObject version="2" type="BSBKnob">
1797  <objectName>DelayTime</objectName>
1798  <x>936</x>
1799  <y>179</y>
1800  <width>50</width>
1801  <height>50</height>
1802  <uuid>{114527f2-819d-4396-bb21-880970440765}</uuid>
1803  <visible>true</visible>
1804  <midichan>0</midichan>
1805  <midicc>0</midicc>
1806  <minimum>0.01000000</minimum>
1807  <maximum>1.00000000</maximum>
1808  <value>0.60400000</value>
1809  <mode>lin</mode>
1810  <mouseControl act="jump">continuous</mouseControl>
1811  <resolution>0.01000000</resolution>
1812  <randomizable group="0">false</randomizable>
1813 </bsbObject>
1814 <bsbObject version="2" type="BSBLabel">
1815  <objectName/>
1816  <x>922</x>
1817  <y>227</y>
1818  <width>80</width>
1819  <height>25</height>
1820  <uuid>{5d9d940e-601f-46dc-9990-b81655c3b365}</uuid>
1821  <visible>true</visible>
1822  <midichan>0</midichan>
1823  <midicc>0</midicc>
1824  <label>Delay Time</label>
1825  <alignment>center</alignment>
1826  <font>Liberation Sans</font>
1827  <fontsize>10</fontsize>
1828  <precision>3</precision>
1829  <color>
1830   <r>0</r>
1831   <g>0</g>
1832   <b>0</b>
1833  </color>
1834  <bgcolor mode="nobackground">
1835   <r>255</r>
1836   <g>255</g>
1837   <b>255</b>
1838  </bgcolor>
1839  <bordermode>noborder</bordermode>
1840  <borderradius>1</borderradius>
1841  <borderwidth>1</borderwidth>
1842 </bsbObject>
1843 <bsbObject version="2" type="BSBKnob">
1844  <objectName>ReverbMix</objectName>
1845  <x>1008</x>
1846  <y>106</y>
1847  <width>50</width>
1848  <height>50</height>
1849  <uuid>{a13e6afd-891a-44ba-8f51-1dce848cec59}</uuid>
1850  <visible>true</visible>
1851  <midichan>0</midichan>
1852  <midicc>0</midicc>
1853  <minimum>0.00000000</minimum>
1854  <maximum>1.00000000</maximum>
1855  <value>0.37000000</value>
1856  <mode>lin</mode>
1857  <mouseControl act="jump">continuous</mouseControl>
1858  <resolution>0.01000000</resolution>
1859  <randomizable group="0">false</randomizable>
1860 </bsbObject>
1861 <bsbObject version="2" type="BSBLabel">
1862  <objectName/>
1863  <x>994</x>
1864  <y>154</y>
1865  <width>80</width>
1866  <height>25</height>
1867  <uuid>{1c31572a-567e-41dd-9654-b27cbf41f25a}</uuid>
1868  <visible>true</visible>
1869  <midichan>0</midichan>
1870  <midicc>0</midicc>
1871  <label>Reverb Mix</label>
1872  <alignment>center</alignment>
1873  <font>Liberation Sans</font>
1874  <fontsize>10</fontsize>
1875  <precision>3</precision>
1876  <color>
1877   <r>0</r>
1878   <g>0</g>
1879   <b>0</b>
1880  </color>
1881  <bgcolor mode="nobackground">
1882   <r>255</r>
1883   <g>255</g>
1884   <b>255</b>
1885  </bgcolor>
1886  <bordermode>noborder</bordermode>
1887  <borderradius>1</borderradius>
1888  <borderwidth>1</borderwidth>
1889 </bsbObject>
1890 <bsbObject version="2" type="BSBKnob">
1891  <objectName>Portamento</objectName>
1892  <x>936</x>
1893  <y>106</y>
1894  <width>50</width>
1895  <height>50</height>
1896  <uuid>{df7d823a-3705-4cbd-9e18-e9ff989ed8c0}</uuid>
1897  <visible>true</visible>
1898  <midichan>0</midichan>
1899  <midicc>0</midicc>
1900  <minimum>0.00000000</minimum>
1901  <maximum>0.30000000</maximum>
1902  <value>0.03300000</value>
1903  <mode>lin</mode>
1904  <mouseControl act="jump">continuous</mouseControl>
1905  <resolution>0.01000000</resolution>
1906  <randomizable group="0">false</randomizable>
1907 </bsbObject>
1908 <bsbObject version="2" type="BSBLabel">
1909  <objectName/>
1910  <x>922</x>
1911  <y>154</y>
1912  <width>80</width>
1913  <height>25</height>
1914  <uuid>{6df782a8-2bda-426f-b932-4fdf6fbdaadc}</uuid>
1915  <visible>true</visible>
1916  <midichan>0</midichan>
1917  <midicc>0</midicc>
1918  <label>Portamento</label>
1919  <alignment>center</alignment>
1920  <font>Liberation Sans</font>
1921  <fontsize>10</fontsize>
1922  <precision>3</precision>
1923  <color>
1924   <r>0</r>
1925   <g>0</g>
1926   <b>0</b>
1927  </color>
1928  <bgcolor mode="nobackground">
1929   <r>255</r>
1930   <g>255</g>
1931   <b>255</b>
1932  </bgcolor>
1933  <bordermode>noborder</bordermode>
1934  <borderradius>1</borderradius>
1935  <borderwidth>1</borderwidth>
1936 </bsbObject>
1937 <bsbObject version="2" type="BSBKnob">
1938  <objectName>DelayMix</objectName>
1939  <x>1008</x>
1940  <y>179</y>
1941  <width>50</width>
1942  <height>50</height>
1943  <uuid>{9c253129-851f-4d01-92e2-8f801e008298}</uuid>
1944  <visible>true</visible>
1945  <midichan>0</midichan>
1946  <midicc>0</midicc>
1947  <minimum>0.00000000</minimum>
1948  <maximum>1.00000000</maximum>
1949  <value>0.08000000</value>
1950  <mode>lin</mode>
1951  <mouseControl act="jump">continuous</mouseControl>
1952  <resolution>0.01000000</resolution>
1953  <randomizable group="0">false</randomizable>
1954 </bsbObject>
1955 <bsbObject version="2" type="BSBLabel">
1956  <objectName/>
1957  <x>994</x>
1958  <y>227</y>
1959  <width>80</width>
1960  <height>25</height>
1961  <uuid>{58836950-bd2d-43a4-893a-34274c1d6d58}</uuid>
1962  <visible>true</visible>
1963  <midichan>0</midichan>
1964  <midicc>0</midicc>
1965  <label>Delay Mix</label>
1966  <alignment>center</alignment>
1967  <font>Liberation Sans</font>
1968  <fontsize>10</fontsize>
1969  <precision>3</precision>
1970  <color>
1971   <r>0</r>
1972   <g>0</g>
1973   <b>0</b>
1974  </color>
1975  <bgcolor mode="nobackground">
1976   <r>255</r>
1977   <g>255</g>
1978   <b>255</b>
1979  </bgcolor>
1980  <bordermode>noborder</bordermode>
1981  <borderradius>1</borderradius>
1982  <borderwidth>1</borderwidth>
1983 </bsbObject>
1984 <bsbObject version="2" type="BSBSpinBox">
1985  <objectName>Octave</objectName>
1986  <x>574</x>
1987  <y>29</y>
1988  <width>52</width>
1989  <height>30</height>
1990  <uuid>{055c3420-76d2-4887-8639-8aab364c2a29}</uuid>
1991  <visible>true</visible>
1992  <midichan>0</midichan>
1993  <midicc>0</midicc>
1994  <alignment>center</alignment>
1995  <font>Liberation Sans</font>
1996  <fontsize>16</fontsize>
1997  <color>
1998   <r>0</r>
1999   <g>0</g>
2000   <b>0</b>
2001  </color>
2002  <bgcolor mode="nobackground">
2003   <r>255</r>
2004   <g>255</g>
2005   <b>255</b>
2006  </bgcolor>
2007  <resolution>1.00000000</resolution>
2008  <minimum>-2</minimum>
2009  <maximum>2</maximum>
2010  <randomizable group="0">false</randomizable>
2011  <value>0</value>
2012 </bsbObject>
2013 <bsbObject version="2" type="BSBLabel">
2014  <objectName/>
2015  <x>503</x>
2016  <y>32</y>
2017  <width>68</width>
2018  <height>25</height>
2019  <uuid>{7d941c8e-e8aa-4692-8a56-4c39d8d95630}</uuid>
2020  <visible>true</visible>
2021  <midichan>0</midichan>
2022  <midicc>0</midicc>
2023  <label>Octave</label>
2024  <alignment>right</alignment>
2025  <font>Liberation Sans</font>
2026  <fontsize>10</fontsize>
2027  <precision>3</precision>
2028  <color>
2029   <r>0</r>
2030   <g>0</g>
2031   <b>0</b>
2032  </color>
2033  <bgcolor mode="nobackground">
2034   <r>255</r>
2035   <g>255</g>
2036   <b>255</b>
2037  </bgcolor>
2038  <bordermode>noborder</bordermode>
2039  <borderradius>1</borderradius>
2040  <borderwidth>1</borderwidth>
2041 </bsbObject>
2042 <bsbObject version="2" type="BSBDropdown">
2043  <objectName>Mode</objectName>
2044  <x>321</x>
2045  <y>29</y>
2046  <width>180</width>
2047  <height>30</height>
2048  <uuid>{7434b3ae-588c-4d0b-b9e0-e5449428e485}</uuid>
2049  <visible>true</visible>
2050  <midichan>0</midichan>
2051  <midicc>0</midicc>
2052  <bsbDropdownItemList>
2053   <bsbDropdownItem>
2054    <name>No Click to Play / Stop</name>
2055    <value>0</value>
2056    <stringvalue/>
2057   </bsbDropdownItem>
2058   <bsbDropdownItem>
2059    <name>Left click to Play</name>
2060    <value>1</value>
2061    <stringvalue/>
2062   </bsbDropdownItem>
2063   <bsbDropdownItem>
2064    <name>Left Click to Stop</name>
2065    <value>2</value>
2066    <stringvalue/>
2067   </bsbDropdownItem>
2068  </bsbDropdownItemList>
2069  <selectedIndex>0</selectedIndex>
2070  <randomizable group="0">false</randomizable>
2071 </bsbObject>
2072 <bsbObject version="2" type="BSBLabel">
2073  <objectName/>
2074  <x>255</x>
2075  <y>31</y>
2076  <width>68</width>
2077  <height>25</height>
2078  <uuid>{580d20d9-8d0f-4d73-aeee-57f4a269e33c}</uuid>
2079  <visible>true</visible>
2080  <midichan>0</midichan>
2081  <midicc>0</midicc>
2082  <label>Mode</label>
2083  <alignment>right</alignment>
2084  <font>Liberation Sans</font>
2085  <fontsize>10</fontsize>
2086  <precision>3</precision>
2087  <color>
2088   <r>0</r>
2089   <g>0</g>
2090   <b>0</b>
2091  </color>
2092  <bgcolor mode="nobackground">
2093   <r>255</r>
2094   <g>255</g>
2095   <b>255</b>
2096  </bgcolor>
2097  <bordermode>noborder</bordermode>
2098  <borderradius>1</borderradius>
2099  <borderwidth>1</borderwidth>
2100 </bsbObject>
2101 <bsbObject version="2" type="BSBKnob">
2102  <objectName>AmpPort</objectName>
2103  <x>935</x>
2104  <y>250</y>
2105  <width>50</width>
2106  <height>50</height>
2107  <uuid>{cbd37737-7bab-4ffd-936a-f74fe2c64694}</uuid>
2108  <visible>true</visible>
2109  <midichan>0</midichan>
2110  <midicc>0</midicc>
2111  <minimum>0.00000000</minimum>
2112  <maximum>1.00000000</maximum>
2113  <value>0.04000000</value>
2114  <mode>lin</mode>
2115  <mouseControl act="jump">continuous</mouseControl>
2116  <resolution>0.01000000</resolution>
2117  <randomizable group="0">false</randomizable>
2118 </bsbObject>
2119 <bsbObject version="2" type="BSBLabel">
2120  <objectName/>
2121  <x>922</x>
2122  <y>298</y>
2123  <width>80</width>
2124  <height>25</height>
2125  <uuid>{11980cb6-4448-43b1-be68-bd43a137da92}</uuid>
2126  <visible>true</visible>
2127  <midichan>0</midichan>
2128  <midicc>0</midicc>
2129  <label>Amp Port</label>
2130  <alignment>center</alignment>
2131  <font>Liberation Sans</font>
2132  <fontsize>10</fontsize>
2133  <precision>3</precision>
2134  <color>
2135   <r>0</r>
2136   <g>0</g>
2137   <b>0</b>
2138  </color>
2139  <bgcolor mode="nobackground">
2140   <r>255</r>
2141   <g>255</g>
2142   <b>255</b>
2143  </bgcolor>
2144  <bordermode>noborder</bordermode>
2145  <borderradius>1</borderradius>
2146  <borderwidth>1</borderwidth>
2147 </bsbObject>
2148 <bsbObject version="2" type="BSBKnob">
2149  <objectName>ModFrq</objectName>
2150  <x>1008</x>
2151  <y>250</y>
2152  <width>50</width>
2153  <height>50</height>
2154  <uuid>{eeca5b1a-786e-40f5-b571-7f374793e8fb}</uuid>
2155  <visible>true</visible>
2156  <midichan>0</midichan>
2157  <midicc>0</midicc>
2158  <minimum>0.00000000</minimum>
2159  <maximum>10.00000000</maximum>
2160  <value>5.00000000</value>
2161  <mode>lin</mode>
2162  <mouseControl act="jump">continuous</mouseControl>
2163  <resolution>0.01000000</resolution>
2164  <randomizable group="0">false</randomizable>
2165 </bsbObject>
2166 <bsbObject version="2" type="BSBLabel">
2167  <objectName/>
2168  <x>994</x>
2169  <y>298</y>
2170  <width>80</width>
2171  <height>25</height>
2172  <uuid>{4626fcd6-d179-450c-be5f-2fd7c2dee3ed}</uuid>
2173  <visible>true</visible>
2174  <midichan>0</midichan>
2175  <midicc>0</midicc>
2176  <label>Mod Frq</label>
2177  <alignment>center</alignment>
2178  <font>Liberation Sans</font>
2179  <fontsize>10</fontsize>
2180  <precision>3</precision>
2181  <color>
2182   <r>0</r>
2183   <g>0</g>
2184   <b>0</b>
2185  </color>
2186  <bgcolor mode="nobackground">
2187   <r>255</r>
2188   <g>255</g>
2189   <b>255</b>
2190  </bgcolor>
2191  <bordermode>noborder</bordermode>
2192  <borderradius>1</borderradius>
2193  <borderwidth>1</borderwidth>
2194 </bsbObject>
2195 <bsbObject version="2" type="BSBKnob">
2196  <objectName>VibDep</objectName>
2197  <x>936</x>
2198  <y>323</y>
2199  <width>50</width>
2200  <height>50</height>
2201  <uuid>{769d9e20-1c87-4945-9d16-728abe2209a3}</uuid>
2202  <visible>true</visible>
2203  <midichan>0</midichan>
2204  <midicc>0</midicc>
2205  <minimum>0.00000000</minimum>
2206  <maximum>1.00000000</maximum>
2207  <value>0.02000000</value>
2208  <mode>lin</mode>
2209  <mouseControl act="jump">continuous</mouseControl>
2210  <resolution>0.01000000</resolution>
2211  <randomizable group="0">false</randomizable>
2212 </bsbObject>
2213 <bsbObject version="2" type="BSBLabel">
2214  <objectName/>
2215  <x>922</x>
2216  <y>371</y>
2217  <width>80</width>
2218  <height>25</height>
2219  <uuid>{dac0dced-1a75-42e7-977d-5ff5a95bb0f1}</uuid>
2220  <visible>true</visible>
2221  <midichan>0</midichan>
2222  <midicc>0</midicc>
2223  <label>Vib Dep</label>
2224  <alignment>center</alignment>
2225  <font>Liberation Sans</font>
2226  <fontsize>10</fontsize>
2227  <precision>3</precision>
2228  <color>
2229   <r>0</r>
2230   <g>0</g>
2231   <b>0</b>
2232  </color>
2233  <bgcolor mode="nobackground">
2234   <r>255</r>
2235   <g>255</g>
2236   <b>255</b>
2237  </bgcolor>
2238  <bordermode>noborder</bordermode>
2239  <borderradius>1</borderradius>
2240  <borderwidth>1</borderwidth>
2241 </bsbObject>
2242 <bsbObject version="2" type="BSBKnob">
2243  <objectName>TrmDep</objectName>
2244  <x>1008</x>
2245  <y>323</y>
2246  <width>50</width>
2247  <height>50</height>
2248  <uuid>{49b664f1-8bdf-4356-b278-82f7ae912c4c}</uuid>
2249  <visible>true</visible>
2250  <midichan>0</midichan>
2251  <midicc>0</midicc>
2252  <minimum>0.00000000</minimum>
2253  <maximum>1.00000000</maximum>
2254  <value>0.20000000</value>
2255  <mode>lin</mode>
2256  <mouseControl act="jump">continuous</mouseControl>
2257  <resolution>0.01000000</resolution>
2258  <randomizable group="0">false</randomizable>
2259 </bsbObject>
2260 <bsbObject version="2" type="BSBLabel">
2261  <objectName/>
2262  <x>994</x>
2263  <y>371</y>
2264  <width>80</width>
2265  <height>25</height>
2266  <uuid>{9606d7a3-3923-47e2-b3ef-d8acbdcccb40}</uuid>
2267  <visible>true</visible>
2268  <midichan>0</midichan>
2269  <midicc>0</midicc>
2270  <label>Trm Dep</label>
2271  <alignment>center</alignment>
2272  <font>Liberation Sans</font>
2273  <fontsize>10</fontsize>
2274  <precision>3</precision>
2275  <color>
2276   <r>0</r>
2277   <g>0</g>
2278   <b>0</b>
2279  </color>
2280  <bgcolor mode="nobackground">
2281   <r>255</r>
2282   <g>255</g>
2283   <b>255</b>
2284  </bgcolor>
2285  <bordermode>noborder</bordermode>
2286  <borderradius>1</borderradius>
2287  <borderwidth>1</borderwidth>
2288 </bsbObject>
2289</bsbPanel>
2290<bsbPresets>
2291</bsbPresets>
2292<EventPanel name="" tempo="60.00000000" loop="8.00000000" x="913" y="162" width="655" height="346" visible="true" loopStart="0" loopEnd="0">    </EventPanel>
2293