re-organized directory-structure of source-tree

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@93 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2006-02-28 13:42:21 +00:00
parent be293b6c20
commit a63c20f8e5
609 changed files with 43764 additions and 47 deletions

View File

@@ -6,6 +6,10 @@ Danny McRae
<khjklujn/at/yahoo.com>
development
Zolo
<the-zolo/at/gmx/dot/de>
dark-expert-theme
Sebastian Tilsch
<djcompilation/at/gmx.de>
recording of many samples

View File

@@ -1,3 +1,31 @@
2006-02-27 Zolo <the-zolo/at/gmx/dot/de>
* data/themes/dark_expert/:
added new theme for LMMS
2006-02-27 Tobias Doerffel <tobydox/at/users.sourceforge.net>
* src/core/song_editor.cpp:
* src/tracks/pattern.cpp:
do not crash when playing a pattern which is deleted
* src/core/track_container.cpp:
pause mixer when cloning tracks for avoiding side-effects, probably
fixes some crash-bugs
* include/config_mgr.h:
* include/setup_dialog.h:
* src/core/config_mgr.cpp:
* src/core/setup_dialog.cpp:
* src/lib/embed.cpp:
first simple support for theming
* Makefile.am:
* configure.in:
re-organized all data-directories (samples, presets, localizations,
artwork etc.) and put them into data/ dir to be all installed into
$prefix/share/lmms
2006-02-25 Tobias Doerffel <tobydox/at/users.sourceforge.net>
* src/tracks/channel_track.cpp:

View File

@@ -20,10 +20,11 @@ endif
SUBDIRS = artwork buildtools locale midi-maps plugins presets projects samples
SUBDIRS = buildtools data plugins
INCLUDES = -I$(srcdir)/include -I. -I/usr/include/wine -I/usr/include/wine/windows
INCLUDES = -I$(srcdir)/include -I.
#-I/usr/include/wine -I/usr/include/wine/windows
bin_PROGRAMS = lmms
@@ -34,7 +35,7 @@ AM_CXXFLAGS := $(AM_CXXFLAGS) $(QT_CXXFLAGS)
$(MOC) -o $@ $<
%.ts:
$(LUPDATE) $(lmms_SOURCES) `find plugins/ -type f -name *.cpp` -ts locale/$@
$(LUPDATE) $(lmms_SOURCES) `find plugins/ -type f -name *.cpp` -ts data/locale/$@
%.qm: %.ts
$(LRELEASE) $<
@@ -98,7 +99,7 @@ lmms_MOC = \
BUILT_SOURCES = $(lmms_MOC)
lmms_EMBEDDED_RESOURCES = $(wildcard $(srcdir)/resources/*png AUTHORS COPYING)
lmms_EMBEDDED_RESOURCES = $(srcdir)/AUTHORS $(srcdir)/COPYING
./embedded_resources.h: $(lmms_EMBEDDED_RESOURCES)
$(top_builddir)/buildtools/bin2res $(lmms_EMBEDDED_RESOURCES) > $@

View File

@@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
AC_INIT(lmms, 0.1.4-cvs20060225, tobydox/at/users/dot/sourceforge/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.1.4-cvs20060225)
AC_INIT(lmms, 0.1.4-cvs20060227, tobydox/at/users/dot/sourceforge/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.1.4-cvs20060227)
AM_CONFIG_HEADER(config.h)
@@ -430,11 +430,38 @@ fi
AC_CONFIG_FILES([Makefile
artwork/Makefile
artwork/track_icons/Makefile
buildtools/Makefile
locale/Makefile
midi-maps/Makefile
data/Makefile
data/locale/Makefile
data/midi-maps/Makefile
data/presets/Makefile
data/presets/AudioFileProcessor/Makefile
data/presets/BitInvader/Makefile
data/presets/Organic/Makefile
data/presets/PluckedStringSynth/Makefile
data/presets/TripleOscillator/Makefile
data/presets/VeSTige/Makefile
data/projects/Makefile
data/projects/cool_songs/Makefile
data/projects/covers/Makefile
data/projects/demos/Makefile
data/projects/misc/Makefile
data/projects/recorded_loops/Makefile
data/projects/templates/Makefile
data/projects/tutorials/Makefile
data/samples/Makefile
data/samples/basses/Makefile
data/samples/bassloopes/Makefile
data/samples/beats/Makefile
data/samples/drums/Makefile
data/samples/effects/Makefile
data/samples/instruments/Makefile
data/samples/latin/Makefile
data/samples/misc/Makefile
data/samples/shapes/Makefile
data/samples/stringsnpads/Makefile
data/themes/Makefile
data/track_icons/Makefile
plugins/Makefile
plugins/audio_file_processor/Makefile
plugins/bit_invader/Makefile
@@ -442,32 +469,6 @@ AC_CONFIG_FILES([Makefile
plugins/plucked_string_synth/Makefile
plugins/triple_oscillator/Makefile
plugins/vestige/Makefile
presets/Makefile
presets/AudioFileProcessor/Makefile
presets/BitInvader/Makefile
presets/Organic/Makefile
presets/PluckedStringSynth/Makefile
presets/TripleOscillator/Makefile
presets/VeSTige/Makefile
projects/Makefile
projects/cool_songs/Makefile
projects/covers/Makefile
projects/demos/Makefile
projects/misc/Makefile
projects/recorded_loops/Makefile
projects/templates/Makefile
projects/tutorials/Makefile
samples/Makefile
samples/basses/Makefile
samples/bassloopes/Makefile
samples/beats/Makefile
samples/drums/Makefile
samples/effects/Makefile
samples/instruments/Makefile
samples/latin/Makefile
samples/misc/Makefile
samples/shapes/Makefile
samples/stringsnpads/Makefile
lmms.spec])
AC_OUTPUT

2
data/Makefile.am Executable file
View File

@@ -0,0 +1,2 @@
SUBDIRS = locale midi-maps presets projects samples themes track_icons

7
data/locale/Makefile.am Executable file
View File

@@ -0,0 +1,7 @@
localedir = $(lmmsdatadir)/locale
locale_DATA = $(wildcard *.qm)
locale_SOURCES = $(wildcard *.ts)
EXTRA_DIST = $(locale_DATA) $(locale_SOURCES)

BIN
data/locale/de.qm Executable file

Binary file not shown.

3154
data/locale/de.ts Executable file

File diff suppressed because it is too large Load Diff

BIN
data/locale/en.qm Executable file

Binary file not shown.

2148
data/locale/en.ts Executable file

File diff suppressed because it is too large Load Diff

BIN
data/locale/es.qm Executable file

Binary file not shown.

2427
data/locale/es.ts Executable file

File diff suppressed because it is too large Load Diff

BIN
data/locale/fr.qm Executable file

Binary file not shown.

2218
data/locale/fr.ts Executable file

File diff suppressed because it is too large Load Diff

BIN
data/locale/ir.qm Executable file

Binary file not shown.

2225
data/locale/ir.ts Executable file

File diff suppressed because it is too large Load Diff

BIN
data/locale/it.qm Executable file

Binary file not shown.

2799
data/locale/it.ts Executable file

File diff suppressed because it is too large Load Diff

BIN
data/locale/pt_br.qm Executable file

Binary file not shown.

2631
data/locale/pt_br.ts Executable file

File diff suppressed because it is too large Load Diff

BIN
data/locale/qt_ar.qm Executable file

Binary file not shown.

BIN
data/locale/qt_cs.qm Executable file

Binary file not shown.

BIN
data/locale/qt_de.qm Executable file

Binary file not shown.

BIN
data/locale/qt_en.qm Executable file

Binary file not shown.

BIN
data/locale/qt_fr.qm Executable file

Binary file not shown.

BIN
data/locale/qt_iw.qm Executable file

Binary file not shown.

BIN
data/locale/qt_ru.qm Executable file

Binary file not shown.

BIN
data/locale/qt_sk.qm Executable file

Binary file not shown.

BIN
data/locale/ru.qm Executable file

Binary file not shown.

3191
data/locale/ru.ts Executable file

File diff suppressed because it is too large Load Diff

10
data/midi-maps/Makefile.am Executable file
View File

@@ -0,0 +1,10 @@
midimapsdir = $(lmmsdatadir)/midi-maps/
midimaps_DATA = gm.map \
YamahaPSR400.map \
YamahaPSR500.map \
YamahaPSS790.map \
YamahaQY10.map
EXTRA_DIST = $(midimaps_DATA)

3
data/midi-maps/README Executable file
View File

@@ -0,0 +1,3 @@
These MIDI-maps are taken from KMid so please contact the author of KMid for
issues concerning these files.

293
data/midi-maps/YamahaPSR400.map Executable file
View File

@@ -0,0 +1,293 @@
# Blank lines and lines beginning with # are ignored
# This is a map for a Yamaha PSR-400 keyboard
# This file was done by Tobias Doerffel based on map for the PSR-500
# If you make a new map, please send it to Antonio, so future releases
# will include them.
# Antonio Larrosa Jimenez, larrosa@kde.org
# General Midi Map File
DEFINE PATCHMAP
AcusticPiano =0
BrightPiano =0
SynthPiano =1
HonkyTonky =2
ElectricPiano1=3
ElectricPiano2=4
Harpsichord =6
Clavinet =8
Celeste =9
Glockenspiel =40
Musicbox =41
Vibes =40
Marimba =41
Xylophon =41
TubeBell =41
Santur =42
HomeOrg =12
PercussionOrg =13
RockOrg =14
ChurchOrg =10
ReedOrg =11
Accordion =16
Harmonica =17
Concrtna =17
NylonGuitar =29
AcusticGuitar =31
JazzGuitar =24
CleanGuitar =19
MuteGuitar =26
OdGuitar =18
DistortionGuit=23
GtrHarm =20
AcusticBass =88
FingerBass =89
PickBass =87
FretlessBass =84
SlapBass1 =87
SlapBass2 =87
SynthBass1 =90
SynthBass2 =91
Violin =32
Viola =33
Cello =34
Contrabajo =33
Marcato =34
Pizzicato =38
Harp =38
Timpani =33
Marcato =34
SlowStrings =35
SynthStrings1 =36
SynthStrings2 =75
Choir =72
Doo =72
Voices =72
OrchestraHit =37
Trumpet =43
Trombone =47
Tuba =50
MuteTrumpet =45
FrenchHorn =49
HitBrass =51
SynthBrass1 =52
SynthBrass2 =74
SopranoSax =60
AltoSax =61
TenorSax =62
BaritoneSax =63
Oboe =57
EnglishHorn =58
Bassoon =59
Clarinet =55
Piccolo =53
Flute =54
Recorder =66
WoodFlute =65
Bottle =55
Shakazul =55
Whistle =68
Ocarina =79
SquareWave =03
SawWave =74
Calliope =77
Chiflead =73
Charang =84
VoxLead =85
Lead5th =86
BassLead =87
Fantasia =88
WarmPad =89
Polysyn =90
Ghostie =91
BowGlass =92
MetalPad =93
HaloPad =94
Sweeper =95
Aurora =72
SoundTrack =72
Crystal =72
Atmosphear =72
FreshAir =100
Unicorn =101
Sweeper =102
StarTrak =103
Sitar =104
Banjo =105
Shamisen =106
Koto =107
Kalimba =108
BagPipes =109
Fiddle =110
Shannai =111
Carillon =112
Agogo =113
SteelDrm =114
WoodBlk =115
Taiko =116
Toms =117
Syntom =118
RevCymbal =119
Fx-Fret =120
Fx-Blow =121
Seashore =122
Jungle =123
Telephon =124
Helicopter =125
Applause =126
Gunshot =127
END
DEFINE KEYMAP "Drumset"
C 0 =0
C#0 =1
D 0 =2
D#0 =3
E 0 =4
F 0 =5
F#0 =6
G 0 =7
G#0 =8
A 0 =9
A#0 =10
B 0 =11
C 1 =12
C#1 =13
D 1 =14
D#1 =15
E 1 =16
F 1 =17
F#1 =18
G 1 =19
G#1 =20
A 1 =21
A#1 =22
B 1 =23
C 2 =24
C#2 =25
D 2 =26
D#2 27 Highq =27
E 2 28 Slap =54
F 2 29 Scratch1 =62
F#2 30 Scratch2 =63
G 2 31 Sticks =22
G#2 32 SqrClick =87
A 2 33 MetaClick=57
A#2 34 MetBell =55
B 2 35 Kick1 =44
C 3 36 Kick2 =45
C#3 37 StickRim =27
D 3 38 Snare1 =28
D#3 39 Claps =30
E 3 40 snare2 =25
F 3 41 tomlo2 =24
F#3 42 Hihatclos=72
G 3 43 Tomlo1 =17
G#3 44 HihatPd =56
A 3 45 Tommid2 =26
A#3 46 Hihatop =35
B 3 47 Tommid1 =18
C 4 48 Tomhi2 =29
C#4 49 Cymbalcrsh1 =36
D 4 50 Tomhi1 =19
D#4 51 Cymbalride1 =38
E 4 52 Cymbalchina =38
F 4 53 Cymbell =38
F#4 54 Tamborin =47
G 4 55 CymbalSplash=37
G#4 56 Cowbell =31
A 4 57 Cymbalcrash2=36
A#4 58 Vibslap =39
B 4 59 Cymbalride2 =39
C 5 60 Bongohi =44
C#5 61 Bongolo =43
D 5 62 Congahi1 =41
D#5 63 congahi2 =42
E 5 64 Congalo =40
F 5 65 Timbalehi=46
F#5 66 Timbalelo=45
G 5 67 Agogohi =51
G#5 68 Agogolo =50
A 5 69 Cabasa =32
A#5 70 Maracas =65
B 5 71 whistle1 =52
C 6 72 whistle2 =53
C#6 73 Guiro1 =74
D 6 74 Guiro2 =74
D#6 75 Clave =29
E 6 76 Woodblock1=73
F 6 77 Woodblock2=72
F#6 78 Cuica1 =76
G 6 79 Cuica2 =77
G#6 80 Triangle1=13
A 6 81 Triangle2=15
A#6 82 Shaker =56
B 6 83 Jingles =75
C 7 84 Belltree =71
C#7 85 Canstinet=85
D 7 86 Surdo1 =86
D#7 87 Surdo2 =87
E 7 =88
F 7 =89
F#7 =90
G 7 =91
G#7 =92
A 7 =93
A#7 =94
B 7 =95
C 8 =96
C#8 =97
D 8 =98
D#8 =99
E 8 =100
F 8 =101
F#8 =102
G 8 =103
G#8 =104
A 8 =105
A#8 =106
B 8 =107
C 9 =108
C#9 =109
D 9 =110
D#9 =111
E 9 =112
F 9 =113
F#9 =114
G 9 =115
G#9 =116
A 9 =117
A#9 =118
B 9 =119
C 10=120
C#10=121
D 10=122
D#10=123
E 10=124
F 10=125
F#10=126
G 10=127
# This line should be ignored
END
DEFINE CHANNELMAP
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7
8 = 8
9 = 9 Keymap "Drumset" ForcePatch 99
10 = 10
11 = 11
12 = 12
13 = 13
14 = 14
15 = 15
END

293
data/midi-maps/YamahaPSR500.map Executable file
View File

@@ -0,0 +1,293 @@
# Blank lines and lines beginning with # are ignored
# This is a map for a Yamaha PSR-500 keyboard
# This file was done by Dietmar Schnabel (thanks !)
# If you make a new map, please send it to Antonio, so future releases
# will include them.
# Antonio Larrosa Jimenez, larrosa@kde.org
# General Midi Map File
DEFINE PATCHMAP
AcusticPiano =0
BrightPiano =0
SynthPiano =3
HonkyTonky =2
ElectricPiano1=4
ElectricPiano2=5
Harpsichord =6
Clavinet =8
Celeste =9
Glockenspiel =40
Musicbox =41
Vibes =40
Marimba =41
Xylophon =41
TubeBell =41
Santur =42
HomeOrg =12
PercussionOrg =13
RockOrg =14
ChurchOrg =10
ReedOrg =11
Accordion =16
Harmonica =17
Concrtna =17
NylonGuitar =29
AcusticGuitar =31
JazzGuitar =24
CleanGuitar =19
MuteGuitar =26
OdGuitar =18
DistortionGuit=23
GtrHarm =20
AcusticBass =88
FingerBass =89
PickBass =87
FretlessBass =84
SlapBass1 =87
SlapBass2 =87
SynthBass1 =90
SynthBass2 =91
Violin =32
Viola =33
Cello =34
Contrabajo =33
Marcato =34
Pizzicato =38
Harp =38
Timpani =33
Marcato =34
SlowStrings =35
SynthStrings1 =36
SynthStrings2 =75
Choir =72
Doo =72
Voices =72
OrchestraHit =37
Trumpet =43
Trombone =47
Tuba =50
MuteTrumpet =44
FrenchHorn =49
HitBrass =51
SynthBrass1 =52
SynthBrass2 =74
SopranoSax =60
AltoSax =61
TenorSax =62
BaritoneSax =63
Oboe =57
EnglishHorn =58
Bassoon =59
Clarinet =55
Piccolo =53
Flute =54
Recorder =66
WoodFlute =65
Bottle =55
Shakazul =55
Whistle =68
Ocarina =79
SquareWave =80
SawWave =81
Calliope =82
Chiflead =83
Charang =84
VoxLead =85
Lead5th =86
BassLead =87
Fantasia =88
WarmPad =89
Polysyn =90
Ghostie =91
BowGlass =92
MetalPad =93
HaloPad =94
Sweeper =95
Aurora =72
SoundTrack =72
Crystal =72
Atmosphear =72
FreshAir =100
Unicorn =101
Sweeper =102
StarTrak =103
Sitar =104
Banjo =105
Shamisen =106
Koto =107
Kalimba =108
BagPipes =109
Fiddle =110
Shannai =111
Carillon =112
Agogo =113
SteelDrm =114
WoodBlk =115
Taiko =116
Toms =117
Syntom =118
RevCymbal =119
Fx-Fret =120
Fx-Blow =121
Seashore =122
Jungle =123
Telephon =124
Helicopter =125
Applause =126
Gunshot =127
END
DEFINE KEYMAP "Drumset"
C 0 =0
C#0 =1
D 0 =2
D#0 =3
E 0 =4
F 0 =5
F#0 =6
G 0 =7
G#0 =8
A 0 =9
A#0 =10
B 0 =11
C 1 =12
C#1 =13
D 1 =14
D#1 =15
E 1 =16
F 1 =17
F#1 =18
G 1 =19
G#1 =20
A 1 =21
A#1 =22
B 1 =23
C 2 =24
C#2 =25
D 2 =26
D#2 27 Highq =27
E 2 28 Slap =54
F 2 29 Scratch1 =62
F#2 30 Scratch2 =63
G 2 31 Sticks =22
G#2 32 SqrClick =87
A 2 33 MetaClick=57
A#2 34 MetBell =55
B 2 35 Kick1 =44
C 3 36 Kick2 =45
C#3 37 StickRim =27
D 3 38 Snare1 =28
D#3 39 Claps =30
E 3 40 snare2 =25
F 3 41 tomlo2 =24
F#3 42 Hihatclos=72
G 3 43 Tomlo1 =17
G#3 44 HihatPd =56
A 3 45 Tommid2 =26
A#3 46 Hihatop =35
B 3 47 Tommid1 =18
C 4 48 Tomhi2 =29
C#4 49 Cymbalcrsh1 =36
D 4 50 Tomhi1 =19
D#4 51 Cymbalride1 =38
E 4 52 Cymbalchina =38
F 4 53 Cymbell =38
F#4 54 Tamborin =47
G 4 55 CymbalSplash=37
G#4 56 Cowbell =31
A 4 57 Cymbalcrash2=36
A#4 58 Vibslap =39
B 4 59 Cymbalride2 =39
C 5 60 Bongohi =44
C#5 61 Bongolo =43
D 5 62 Congahi1 =41
D#5 63 congahi2 =42
E 5 64 Congalo =40
F 5 65 Timbalehi=46
F#5 66 Timbalelo=45
G 5 67 Agogohi =51
G#5 68 Agogolo =50
A 5 69 Cabasa =32
A#5 70 Maracas =65
B 5 71 whistle1 =52
C 6 72 whistle2 =53
C#6 73 Guiro1 =74
D 6 74 Guiro2 =74
D#6 75 Clave =29
E 6 76 Woodblock1=73
F 6 77 Woodblock2=72
F#6 78 Cuica1 =76
G 6 79 Cuica2 =77
G#6 80 Triangle1=13
A 6 81 Triangle2=15
A#6 82 Shaker =56
B 6 83 Jingles =75
C 7 84 Belltree =71
C#7 85 Canstinet=85
D 7 86 Surdo1 =86
D#7 87 Surdo2 =87
E 7 =88
F 7 =89
F#7 =90
G 7 =91
G#7 =92
A 7 =93
A#7 =94
B 7 =95
C 8 =96
C#8 =97
D 8 =98
D#8 =99
E 8 =100
F 8 =101
F#8 =102
G 8 =103
G#8 =104
A 8 =105
A#8 =106
B 8 =107
C 9 =108
C#9 =109
D 9 =110
D#9 =111
E 9 =112
F 9 =113
F#9 =114
G 9 =115
G#9 =116
A 9 =117
A#9 =118
B 9 =119
C 10=120
C#10=121
D 10=122
D#10=123
E 10=124
F 10=125
F#10=126
G 10=127
# This line should be ignored
END
DEFINE CHANNELMAP
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7
8 = 8
9 = 9 Keymap "Drumset" ForcePatch 99
10 = 10
11 = 11
12 = 12
13 = 13
14 = 14
15 = 15
END

299
data/midi-maps/YamahaPSS790.map Executable file
View File

@@ -0,0 +1,299 @@
# Blank lines and lines beginning with # are ignored
# This is my a map for the Yamaha PSS-790 keyboard
# it can be used as a template to make any new map for any
# other keyboard.
# If you make a new map, please send it to me, so future releases
# will include it.
# Antonio Larrosa Jimenez, larrosa@kde.org
# Yamaha PSS-790 Map File
DEFINE PATCHMAP
AcusticPiano =3
BrightPiano =3
SynthPiano =54
HonkyTonky =25
ElectricPiano1=25
ElectricPiano2=25
Harpsichord =53
Clavinet =30
Celeste =6
Glockenspiel =64
Musicbox =24
Vibes =28
Marimba =8
Xylophon =24
TubeBell =95
Santur =30
HomeOrg =1
PercussionOrg =2
RockOrg =11
ChurchOrg =29
ReedOrg =49
Accordion =31
Harmonica =22
Concrtna =3
NylonGuitar =36
AcusticGuitar =68
JazzGuitar =122
CleanGuitar =68
MuteGuitar =12
OdGuitar =123
DistortionGuit=13
GtrHarm =72
AcusticBass =38
FingerBass =39
PickBass =79
FretlessBass =80
SlapBass1 =14
SlapBass2 =81
SynthBass1 =58
SynthBass2 =86
Violin =10
Viola =67
Cello =67
Contrabajo =41
Marcato =41
Pizzicato =78
Harp =37
Timpani =66
Marcato =41
SlowStrings =50
SynthStrings1 =41
SynthStrings2 =50
Choir =96
Doo =94
Voices =96
OrchestraHit =90
Trumpet =15
Trombone =16
Tuba =84
MuteTrumpet =44
FrenchHorn =17
HitBrass =92
SynthBrass1 =0
SynthBrass2 =82
SopranoSax =101
AltoSax =18
TenorSax =102
BaritoneSax =101
Oboe =19
EnglishHorn =87
Bassoon =87
Clarinet =19
Piccolo =103
Flute =20
Recorder =88
WoodFlute =111
Bottle =111
Shakazul =110
Whistle =88
Ocarina =93
SquareWave =54
SawWave =54
Calliope =22
Chiflead =9
Charang =19
VoxLead =96
Lead5th =41
BassLead =95
Fantasia =111
WarmPad =51
Polysyn =60
Ghostie =94
BowGlass =33
MetalPad =9
HaloPad =111
Sweeper =78
Aurora =60
SoundTrack =84
Crystal =60
Atmosphear =51
FreshAir =60
Unicorn =93
Sweeper =112
StarTrak =117
Sitar =73
Banjo =34
Shamisen =73
Koto =70
Kalimba =73
BagPipes =11
Fiddle =67
Shannai =11
Carillon =64
Agogo =91
SteelDrm =9
WoodBlk =35
Taiko =100 AllKeysTo 60
Toms =66
Syntom =85
RevCymbal =100 AllKeysTo 60
Fx-Fret =121
Fx-Blow =94
Seashore =100 AllKeysTo 79
Jungle =70
Telephon =91
Helicopter =111
Applause =100 AllKeysTo 79
Gunshot =100 AllKeysTo 38
END
DEFINE KEYMAP "Drumset"
C 0 =0
C#0 =1
D 0 =2
D#0 =3
E 0 =4
F 0 =5
F#0 =6
G 0 =7
G#0 =8
A 0 =9
A#0 =10
B 0 =11
C 1 =12
C#1 =13
D 1 =14
D#1 =15
E 1 =16
F 1 =17
F#1 =18
G 1 =19
G#1 =20
A 1 =21
A#1 =22
B 1 =23
C 2 =24
C#2 =25
D 2 =26
D#2 27 Highq =27
E 2 28 Slap =54
F 2 29 Scratch1 =29
F#2 30 Scratch2 =30
G 2 31 Sticks =46
G#2 32 SqrClick =87
A 2 33 MetaClick=57
A#2 34 MetBell =55
B 2 35 AcousticBassDrum=44
C 3 36 BassDrum1=47
C#3 37 StickRim =46
D 3 38 AcSnare =47
D#3 39 Claps =63
E 3 40 ElectSnare =49
F 3 41 LowFloorTom =48
F#3 42 Hihatclos =57
G 3 43 HighFloorTom=50
G#3 44 PedalHihat =80
A 3 45 LowTom =47
A#3 46 OpenHihat =59
B 3 47 LowMidTom =48
C 4 48 HiMidTom =50
C#4 49 Cymbalcrsh1 =60
D 4 50 HiTom =53
D#4 51 Cymbalride1 =63
E 4 52 Cymbalchina =60
F 4 53 RideBell =62
F#4 54 Tambourin =71
G 4 55 CymbalSplash=61
G#4 56 Cowbell =55
A 4 57 Cymbalcrash2=60
A#4 58 Vibraslap =79
B 4 59 Cymbalride2 =62
C 5 60 Bongohi =68
C#5 61 Bongolo =67
D 5 62 MuteHiConga =66
D#5 63 OpenHiConga =65
E 5 64 LowConga =64
F 5 65 HiTimbale =70
F#5 66 LoTimbale =69
G 5 67 HiAgogo =75
G#5 68 LoAgogo =74
A 5 69 Cabasa =56
A#5 70 Maracas =56
B 5 71 ShortWhistle=78
C 6 72 LongWhistle =78
C#6 73 ShortGuiro =79
D 6 74 LongGuiro =71
D#6 75 Clave =72
E 6 76 HiWoodBlock =73
F 6 77 LoWoodBlock =72
F#6 78 MuteCuica =77
G 6 79 OpenCuica =76
G#6 80 MuteTriangle=37
A 6 81 OpenTriangle=39
A#6 82 Shaker =56
B 6 83 Jingles =75
C 7 84 Belltree =63
C#7 85 Canstinet=85
D 7 86 Surdo1 =86
D#7 87 Surdo2 =87
E 7 =88
F 7 =89
F#7 =90
G 7 =91
G#7 =92
A 7 =93
A#7 =94
B 7 =95
C 8 =96
C#8 =97
D 8 =98
D#8 =99
E 8 =100
F 8 =101
F#8 =102
G 8 =103
G#8 =104
A 8 =105
A#8 =106
B 8 =107
C 9 =108
C#9 =109
D 9 =110
D#9 =111
E 9 =112
F 9 =113
F#9 =114
G 9 =115
G#9 =116
A 9 =117
A#9 =118
B 9 =119
C 10=120
C#10=121
D 10=122
D#10=123
E 10=124
F 10=125
F#10=126
G 10=127
# This line should be ignored
END
DEFINE CHANNELMAP
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7
8 = 8
9 = 15 Keymap "Drumset" ForcePatch 100
10 = 10
11 = 11
12 = 12
13 = 13
14 = 14
15 = 9
END
OPTIONS
PitchBenderRatio = 672
MapExpressionToVolumeEvents
END

305
data/midi-maps/YamahaQY10.map Executable file
View File

@@ -0,0 +1,305 @@
# Midi map file for the Yamaha QY10 "walkstation", a basic sequencer / tone
# module.
# Provided by Malcolm Tyrrell. If there is a problem with this file, please
# e-mail tyrrelmr@cs.tcd.ie
# If you make a new map, please send it to Antonio, so future releases
# will include them.
# Antonio Larrosa Jimenez, larrosa@kde.org
# Yamaha QY10 Map File
DEFINE PATCHMAP
AcusticPiano =0
BrightPiano =0
SynthPiano =1
HonkyTonky =0
ElectricPiano1=1
ElectricPiano2=2
Harpsichord =3
Clavinet =3
Celeste =18
Glockenspiel =18
Musicbox =20
Vibes =19
Marimba =18
Xylophon =20
TubeBell =19
Santur =12
HomeOrg =4
PercussionOrg =4
RockOrg =4
ChurchOrg =5
ReedOrg =5
Accordion =5
Harmonica =23
Concrtna =23
NylonGuitar =12
AcusticGuitar =12
JazzGuitar =9
CleanGuitar =9
MuteGuitar =11
OdGuitar =9
DistortionGuit=10
GtrHarm =25
AcusticBass =13
FingerBass =14
PickBass =14
FretlessBass =13
SlapBass1 =15
SlapBass2 =15
SynthBass1 =16
SynthBass2 =16
Violin =23
Viola =23
Cello =23
Contrabajo =23
Marcato =6
Pizzicato =16
Harp =12
Timpani =20
Marcato =6
SlowStrings =6
SynthStrings1 =22
SynthStrings2 =22
Choir =27
Doo =21
Voices =21
OrchestraHit =8
Trumpet =26
Trombone =26
Tuba =21
MuteTrumpet =8
FrenchHorn =26
HitBrass =8
SynthBrass1 =21
SynthBrass2 =21
SopranoSax =26
AltoSax =26
TenorSax =26
BaritoneSax =26
Oboe =27
EnglishHorn =26
Bassoon =27
Clarinet =27
Piccolo =27
Flute =27
Recorder =27
WoodFlute =27
Bottle =27
Shakazul =27
Whistle =27
Ocarina =27
SquareWave =28
SawWave =28
Calliope =29
Chiflead =29
Charang =24
VoxLead =21
Lead5th =21
BassLead =21
Fantasia =24
WarmPad =21
Polysyn =22
Ghostie =27
BowGlass =26
MetalPad =21
HaloPad =27
Sweeper =24
Aurora =31
SoundTrack =21
Crystal =19
Atmosphear =24
FreshAir =21
Unicorn =24
Sweeper =24
StarTrak =21
Sitar =9
Banjo =9
Shamisen =12
Koto =12
Kalimba =18
BagPipes =28
Fiddle =28
Shannai =23
Carillon =19
Agogo =20
SteelDrm =18
WoodBlk =20
Taiko =20
Toms =18
Syntom =18
RevCymbal =31
Fx-Fret =31
Fx-Blow =31
Seashore =31
Jungle =31
Telephon =5
Helicopter =31
Applause =31
Gunshot =31
END
DEFINE KEYMAP "Drumset"
C 0 =0
C#0 =1
D 0 =2
D#0 =3
E 0 =4
F 0 =5
F#0 =6
G 0 =7
G#0 =8
A 0 =9
A#0 =10
B 0 =11
C 1 =12
C#1 =13
D 1 =14
D#1 =15
E 1 =16
F 1 =17
F#1 =18
G 1 =19
G#1 =20
A 1 =21
A#1 =22
B 1 =23
C 2 =24
C#2 =25
D 2 =26
# What is a high q?
D#2 27 Highq =40
E 2 28 Slap =37
F 2 29 Scratch1 =23
F#2 30 Scratch2 =48
G 2 31 Sticks =21
G#2 32 SqrClick =42
A 2 33 MetaClick=42
A#2 34 MetBell =43
B 2 35 Kick1 =36
C 3 36 Kick2 =12
C#3 37 StickRim =21
D 3 38 Snare1 =15
D#3 39 Claps =19
E 3 40 snare2 =14
F 3 41 tomlo2 =16
F#3 42 Hihatclos=23
G 3 43 Tomlo1 =16
G#3 44 HihatPd =23
A 3 45 Tommid2 =17
A#3 46 Hihatop =24
B 3 47 Tommid1 =17
C 4 48 Tomhi2 =18
C#4 49 Cymbalcrsh1 =20
D 4 50 Tomhi1 =18
D#4 51 Cymbalride1 =22
E 4 52 Cymbalchina =22
F 4 53 Cymbell =22
F#4 54 Tamborin =21
G 4 55 CymbalSplash=20
G#4 56 Cowbell =37
A 4 57 Cymbalcrash2=20
A#4 58 Vibslap =0
B 4 59 Cymbalride2 =22
C 5 60 Bongohi =41
C#5 61 Bongolo =40
D 5 62 Congahi1 =41
D#5 63 congahi2 =41
E 5 64 Congalo =40
F 5 65 Timbalehi=46
F#5 66 Timbalelo=45
G 5 67 Agogohi =44
G#5 68 Agogolo =43
A 5 69 Cabasa =48
A#5 70 Maracas =48
B 5 71 whistle1 =0
C 6 72 whistle2 =0
C#6 73 Guiro1 =0
D 6 74 Guiro2 =0
D#6 75 Clave =44
E 6 76 Woodblock1=40
F 6 77 Woodblock2=41
# Don't know about the following two
F#6 78 Cuica1 =0
G 6 79 Cuica2 =0
G#6 80 Triangle1=44
A 6 81 Triangle2=44
A#6 82 Shaker =48
B 6 83 Jingles =23
C 7 84 Belltree =0
C#7 85 Canstinet=21
D 7 86 Surdo1 =16
D#7 87 Surdo2 =17
E 7 =88
F 7 =89
F#7 =90
G 7 =91
G#7 =92
A 7 =93
A#7 =94
B 7 =95
C 8 =96
C#8 =97
D 8 =98
D#8 =99
E 8 =100
F 8 =101
F#8 =102
G 8 =103
G#8 =104
A 8 =105
A#8 =106
B 8 =107
C 9 =108
C#9 =109
D 9 =110
D#9 =111
E 9 =112
F 9 =113
F#9 =114
G 9 =115
G#9 =116
A 9 =117
A#9 =118
B 9 =119
C 10=120
C#10=121
D 10=122
D#10=123
E 10=124
F 10=125
F#10=126
G 10=127
END
DEFINE CHANNELMAP
# The information on channels 7-8 and 11-15 is ignored since the QY10 is only
# 8 part multi-timbral. The polyphony should be okay.
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
# The next two channels are ignored
7 = 9
8 = 8
# Play GM channel 9 (drums) on QY10 track 7 (rhythm track)
9 = 7 Keymap "Drumset" ForcePatch 30
# All the following channels are ignored.
10 = 10
11 = 11
12 = 12
13 = 13
14 = 14
15 = 15
END
# I don't think the QY10 responds to Expression Events, so...
OPTIONS
MapExpressionToVolumeEvents
END

290
data/midi-maps/gm.map Executable file
View File

@@ -0,0 +1,290 @@
# Blank lines and lines beginning with # are ignored
# This is a map for any General Midi synthesizer
# If you make a new map, please send it to me, so future releases
# will include them.
# Antonio Larrosa Jimenez, larrosa@kde.org
# General Midi Map File
DEFINE PATCHMAP
AcusticPiano =0
BrightPiano =1
SynthPiano =2
HonkyTonky =3
ElectricPiano1=4
ElectricPiano2=5
Harpsichord =6
Clavinet =7
Celeste =8
Glockenspiel =9
Musicbox =10
Vibes =11
Marimba =12
Xylophon =13
TubeBell =14
Santur =15
HomeOrg =16
PercussionOrg =17
RockOrg =18
ChurchOrg =19
ReedOrg =20
Accordion =21
Harmonica =22
Concrtna =23
NylonGuitar =24
AcusticGuitar =25
JazzGuitar =26
CleanGuitar =27
MuteGuitar =28
OdGuitar =29
DistortionGuit=30
GtrHarm =31
AcusticBass =32
FingerBass =33
PickBass =34
FretlessBass =35
SlapBass1 =36
SlapBass2 =37
SynthBass1 =38
SynthBass2 =39
Violin =40
Viola =41
Cello =42
Contrabajo =43
Marcato =44
Pizzicato =45
Harp =46
Timpani =47
Marcato =48
SlowStrings =49
SynthStrings1 =50
SynthStrings2 =51
Choir =52
Doo =53
Voices =54
OrchestraHit =55
Trumpet =56
Trombone =57
Tuba =58
MuteTrumpet =59
FrenchHorn =60
HitBrass =61
SynthBrass1 =62
SynthBrass2 =63
SopranoSax =64
AltoSax =65
TenorSax =66
BaritoneSax =67
Oboe =68
EnglishHorn =69
Bassoon =70
Clarinet =71
Piccolo =72
Flute =73
Recorder =74
WoodFlute =75
Bottle =76
Shakazul =77
Whistle =78
Ocarina =79
SquareWave =80
SawWave =81
Calliope =82
Chiflead =83
Charang =84
VoxLead =85
Lead5th =86
BassLead =87
Fantasia =88
WarmPad =89
Polysyn =90
Ghostie =91
BowGlass =92
MetalPad =93
HaloPad =94
Sweeper =95
Aurora =96
SoundTrack =97
Crystal =98
Atmosphear =99
FreshAir =100
Unicorn =101
Sweeper =102
StarTrak =103
Sitar =104
Banjo =105
Shamisen =106
Koto =107
Kalimba =108
BagPipes =109
Fiddle =110
Shannai =111
Carillon =112
Agogo =113
SteelDrm =114
WoodBlk =115
Taiko =116
Toms =117
Syntom =118
RevCymbal =119
Fx-Fret =120
Fx-Blow =121
Seashore =122
Jungle =123
Telephon =124
Helicopter =125
Applause =126
Gunshot =127
END
DEFINE KEYMAP "Drumset"
C 0 =0
C#0 =1
D 0 =2
D#0 =3
E 0 =4
F 0 =5
F#0 =6
G 0 =7
G#0 =8
A 0 =9
A#0 =10
B 0 =11
C 1 =12
C#1 =13
D 1 =14
D#1 =15
E 1 =16
F 1 =17
F#1 =18
G 1 =19
G#1 =20
A 1 =21
A#1 =22
B 1 =23
C 2 =24
C#2 =25
D 2 =26
D#2 27 Highq =27
E 2 28 Slap =28
F 2 29 Scratch1 =29
F#2 30 Scratch2 =30
G 2 31 Sticks =31
G#2 32 SqrClick =32
A 2 33 MetaClick=33
A#2 34 MetBell =34
B 2 35 Kick1 =35
C 3 36 Kick2 =36
C#3 37 StickRim =37
D 3 38 Snare1 =38
D#3 39 Claps =39
E 3 40 snare2 =40
F 3 41 tomlo2 =41
F#3 42 Hihatclos=42
G 3 43 Tomlo1 =43
G#3 44 HihatPd =44
A 3 45 Tommid2 =45
A#3 46 Hihatop =46
B 3 47 Tommid1 =47
C 4 48 Tomhi2 =48
C#4 49 Cymbalcrsh1 =49
D 4 50 Tomhi1 =50
D#4 51 Cymbalride1 =51
E 4 52 Cymbalchina =52
F 4 53 Cymbell =53
F#4 54 Tamborin =54
G 4 55 CymbalSplash=55
G#4 56 Cowbell =56
A 4 57 Cymbalcrash2=57
A#4 58 Vibslap =58
B 4 59 Cymbalride2 =59
C 5 60 Bongohi =60
C#5 61 Bongolo =61
D 5 62 Congahi1 =62
D#5 63 congahi2 =63
E 5 64 Congalo =64
F 5 65 Timbalehi=65
F#5 66 Timbalelo=66
G 5 67 Agogohi =67
G#5 68 Agogolo =68
A 5 69 Cabasa =69
A#5 70 Maracas =70
B 5 71 whistle1 =71
C 6 72 whistle2 =72
C#6 73 Guiro1 =73
D 6 74 Guiro2 =74
D#6 75 Clave =75
E 6 76 Woodblock1=76
F 6 77 Woodblock2=77
F#6 78 Cuica1 =78
G 6 79 Cuica2 =79
G#6 80 Triangle1=80
A 6 81 Triangle2=81
A#6 82 Shaker =82
B 6 83 Jingles =83
C 7 84 Belltree =84
C#7 85 Canstinet=85
D 7 86 Surdo1 =86
D#7 87 Surdo2 =87
E 7 =88
F 7 =89
F#7 =90
G 7 =91
G#7 =92
A 7 =93
A#7 =94
B 7 =95
C 8 =96
C#8 =97
D 8 =98
D#8 =99
E 8 =100
F 8 =101
F#8 =102
G 8 =103
G#8 =104
A 8 =105
A#8 =106
B 8 =107
C 9 =108
C#9 =109
D 9 =110
D#9 =111
E 9 =112
F 9 =113
F#9 =114
G 9 =115
G#9 =116
A 9 =117
A#9 =118
B 9 =119
C 10=120
C#10=121
D 10=122
D#10=123
E 10=124
F 10=125
F#10=126
G 10=127
END
DEFINE CHANNELMAP
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7
8 = 8
9 = 9
10 = 10
11 = 11
12 = 12
13 = 13
14 = 14
15 = 15
END

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20051223" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Bass-Mania" basetone="9" tab="1" >
<audiofileprocessor reversed="0" looped="0" eframe="0.999938" sframe="0" amp="100" src="misc/bass!.ogg" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.291" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords chordrange="1" arprange="5" arpdisabled="0" chord="0" chorddisabled="1" arpgate="200" arp="0" arpsyncmode="5" arptime="214" arpdir="4" />
<midi inputchannel="0" outputchannel="0" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="0" baseoct="4" vol="100" name="Fat Reversed Kick" basetone="9" >
<audiofileprocessor reversed="1" looped="1" eframe="19723" sframe="0" amp="100" src="drums/bassdrum01.ogg" />
<eldata fres="3" ftype="0" fcut="193" fwet="1" >
<elvol lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="0" baseoct="4" vol="128" name="Kick 4 your Subwoofer" basetone="9" >
<audiofileprocessor reversed="0" looped="0" eframe="12544" sframe="0" amp="100" src="drums/kick01.ogg" />
<eldata fres="2" ftype="2" fcut="58" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.1" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.394" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,6 @@
afppresetsdir = $(lmmsdatadir)/presets/AudioFileProcessor
afppresets_DATA = $(wildcard *.cs.xml)
EXTRA_DIST = $(afppresets_DATA)

View File

@@ -0,0 +1,5 @@
bipresetsdir = $(lmmsdatadir)/presets/BitInvader
bipresets_DATA = $(wildcard *.cs.xml)
EXTRA_DIST = $(bipresets_DATA)

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="1" >
<bitinvader sampleLength="128" interpolation="1" version="0.1" normalize="0" sampleShape="PKaOPeKT5r6uR+G9CtejvczMTL2PwvW8CtejvAAAAAAK16M8CtejPI/C9TzMzEw9j8J1PY/CdT2PwnU9j8J1PY/CdT2PwnU9j8J1PczMTD2PwvU8CtejPArXIzwK1yO8CtejvI/C9bzMzEy9KVyPvQrXo73sUbi9rkfhvY/C9b2PwvW9uB4FvpqZGb4K1yO+CtcjvnsULr7sUTi+XI9Cvs3MTL7NzEy+zcxMvs3MTL7NzEy+PgpXvq5HYb6uR2G+rkdhvh6Fa76PwnW+j8J1vo/Cdb6PwnW+j8J1vo/Cdb6PwnW+j8J1vo/Cdb6PwnW+j8J1vo/Cdb6PwnW+HoVrvq5HYb4+Cle+zcxMvlyPQr57FC6+CtcjvpqZGb64HgW+rkfhvc3MzL3sUbi9KVyPvczMTL0K1yO9j8L1vArXI7wK1yM8CtejPI/C9TyPwvU8CtcjPSlcjz3sUbg9rkfhPY/C9T24HgU+mpkZPgrXIz57FC4+7FE4PlyPQj7NzEw+PgpXPh6Faz64HoU+KVyPPuJ6lD5SuJ4+exSuPuxRuD5cj8I+hevRPq5H4T7Xo/A+j8L1PgAAAD+4HgU/zMwMP+F6FD8+Chc/9igcP2ZmJj/XozA/MzMzP5DCNT9I4To/XI9CP3A9Sj/NzEw/KVxPP4XrUT/helQ/9ihcP2ZmZj8=" />
<eldata fres="0.21" ftype="0" fcut="3840" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.33" ctlenvamt="0" latt="0" sus="0.49" lspd="0.7311" att="0.4" pdel="0" lamt="0" dec="0.897" userwavefile="" x100="1" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.274" ctlenvamt="1" latt="0" sus="0" lspd="0.01" att="0.494" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="1" rel="0.1" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.804" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
</eldata>
<arpandchords arpmode="1" chordrange="4" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="74" arpsyncmode="6" arptime="107" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="1" >
<bitinvader sampleLength="30" interpolation="1" version="0.1" normalize="1" sampleShape="AAAAAPMEtT56glo/eoJaP/IEtT72BLW+eoJav3iCWr/vBLW+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI/CdT3NzEw+rkfhPlK4Hj97FC4/pHA9P1yPQj89Clc/rkdhP65HYT/Xo3A/j8J1P0jhej8AAIA/" />
<eldata fres="0.43" ftype="1" fcut="1120" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.65" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.496" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="1" rel="0.274" ctlenvamt="1" latt="0" sus="0" lspd="0.01" att="0.494" pdel="0" lamt="1" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="4" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="0" >
<bitinvader sampleLength="8" interpolation="1" version="0.1" normalize="0" sampleShape="AAAAAPMENT8AAIA/8wQ1Py69u7P1BDW/AACAv+8ENb8=" />
<eldata fres="0.43" ftype="0" fcut="1280" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.351" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.676" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0.494" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="4" arprange="1" arpdisabled="1" chord="0" chorddisabled="0" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="0" >
<bitinvader sampleLength="128" interpolation="1" version="0.1" normalize="1" sampleShape="xUHivbW52r2yLVm+IY2QvlbDqr5qnbS+bhe3vm5Bt74UH4q+NgEbvlF9KL7+kX6+ILePviYNk74+YZ++W4utvighlL65edy9rZnWPeoZdT45f5w+VgurPjr5nD55STw+qsHUPIoBRbyeyc491VlqPszNZT7coW09IAEQvgYzg75QAai+fAO+vixDlr5++b692JHrPfYlez7W9Wo+vNFdPRRhCr7gOXC+JN+Rvui5c76P4Ue9IYUQPuepcz4vi5c+WCesPiNFkT6CycA9tiHbvao9Vb4GT4O+tZVavkuxJb2ygdg9Y1UxPuBZcD7EDWI+QumgPXQJur2WFUu+CWOEvkThob5y9bi+iEPEvo+Fx75vb7e+RrGivi2Zlr60KVq+8oF4vWjhsz1+0T4+dqk6PsoBZT2jUdG9qMVTvh9zj75dc66+MuuYvv7J/r3TwWk9hClCPjIjmT40UZo+FbkKPii5k72VcUq+ED2Ivi7/lr6+YV++KaEUvS7xFj4G7YI+NCmaPj4Bnz7evW4+luFKPf+R/73AwV++H2ePvlV1qr5owbO+VFmqvlY9q756rby+RK2hvgAtAL5+Kb894oVxPtgRbD4YYYw9/oH/vfdpe75Bc6C+WE2svvJZeb5F8SK9G5UNPvbFej5Ep6E+HhWPPrah2j2YWcy97ml3vtz1bb4=" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.727" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.517" pdel="0" lamt="0" dec="0" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="0" >
<bitinvader sampleLength="128" interpolation="0" version="0.1" normalize="0" sampleShape="AAAAADD7SD02vcg9g0AWPsLFRz7Nz3g+MaCUPtR8rD4W78M+gOjaPupa8T49nAM/2jkOP8B/GD+aZyI/SusrP/MENT/6rj0/A+RFPwKfTT8y21Q/G5RbP5jFYT/Ya2c/XoNsPwgJcT8L+nQ/+FN4P78Uez+sOn0/bcR+Pw+xfz8AAIA/D7F/P23Efj+sOn0/vhR7P/hTeD8K+nQ/CAlxP16DbD/Ya2c/l8VhPxqUWz8w21Q/Ap9NPwTkRT/4rj0/8wQ1P0jrKz+ZZyI/vX8YP9k5Dj89nAM/5lrxPn/o2j4Q78M+0nysPjOglD7Fz3g+wcVHPnpAFj4wvcg9/fpIPS69u7Ms+0i9R73IvYVAFr7NxUe+0M94vjiglL7XfKy+Fe/DvoXo2r7rWvG+P5wDv9s5Dr/Afxi/m2civ0rrK7/1BDW/+q49vwPkRb8Dn02/NNtUvxmUW7+YxWG/2Wtnv2GDbL8ICXG/C/p0v/lTeL++FHu/rDp9v23Efr8PsX+/AACAvw+xf79txH6/rDp9v74Ue7/3U3i/Cfp0vwgJcb9dg2y/1Wtnv5jFYb8ZlFu/L9tUvwOfTb8D5EW/9649v+8ENb9K6yu/l2civ7x/GL/bOQ6/PJwDv+Na8b526Nq+Fe/Dvs98rL4ooJS+z894vrzFR750QBa+BL3IvSb7SL0=" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="0" >
<bitinvader sampleLength="128" interpolation="1" version="0.1" normalize="0" sampleShape="kNtHv4tFRb+EOUK/ftM+v3Y1O79vaTe/Z3Mzv19tL79Xdyu/T4Mnv0e1I79ACSC/OaEcvzNnGb8tbRa/J70TvyNNEb8eNQ+/G10NvxjRC78Vlwq/E58JvxLxCL8Rgwi/EU8IvxFZCL8RkQi/Eu0IvxN3Cb8UHwq/FucKvxexC78ZlQy/G3cNvx1bDr8fRw+/ICsQvyLxEL8jsxG/JWcSvyYHE78ngRO/KOETvygpFL8pWRS/KXEUvylnFL8pSxS/KBUUvyjHE78naxO/JusSvyVhEr8jvRG/IgkRvyFDEL8fdw+/HaMOvxu9Db8azQy/GN8LvxbnCr8U6wm/Eu8IvxD5B78O/wa/DAUGvwoXBb8IKwS/B0MDvwVbAr8DdwG/AZsAv/+N/7787f2++Vn8vvbF+r7yQfm+8NX3vu119r7qDfW+553zvuRB8r7i2fC+34nvvtwp7r7Zvey+12HrvtQZ6r7Szei+z23nvswV5r7KzeS+x1XjvsTZ4b7BXeC+vs3evrtF3b63mdu+tBHavrGF2L6u9da+q2XVvqjN076kMdK+oZnQvp7lzr6aLc2+l33LvpO9yb6Q8ce+jCXGvoldxL6FmcK+gsHAvn7tvr56Cb2+d027vnNxub5vpbe+bMm1vmj1s75kIbK+YVGwvl2Frr5Zpay+Vs2qvlINqb4=" />
<eldata fres="0.43" ftype="6" fcut="1120" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.351" ctlenvamt="0" latt="0" sus="0" lspd="0.7311" att="0.058" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="1" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.274" ctlenvamt="1" latt="0" sus="0" lspd="0.01" att="0.494" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="1" chordrange="4" arprange="1" arpdisabled="0" chord="0" chorddisabled="1" arpgate="100" arp="74" arpsyncmode="6" arptime="107" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="1" >
<bitinvader sampleLength="30" interpolation="1" version="0.1" normalize="1" sampleShape="AAAAAPMEtT56glo/eoJaP/IEtT72BLW+eoJav3iCWr/vBLW+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" />
<eldata fres="0.43" ftype="0" fcut="1280" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.351" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.22" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.676" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0.494" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="4" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060222" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="pluck" basetone="9" tab="1" >
<bitinvader sampleLength="128" interpolation="1" version="0.1" normalize="1" sampleShape="QAGguf+B/zwBYYA9gsHAPQF5AD5BYSA+gClAPr+5Xz7+CX8+HgWPPj1pnj5bma0+eZm8Ppdlyz60+dk+0VXoPu1x9j4EJQI/EukIPx+NDz8sCRY/OVkcP0WFIj9RfSg/XU8uP2jrMz9zXTk/fZc+P4elQz+Re0g/mh9NP6OJUT+rvVU/s7dZP7t9XT/CCWE/yVVkP89xZz/VR2o/2ulsP99Nbz/jc3E/52FzP+oNdT/tg3Y/77l3P/G3eD/zdXk/9P15P/VHej/1VXo/9Ct6P/TJeT/yLXk/8V14P+9Tdz/sF3Y/6aV0P+b/cj/iKXE/3h9vP9rpbD/VhWo/0PNnP8o3ZT/FUWI/v0VfP7gRXD+xuVg/q0NVP6OnUT+c7U0/lBdKP4wnRj+EIUI/fP89P3TLOT9rhzU/YjExP1rNLD9RXSg/zczMPc3MzD3NzMw9j8J1PY/CdT0AAAAACtcjvQrXI70K1yO9CtcjvQrXo70K16O9CtejvY/C9b2I00O/kNNHv5e3S7+fe0+/pi1Tv625Vr+0I1q/u2tdv8GRYL/HjWO/zWFmv9ILab/Xi2u/3Nttv+D9b7/k83G/57Vzv+tDdb/to3a/8Ml3v/G7eL/zd3m/9Pt5v/VFer/1VXq/9C96v/TLeb/yLXm/8VV4v+5Bd7/s73W/6WF0v+WZcr8=" />
<eldata fres="1.17" ftype="0" fcut="2400" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.39" ctlenvamt="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.391" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="1" rel="0" ctlenvamt="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.18" userwavefile="" x100="0" lshp="0" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="2" arprange="1" arpdisabled="1" chord="0" chorddisabled="0" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="1" send="0" inports="80:0 CS46XX:CS46XX" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="0" >
<bitinvader sampleLength="128" interpolation="1" version="0.1" normalize="0" sampleShape="4lVxvqJBUb6xfVi+j0VHvkFRIL7UGeq9Z2GzvV4hr72iwdC98Kn3vQjdA77+2f697NH1vQuFBb5JhSS+nEVOvuDRb77vXXe+v0lfvmqlNL4eCQ++Ar0Avh6tDr5cKS6+lWVKvqjZU76RVUi+X2kvvighFL71Qfq9pMHRvURhor2CAUG9OAGcu2xxNj2O2cY9NbEaPqjNUz4O+4Y+Q1+hPmgLtD52B7s+bbG2PlzJrT5Vf6o+aDu0Ppdbyz7SO+k+BPsBPxTCCT8WCws/ECUIPwgcBD8AOQA/7Af2PsWJ4j6Ff8I+NVWaPtaBaj5+ST8+gMk/Pst5ZT4ax4w+QEGgPkpBpT47cZ0+Ia2QPg7Thj4EC4I+9k17PsphZT50BTo+75n3PbRxWj24Ady7jFFGvRrZjL0gSZC9x1FjvZzBzbwc4Y08DWmGPcGx4D0YUQw+IKEPPvzJ/T2fkc89YGmwPV5Brz2KKcU9sKHXPZqhzD06EZ09YuEwPZpBTTz7gf27bAG2vGPBMb1Syai9HkUPvp15Tr72vXq+BN+Bvtida76KFUW+UjkpvlOFKb6JVUS+0JlnvvzVfb70JXq+v6VfvnwpPr5MaSa+QGUgvk5hJ75dsS6+WDUsvjxVHr4XeQu+8XH4vdOR6b3S0ei95qnyvQotBb48nR2+jr1Gvvr9fL4=" />
<eldata fres="0.5" ftype="0" fcut="9120" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.727" ctlenvamt="1" latt="0" sus="0" lspd="0.1" att="0.657" pdel="0" lamt="0" dec="0" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="1" >
<bitinvader sampleLength="68" interpolation="0" version="0.1" normalize="0" sampleShape="W/iCvqwtgL2mPdg+iodDP+wPEz9vmss5NYLSvr5Zp764oRs9I/l+PjGqND73GnY9WMfrPUu8ej6Rqlk+PSsXO54U/L10nDk97x62Pmty2z4tfu49K3SIvvHCjb7lk/090lz+Pl543T6v5qQ8QySRvjVzN75K9Es+qUf9Pr9J8D7l4AY+KxKgvlRRD78AQsa+9qL8PTwnFj+X3yc/b+W2PlNf0zsVwCq+fEhGvtRdQL4b0Bu+nLoCvc53Fz63MJY+ch6qPq4daj76RsO87J6ovjZj8L6GTpO+gpDEPXm/tT5TBo4+iBUcvXS8nr608KW+QNtwvf8ioz5qDgY/iTKrPksJMr70uhu/nh8Xv01bA74=" />
<eldata fres="0.43" ftype="4" fcut="1120" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="0" rel="0.65" ctlenvamt="0" latt="0" sus="0" lspd="0.7311" att="0.496" pdel="0" lamt="1" dec="0.499" userwavefile="" x100="1" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.274" ctlenvamt="1" latt="0" sus="0" lspd="0.01" att="0.494" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="4" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="7" vol="100" name="Default" basetone="9" tab="0" >
<bitinvader sampleLength="128" interpolation="1" version="0.1" normalize="1" sampleShape="2kpgviIPhz3VQAM+oJkyu8pZrr5y/Ta/5nhxv9QFf7+cp3a//hNovwSBTb+OOR+/s2TIvruEJL5Oy2I9DDSIPmge7D4MVx0/pyQ5P5aHTz8Qp2M/XIhxP/SJdT/mnnI/vbltP2jiZj+x51o/F5pJP9gINj84YiE/iLIJP/+T3D5WAaQ+bGVePt5p8j06A3o81CG5vQSrP77SmIm+xamuvjpD1L5u/vu+wEURv+w7Ib878Su/XHgxv3ClM7+oLzS/HPIyv4ZlLr/YxSW/wR0avzoZDb+KHv++RRrjvoILxr7yV6e+DyCFvhxUO74+g8a9lA3luyFIqz0CcTM+qPOIPq+Rtj68guA++kkDP1jHFD8MlyQ/vC4yP8h7PT/ZxEY/uqdNP9osUT9WVlE/Ct5PP56cTj8xiU0/zBpLPzCMRj9S4UA/EWU7P7zTNT8MlC4/AWwkP/B3Fz/0qQg/ZfLxPrRG0j5sRbM+YtmUPgeFaz7TSik+YFjFPaeVzTw4qT69Je/yvQgvRb4juYm+LTGxvrwJ176QXPm+WKkLv5mbGL924iO/Fsstv16RNr9kaD6/HV9Fv3NZS7+CQFC/wBJUvxubVr/NUle/VvdVvwo8U78WaFC/qfpNv4QBS79SKUa/ykU/vwxcN7+UOy+/upQmv4KdHL+EJRG/OqYEv9Ya774=" />
<eldata fres="1.13" ftype="0" fcut="4960" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="1" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0.674" pdel="0" lamt="0" dec="0.499" userwavefile="instruments/bassslap01.ogg" x100="0" lshp="4" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="3" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="1" >
<bitinvader sampleLength="8" interpolation="0" version="0.1" normalize="0" sampleShape="+MrwPiRn7r4WUV6/xEkNv429tL6ofBA+P7uAPtTiwD4=" />
<eldata fres="0.43" ftype="0" fcut="1280" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.351" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0.164" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="0.885" rel="0.676" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0.494" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="2" arprange="1" arpdisabled="1" chord="0" chorddisabled="0" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="1" >
<bitinvader sampleLength="128" interpolation="1" version="0.1" normalize="0" sampleShape="cAE4OuAB8DkIAYS6gAFAugABALmgAdC5AAEAuiABEDp4Abw6UAEoOggBhLogAZC6gAHAuAgBhLpAASC7oAFQugABgDqAAUA5gAHAOJABSLpaAa27gAFAvHLBuLxBgSC9xCFive4hd72LYUW9GCEMvUZBI70UMYq9+YH8vZIpSb7DkWG+S4Elvnwhvr044Zu9MbGYvQlRhL2JkcS9UjEpvrABWL7rgXW+EhWJvgYFg765sVy+ftk+vj9pH74dUQ6+W2ktvrmxXL4G1YK+J0mTvhuNjb7owXO+0DFovsYRY76teVa+31lvvg2Nhr7iQXG+ujldvgmphL4G7YK+IDkQvjpBHb3sAfa7dsE6PeQB8j0CMQE+SAGkPSWBkjxSAam7PNGdPWt5NT6dWU4+zhlnPgLJgD6uyVY+eWE8PsBBYD7bSW0+5glzPhGdiD4DeYE+23ltPi9Jlz5hebA+Fh2LPpGRSD7RmWg+Gu2MPgYBgz6+2V4+vglfPvD5dz7haXA+cgk5Pi15Fj4lmRI+VvGqPbRB2rzcMe69O2kdvsOh4b3jYXG9J1GTvS1hFr0PYQc9KAGUuyYBk71Voaq9XNGtvWrxtL0CKQG+c2E5vn4hP76RYUi+8Ul4viDZj74RmYi+dBE6vgr5BL4wIRi+q5HVvYeBw7wOAYe8gEFAvamR1L0=" />
<eldata fres="0.5" ftype="0" fcut="9120" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.727" ctlenvamt="1" latt="0" sus="0.717" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.673" userwavefile="" x100="0" lshp="0" hold="0.37" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060123" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="6" vol="100" name="Default" basetone="9" tab="0" >
<bitinvader sampleLength="56" interpolation="1" version="0.1" normalize="1" sampleShape="AAAAAKJN5T2H3GM+VxqpPgMm3j5BMwg/CJ0fP/MENT89Ctc+XI/CPlyPwj57FK4+CtejPpqZmT4pXI8+rkdhPq5HYT7NzEw+zcxMPo/CdT4pXI8+CtejPgrXoz57FK4+7FG4PlyPwj6H3GM+nE3lPS69u7OzTeW9k9xjvlYaqb4DJt6+rkfhvq5H4b49Cte+zczMvs3MzL5cj8K+exSuvnsUrr57FK6+CtejvpqZmb4pXI++KVyPvilcj74pXI++KVyPvilcj74pXI++CtejvuxRuL5cj8K+gtxjvpBN5b0=" />
<eldata fres="0.21" ftype="6" fcut="2720" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.528" ctlenvamt="0" latt="0" sus="0" lspd="0.7311" att="0" pdel="0" lamt="0" dec="0.897" userwavefile="" x100="1" lshp="0" hold="0.234" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.274" ctlenvamt="0" latt="0" sus="0" lspd="0.0199" att="0.494" pdel="0" lamt="1" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0" />
</eldata>
<arpandchords arpmode="1" chordrange="4" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="74" arpsyncmode="6" arptime="107" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

2
data/presets/Makefile.am Normal file
View File

@@ -0,0 +1,2 @@
SUBDIRS = AudioFileProcessor BitInvader Organic PluckedStringSynth TripleOscillator VeSTige

View File

@@ -0,0 +1,6 @@
psspresetsdir = $(lmmsdatadir)/presets/Organic
psspresets_DATA = $(wildcard *.cs.xml)
EXTRA_DIST = $(psspresets_DATA)

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="0" >
<organic harmonic4="3" wavetype1="0" harmonic5="4" wavetype2="0" vol0="100" harmonic6="5" wavetype3="0" vol1="100" num_osc="8" harmonic7="6" wavetype4="0" vol2="100" wavetype5="0" vol3="100" detune0="0" wavetype6="0" vol4="100" detune1="0" wavetype7="0" vol5="100" detune2="0" vol6="100" detune3="0" vol7="100" detune4="0" pan0="0" detune5="0" pan1="0" detune6="0" pan2="0" detune7="0" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="100" pan6="0" harmonic1="0.75" foldback="0" pan7="0" harmonic2="1" harmonic3="2" wavetype0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="0" >
<organic harmonic4="3" wavetype1="0" harmonic5="4" wavetype2="0" vol0="100" harmonic6="5" wavetype3="0" vol1="100" num_osc="8" harmonic7="6" wavetype4="0" vol2="100" wavetype5="0" vol3="0" detune0="0" wavetype6="0" vol4="0" detune1="0" wavetype7="0" vol5="0" detune2="0" vol6="0" detune3="0" vol7="0" detune4="0" pan0="0" detune5="0" pan1="0" detune6="0" pan2="0" detune7="0" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="100" pan6="0" harmonic1="0.75" foldback="0" pan7="0" harmonic2="1" harmonic3="2" wavetype0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="24" name="Default" basetone="9" tab="0" >
<organic harmonic4="3" wavetype1="0" harmonic5="4" wavetype2="0" vol0="100" harmonic6="5" wavetype3="0" vol1="77" num_osc="8" harmonic7="6" wavetype4="0" vol2="100" wavetype5="0" vol3="73" detune0="0" wavetype6="0" vol4="55" detune1="0" wavetype7="0" vol5="47" detune2="16" vol6="73" detune3="0" vol7="100" detune4="26" pan0="0" detune5="0" pan1="0" detune6="40" pan2="0" detune7="0" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="166" pan6="0" harmonic1="0.75" foldback="0" pan7="0" harmonic2="1" harmonic3="2" wavetype0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="0" >
<organic harmonic4="3" wavetype1="0" harmonic5="4" wavetype2="0" vol0="5" harmonic6="5" wavetype3="0" vol1="64" num_osc="8" harmonic7="6" wavetype4="0" vol2="66" wavetype5="0" vol3="67" detune0="44" wavetype6="0" vol4="32" detune1="0" wavetype7="0" vol5="32" detune2="38" vol6="4" detune3="38" vol7="0" detune4="36" pan0="0" detune5="40" pan1="0" detune6="26" pan2="0" detune7="24" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="100" pan6="0" harmonic1="0.75" foldback="0" pan7="0" harmonic2="1" harmonic3="2" wavetype0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.471" ctlenvamt="0" latt="0" sus="0.313" lspd="0.1" att="0.241" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="0" tab="1" >
<organic harmonic4="3" wavetype1="3" harmonic5="4" wavetype2="3" vol0="79" harmonic6="5" wavetype3="3" vol1="72" num_osc="8" harmonic7="6" wavetype4="0" vol2="31" wavetype5="0" vol3="77" detune0="6" wavetype6="4" vol4="0" detune1="0" wavetype7="0" vol5="13" detune2="14" vol6="20" detune3="6" vol7="69" detune4="0" pan0="0" detune5="0" pan1="0" detune6="-60" pan2="0" detune7="52" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="100" pan6="0" harmonic1="0.75" foldback="0" pan7="0" harmonic2="1" harmonic3="2" wavetype0="3" />
<eldata fres="0.89" ftype="0" fcut="5600" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.404" ctlenvamt="0" latt="0" sus="0.329" lspd="0.1" att="0.247" pdel="0" lamt="0" dec="0.702" userwavefile="" x100="0" lshp="0" hold="0.329" />
<elcut lfosyncmode="0" lpdel="0" amt="0.595" rel="0.1" ctlenvamt="1" latt="0" sus="0.499" lspd="0.0496" att="0.346" pdel="0" lamt="1" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="0" >
<organic harmonic4="3" wavetype1="2" harmonic5="4" wavetype2="5" vol0="100" harmonic6="5" wavetype3="1" vol1="100" num_osc="8" harmonic7="6" wavetype4="2" vol2="100" wavetype5="5" vol3="100" detune0="8" wavetype6="0" vol4="100" detune1="0" wavetype7="0" vol5="100" detune2="12" vol6="100" detune3="0" vol7="0" detune4="8" pan0="0" detune5="0" pan1="0" detune6="-2" pan2="0" detune7="0" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="100" pan6="0" harmonic1="0.75" foldback="0.26" pan7="0" harmonic2="1" harmonic3="2" wavetype0="4" />
<eldata fres="1.19" ftype="0" fcut="320" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.708" ctlenvamt="0" latt="0" sus="0.039" lspd="0.1" att="0.363" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="1" rel="0.696" ctlenvamt="0" latt="0" sus="0.058" lspd="0.1" att="0.695" pdel="0" lamt="0" dec="0" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Default" basetone="9" tab="1" >
<organic harmonic4="3" wavetype1="1" harmonic5="4" wavetype2="1" vol0="37" harmonic6="5" wavetype3="0" vol1="81" num_osc="8" harmonic7="6" wavetype4="5" vol2="100" wavetype5="0" vol3="24" detune0="0" wavetype6="0" vol4="52" detune1="0" wavetype7="0" vol5="0" detune2="0" vol6="0" detune3="-4" vol7="0" detune4="12" pan0="0" detune5="0" pan1="0" detune6="12" pan2="0" detune7="0" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="200" pan6="6" harmonic1="0.75" foldback="0.06" pan7="0" harmonic2="1" harmonic3="2" wavetype0="1" />
<eldata fres="0.37" ftype="0" fcut="960" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.576" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.345" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.116" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="2" arprange="1" arpdisabled="1" chord="0" chorddisabled="0" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="0" >
<organic harmonic4="3" wavetype1="0" harmonic5="4" wavetype2="0" vol0="0" harmonic6="5" wavetype3="0" vol1="1" num_osc="8" harmonic7="6" wavetype4="0" vol2="100" wavetype5="0" vol3="5" detune0="0" wavetype6="0" vol4="1" detune1="0" wavetype7="0" vol5="0" detune2="0" vol6="0" detune3="0" vol7="0" detune4="0" pan0="0" detune5="0" pan1="0" detune6="0" pan2="0" detune7="0" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="200" pan6="0" harmonic1="0.75" foldback="0" pan7="0" harmonic2="1" harmonic3="2" wavetype0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060209" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Default" basetone="9" tab="2" >
<organic harmonic4="3" wavetype1="3" harmonic5="4" wavetype2="3" vol0="100" harmonic6="5" wavetype3="0" vol1="100" num_osc="8" harmonic7="6" wavetype4="0" vol2="100" wavetype5="0" vol3="1" detune0="0" wavetype6="0" vol4="5" detune1="0" wavetype7="0" vol5="10" detune2="0" vol6="33" detune3="0" vol7="23" detune4="0" pan0="-20" detune5="0" pan1="20" detune6="0" pan2="0" detune7="4" pan3="0" pan4="0" pan5="0" harmonic0="0.5" vol="70" pan6="0" harmonic1="0.75" foldback="0.75" pan7="0" harmonic2="1" harmonic3="2" wavetype0="3" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.169" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0" userwavefile="" x100="0" lshp="0" hold="0.171" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0.365" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="0" baseoct="4" vol="100" name="Default" basetone="9" >
<pluckedstringsynth pick="0" pickup="0.05" />
<eldata fres="0.1" ftype="0" fcut="16000" fwet="0" >
<elvol lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,6 @@
psspresetsdir = $(lmmsdatadir)/presets/PluckedStringSynth
psspresets_DATA = $(wildcard *.cs.xml)
EXTRA_DIST = $(psspresets_DATA)

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="6" vol="100" name="Amazing Bubbles 2" basetone="11" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="5" coarse1="-12" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="0" vol0="200" vol1="200" finel0="0" vol2="200" finel1="0" finel2="0" modalgo1="2" stphdetun0="292" pan0="0" modalgo2="1" stphdetun1="56" pan1="0" stphdetun2="70" pan2="0" phoffset0="0" phoffset1="49" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="4" coarse0="-12" />
<eldata fres="0.8" ftype="6" fcut="483" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.325" latt="0" sus="0" lspd="0.2475" att="0" pdel="0" lamt="0.18" dec="0.242" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0" latt="0" sus="0.999" lspd="0.01" att="0" pdel="0" lamt="0.64" dec="0.999" x100="0" lshp="2" hold="0" />
<elres lpdel="0" amt="0" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.999" x100="0" lshp="0" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="43" name="Analog Dreamz" basetone="9" >
<tripleoscillator userwavefile1="" wavetype1="2" coarse1="-12" userwavefile2="" wavetype2="2" coarse2="-24" vol0="100" vol1="100" finel0="-18" vol2="100" finel1="14" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="2" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="15" finer1="-5" finer2="0" userwavefile0="" wavetype0="2" coarse0="-12" />
<eldata fres="4.73" ftype="1" fcut="95" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.211" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0.46" rel="0.184" latt="0" sus="0.718" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.629" x100="0" lshp="0" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="5" vol="100" name="Analog Times" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="2" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="-14" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="2" stphdetun1="50" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="13" finer2="-3" userwavefile0="samples/empty.wav" wavetype0="2" coarse0="0" />
<eldata fres="0.01" ftype="6" fcut="1118" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.214" latt="0" sus="0" lspd="0.0917" att="0" pdel="0" lamt="0" dec="0.297" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0.655" rel="0" latt="0" sus="0.999" lspd="0.67" att="0" pdel="0" lamt="0.145" dec="0.223" x100="0" lshp="1" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.01" att="0" pdel="0" lamt="-0.00599995" dec="0.5" x100="0" lshp="1" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="3" chord="0" arpgate="100" arp="8" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="82" name="Analogous" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="2" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="7" vol0="100" vol1="100" finel0="0" vol2="100" finel1="10" finel2="-2" modalgo1="2" stphdetun0="232" pan0="9" modalgo2="1" stphdetun1="95" pan1="-20" stphdetun2="109" pan2="10" phoffset0="74" phoffset1="280" phoffset2="82" finer0="0" finer1="16" finer2="-3" userwavefile0="samples/empty.wav" wavetype0="2" coarse0="-12" />
<eldata fres="3" ftype="0" fcut="1205" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.375" latt="0" sus="0" lspd="0.1" att="0.043" pdel="0" lamt="0" dec="0.999" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="1" rel="0" latt="0" sus="0.999" lspd="0.6094" att="0" pdel="0" lamt="0" dec="0.218" x100="0" lshp="1" hold="0" />
<elres lpdel="0" amt="0" rel="0" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="3" chord="0" arpgate="71" arp="0" arptime="174" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.1-cvs20051215" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Arp King" basetone="9" tab="2" >
<tripleoscillator userwavefile1="" wavetype1="3" coarse1="-12" userwavefile2="" wavetype2="1" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="57" finel1="0" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="2" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="" wavetype0="2" coarse0="-24" />
<eldata fres="0.29" ftype="1" fcut="877" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.209" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.3811" att="0" pdel="0" lamt="0.505" dec="0.499" x100="0" lshp="1" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords chordrange="1" arprange="2" arpdisabled="0" chord="0" chorddisabled="0" arpgate="100" arp="0" arpsyncmode="0" arptime="120" arpdir="1" />
<midi inputchannel="0" outputchannel="0" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="0" baseoct="4" vol="100" name="Arpeggio 1" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="2" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="-12" vol0="49" vol1="54" finel0="0" vol2="14" finel1="0" finel2="-14" modalgo1="2" stphdetun0="247" pan0="0" modalgo2="0" stphdetun1="109" pan1="0" stphdetun2="50" pan2="0" phoffset0="0" phoffset1="271" phoffset2="0" finer0="0" finer1="0" finer2="13" userwavefile0="samples/empty.wav" wavetype0="3" coarse0="0" />
<eldata fres="0.66" ftype="0" fcut="0" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.234" latt="0" sus="0" lspd="0.0917" att="0" pdel="0" lamt="0" dec="0.297" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="1" rel="0" latt="0" sus="0.999" lspd="0.767" att="0" pdel="0" lamt="0" dec="0.226" x100="0" lshp="1" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.01" att="0" pdel="0" lamt="-0.00599995" dec="0.5" x100="0" lshp="1" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="3" chord="0" arpgate="142" arp="0" arptime="102" arpdir="1" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9beta2" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="33" name="Arpeggio 2" basetone="9" tab="2" >
<tripleoscillator userwavefile1="empty.wav" wavetype1="3" coarse1="0" userwavefile2="empty.wav" wavetype2="2" coarse2="12" vol0="100" vol1="100" finel0="-10" vol2="115" finel1="10" finel2="-2" modalgo1="2" stphdetun0="232" pan0="9" modalgo2="2" stphdetun1="110" pan1="-20" stphdetun2="109" pan2="10" phoffset0="87" phoffset1="280" phoffset2="82" finer0="13" finer1="16" finer2="4" userwavefile0="empty.wav" wavetype0="2" coarse0="-12" />
<eldata fres="0.46" ftype="4" fcut="1250" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.167" latt="0" sus="0" lspd="0.1" att="0.048" pdel="0" lamt="0" dec="0.999" x100="0" lshp="0" hold="0" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.6094" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="1" hold="0.5" />
<elres lpdel="0" amt="0" rel="0" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="2" arprange="2" chord="0" arpgate="51" arp="0" arptime="100" arpdir="2" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.4-cvs20060222" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Beam" basetone="9" tab="2" >
<tripleoscillator userwavefile1="" wavetype1="0" coarse1="0" userwavefile2="" wavetype2="0" coarse2="0" vol0="33" vol1="33" finel0="0" vol2="33" finel1="0" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="2" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="" wavetype0="0" coarse0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.1" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="0" chordrange="1" arprange="6" arpdisabled="0" chord="0" chorddisabled="1" arpgate="87" arp="67" arpsyncmode="0" arptime="100" arpdir="4" />
<midi inputchannel="0" outputchannel="1" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="100" name="Bell" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="4" coarse1="12" userwavefile2="samples/empty.wav" wavetype2="3" coarse2="-12" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="0" stphdetun0="0" pan0="0" modalgo2="0" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="1" coarse0="0" />
<eldata fres="0.01" ftype="6" fcut="827" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.214" latt="0" sus="0.707" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.379" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0.41" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.221" x100="0" lshp="0" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="100" name="Bell 2" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="3" coarse1="12" userwavefile2="samples/empty.wav" wavetype2="4" coarse2="-12" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="0" stphdetun0="0" pan0="0" modalgo2="0" stphdetun1="86" pan1="0" stphdetun2="57" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="1" coarse0="0" />
<eldata fres="0.01" ftype="6" fcut="827" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.214" latt="0" sus="0.707" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.379" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0.41" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.221" x100="0" lshp="0" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.0" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="4" vol="100" name="Church Organ" basetone="9" tab="1" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="5" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="22" finel2="-25" modalgo1="1" stphdetun0="66" pan0="0" modalgo2="0" stphdetun1="275" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="12" finer2="-13" userwavefile0="samples/empty.wav" wavetype0="5" coarse0="0" />
<eldata fres="1" ftype="0" fcut="6028" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.095" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.019" pdel="0" lamt="0" dec="0.374" x100="0" lshp="0" hold="0" />
<elcut lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0" ctlenvamt="0" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="4" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.2-cvs20060115" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="24" name="Church Organ 2" basetone="9" tab="1" >
<tripleoscillator userwavefile1="" wavetype1="0" coarse1="0" userwavefile2="" wavetype2="0" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="2" stphdetun1="119" pan1="0" stphdetun2="249" pan2="0" phoffset0="0" phoffset1="70" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="" wavetype0="0" coarse0="0" />
<eldata fres="0.01" ftype="6" fcut="13120" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.234" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.078" pdel="0" lamt="0" dec="0" userwavefile="" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" userwavefile="" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords arpmode="1" chordrange="4" arprange="1" arpdisabled="1" chord="0" chorddisabled="0" arpgate="100" arp="0" arpsyncmode="0" arptime="164" arpdir="1" />
<midi inputchannel="0" outputchannel="1" receive="1" send="0" inports="80:0 CS46XX:CS46XX" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="0" baseoct="4" vol="60" name="Crystallo" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="4" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="5" coarse2="12" vol0="80" vol1="90" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="2" stphdetun0="271" pan0="0" modalgo2="2" stphdetun1="150" pan1="0" stphdetun2="234" pan2="0" phoffset0="0" phoffset1="108" phoffset2="36" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="5" coarse0="12" />
<eldata fres="0.01" ftype="6" fcut="4907" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.396" latt="0" sus="0.381" lspd="0.0917" att="0.021" pdel="0" lamt="0" dec="0.191" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="1" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.01" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="1" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="100" name="Default" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="0" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="2" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="0" coarse0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.1-cvs20051215" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="38" name="Detuned Synced FM Bass" basetone="9" tab="2" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="2" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="-14" finel2="0" modalgo1="0" stphdetun0="0" pan0="0" modalgo2="3" stphdetun1="50" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="13" finer2="-3" userwavefile0="samples/empty.wav" wavetype0="2" coarse0="0" />
<eldata fres="0.88" ftype="6" fcut="686" fwet="0" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.18" ctlenvamt="0" latt="0" sus="0" lspd="0.0917" att="0" pdel="0" lamt="0" dec="0.296" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0.33" rel="0" ctlenvamt="0" latt="0" sus="0.998" lspd="0.767" att="0" pdel="0" lamt="0.47" dec="0.223" x100="0" lshp="1" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.01" att="0" pdel="0" lamt="-0.01" dec="0.499" x100="0" lshp="1" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="2" arpdisabled="0" chord="0" chorddisabled="0" arpgate="150" arp="0" arpsyncmode="0" arptime="177" arpdir="1" />
<midi inputchannel="0" outputchannel="0" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="100" name="Distorted FM-Bass" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="4" coarse1="12" userwavefile2="samples/empty.wav" wavetype2="4" coarse2="-12" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="0" stphdetun0="0" pan0="0" modalgo2="0" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="1" coarse0="0" />
<eldata fres="0.01" ftype="6" fcut="827" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.347" latt="0" sus="0.707" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.379" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.221" x100="0" lshp="0" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="200" name="Distorted FM-Bass 2" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="4" coarse1="12" userwavefile2="samples/empty.wav" wavetype2="4" coarse2="-12" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="0" stphdetun0="0" pan0="0" modalgo2="0" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="1" coarse0="0" />
<eldata fres="0.01" ftype="6" fcut="827" fwet="0" >
<elvol lpdel="0" amt="1" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.011" x100="0" lshp="0" hold="0.092" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.221" x100="0" lshp="0" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="3" chord="0" arpgate="100" arp="8" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="73" name="Dull Bell Arp" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="0" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="0" modalgo1="1" stphdetun0="0" pan0="0" modalgo2="1" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="146" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="0" coarse0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.24" latt="0" sus="0.584" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.207" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="2" chord="0" arpgate="100" arp="6" arptime="100" arpdir="4" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="33" name="E-Organ" basetone="2" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="0" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="-18" modalgo1="1" stphdetun0="0" pan0="0" modalgo2="1" stphdetun1="125" pan1="0" stphdetun2="59" pan2="0" phoffset0="0" phoffset1="265" phoffset2="146" finer0="0" finer1="0" finer2="11" userwavefile0="samples/empty.wav" wavetype0="0" coarse0="-7" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.215" latt="0" sus="0" lspd="0.1" att="0.079" pdel="0" lamt="0" dec="0.394" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="3" arprange="3" chord="0" arpgate="100" arp="8" arptime="150" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="5" vol="69" name="E-Piano" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="2" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="1" modalgo1="2" stphdetun0="87" pan0="9" modalgo2="2" stphdetun1="203" pan1="-14" stphdetun2="255" pan2="0" phoffset0="0" phoffset1="152" phoffset2="26" finer0="0" finer1="0" finer2="1" userwavefile0="samples/empty.wav" wavetype0="2" coarse0="12" />
<eldata fres="0.7" ftype="0" fcut="2286" fwet="1" >
<elvol lpdel="0" amt="1" rel="0" latt="0" sus="1" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.496" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="76" arp="8" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.1-cvs20051208" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Evil Hardcore (play with C2-G3!)" basetone="9" tab="0" >
<tripleoscillator userwavefile1="" wavetype1="0" coarse1="-3" userwavefile2="" wavetype2="0" coarse2="0" vol0="100" vol1="12" finel0="0" vol2="100" finel1="-3" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="2" stphdetun1="256" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="3" finer2="0" userwavefile0="" wavetype0="0" coarse0="0" />
<eldata fres="10" ftype="7" fcut="64" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="1" rel="0.1" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.058" pdel="0" lamt="0" dec="0.235" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="6" lpdel="0" amt="0" rel="0" ctlenvamt="0" latt="0" sus="0.959" lspd="0.01" att="0" pdel="0" lamt="0.115" dec="0.123" x100="0" lshp="0" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="1" arpgate="100" arp="0" arpsyncmode="0" arptime="100" arpdir="1" />
<midi inputchannel="0" outputchannel="0" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="100" name="FM-Wood Arp" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="4" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="5" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="38" finel1="0" finel2="0" modalgo1="0" stphdetun0="253" pan0="0" modalgo2="0" stphdetun1="85" pan1="0" stphdetun2="115" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="4" coarse0="0" />
<eldata fres="0.85" ftype="0" fcut="0" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.098" latt="0" sus="0" lspd="0.01" att="0" pdel="0" lamt="0" dec="0" x100="0" lshp="0" hold="0.097" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0.545" rel="0" latt="0" sus="0.999" lspd="0.3411" att="0" pdel="0" lamt="0" dec="0.164" x100="0" lshp="1" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.125" x100="0" lshp="0" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="2" chord="0" arpgate="58" arp="3" arptime="100" arpdir="4" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="5" vol="50" name="Fat FMish Bells" basetone="9" >
<tripleoscillator userwavefile1="" wavetype1="2" coarse1="0" userwavefile2="samples/shapes/smooth_inv_saw.ogg" wavetype2="2" coarse2="12" vol0="100" vol1="100" finel0="0" vol2="127" finel1="-16" finel2="0" modalgo1="2" stphdetun0="121" pan0="0" modalgo2="0" stphdetun1="259" pan1="0" stphdetun2="92" pan2="0" phoffset0="0" phoffset1="266" phoffset2="80" finer0="0" finer1="13" finer2="0" userwavefile0="" wavetype0="2" coarse0="0" />
<eldata fres="1.26" ftype="7" fcut="1754" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.329" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.598" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0.82" rel="0.016" latt="0" sus="0.999" lspd="0.2918" att="0" pdel="0" lamt="0.63" dec="0.137" x100="0" lshp="1" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="2" chord="0" arpgate="100" arp="0" arptime="158" arpdir="2" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.0" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="Fat" basetone="9" tab="0" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="2" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="0" vol0="49" vol1="56" finel0="0" vol2="100" finel1="0" finel2="-14" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="3" stphdetun1="109" pan1="0" stphdetun2="50" pan2="0" phoffset0="0" phoffset1="271" phoffset2="0" finer0="0" finer1="0" finer2="13" userwavefile0="samples/empty.wav" wavetype0="2" coarse0="0" />
<eldata fres="0.88" ftype="6" fcut="686" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.199" ctlenvamt="0" latt="0" sus="0" lspd="0.0917" att="0" pdel="0" lamt="0" dec="0.297" x100="0" lshp="0" hold="0" />
<elcut lpdel="0" amt="0.33" rel="0" ctlenvamt="0" latt="0" sus="0.999" lspd="0.767" att="0" pdel="0" lamt="0.47" dec="0.223" x100="0" lshp="1" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.5" lspd="0.01" att="0" pdel="0" lamt="-0.00599995" dec="0.5" x100="0" lshp="1" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="2" chord="0" arpgate="142" arp="0" arptime="179" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.0" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="5" vol="100" name="FatCheese" basetone="9" tab="2" >
<tripleoscillator userwavefile1="" wavetype1="5" coarse1="0" userwavefile2="" wavetype2="4" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="0" finel2="-25" modalgo1="2" stphdetun0="102" pan0="0" modalgo2="3" stphdetun1="0" pan1="0" stphdetun2="0" pan2="0" phoffset0="295" phoffset1="267" phoffset2="169" finer0="0" finer1="0" finer2="30" userwavefile0="" wavetype0="2" coarse0="-12" />
<eldata fres="0.57" ftype="6" fcut="3354" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.18" ctlenvamt="0" latt="0" sus="0" lspd="0.1553" att="0.038" pdel="0" lamt="0" dec="0.375" x100="0" lshp="0" hold="0" />
<elcut lpdel="0" amt="0.58" rel="0" ctlenvamt="1" latt="0" sus="0.999" lspd="0.53" att="0" pdel="0" lamt="0.515" dec="0.158" x100="0" lshp="0" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.5" lspd="0.4849" att="0" pdel="0" lamt="0.23" dec="0.5" x100="0" lshp="1" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="3" arpdisabled="0" chord="0" chorddisabled="1" arpgate="73" arp="0" arptime="89" arpdir="3" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="100" name="Fear" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="0" coarse1="23" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="-14" vol0="100" vol1="76" finel0="0" vol2="100" finel1="0" finel2="6" modalgo1="0" stphdetun0="0" pan0="0" modalgo2="0" stphdetun1="93" pan1="0" stphdetun2="107" pan2="0" phoffset0="0" phoffset1="114" phoffset2="130" finer0="0" finer1="0" finer2="6" userwavefile0="samples/empty.wav" wavetype0="0" coarse0="0" />
<eldata fres="0.85" ftype="0" fcut="1143" fwet="0" >
<elvol lpdel="0" amt="0" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="-0.305" dec="0.517" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="2" chord="0" arpgate="100" arp="3" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="5" vol="100" name="Freaky Bass" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="2" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="2" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="-14" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="3" stphdetun1="50" pan1="0" stphdetun2="0" pan2="0" phoffset0="0" phoffset1="0" phoffset2="0" finer0="0" finer1="13" finer2="-3" userwavefile0="samples/empty.wav" wavetype0="2" coarse0="0" />
<eldata fres="0.84" ftype="6" fcut="216" fwet="1" >
<elvol lpdel="0" amt="1" rel="0.249" latt="0" sus="0" lspd="0.0917" att="0" pdel="0" lamt="0" dec="0.297" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0.5" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0.31" rel="0" latt="0" sus="0.999" lspd="0.67" att="0" pdel="0" lamt="0" dec="0.236" x100="0" lshp="1" hold="0" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.01" att="0" pdel="0" lamt="-0.00599995" dec="0.5" x100="0" lshp="1" hold="0" />
</eldata>
<arpandchords chordrange="1" arprange="3" chord="0" arpgate="100" arp="8" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.1.1-cvs20051215" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" fxch="0" baseoct="7" vol="57" name="FutureBass" basetone="0" tab="1" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="5" coarse1="-12" userwavefile2="samples/empty.wav" wavetype2="4" coarse2="0" vol0="100" vol1="100" finel0="0" vol2="100" finel1="-12" finel2="-27" modalgo1="2" stphdetun0="71" pan0="0" modalgo2="2" stphdetun1="99" pan1="0" stphdetun2="151" pan2="0" phoffset0="0" phoffset1="260" phoffset2="44" finer0="0" finer1="15" finer2="16" userwavefile0="samples/empty.wav" wavetype0="0" coarse0="0" />
<eldata fres="3" ftype="0" fcut="1032" fwet="1" >
<elvol lfosyncmode="0" lpdel="0" amt="0.48" rel="0.414" ctlenvamt="0" latt="0" sus="0" lspd="0.1" att="0.132" pdel="0" lamt="0" dec="0.261" x100="0" lshp="0" hold="0" />
<elcut lfosyncmode="0" lpdel="0" amt="0" rel="0" ctlenvamt="0" latt="0" sus="0.998" lspd="1" att="0" pdel="0" lamt="0.66" dec="0.134" x100="1" lshp="2" hold="0" />
<elres lfosyncmode="0" lpdel="0" amt="0" rel="0.1" ctlenvamt="0" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499" />
</eldata>
<arpandchords chordrange="1" arprange="1" arpdisabled="1" chord="0" chorddisabled="0" arpgate="81" arp="0" arpsyncmode="0" arptime="210" arpdir="1" />
<midi inputchannel="0" outputchannel="0" receive="0" send="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="132646936" muted="0" fxch="0" tbidx="0" baseoct="4" vol="100" name="Gong" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="0" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="12" vol0="100" vol1="68" finel0="0" vol2="81" finel1="-18" finel2="0" modalgo1="2" stphdetun0="0" pan0="0" modalgo2="0" stphdetun1="0" pan1="0" stphdetun2="104" pan2="0" phoffset0="0" phoffset1="307" phoffset2="304" finer0="0" finer1="13" finer2="0" userwavefile0="samples/empty.wav" wavetype0="0" coarse0="0" />
<eldata fres="3" ftype="0" fcut="16000" fwet="0" >
<elvol lpdel="0" amt="1" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.437" x100="0" lshp="0" hold="0.114" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="0" baseoct="4" vol="100" name="Harmonium" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="1" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="0" vol0="35" vol1="51" finel0="0" vol2="32" finel1="0" finel2="-24" modalgo1="0" stphdetun0="195" pan0="0" modalgo2="1" stphdetun1="90" pan1="-36" stphdetun2="306" pan2="27" phoffset0="260" phoffset1="89" phoffset2="0" finer0="0" finer1="0" finer2="11" userwavefile0="samples/empty.wav" wavetype0="1" coarse0="0" />
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.1" latt="0" sus="0.265" lspd="0.1" att="0.062" pdel="0" lamt="0" dec="0.27" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="3" arprange="1" chord="0" arpgate="100" arp="0" arptime="100" arpdir="0" />
</channeltrack>
</channelsettings>
</multimediaproject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE multimedia-project>
<multimediaproject creator="Linux MultiMedia Studio (LMMS)" creatorversion="0.0.9" type="channelsettings" version="1.0" >
<head/>
<channelsettings>
<channeltrack surpos="134219776" muted="0" fxch="0" tbidx="1" baseoct="4" vol="100" name="Harp of a Fairy" basetone="9" >
<tripleoscillator userwavefile1="samples/empty.wav" wavetype1="1" coarse1="0" userwavefile2="samples/empty.wav" wavetype2="0" coarse2="12" vol0="35" vol1="35" finel0="0" vol2="35" finel1="0" finel2="0" modalgo1="2" stphdetun0="195" pan0="0" modalgo2="2" stphdetun1="0" pan1="0" stphdetun2="261" pan2="0" phoffset0="0" phoffset1="89" phoffset2="0" finer0="0" finer1="0" finer2="0" userwavefile0="samples/empty.wav" wavetype0="0" coarse0="-12" />
<eldata fres="2" ftype="1" fcut="1457" fwet="0" >
<elvol lpdel="0" amt="1" rel="0.297" latt="0" sus="0.6" lspd="0.1" att="0.04" pdel="0" lamt="0" dec="0.15" x100="0" lshp="0" hold="0" />
<elpan lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elpitch lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elcut lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
<elres lpdel="0" amt="0" rel="0.1" latt="0" sus="0.5" lspd="0.1" att="0" pdel="0" lamt="0" dec="0.5" x100="0" lshp="0" hold="0.5" />
</eldata>
<arpandchords chordrange="1" arprange="3" chord="0" arpgate="100" arp="8" arptime="78" arpdir="2" />
</channeltrack>
</channelsettings>
</multimediaproject>

Some files were not shown because too many files have changed in this diff Show More