Update to MMA 1.7

This commit is contained in:
Matthias Neeracher 2011-07-26 22:49:39 +00:00
parent c1f99cc848
commit f54adbeec5
1439 changed files with 526695 additions and 19590 deletions

View File

@ -1113,7 +1113,8 @@ static int8_t sSharpAcc[] = {
- (void)setGroove:(NSString *)groove - (void)setGroove:(NSString *)groove
{ {
[[self document] setGroove:groove inSections:[self sectionsInSelection]]; if (groove)
[[self document] setGroove:groove inSections:[self sectionsInSelection]];
} }
- (void)playWithGroove:(NSString *)groove - (void)playWithGroove:(NSString *)groove

View File

@ -26,6 +26,7 @@ Bob van der Poel <bob@mellowood.ca>
import MMA.patChord import MMA.patChord
import MMA.patWalk import MMA.patWalk
import MMA.patBass import MMA.patBass
import MMA.patPlectrum
import MMA.patDrum import MMA.patDrum
import MMA.patScale import MMA.patScale
import MMA.patArpeggio import MMA.patArpeggio
@ -45,7 +46,9 @@ trkClasses = {
'WALK' : MMA.patWalk.Walk, 'WALK' : MMA.patWalk.Walk,
'MELODY' : MMA.patSolo.Melody, 'MELODY' : MMA.patSolo.Melody,
'SOLO' : MMA.patSolo.Solo, 'SOLO' : MMA.patSolo.Solo,
'ARIA' : MMA.patAria.Aria 'ARIA' : MMA.patAria.Aria,
'PLECTRUM' : MMA.patPlectrum.Plectrum
} }

View File

@ -30,18 +30,20 @@ import pickle
import MMA.midi import MMA.midi
import MMA.parse import MMA.parse
import MMA.grooves
import MMA.swing
import gbl import gbl
from MMA.common import * from MMA.common import *
grooveDir = {} grooveDB = [] # when filled in it becomes [['dir', dict-db], ..]
mmadir = ".mmaDB" # constant, name of the lib database file mmadir = ".mmaDB" # constant, name of the lib database file
fileCount = 0 fileCount = 0
grooveCount = 0 grooveCount = 0
gdDate = None gdDate = None
processedFiles = [] processedFiles = []
mkGrooveList = [] mkGrooveList = [] # a list of grooves defined in current file
def updateGrooveList(n): def updateGrooveList(n):
""" Called from parse when new grooves are defined in a -g. """ """ Called from parse when new grooves are defined in a -g. """
@ -58,69 +60,82 @@ def libUpdate():
and other option parsing. No RETURN. and other option parsing. No RETURN.
""" """
global fileCount, gdDate, grooveDir, processedfiles global fileCount, gdDate, grooveDB, processedfiles
dupMessage = []
print "Creating MMA groove directory database(s). Standby..." print "Creating MMA groove directory database(s). Standby..."
""" gbl.libPath points to one main directory tree which should include """ gbl.libPath points to one main directory tree. We create a separate
gbl.autoLib (defaults to 'stdlib'). We create a separate .mmaDB .mmaDB file for each directory found in the main tree. IE, if we have
file for each directory found in the main tree. IE. if we have the the directories stdlib and bvstuff we end up with stdlib/.mmaDB and
directories stdlib and bvstuff we end up with stdlib/.mmaDB and
bvstuff/.mmaDB. bvstuff/.mmaDB.
""" """
for d in os.listdir(gbl.libPath): for dir in os.listdir(gbl.libPath):
libpath = os.path.join(gbl.libPath, d) libpath = os.path.join(gbl.libPath, dir)
if not os.path.isdir(libpath): # skip files, just process directories if not os.path.isdir(libpath): # skip files, just process directories
continue continue
""" Attempt to read existing database
There is a flag gbl.makeGrvDefs set to 0, 1, 2
0 - there was no -g or -G so we're not here
1 - -g - read existing database and update
2 - -G - don't read existing, create new
"""
grooveDir = {}
gdDate = None gdDate = None
grooveDB = [[dir, {}]]
# load up our database with this directory's DB file, skip if -G
if gbl.makeGrvDefs == 1: if gbl.makeGrvDefs == 1:
try: g=loadDB(dir)
infile = os.path.join(libpath, mmadir) if g:
f=file(infile, "rb") grooveDB=[[dir, g]]
f.readline() # Read/discard comment line gdDate = os.path.getmtime(os.path.join(gbl.libPath, dir, mmadir))
grooveDir = pickle.load(f)
f.close()
gdDate = os.path.getmtime(infile)
except:
pass
dolibupdate(libpath, '') dolibupdate(libpath, '') # update all files in this dir
# Strip out defs of deleted (not found) files. # Strip out defs of deleted (not found) files.
for f in grooveDir.keys(): db = grooveDB[0][1]
for f in db.keys():
if f not in processedFiles: if f not in processedFiles:
print " Deleting: %s" % f print " Deleting: %s" % f
del grooveDir[f] del g[f]
try: try:
outpath = file(os.path.join(libpath, mmadir), 'wb') outpath = file(os.path.join(libpath, mmadir), 'wb')
except: except:
error("Error creating lib-database file '%s'. CRITICAL!" % libpath) error("Error creating lib-database file '%s'. " \
"Do you need to be root?" % libpath)
outpath.write("### mmaDB ... AUTOGENERATED BINARY DATA. " outpath.write("### mmaDB ... AUTOGENERATED BINARY DATA. "
"DO NOT EDIT!!!\n") "DO NOT EDIT!!!\n")
pickle.dump(grooveDir, outpath, pickle.HIGHEST_PROTOCOL ) pickle.dump(db, outpath, pickle.HIGHEST_PROTOCOL )
outpath.close() outpath.close()
# check the database we just saved for duplicate entries.
dprinted = None
for f in db:
for g in db[f]:
for ff in db:
if f == ff:
continue
if g in db[ff]:
if not dprinted:
dupMessage.append(" Lib %s: %s & %s have dups." % \
(libpath, f, ff))
dprinted=1
if dprinted:
break
print print
print "Database update complete." print "Database update complete."
print " Files processed: %s" % fileCount print " Files processed: %s" % fileCount
print " Total number of grooves: %s" % grooveCount print " Total number of grooves: %s" % grooveCount
print
if dupMessage:
print "Warning: Duplicate groove definitions found."
for a in dupMessage:
print a
sys.exit(0) sys.exit(0)
@ -128,7 +143,9 @@ def libUpdate():
def dolibupdate(root, subdir): def dolibupdate(root, subdir):
""" Recursive function to read groove files in a directory. """ """ Recursive function to read groove files in a directory. """
global fileCount, grooveCount, gdDate, grooveDir, processedFiles, mkGrooveList global fileCount, grooveCount, gdDate, grooveDB, processedFiles, mkGrooveList
db = grooveDB[0][1]
if subdir == '.': if subdir == '.':
print "Skipping: '.'" print "Skipping: '.'"
@ -167,87 +184,106 @@ def dolibupdate(root, subdir):
ename = os.path.join(subdir, fn) ename = os.path.join(subdir, fn)
processedFiles.append(ename) processedFiles.append(ename)
if gdDate and ename in grooveDir and os.path.getmtime(f) < gdDate: if gdDate and ename in db and os.path.getmtime(f) < gdDate:
print " Existing: %s" % f print " Existing: %s" % f
grooveCount += len(grooveDir[ename]) grooveCount += len(db[ename])
continue continue
if ename in grooveDir: if ename in db:
print " Updating: %s" % f print " Updating: %s" % f
else: else:
print " Creating: %s" % f print " Creating: %s" % f
mkGrooveList = [] mkGrooveList = []
MMA.grooves.grooveClear([])
gbl.mtrks = {} gbl.mtrks = {}
MMA.grooves.aliaslist = {} MMA.swing.mode = 0
for c in gbl.midiAssigns.keys(): for c in gbl.midiAssigns.keys():
gbl.midiAssigns[c]=[] gbl.midiAssigns[c]=[]
for a,v in enumerate(gbl.midiAvail): for a,v in enumerate(gbl.midiAvail):
gbl.midiAvail[a]=0 gbl.midiAvail[a]=0
gbl.mtrks[0]=MMA.midi.Mtrk(0) gbl.mtrks[0]=MMA.midi.Mtrk(0)
gbl.tnames = {} gbl.tnames = {}
MMA.parse.parseFile(f) # read current file, grab grooves MMA.parse.parseFile(f) # read current file, grab grooves
fileCount += 1 # just so we can report to user fileCount += 1 # just so we can report to user
grooveCount += len(mkGrooveList) grooveCount += len(mkGrooveList)
db[ename]=mkGrooveList
grooveDir[ename]=mkGrooveList
else: else:
if not f.endswith(mmadir): if not f.endswith(mmadir):
print " Ignoring: %s" % f print " Ignoring: %s" % f
def loadDB(dir):
""" Read a database file into memory.
We're assuming that not much goes wrong here...if we don't find
the database we return a Null.
"""
try:
infile = os.path.join(gbl.libPath, dir, mmadir)
f=file(infile, "rb")
f.readline() # Read/discard comment line
g = pickle.load(f)
f.close()
return g
except:
pass
return None
################################################################# #################################################################
def loadGrooveDir(g): def findGroove(targ):
""" Try to auto-load a groove from the library. """ Try to auto-load a groove from the library.
The compliation of all the MMADIR files is stored in the dict The compilation of all the MMADIR files is stored in the
grooveDir{}. list of dicts in grooveDir[].
Check the main libpath directory for the MMADIR file. The Check the each libpath directory for the MMADIR file. The
names of the files and corresponding grooves are extracted. names of the files and corresponding grooves are extracted.
This is stored in a dictionary with the filename as the key This is stored in a dictionary with the filename as the key
and a list of grooves as the data. and a list of grooves as the data.
""" """
global grooveDir global grooveDB
""" If the global dict grooveDir is empty we first load the MMADIR info. """ If no existing DB we load them from each dir in libpath.
We're assuming that not much goes wrong here...if we don't find
the database we set grooveDir{} to a BS value to avoid future
load attempts. The entire load is in a try, which means it either
all works, or not ...
""" """
if not grooveDir: if not grooveDB:
try: grooveDB=[]
infile = os.path.join(gbl.libPath, gbl.autoLib, mmadir) for dir in gbl.autoLib:
f=file(infile, "rb") g=loadDB(dir)
f.readline() # Read/discard comment line if g:
grooveDir = pickle.load(f) grooveDB.append([dir, g])
f.close()
except: if not grooveDB: # BS value so we don't keep trying to load
grooveDir[0]='' grooveDB = [['', {}]]
""" Search the dict for a match. grooveDir{} is a dictionary """ Search the dict for a match.
for lists. Each dictionary key is filename (eg: "lib/rhumba.mma")
and the list associated with it is a list of grooves defined grooveDir[] structure ... [ [dirname, g], [] ]
in that file. Just a matter of stepping though the dict. and
returning the proper filename. g ... is a dict. Key = filename, data = list of grooves
RETURN: Lib-Filename if found RETURN: Lib-Filename if found
None if not found None if not found
""" """
for filename, namelist in grooveDir.items(): for dir, g in grooveDB:
if g in namelist: for filename, namelist in g.items():
return filename if targ in namelist:
return os.path.join(dir,filename)
return None return None

View File

@ -25,9 +25,12 @@ Bob van der Poel <bob@mellowood.ca>
import copy import copy
from MMA.common import * from MMA.common import *
from MMA.chordtable import chordlist from MMA.chordtable import chordlist
import MMA.roman
####################################################
# Convert a roman numeral chord to standard notation
@ -119,15 +122,14 @@ cdAdjust = {
def chordAdjust(ln): def chordAdjust(ln):
""" Adjust the chord point up/down one octave. """ """ Adjust the chord point up/down one octave. """
notpair, ln = opt2pair(ln)
if not ln: if not ln:
error("ChordAdjust: Needs at least one argument") error("ChordAdjust: Needs at least one argument.")
if notpair:
for l in ln: error("ChordAdjust: All args have to be in the format opt=value.")
try:
pitch, octave = l.split('=')
except:
error("Each arg must contain an '=', not '%s'" % l)
for pitch, octave in ln:
if pitch not in cdAdjust: if pitch not in cdAdjust:
error("ChordAdjust: '%s' is not a valid pitch" % pitch) error("ChordAdjust: '%s' is not a valid pitch" % pitch)
@ -220,7 +222,7 @@ class ChordNotes:
### Functions ### ### Functions ###
################# #################
def __init__(self, name, line=''): def __init__(self, name):
""" Create a chord object. Pass the chord name as the only arg. """ Create a chord object. Pass the chord name as the only arg.
NOTE: Chord names ARE case-sensitive! NOTE: Chord names ARE case-sensitive!
@ -244,6 +246,7 @@ class ChordNotes:
""" """
slash = None slash = None
wmessage = '' # slash warning msg, builder needed for gbl.rmShow
octave = 0 octave = 0
inversion = 0 inversion = 0
@ -256,9 +259,17 @@ class ChordNotes:
if '/' in name and '>' in name: if '/' in name and '>' in name:
error("You cannot use both an inversion and a slash in the same chord") error("You cannot use both an inversion and a slash in the same chord")
if ':' in name:
name, barre = name.split(':', 1)
barre = stoi(barre, "Expecting integer after ':'")
if barre < -20 or barre > 20:
error("Chord barres limited to -20 to 20 (more is silly)")
else:
barre = 0
if '>' in name: if '>' in name:
name, inversion = name.split('>', 1) name, inversion = name.split('>', 1)
inversion = stoi(inversion, "Expecting interger after '>'") inversion = stoi(inversion, "Expecting integer after '>'")
if inversion < -5 or inversion > 5: if inversion < -5 or inversion > 5:
error("Chord inversions limited to -5 to 5 (more seems silly)") error("Chord inversions limited to -5 to 5 (more seems silly)")
@ -270,7 +281,9 @@ class ChordNotes:
name = name[1:] name = name[1:]
octave = 12 octave = 12
name = name.replace('&', 'b') # we have just the name part. Save 'origname' for debug print
origName = name = name.replace('&', 'b')
# Strip off the slash part of the chord. Use later # Strip off the slash part of the chord. Use later
# to do proper inversion. # to do proper inversion.
@ -278,6 +291,10 @@ class ChordNotes:
if name.find('/') > 0: if name.find('/') > 0:
name, slash = name.split('/') name, slash = name.split('/')
if name[0] in ("I", "V", "i", "v"):
n=name
name = MMA.roman.convert(name)
if name[1:2] in ( '#b' ): if name[1:2] in ( '#b' ):
tonic = name[0:2] tonic = name[0:2]
ctype = name[2:] ctype = name[2:]
@ -300,6 +317,7 @@ class ChordNotes:
self.chordType = ctype self.chordType = ctype
self.tonic = tonic self.tonic = tonic
self.rootNote = self.noteList[0] self.rootNote = self.noteList[0]
self.barre = barre
self.noteListLen = len(self.noteList) self.noteListLen = len(self.noteList)
@ -311,7 +329,17 @@ class ChordNotes:
# Do inversions if there is a valid slash notation. # Do inversions if there is a valid slash notation.
if slash: if slash: # convert Roman or Arabic to name of note from chord scale
if slash[0] in ('I', 'i', 'V', 'v') or slash[0].isdigit():
n = MMA.roman.rvalue(slash)
n = self.scaleList[n] # midi value
while n >=12:
n-=12
while n<0:
n+=12
slash = ('C', 'C#', 'D', 'D#', 'E', 'F',
'F#', 'G', 'G#', 'A', 'A#', 'B')[n]
try: try:
r=cdAdjust[slash] # r = -6 to 6 r=cdAdjust[slash] # r = -6 to 6
except KeyError: except KeyError:
@ -351,14 +379,29 @@ class ChordNotes:
break break
if not c_roted and not s_roted: if not c_roted and not s_roted:
warning("The slash chord note '%s' not in chord or scale" % slash) wmessage = "The slash chord note '%s' not in chord or scale" % slash
if not gbl.rmShow:
warning(wmessage)
elif not c_roted: elif not c_roted:
warning("The slash chord note '%s' not in chord '%s'" % (slash, name)) wmessage = "The slash chord note '%s' not in chord '%s'" % (slash, name)
if not gbl.rmShow:
warning(wmessage)
elif not s_roted: # Probably will never happen :) elif not s_roted: # Probably will never happen :)
warning("The slash chord note '%s' not in scale for the chord '%s'" % (slash, name)) wmessage = "The slash chord note '%s' not in scale for the chord '%s'" \
% (slash, name)
if not gbl.rmShow:
warning(wmessage)
if gbl.rmShow:
if slash:
a = '/'+slash
else:
a = ''
if wmessage:
a+=' ' + wmessage
print " %03s] %-09s -> %s%s" % (gbl.lineno, origName, name, a)
def reset(self): def reset(self):
""" Restores notes array to original, undoes mangling. """ """ Restores notes array to original, undoes mangling. """

View File

@ -67,6 +67,14 @@ chordlist = {
(C, D, E, F, G, A, D+12), (C, D, E, F, G, A, D+12),
"Major chord plus 9th (no 7th.)"), "Major chord plus 9th (no 7th.)"),
'addb9': ((C, E, G, Db+12),
(C, D, E, F, G, A, Db+12),
"Major chord plus flat 9th (no 7th.)"),
'add#9': ((C, E, G, Ds+12),
(C, D, E, F, G, A, Ds+12),
"Major chord plus sharp 9th (no 7th.)"),
'm': ((C, Eb, G ), 'm': ((C, Eb, G ),
(C, D, Eb, F, G, Ab, Bb), (C, D, Eb, F, G, Ab, Bb),
"Minor triad."), "Minor triad."),
@ -92,6 +100,10 @@ chordlist = {
(C, D, Eb, F, G, Ab, Bb), (C, D, Eb, F, G, Ab, Bb),
"Minor 7th (flat 3rd plus dominant 7th)."), "Minor 7th (flat 3rd plus dominant 7th)."),
'm7#5': ((C, E, Gs, Bb),
(C, D, E, F, Gs, A, Bb),
"Minor 7th with sharp 5th."),
'mM7': ((C, Eb, G, B ), 'mM7': ((C, Eb, G, B ),
(C, D, Eb, F, G, Ab, B), (C, D, Eb, F, G, Ab, B),
"Minor Triad plus Major 7th. You will also see this printed " "Minor Triad plus Major 7th. You will also see this printed "
@ -156,6 +168,8 @@ chordlist = {
(C, D, E, F, G, A, B), (C, D, E, F, G, A, B),
"Major 7th."), "Major 7th."),
'M7#5': ((C, E, Gs, B), 'M7#5': ((C, E, Gs, B),
(C, D, E, F, Gs, A, B), (C, D, E, F, Gs, A, B),
"Major 7th with sharp 5th."), "Major 7th with sharp 5th."),
@ -310,6 +324,22 @@ chordlist = {
(C, D, F, F, G, A, B), (C, D, F, F, G, A, B),
"Suspended 4th, major triad with the 3rd raised half tone."), "Suspended 4th, major triad with the 3rd raised half tone."),
'msus4': ((C, Eb, F, G ),
(C, D, Eb, F, G, Ab, Bb),
"Minor suspended 4th, minor triad plus 4th."),
'sus(addb9)': ((C, F, G, Db+12 ),
(C, D, F, F, G, A, B),
"Suspended 4th, major triad with the 3rd raised half tone plus flat 9th."),
'sus(add9)': ((C, F, G, D+12 ),
(C, D, F, F, G, A, B),
"Suspended 4th, major triad with the 3rd raised half tone plus 9th."),
'sus(add#9)': ((C, F, G, Ds+12 ),
(C, D, F, F, G, A, B),
"Suspended 4th, major triad with the 3rd raised half tone plus sharp 9th."),
'7sus': ((C, F, G, Bb ), '7sus': ((C, F, G, Bb ),
(C, D, F, F, G, A, Bb), (C, D, F, F, G, A, Bb),
"7th with suspended 4th, dominant 7th with 3rd " "7th with suspended 4th, dominant 7th with 3rd "
@ -409,6 +439,9 @@ aliases = (
('+9M7', 'aug9M7', ''), ('+9M7', 'aug9M7', ''),
('+M7', 'M7#5', ''), ('+M7', 'M7#5', ''),
('m(add9)', 'm(sus9)', ''), ('m(add9)', 'm(sus9)', ''),
('(add9)', 'add9', ''),
('(addb9)', 'addb9', ''),
('(add#9)', 'add#9', ''),
('69', '6(add9)', ''), ('69', '6(add9)', ''),
('m69', 'm6(add9)', ''), ('m69', 'm6(add9)', ''),
('m(b5)', 'mb5', ''), ('m(b5)', 'mb5', ''),
@ -445,6 +478,10 @@ aliases = (
('min#7', 'mM7', ''), ('min#7', 'mM7', ''),
('m#7', 'mM7', ''), ('m#7', 'mM7', ''),
('dim', 'dim7', 'A dim7, not a triad!'), ('dim', 'dim7', 'A dim7, not a triad!'),
(chr(176), 'dim7', 'A dim7 using a degree symbol'),
(chr(176)+'3', 'mb5', 'A dim3 (triad) using a degree symbol'),
(chr(176)+'(addM7)', 'dim7(addM7)', 'dim7(addM7) using degree symbol'),
(chr(248), 'm7b5', 'Half-diminished using slashed degree symbol'),
('9sus', 'sus9', ''), ('9sus', 'sus9', ''),
('9-5', '9b5', ''), ('9-5', '9b5', ''),
('dim3', 'mb5', 'Diminished triad (non-standard notation).'), ('dim3', 'mb5', 'Diminished triad (non-standard notation).'),

View File

@ -65,12 +65,11 @@ def error(msg):
for a in msg: for a in msg:
a=ord(a) a=ord(a)
if a<0x20 or a >=0x80: if a<0x20 or a >=0x80:
print "Corrupt input file? Illegal character 0x%2x found." % a print "Corrupt input file? Illegal character 'x%02x' found." % a
break break
sys.exit(1) sys.exit(1)
def warning(msg): def warning(msg):
""" Print warning message and return. """ """ Print warning message and return. """
@ -86,7 +85,7 @@ def warning(msg):
print "Warning:%s\n %s" % (ln, msg) print "Warning:%s\n %s" % (ln, msg)
def getOffset(ticks, ran=None): def getOffset(ticks, ranLow=None, ranHigh=None):
""" Calculate a midi offset into a song. """ Calculate a midi offset into a song.
ticks == offset into the current bar. ticks == offset into the current bar.
@ -101,8 +100,8 @@ def getOffset(ticks, ran=None):
p = gbl.tickOffset + int(ticks) # int() cast is important! p = gbl.tickOffset + int(ticks) # int() cast is important!
if ran: if ranLow or ranHigh:
r = randrange( -ran, ran+1 ) r = randrange( ranLow, ranHigh+1 )
if ticks == 0 and r < 0: if ticks == 0 and r < 0:
r=0 r=0
p+=r p+=r
@ -210,3 +209,28 @@ def lnExpand(ln, msg):
last = n last = n
return ln return ln
def opt2pair(ln, toupper=0):
""" Parse a list of options. Separate out "=" option pairs.
Returns:
newln - original list stripped of opts
opts - list of options. Each option is a tuple(opt, value)
Note: default is to leave case alone, setting toupper converts everything to upper.
"""
opts = []
newln = []
for a in ln:
if toupper:
a=a.upper()
try:
o, v = a.split('=', 1)
opts.append( (o,v) )
except:
newln.append(a)
return newln, opts

View File

@ -33,8 +33,6 @@ import gbl
from MMA.common import * from MMA.common import *
def docDrumNames(order): def docDrumNames(order):
""" Print LaTex table of drum names. """ """ Print LaTex table of drum names. """
@ -102,7 +100,6 @@ def docAuthor(ln):
author = ' '.join(ln) author = ' '.join(ln)
def docNote(ln): def docNote(ln):
""" Add a doc line. """ """ Add a doc line. """
@ -135,7 +132,7 @@ def docDefine(ln):
Entries are stored as a list. Each item in the list is Entries are stored as a list. Each item in the list is
complete groove def looking like: complete groove def looking like:
defs[ [ Name, Seqsize, Description, [ [TRACK,INST]...]] ...] defs[ [ Name, Seqsize, Description, [ [TRACK,INST, [Sequences...] ]...]] ...]
""" """
@ -146,10 +143,11 @@ def docDefine(ln):
c=gbl.tnames[a] c=gbl.tnames[a]
if c.sequence and len(c.sequence) != c.sequence.count(None): if c.sequence and len(c.sequence) != c.sequence.count(None):
if c.vtype=='DRUM': if c.vtype=='DRUM':
v=MMA.midiC.valueToDrum(c.toneList[0]) v= [ MMA.midiC.valueToDrum(x) for x in c.toneList]
else: else:
v=MMA.midiC.valueToInst(c.voice[0]) v= [ MMA.midiC.valueToInst(x) for x in c.voice]
l.append( [c.name, v ] ) seq = [ c.formatPattern(c.sequence[x]) for x in range(gbl.seqSize) ]
l.append( [c.name, v, seq ] )
defs.append(l) defs.append(l)
@ -161,6 +159,8 @@ def docDump():
if gbl.createDocs == 1: # latex docs if gbl.createDocs == 1: # latex docs
if notes: if notes:
notes = notes.replace("<P>", "\\\\[.5ex]")
notes = notes.replace("<p>", "\\\\[.5ex]")
if fname.endswith(gbl.ext): if fname.endswith(gbl.ext):
fname='.'.join(fname.split('.')[:-1]) fname='.'.join(fname.split('.')[:-1])
print "\\filehead{%s}{%s}" % (totex(fname), totex(notes)) print "\\filehead{%s}{%s}" % (totex(fname), totex(notes))
@ -185,11 +185,11 @@ def docDump():
alias='' alias=''
print " \\instable{%s}{%s}{%s}{%s}{" % \ print " \\instable{%s}{%s}{%s}{%s}{" % \
(totex(l[0]), totex(l[2]), l[1], alias) (totex(l[0]), totex(l[2]), l[1], alias)
for c,v in l[3:]: for c,v,s in l[3:]: # we ignore the seqence data here
print " \\insline{%s}{%s}" % (c.title(), totex(v)) print " \\insline{%s}{%s}" % (c.title(), totex(v[0]))
print " }" print " }"
if gbl.createDocs == 2: # html docs elif gbl.createDocs == 2: # html docs
if notes: if notes:
print '<!-- Auto-Generated by MMA on: %s -->' % time.ctime() print '<!-- Auto-Generated by MMA on: %s -->' % time.ctime()
print '<HTML>' print '<HTML>'
@ -222,10 +222,15 @@ def docDump():
print "<LI><A Href=#%s>%s</a>" % (l[0], l[0]) print "<LI><A Href=#%s>%s</a>" % (l[0], l[0])
print "</ul>" print "</ul>"
for l in defs: for l in defs:
print '<A Name=%s></a>' % l[0] gg = l[0]
iname = os.path.basename(gbl.infile)
iname, ext = os.path.splitext(iname)
gfile = "%s_%s.html" % (iname, gg.lower() )
print '<!-- GROOVE=%s FILE=%s SRC=%s -->' % (gg.lower(), gfile, gbl.infile)
print '<A Name=%s></a>' % gg
print '<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">' print '<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">'
print ' <TR><TD>' print ' <TR><TD>'
print ' <H2> %s </H2> ' % l[0] print ' <H2> <A Href=%s> %s </a> </H2> ' % (gfile, l[0])
alias=MMA.grooves.getAlias(l[0]) alias=MMA.grooves.getAlias(l[0])
if alias: if alias:
if len(alias)>1: if len(alias)>1:
@ -233,55 +238,42 @@ def docDump():
else: else:
ll="Alias" ll="Alias"
print ' <H4> %s: %s </H4>' % (ll, alias) print ' <H4> %s: %s </H4>' % (ll, alias)
print ' %s <B>(%s)</B> ' % ( l[2], l[1] ) print ' %s <B>(%s)</B> ' % ( l[2], l[1] )
print ' </TD></TR>' print ' </TD></TR>'
print ' <TR><TD>' print ' <TR><TD>'
print ' <Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">' print ' <Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">'
for c,v in l[3:]: for c,v,s in l[3:]:
print " <TR><TD> %s </TD> <TD> %s </TD></TR>" % (c.title(), v) print " <TR><TD> %s </TD> <TD> %s </TD></TR>" % (c.title(), v[0])
print ' </Table>' print ' </Table>'
print ' </TD></TR>' print ' </TD></TR>'
print '</Table>' print '</Table>'
print print
print '</Body></HTML>' print '</Body></HTML>'
if gbl.createDocs == 3: elif gbl.createDocs == 3: # sequence table
if notes: for l in defs:
if fname.endswith(gbl.ext): print "GROOVE", l[0]
fname='.'.join(fname.split('.')[:-1]) print "DESCRIPTION", l[2]
print "%s.mma %s" % (fname, notes) print "SIZE", l[1]
print for c,v,s in l[3:]:
print "TRACK", c
print "VOICE", v
print "SEQ", s
if variables: elif gbl.createDocs == 99: # creating entry for groove browser
print " Variables:" for a,b in (("``", '"'), ("''", '"'), (' ', ' ')):
for l in variables: notes = notes.replace(a,b)
print " %s %s" % ( l[0], l[1] ) if not notes:
print notes = "No header available ... please add DOC to file"
print notes
for l in defs:
print "%s\n %s" % (l[0], l[2])
else:
return
if defs:
for l in defs:
print "Groove %s" % l[0].title()
MMA.grooves.grooveDo(l[0].upper())
for t in sorted(gbl.tnames):
tr = gbl.tnames[t]
sq = tr.sequence
if sq[0]:
rt = []
for a in range(gbl.seqSize):
s=sq[a]
x = '{' + tr.formatPattern(sq[a]) + '}'
rt.append(x)
print " %s Sequence %s" % (tr.name, ' '.join(rt))
if tr.vtype == 'DRUM':
print " %s Tone %s" % (tr.name,
' '.join([MMA.midiC.valueToDrum(a) for a in tr.toneList]))
else:
print " %s Voice %s" % (tr.name,
' '.join([MMA.midiC.voiceNames[a] for a in tr.voice]))
print
defs = [] defs = []
variables=[] variables=[]
notes = "" notes = ""
@ -314,14 +306,155 @@ def totex(s):
def docVerbose(): def htmlGraph(f):
""" Print verbose pattern/sequence info: -Dp command line. """ """ Print (stdout) an html file representing a graph and details of the current groove."""
global fname, author, notes, defs, variables global fname, author, notes, variables, defs
def getAbsPair(x1, x2):
if abs(x1) == abs(x2):
return "%s" % abs(x1)
else:
return "%s,%s" % (x1,x2)
def docol(lab, data):
if lab == '':
return
if type(data) != type([]):
data = [data]
print " <td width=50%>",
print "%s: " % lab,
if len(set(data)) == 1:
print str(data[0]),
else:
print '&nbsp;&nbsp;'.join([str(x) for x in data]),
print " </td>"
def dorow(a, a1, b, b1):
print "<tr>"
docol(a, a1)
docol(b, b1)
print "</tr>"
defs = [] defs = []
variables=[] variables=[]
notes = "" notes = ""
author = "" author = ""
desc = ""
if '/' in f:
u, f = f.rsplit('/', 1)
MMA.parse.usefile([u])
MMA.grooves.groove([f])
groove = MMA.grooves.currentGroove.title()
for a in defs:
if a[0].upper() == groove.upper():
desc = a[2]
print '<!-- Auto-Generated by MMA on: %s -->' % time.ctime()
print '<HTML>'
print '<BODY BGCOLOR="#B7DFFF" Text=Black>'
#if fname.endswith(gbl.ext):
# fname='.'.join(fname.split('.')[:-1])
print "<h2>File: %s</h2>" % fname
print "<h2>Groove: %s</h2>" % groove
print "<p><b>Notes:</b> %s" % notes
print "<p><b>Author:</b> %s" % author
print "<p><b>Description:</b> %s" % desc
print "<p><Table Border=0 Width=75%>"
dorow("SeqSize", gbl.seqSize, "Time (beats per bar)", gbl.QperBar)
print "</Table>"
if variables:
print "<p> <b>Variables</b>"
print '<Table Border=.2em Cellspacing=5 Cellpadding=5 Width="90%">'
for l in variables:
print " <TD Valign=Top> <B> %s </B> </TD> " % l[0]
print " <TD Valign=Top> %s </TD>" % l[1]
print " </TR>"
print '</Table>'
for t in sorted(gbl.tnames.keys()):
trk = gbl.tnames[t]
if not trk.sequence or len(trk.sequence)==trk.sequence.count(None):
continue
print "<p> <b>Track Name: %s</b>" % t.title()
print "<p><Table Border=0 Width=75%>"
if trk.vtype == "DRUM":
v = [ MMA.midiC.valueToDrum(x) for x in trk.toneList]
else:
v = [ MMA.midiC.valueToInst(x) for x in trk.voice]
dorow("Voice/Tones", v, "Articulate", trk.artic)
v = [str(x *100) for x in trk.volume]
if trk.vtype != "DRUM":
oct = [x/12 for x in trk.octave]
dorow('Unify', trk.unify, "Octave", oct )
dorow("Volume", v, "Harmony", trk.harmony)
v1=[str(x * 100) for x in trk.rSkip]
v2=[getAbsPair(x1 * 100, x2 * 100) for x1,x2 in trk.rVolume]
dorow("Rskip", v1, "Rvolume", v2)
v1=[getAbsPair(x1, x2) for x1,x2 in trk.rTime]
if trk.seqRnd:
v2="On"
else:
v2="Off"
dorow("Rtime", v1, "SeqRND", v2)
if trk.vtype == 'CHORD':
vv=trk.voicing.mode
v='Voicing'
else:
vv=v=''
dorow("Strum", trk.strum, v, vv)
print "</Table>"
pointx = 2.5
pointPerS = pointx * gbl.QperBar
pointy = 5
boxx = gbl.seqSize * pointPerS
boxy = pointy
print r'<div style="position:relative;background-color:#99bdf4;'
print r'padding:0; border:.1em solid black; left:5em;'
print r'height:%sem; width:%sem">' % (boxy, boxx)
if gbl.seqSize > 1:
for a in range(1, gbl.seqSize):
print r'<img style="position:absolute; bottom:0; left:%sem;' % (a * pointPerS),
print r'width:.05em; height:%sem; border:.05em solid white"' % pointy,
print r'src="../black.gif">'
for a in range(gbl.seqSize):
s = trk.sequence[a]
if not s: continue
for p in s:
bwidth = p.duration * pointx * (trk.artic[a]/100.)/gbl.BperQ
if bwidth < .1:
bwidth=.1
offset = (p.offset * pointx)/gbl.BperQ + (a * pointPerS)
#offset = (p.offset/gbl.BperQ) * pointx + (a * pointPerS)
if trk.vtype == 'CHORD' or trk.vtype == 'PLECTRUM':
ll = len(p.vol) - p.vol.count(0)
vol = sum(p.vol) / ll
else:
vol = p.vol
height = (vol * pointy) / 127
print r'<img style="position:absolute; border:.02em solid red;bottom:0; ',
print r'left:%sem; width:%sem; height:%sem"' % ( offset, bwidth, height)
print r' src="../blue.gif">'
print r'</div>'
print '</Body></HTML>'
sys.exit(0)

50
mma/MMA/exits.py Normal file
View File

@ -0,0 +1,50 @@
# exits.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
This module contains cleanup code to be called on exit of MMA.
"""
import atexit
import os
import gbl
files = []
def cleanup():
""" This cleanup routine will delete registered files. Currently this
includes:
files ... created by groove preview and autoplay funcs
"""
for f in files:
try:
os.remove(f)
except:
pass
atexit.register(cleanup)

View File

@ -29,6 +29,17 @@ import os
import gbl import gbl
from MMA.common import * from MMA.common import *
def fixfname(f):
""" Convert embedded space characters in filename to real spaces.
Originally this was done with .decode("string-escape") but that
doesn't work with windows path names. So, now we just replace
any \x20 sequences with single spaces.
"""
f = f.replace('\\x20', ' ')
return os.path.expanduser(f)
def locFile(name, lib): def locFile(name, lib):
""" Locate a filename. """ Locate a filename.
@ -42,7 +53,7 @@ def locFile(name, lib):
ext=gbl.ext ext=gbl.ext
exists = os.path.exists exists = os.path.exists
name=os.path.expanduser(name) # for ~ expansion only name=fixfname(name) # for ~ expansion only
if lib: if lib:
if not name.endswith(ext): if not name.endswith(ext):
@ -92,7 +103,6 @@ class ReadFile:
self.que = [] # que for pushed lines (mainly for REPEAT) self.que = [] # que for pushed lines (mainly for REPEAT)
self.qnums = [] self.qnums = []
dataStore = self.FileData # shortcut to avoid '.'s dataStore = self.FileData # shortcut to avoid '.'s
try: try:
@ -171,7 +181,6 @@ class ReadFile:
with only a NNN. with only a NNN.
""" """
if l[0].upper()=='LABEL': if l[0].upper()=='LABEL':
if len(l) !=2: if len(l) !=2:
gbl.lineno = lcount gbl.lineno = lcount
@ -287,10 +296,7 @@ class ReadFile:
""" """
while 1: while 1:
if self.que: # Return a queued line if possible.
# Return a queued line if possible.
if self.que:
ln = self.que.pop(-1) ln = self.que.pop(-1)
gbl.lineno = self.qnums.pop() gbl.lineno = self.qnums.pop()
@ -300,14 +306,10 @@ class ReadFile:
return ln return ln
# Return the next line in the file. # Return the next line in the file.
if self.lineptr>=self.lastline: if self.lineptr>=self.lastline:
return None #### EOF return None #### EOF
ln=self.fdata[self.lineptr].data ln=self.fdata[self.lineptr].data
gbl.lineno = self.fdata[self.lineptr].lnum gbl.lineno = self.fdata[self.lineptr].lnum
self.lineptr +=1 self.lineptr +=1

View File

@ -24,7 +24,20 @@ Bob van der Poel <bob@mellowood.ca>
import os import os
version = "1.4" # Version -- Sept/2008 version = "1.7" # Version -- Nov/2010
""" A few globals are actually set in the calling stub, mma.py.This is
done to make future ports and platform specific settings a bit easier.
The following variables are imported from mma.py and stored here:
platform - host platform, Windows, Linux, etc.
MMAdir - the home directory for mma stuff
The above variables can be accessed from the rest of the mma modules in
the form "gbl.MMAdir", etc.
"""
from __main__ import MMAdir, platform
""" mtrks is storage for the MIDI data as it is created. """ mtrks is storage for the MIDI data as it is created.
It is a dict of class Mtrk() instances. Keys are the It is a dict of class Mtrk() instances. Keys are the
@ -96,31 +109,41 @@ transpose = 0 # Transpose is global (ignored by drum tracks)
lineno = -1 # used for error reporting lineno = -1 # used for error reporting
swingMode = 0 # defaults to 0, set to 1 for swing mode
swingSkew = None # this is just for $_SwingMode macro
barNum = 0 # Current line number barNum = 0 # Current line number
barPtrs = {} # for each bar, pointers to event start/end
synctick = 0 # flag, set if we want a tick on all tracks at offset 0 synctick = 0 # flag, set if we want a tick on all tracks at offset 0
endsync = 0 # flag, set if we want a eof sync endsync = 0 # flag, set if we want a eof sync
############# Path and search variables. ############# ############# Path and search variables. #############
# In mma.py we checked for known directories and inserted the
# first found 'mma' directory into the sys.path list and set MMAdir.
# Assume that this is where the rest of mma's configuration file
# live. If mma runs but can't fine includes, etc. look in mma.py
# and add the proper paths.
libPath = ''
for p in ( "c:\\mma\\lib", "/usr/local/share/mma/lib", "/usr/share/mma/lib", "./lib"):
if os.path.isdir(p):
libPath=p
break
incPath = '' libPath = os.path.join(MMAdir, 'lib')
for p in ( "c:\\mma\\includes", "/usr/local/share/mma/includes", if not os.path.isdir(libPath):
"/usr/share/mma/includes", "./includes"): print "Warning: Library directory not found."
if os.path.isdir(p):
incPath=p incPath = os.path.join(MMAdir, 'includes')
break if not os.path.isdir(incPath):
print "Warning: Include directory not found."
# Set up autolib defaults. We start with MMALIB/stdlib and append
# any other directories we find in MMALIB. Note, the order of
# libs after stdlib is alphabetical.
# User can change the libs with SetAutoLibPath dir1 dir2 etc.
autoLib=['stdlib']
dirs = sorted(os.listdir(libPath))
for d in dirs:
if os.path.isdir(os.path.join(libPath, d)) and d not in autoLib:
autoLib.append(d)
autoLib = 'stdlib'
outPath = '' # Directory for MIDI file outPath = '' # Directory for MIDI file
mmaStart = [] # list of START files mmaStart = [] # list of START files
@ -140,15 +163,22 @@ runningStatus = 1 # running status enabled
it hurts too much. it hurts too much.
""" """
debug = Ldebug = 0 barRange = [] # both -B and -b use this
pshow = Lpshow = 0
seqshow = Lseqshow = 0 # the Lxxx values are the previous settings, used for LASTDEBUG macro
showrun = Lshowrun = 0
noWarn = LnoWarn = 0 debug = Ldebug = 0
noOutput = LnoOutput = 0 pshow = Lpshow = 0
showExpand = LshowExpand = 0 seqshow = Lseqshow = 0
showrun = Lshowrun = 0
noWarn = LnoWarn = 0
noOutput = LnoOutput = 0
showExpand = LshowExpand = 0
showFilenames = LshowFilenames = 0 showFilenames = LshowFilenames = 0
chshow = Lchshow = 0 chshow = Lchshow = 0
plecShow = LplecShow = 0 # not a command line setting
rmShow = LrmShow = 0 # not command
outfile = None outfile = None
infile = None infile = None
@ -158,5 +188,5 @@ makeGrvDefs = 0
cmdSMF = None cmdSMF = None
playFile = 0 # set if we want to call a player playFile = 0 # set if we want to call a player
midiPlayer = "aplaymidi"

View File

@ -94,7 +94,7 @@ def grooveDefine(ln):
if gbl.debug: if gbl.debug:
print "Groove settings saved to '%s'." % slot print "Groove settings saved to '%s'." % slot
if gbl.makeGrvDefs: if gbl.makeGrvDefs: # doing a database update ...
MMA.auto.updateGrooveList(slot) MMA.auto.updateGrooveList(slot)
if len(ln) > 1: if len(ln) > 1:
@ -112,10 +112,7 @@ def grooveDefineDo(slot):
'QPERBAR': gbl.QperBar, 'QPERBAR': gbl.QperBar,
'SEQRND': MMA.seqrnd.seqRnd[:], 'SEQRND': MMA.seqrnd.seqRnd[:],
'TIMESIG': MMA.midi.timeSig.get(), 'TIMESIG': MMA.midi.timeSig.get(),
'81': MMA.notelen.noteLenTable['81'], 'SWINGMODE': MMA.swing.gsettings() ,
'82': MMA.notelen.noteLenTable['82'],
'SWINGMODE': gbl.swingMode ,
'SWINGSKEW': gbl.swingSkew,
'VRATIO': (MMA.volume.vTRatio, MMA.volume.vMRatio)} 'VRATIO': (MMA.volume.vTRatio, MMA.volume.vMRatio)}
@ -174,16 +171,15 @@ def groove(ln):
print "Groove '%s' not defined. Trying auto-load from libraries" \ print "Groove '%s' not defined. Trying auto-load from libraries" \
% slot % slot
l=MMA.auto.loadGrooveDir(slot) # name of the lib file with groove l=MMA.auto.findGroove(slot) # name of the lib file with groove
if l: if l:
if gbl.debug: if gbl.debug:
print "Attempting to load groove '%s' from '%s'." % (slot, l) print "Attempting to load groove '%s' from '%s'." % (slot, l)
reportFutureVols() reportFutureVols()
MMA.parse.usefile([l])
MMA.parse.usefile([os.path.join(gbl.autoLib, l)])
if not slot in glist: if not slot in glist:
error("Groove '%s' not found. Have libraries changed " error("Groove '%s' not found. Have libraries changed "
"since last 'mma -g' run?" % slot) "since last 'mma -g' run?" % slot)
@ -223,6 +219,7 @@ def groove(ln):
if gbl.debug: if gbl.debug:
print "Groove settings restored from '%s'." % slot print "Groove settings restored from '%s'." % slot
def grooveDo(slot): def grooveDo(slot):
""" This is separate from groove() so we can call it from """ This is separate from groove() so we can call it from
usefile() with a qualified name. """ usefile() with a qualified name. """
@ -238,15 +235,13 @@ def grooveDo(slot):
gbl.QperBar = g['QPERBAR'] gbl.QperBar = g['QPERBAR']
MMA.seqrnd.seqRnd = g['SEQRND'] MMA.seqrnd.seqRnd = g['SEQRND']
MMA.midi.timeSig.set( *g['TIMESIG']) # passing tuple as 2 args. MMA.midi.timeSig.set( *g['TIMESIG']) # passing tuple as 2 args.
MMA.notelen.noteLenTable['81'] = g['81'] MMA.swing.grestore( g['SWINGMODE'] )
MMA.notelen.noteLenTable['82'] = g['82']
gbl.swingMode = g['SWINGMODE']
gbl.swingSkew = g['SWINGSKEW']
MMA.volume.vTRatio, MMA.volume.vMRatio = g['VRATIO'] MMA.volume.vTRatio, MMA.volume.vMRatio = g['VRATIO']
for n in gbl.tnames.values(): for n in gbl.tnames.values():
n.restoreGroove(slot) n.restoreGroove(slot)
""" This is important! Tracks NOT overwritten by saved grooves way """ This is important! Tracks NOT overwritten by saved grooves way
have the wrong sequence length. I don't see any easy way to hit have the wrong sequence length. I don't see any easy way to hit
just the unchanged/unrestored tracks so we do them all. just the unchanged/unrestored tracks so we do them all.
@ -396,13 +391,13 @@ def allgrooves(ln):
""" Apply a command to all currently defined grooves. """ """ Apply a command to all currently defined grooves. """
if not ln: if not ln:
error("OverRide: requires a directive.") error("AllGrooves: requires arguments.")
origSlot = MMA.parse.gmagic # save the current groove origSlot = MMA.parse.gmagic # save the current groove
grooveDefineDo(origSlot) grooveDefineDo(origSlot)
action = ln[0].upper() action = ln[0].upper() # either a command or a trackname
if len(ln)>1: if len(ln)>1:
trAction = ln[1].upper() trAction = ln[1].upper()
else: else:
@ -413,31 +408,30 @@ def allgrooves(ln):
counter = 0 counter = 0
for g in glist: for g in glist: # do command for each groove in memory
grooveDo(g) grooveDo(g) # active existing groove
if action in sfuncs: if action in sfuncs: # test for non-track command and exe.
sfuncs[action](ln[1:]) sfuncs[action](ln[1:])
counter += 1 counter += 1
continue
if len(ln) < 2: else: # not a non-track, see if track command
error("AllGrooves: No command for assumed trackname %s." % action) if not trAction:
error("AllGrooves: No command for assumed trackname %s." % action)
name=action
if not name in gbl.tnames: name = action # remember 'action' is ln[0]. Using 'name' just makes it clearer
continue if not name in gbl.tnames: # skip command if track doesn't exist
continue
if trAction in tfuncs: if trAction in tfuncs:
tfuncs[trAction](name, ln[2:]) tfuncs[trAction](name, ln[2:])
counter += 1 counter += 1
else: else:
error ("AllGrooves: Not a command: '%s'" % ' '.join(ln)) error ("AllGrooves: Not a command: '%s'" % ' '.join(ln))
grooveDefineDo(g) # store the change!!! grooveDefineDo(g) # store the change!!!
grooveDo(origSlot) # restore groove grooveDo(origSlot) # restore original state
if not counter: if not counter:
warning("No tracks affected with '%s'" % ' '.join(ln)) warning("No tracks affected with '%s'" % ' '.join(ln))

View File

@ -38,26 +38,50 @@ def harmonize(hmode, note, chord):
if tp in ('2', '2BELOW'): if tp in ('2', '2BELOW'):
hnotes.append( gethnote(note, chord) ) hnotes.append( gethnote(note, chord) )
elif tp == '28Below':
hnotes.append( gethnote(note, chord)-12)
elif tp == '2ABOVE': elif tp == '2ABOVE':
hnotes.append( gethnote(note, chord)+12 ) hnotes.append( gethnote(note, chord)+12 )
elif tp == '28ABOVE':
hnotes.append( gethnote(note, chord)+24 )
elif tp in ( '3', '3BELOW'): elif tp in ( '3', '3BELOW'):
a = gethnote(note, chord) a = gethnote(note, chord)
b = gethnote(a, chord) b = gethnote(a, chord)
hnotes.extend( [a, b] ) hnotes.extend( [a, b] )
elif tp == '38BELOW':
a = gethnote(note, chord)
b = gethnote(a, chord)
hnotes.extend( [a-12, b-12] )
elif tp == '3ABOVE': elif tp == '3ABOVE':
a = gethnote(note, chord) a = gethnote(note, chord)
b = gethnote(a, chord) b = gethnote(a, chord)
hnotes.extend( [a+12, b+12] ) hnotes.extend( [a+12, b+12] )
elif tp == '38ABOVE':
a = gethnote(note, chord)
b = gethnote(a, chord)
hnotes.extend( [a+24, b+24] )
elif tp in ('OPEN', "OPENBELOW"): elif tp in ('OPEN', "OPENBELOW"):
a=gethnote(note, chord) a=gethnote(note, chord)
hnotes.append( gethnote(a, chord)) hnotes.append( gethnote(a, chord))
elif tp == 'OPEN8BELOW':
a = gethnote(note, chord)
hnotes.append( gethnote(a-12, chord))
elif tp == 'OPENABOVE': elif tp == 'OPENABOVE':
a=gethnote(note, chord) a=gethnote(note, chord)
hnotes.append( gethnote(a, chord) + 12 ) hnotes.append( gethnote(a, chord) + 12 )
elif tp == 'OPEN8ABOVE':
a=gethnote(note, chord)
hnotes.append( gethnote(a, chord) + 24 )
elif tp in ('8', '8BELOW'): elif tp in ('8', '8BELOW'):
hnotes.append( note - 12 ) hnotes.append( note - 12 )
@ -79,13 +103,11 @@ def harmonize(hmode, note, chord):
else: else:
error("Unknown harmony type '%s'" % tp) error("Unknown harmony type '%s'" % tp)
""" Strip out duplicate notes from harmony list. Cute trick here, """ Strip out duplicate notes from harmony list.
we use the note values as keys for a new dictionary, assign Cute trick here ... using set().
a null value, and return the list of keys.
""" """
return dict([(i, None) for i in hnotes]).keys() return list(set(hnotes))
def gethnote(note, chord): def gethnote(note, chord):
""" Determine harmony notes for a note based on the chord. """ Determine harmony notes for a note based on the chord.

171
mma/MMA/keysig.py Normal file
View File

@ -0,0 +1,171 @@
# keysig.py
"""
The program "MMA - Musical Midi Accompaniment" and the associated
modules distributed with it are protected by copyright.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
Keysignature is used in the solo/melody tracks and for midinote.
A single instance class is created here and can be accessed from any
other module.
"""
import gbl
from MMA.common import *
majKy = { "C" : 0, "G" : 1, "D" : 2,
"A" : 3, "E" : 4, "B" : 5,
"F#": 6, "C#": 7, "F" : -1,
"Bb": -2, "Eb": -3, "Ab": -4,
"Db": -5, "Gb": -6, "Cb": -7 }
minKy = { "A" : 0, "E" : 1, "B" : 2,
"F#": 3, "C#": 4, "G#": 5,
"D#": 6, "A#": 7, "D" : -1,
"G" : -2, "C" : -3, "F" : -4,
"Bb": -5, "Eb": -6, "Ab": -7 }
class KeySig:
def __init__(self):
self.kSig = 0
self.kName = ['C', 0]
self.setAccList()
def set(self,ln):
""" Set the keysignature. Used by solo tracks. Formats are:
1. A,D,E, Eb, etc followed by optional minor/major
flat can be b or &, sharp is #
2. Number of sharps/flats plus option minor/major
id 3b or 2#
"""
mi = 0 #assume Major
if len(ln) < 1 or len(ln) > 2:
error("KeySig: Needs 1 or 2 arguments.")
# got 2 args, parse off minor/major
if len(ln) == 2:
l = ln[1][0:3].upper()
if l == 'MIN':
mi = 1
elif l == 'MAJ':
mi = 0
else:
error("KeySig: 2nd arg must be 'Major' or 'Minor', not '%s'" % ln[1])
self.kName[1] = mi # remember maj/min setting
# get the key
kname = ln[0][0]
kname = kname.upper()
if len(ln[0])>1:
kname += ln[0][1:]
if kname[0] in "ABCDEFG":
if len(kname) == 2 and kname[1] == '&':
kname = kname[0] + 'b'
if mi and kname in minKy:
self.kSig = minKy[kname]
elif not mi and kname in majKy:
self.kSig = majKy[kname]
else:
if mi: mi = 'minor'
else: mi = 'major'
error("KeySigs: keysignature '%s %s' is unknown/impossible." % (kname, mi))
self.kName[0] = kname # save name ('C', "Eb", etc)
midikey=majKy[kname]
elif kname[0] in "01234567":
c = int(kname[0])
if len(kname) < 2:
error("KeySig: numerical keysig needs sharp/flat indicator.")
f = kname[1].upper()
if not f in ("B", "&", "#"):
error("KeySig: 2nd char in KeySig must be 'b' or '#', not '%s'" % f)
self.kSig = midikey = int(c)
if f in ('B', '&'):
self.kSig = -self.kSig
if mi:
z = minKy
else:
z = majKy
for a in z:
if z[a]==self.kSig:
self.kName[0]=a
break
else:
error("KeySig: unknown keysignature '%s'." % ln[0])
# Set the midi meta track with the keysig. This doen't do anything
# in the playback, but other programs may use it.
if midikey < 0:
midikey = 256 + midikey
gbl.mtrks[0].addKeySig(gbl.tickOffset, midikey, mi)
self.setAccList()
if gbl.debug:
print "KeySig:", self.getKeysig()
def getKeysig(self):
""" Create a key sig string. """
return "%s %s" % (self.kName[0], ('Major', 'Minor')[self.kName[1]])
def setAccList(self):
""" Create a keysig table. This table is created in __init__ and
when a keysig changes. There is an entry for each note,
either -1,0,1 corresponding to flat,natural,sharp. We populate
the table for each bar from the keysig value.
Melody/solo tracks are given a copy of the table when they can
then modify.
"""
acc = {'a':0, 'b':0, 'c':0, 'd':0, 'e':0, 'f':0, 'g':0 }
ks=self.kSig
if ks < 0:
for a in range( abs(ks) ):
acc[ ['b','e','a','d','g','c','f'][a] ] = -1
else:
for a in range(ks):
acc[ ['f','c','g','d','a','e','b'][a] ] = 1
self.accList=acc
keySig=KeySig() # single instance

View File

@ -25,7 +25,7 @@ Bob van der Poel <bob@mellowood.ca>
import gbl import gbl
from MMA.common import * from MMA.common import *
import MMA.paths
class Lyric: class Lyric:
@ -34,6 +34,7 @@ class Lyric:
versenum = 1 # current verse number of lyric versenum = 1 # current verse number of lyric
dupchords = 0 # set if we want chords as lyric events dupchords = 0 # set if we want chords as lyric events
transpose = 0 # tranpose chord names (for dupchords only) transpose = 0 # tranpose chord names (for dupchords only)
karmode = 0 # in kar mode use textevents, split at hyphens
pushedLyrics = [] pushedLyrics = []
@ -79,44 +80,26 @@ class Lyric:
if self.transKey: a+="Sharp" if self.transKey: a+="Sharp"
else: a+="Flat" else: a+="Flat"
a += " KAR="
if self.karmode: a+="On"
else: a+="Off"
return a return a
def option(self, ln): def option(self, ln):
""" Set a lyric option. """ """ Set a lyric option. """
for i, l in enumerate(ln): ln, opts = opt2pair(ln)
l=l.upper()
# Single word options for o, v in opts:
o = o.upper()
v = v.upper()
if l.upper()=="SET": if o == 'EVENT':
if i>=len(ln):
s=''
else:
s=' '.join(ln[i+1:]).strip()
if not s.startswith('['):
s = '[' + s + ']'
self.pushedLyrics.append(s)
break
# All the rest are OPT=VALUE pairs
try:
a,v = l.split('=')
except:
error("Lyric options must be in CMD=VALUE pairs")
if a == 'EVENT':
if v == 'TEXT': if v == 'TEXT':
self.textev = 1 self.textev = 1
warning ("Lyric: Placing lyrics as TEXT EVENTS is not recommended") warning ("Lyric: Placing lyrics as TEXT EVENTS is not recommended")
elif v == 'LYRIC': elif v == 'LYRIC':
self.textev = None self.textev = None
@ -124,10 +107,10 @@ class Lyric:
print "Lyric: lyrics set as LYRIC events." print "Lyric: lyrics set as LYRIC events."
else: else:
error("Valid options for Lyric Event are TEXT or LYRIC") error("Lyric: Valid options for EVENT are TEXT or LYRIC.")
elif a == 'SPLIT': elif o == 'SPLIT':
if v == 'BAR': if v == 'BAR':
self.barsplit = 1 self.barsplit = 1
if gbl.debug: if gbl.debug:
@ -139,10 +122,10 @@ class Lyric:
print "Lyric: lyrics appear as one per bar." print "Lyric: lyrics appear as one per bar."
else: else:
error("Valid options for Lyric Split are BAR or NORMAL") error("Lyric: Valid options for SPLIT are BAR or NORMAL.")
elif a == 'VERSE': elif o == 'VERSE':
if v.isdigit(): if v.isdigit():
self.versenum = int(v) self.versenum = int(v)
@ -153,55 +136,112 @@ class Lyric:
self.versenum -= 1 self.versenum -= 1
else: else:
error("Valid options of Lyric Verse are <nn> or INC or DEC") error("Lyric: Valid options for VERSE are <nn>, INC or DEC")
if self.versenum < 1: if self.versenum < 1:
error("Attempt to set Lyric Verse to %s. Values " error("Lyric: Attempt to set Verse to %s. Values must be > 0" % self.versenum)
"must be > 0" % self.versenum)
if gbl.debug: if gbl.debug:
print "Lyric: verse number set to %s" % self.versenum print "Lyric: Verse number set to %s" % self.versenum
elif a == 'CHORDS': elif o == 'CHORDS':
if v in ('1', 'ON'): if v in ('1', 'ON'):
self.dupchords = 1 self.dupchords = 1
if gbl.debug: if gbl.debug:
print "Lyric: chords are duplicated as lyrics." print "Lyric: Chords are duplicated as lyrics."
elif v in ('0', 'OFF'): elif v in ('0', 'OFF'):
self.dupchords = 0 self.dupchords = 0
if gbl.debug: if gbl.debug:
print "Lyric: chords are NOT duplicated as lyrics." print "Lyric: Chords are NOT duplicated as lyrics."
else: else:
error ("Expecting 'ON' or 'OFF' in Lyric directive, not 'CHORDS=%s'" % v) error ("Lyric: CHORDS expecting 'ON' or 'OFF', not %s'" % v)
elif a == 'TRANSPOSE': elif o == 'TRANSPOSE':
v = stoi(v, "Lyric: Tranpose expecting value, not %s" % v)
v = stoi(v, "Lyric Tranpose expecting value, not %s" % v)
if v < -12 or v > 12: if v < -12 or v > 12:
error("Lyric Tranpose %s out-of-range; must be -12..12" % v) error("Lyric: Tranpose %s out-of-range; must be -12..12" % v)
self.transpose = v self.transpose = v
elif a == 'CNAMES': if gbl.debug:
print "Lyric: Chord names transposed %s steps." % v
elif o == 'CNAMES':
if v in ('#', 'SHARP'): if v in ('#', 'SHARP'):
self.transKey = 1 self.transKey = 1
elif v in ('B', '&', 'FLAT'): elif v in ('B', '&', 'FLAT'):
self.transKey = 0 self.transKey = 0
else: else:
error("Lyric CNames expecting 'Sharp' or 'Flat', not '%s'" % v ) error("Lyric CNames expecting 'Sharp' or 'Flat', not '%s'" % v )
if gbl.debug:
print "Lyric: Chord names favor"
if self.transKey:
print "#."
else:
print "b."
elif o == 'KARMODE':
if v in ('ON', '1'):
self.karmode = 1
if not hasattr(self, 'setkar'):
self.setkar = 1
meta=gbl.mtrks[0]
# this converts the "created" text to kar format
mt = meta.miditrk
if 0 in mt: # don't bother if no events at 0
txt=None
for t,ev in enumerate(mt[0]):
if ord(ev[1]) == 1:
ev=ev[3:]
if ev.startswith("Created by MMA"):
txt = "@I " + ev
del mt[0][t]
break
if txt:
meta.addText(0, txt)
# other kar fields
meta.addText(0, "@KMIDI KARAOKE FILE")
meta.addText(0, "@V0100")
# change extension to .kar
MMA.paths.createOutfileName('.kar')
elif v in ('OFF', '0'):
self.karmode = 0
else:
error("Lyric Kar expecting On, 1, Off or 0, not '%s'." % v)
if gbl.debug:
print "Lyric: Karmode",
if self.karmode: print "enabled."
else: print "disabled."
else: else:
error("Usage: Lyric expecting EVENT, SPLIT, VERSE, CHORDS, TRANSPOSE, CNAMES or SET, " error("Usage: Lyric expecting EVENT, SPLIT, VERSE, CHORDS, TRANSPOSE,"
"not '%s'" % a ) "CNAMES, KAR or SET, not '%s'" % o )
# All the opt=value options have been taken care of. ln can now only
# contain "Set ..." Anything else is an error.
if not ln:
return
if ln[0].upper() != "SET":
error("Lyric: Unknown option '%'." % ln[0])
s=' '.join(ln[1:]).strip()
if not s.startswith('['):
s = '[' + s + ']'
self.pushedLyrics.append(s)
def leftovers(self): def leftovers(self):
@ -234,7 +274,6 @@ class Lyric:
ln = ln + self.pushedLyrics.pop(0) ln = ln + self.pushedLyrics.pop(0)
a=b=1 # flag that we have lyrics, count really doesn't matter a=b=1 # flag that we have lyrics, count really doesn't matter
if rpt > 1: if rpt > 1:
if self.dupchords: if self.dupchords:
error("Chord to lyrics not supported with bar repeat") error("Chord to lyrics not supported with bar repeat")
@ -309,11 +348,16 @@ class Lyric:
lyrics=lyrics.replace('\\n', ' \\n ') lyrics=lyrics.replace('\\n', ' \\n ')
lyrics=lyrics.replace(' ', ' ') lyrics=lyrics.replace(' ', ' ')
if self.karmode:
lyrics = lyrics.replace('\-', chr(1))
lyrics = lyrics.replace('-', chr(0)+' ')
if self.barsplit: if self.barsplit:
lyrics = [lyrics] lyrics = [lyrics]
else: else:
lyrics = lyrics.split() lyrics = lyrics.split()
beat = 0 beat = 0
bstep = gbl.QperBar / float(len(lyrics)) bstep = gbl.QperBar / float(len(lyrics))
@ -331,12 +375,16 @@ class Lyric:
a = a.replace('\\r', '\r') a = a.replace('\\r', '\r')
a = a.replace('\\n', '\n') a = a.replace('\\n', '\n')
if a and a != ' ': if a and a != ' ':
if not a.endswith('-'): if a and self.karmode and (chr(0) in a or chr(1) in a):
a=a.replace(chr(0), '')
a=a.replace(chr(1), '-')
elif not a.endswith('-') and not a.endswith('\n') and not a.endswith('\r'):
a += ' ' a += ' '
p=getOffset(beat * gbl.BperQ) p=getOffset(beat * gbl.BperQ)
if self.textev: if self.textev or self.karmode:
gbl.mtrks[0].addText(p, a) gbl.mtrks[0].addText(p, a)
else: else:
gbl.mtrks[0].addLyric(p, a) gbl.mtrks[0].addLyric(p, a)

View File

@ -35,7 +35,10 @@ import MMA.patAria
import MMA.volume import MMA.volume
import MMA.grooves import MMA.grooves
import MMA.parse import MMA.parse
import MMA.player
import MMA.seqrnd import MMA.seqrnd
import MMA.midinote
import MMA.swing
import gbl import gbl
from MMA.lyric import lyric from MMA.lyric import lyric
@ -43,8 +46,22 @@ from MMA.common import *
from MMA.safe_eval import safe_eval from MMA.safe_eval import safe_eval
class Macros: def sliceVariable(p, sl):
""" Slice a variable. Used by macro expand. """
try:
new = eval('p' + "[" + sl + "]")
except IndexError:
error("Index '%s' out of range." % sl)
except:
error("Index error in '%s'." % sl)
if ":" not in sl:
new = [new]
return new
class Macros:
vars={} # storage vars={} # storage
expandMode = 1 # flag for variable expansion expandMode = 1 # flag for variable expansion
pushstack = [] pushstack = []
@ -70,12 +87,7 @@ class Macros:
# Simple/global system values # Simple/global system values
if s == 'KEYSIG': if s == 'KEYSIG':
a=MMA.patSolo.keySig.kSig return MMA.keysig.keySig.getKeysig()
if a >= 0:
f='#'
else:
f='b'
return "%s%s" % (abs(a), f)
elif s == 'TIME': elif s == 'TIME':
return str(gbl.QperBar) return str(gbl.QperBar)
@ -85,7 +97,7 @@ class Macros:
elif s == 'VOLUME': elif s == 'VOLUME':
return str(int(MMA.volume.volume * 100)) # INT() is important return str(int(MMA.volume.volume * 100)) # INT() is important
elif s == 'VOLUMERATIO': elif s == 'VOLUMERATIO':
return str((MMA.volume.vTRatio * 100)) return str((MMA.volume.vTRatio * 100))
@ -98,6 +110,9 @@ class Macros:
elif s == 'LASTGROOVE': elif s == 'LASTGROOVE':
return MMA.grooves.lastGroove return MMA.grooves.lastGroove
elif s == 'SEQ':
return str(gbl.seqCount)
elif s == 'SEQRND': elif s == 'SEQRND':
if MMA.seqrnd.seqRnd[0] == 0: return "Off" if MMA.seqrnd.seqRnd[0] == 0: return "Off"
if MMA.seqrnd.seqRnd[0] == 1: return "On" if MMA.seqrnd.seqRnd[0] == 1: return "On"
@ -107,11 +122,7 @@ class Macros:
return str(gbl.seqSize) return str(gbl.seqSize)
elif s == 'SWINGMODE': elif s == 'SWINGMODE':
if gbl.swingMode: return MMA.swing.settings()
a = "On"
else:
a = "Off"
return "%s Skew=%s" % (a, gbl.swingSkew)
elif s == 'TRANSPOSE': elif s == 'TRANSPOSE':
return str(gbl.transpose) return str(gbl.transpose)
@ -123,16 +134,20 @@ class Macros:
elif s == 'DEBUG': elif s == 'DEBUG':
return "Debug=%s Filenames=%s Patterns=%s " \ return "Debug=%s Filenames=%s Patterns=%s " \
"Sequence=%s Runtime=%s Warnings=%s Expand=%s" % \ "Sequence=%s Runtime=%s Warnings=%s Expand=%s " \
"Roman=%s Plectrum=%s" % \
(gbl.debug, gbl.showFilenames, gbl.pshow, gbl.seqshow, \ (gbl.debug, gbl.showFilenames, gbl.pshow, gbl.seqshow, \
gbl.showrun, int(not gbl.noWarn), gbl.showExpand) gbl.showrun, int(not gbl.noWarn), gbl.showExpand,
gbl.rmShow, gbl.plecShow)
elif s == 'LASTDEBUG': elif s == 'LASTDEBUG':
return "Debug=%s Filenames=%s Patterns=%s " \ return "Debug=%s Filenames=%s Patterns=%s " \
"Sequence=%s Runtime=%s Warnings=%s Expand=%s" % \ "Sequence=%s Runtime=%s Warnings=%s Expand=%s " \
"Roman=%s Plectrum=%s" % \
(gbl.Ldebug, gbl.LshowFilenames, gbl.Lpshow, gbl.Lseqshow, \ (gbl.Ldebug, gbl.LshowFilenames, gbl.Lpshow, gbl.Lseqshow, \
gbl.Lshowrun, int(not gbl.LnoWarn), gbl.LshowExpand) gbl.Lshowrun, int(not gbl.LnoWarn), gbl.LshowExpand,
gbl.LrmShow, gbl.LplecShow)
elif s == 'VEXPAND': elif s == 'VEXPAND':
if self.expandMode: if self.expandMode:
@ -140,6 +155,11 @@ class Macros:
else: else:
return "Off" return "Off"
elif s == "MIDIPLAYER":
return "%s Background=%s Delay=%s." % \
(' '.join(MMA.player.midiPlayer), MMA.player.inBackGround,
MMA.player.waitTime)
elif s == "MIDISPLIT": elif s == "MIDISPLIT":
return ' '.join([str(x) for x in MMA.midi.splitChannels]) return ' '.join([str(x) for x in MMA.midi.splitChannels])
@ -147,7 +167,7 @@ class Macros:
return ' '.join([str(x) for x in MMA.seqrnd.seqRndWeight]) return ' '.join([str(x) for x in MMA.seqrnd.seqRndWeight])
elif s == 'AUTOLIBPATH': elif s == 'AUTOLIBPATH':
return gbl.autoLib return ' '.join(gbl.autoLib)
elif s == 'LIBPATH': elif s == 'LIBPATH':
return gbl.libPath return gbl.libPath
@ -235,6 +255,9 @@ class Macros:
error("Mallet only valid in SOLO and MELODY tracks") error("Mallet only valid in SOLO and MELODY tracks")
return "Mallet Rate=%i Decay=%i" % (t.mallet, t.malletDecay*100) return "Mallet Rate=%i Decay=%i" % (t.mallet, t.malletDecay*100)
elif func == 'MIDINOTE':
return MMA.midinote.mopts(t)
elif func == 'OCTAVE': elif func == 'OCTAVE':
return ' '.join([str(a/12) for a in t.octave]) return ' '.join([str(a/12) for a in t.octave])
@ -245,10 +268,25 @@ class Macros:
return ' '.join([str(int(a * 100)) for a in t.rSkip]) return ' '.join([str(int(a * 100)) for a in t.rSkip])
elif func == 'RTIME': elif func == 'RTIME':
return ' '.join([str(x) for x in t.rTime]) tmp = []
for a1, a2 in t.rTime:
if a1 == a2:
tmp.append('%s' % abs(a1))
else:
tmp.append('%s,%s' % ( a1, a2))
return ' '.join(tmp)
elif func == 'RVOLUME': elif func == 'RVOLUME':
return ' '.join([str(int(a * 100)) for a in t.rVolume]) tmp = []
for a1, a2 in t.rVolume:
a1 = int(a1 * 100)
a2 = int(a2 * 100)
if a1 == a2:
tmp.append('%s' % abs(a1))
else:
tmp.append('%s,%s' % ( a1, a2))
return ' '.join(tmp)
elif func == 'SEQUENCE': elif func == 'SEQUENCE':
tmp = [] tmp = []
@ -267,9 +305,18 @@ class Macros:
return "%s %s" % (t.spanStart, t.spanEnd) return "%s %s" % (t.spanStart, t.spanEnd)
elif func == 'STRUM': elif func == 'STRUM':
if t.vtype != "CHORD": r=[]
error("Only CHORD tracks have STRUM") for v in t.strum:
return ' '.join([str(x) for x in t.strum]) if v == None:
r.append("0")
else:
a,b = v
if a==b:
r.append("%s" % a)
else:
r.append("%s,%s" % (a,b))
return ' '.join(r)
elif func == 'TONE': elif func == 'TONE':
if t.vtype != "DRUM": if t.vtype != "DRUM":
@ -311,6 +358,7 @@ class Macros:
return l return l
gotmath=0 gotmath=0
sliceVar = None
while 1: # Loop until no more subsitutions have been done while 1: # Loop until no more subsitutions have been done
sub=0 sub=0
@ -324,34 +372,72 @@ class Macros:
if frst == '$': # $$ - don't expand (done in IF clause) if frst == '$': # $$ - don't expand (done in IF clause)
continue continue
elif frst == '(': # flag math macro if frst == '(': # flag math macro
gotmath = 1 gotmath = 1
continue continue
# pull slice notation off the end of the name
if s.endswith(']'):
x=s.rfind('[')
if not x:
error("No matching for '[' for trailing ']' in variable '%s'." % s)
sliceVar=s[x+1:-1]
s = s[:x]
""" Since we be using an 'eval' to do the actual slicing, we
check the slice string to make sure it's looking valid.
The easy way out makes as much sense as anything else ... just
step through the slice string and make sure we ONLY have
integers or empty slots.
"""
for test in sliceVar.split(":"):
try:
test == '' or int(test)
except:
error("Invalid index in slice notation '%s'." % sliceVar)
else:
sliceVar = None
# we have a var, see if system or user. Set 'ex' # we have a var, see if system or user. Set 'ex'
elif frst == '_': # system var if frst == '_': # system var
ex=self.sysvar(s[1:]) ex=self.sysvar(s[1:])
elif s in self.vars: # user var? elif s in self.vars: # user var?
ex = self.vars[s] ex = self.vars[s]
else: # unknown var...error else: # unknown var...error
error("User variable '%s' has not been defined" % s ) error("User variable '%s' has not been defined" % s )
if type(ex) == type([]): # MSET variable if type(ex) == type([]): # MSET variable
if sliceVar:
ex = sliceVariable(ex, sliceVar)
sliceVar = None
if len(ex): if len(ex):
gbl.inpath.push( ex[1:], [gbl.lineno] * len(ex[1:])) gbl.inpath.push( ex[1:], [gbl.lineno] * len(ex[1:]))
if len(ex): if len(ex):
ex=ex[0] ex=ex[0]
else: else:
ex=[] ex=[]
else: # regular SET variable else: # regular SET variable
ex=ex.split() ex=ex.split()
if sliceVar:
ex = sliceVariable(ex, sliceVar)
sliceVar = None
l=l[:i] + ex + l[i+1:] # ex might be a list, so this is needed """ we have a simple variable (ie $_TEMPO) converted to a list,
or a list-like var (ie $_Bass_Volume) converted to a list,
or the 1st element of a multi-line variable
We concat this into the existing line, process some more
"""
l=l[:i] + ex + l[i+1:]
sub=1 sub=1
break break
@ -423,6 +509,9 @@ class Macros:
if v[0] in ('$', '_'): if v[0] in ('$', '_'):
error("Variable names cannot start with a '$' or '_'") error("Variable names cannot start with a '$' or '_'")
if '[' in v or ']' in v:
error("Variable names cannot contain [ or ] characters.")
return v.upper() return v.upper()
def rndvar(self, ln): def rndvar(self, ln):
@ -508,7 +597,6 @@ class Macros:
self.vars[v]=lm self.vars[v]=lm
def unsetvar(self, ln): def unsetvar(self, ln):
""" Delete a variable reference. """ """ Delete a variable reference. """

View File

@ -24,9 +24,9 @@ Bob van der Poel <bob@mellowood.ca>
""" """
import os import os
import time
import MMA.midi import MMA.midi
import MMA.midifuncs
import MMA.parse import MMA.parse
import MMA.file import MMA.file
import MMA.options import MMA.options
@ -36,7 +36,7 @@ import MMA.docs
import gbl import gbl
from MMA.common import * from MMA.common import *
from MMA.lyric import lyric from MMA.lyric import lyric
import MMA.paths
######################################## ########################################
######################################## ########################################
@ -66,10 +66,15 @@ if gbl.debug:
m = gbl.mtrks[0] = MMA.midi.Mtrk(0) m = gbl.mtrks[0] = MMA.midi.Mtrk(0)
m.addText(0, "Created by MMA.") if gbl.infile:
m.addTrkName(0, 'MetaTrack') fileName=MMA.file.locFile(gbl.infile, None)
m.addTempo(0, gbl.tempo)
MMA.parse.setTimeSig(['4','4']) # most stdlib files will override this if fileName: # needed for certain doc commands.
m.addTrkName(0, "%s" % fileName.rstrip(".mma") )
m.addText(0, "Created by MMA. Input filename: %s" % fileName)
m.addTempo(0, gbl.tempo) # most user files will override this
MMA.midifuncs.setTimeSig(['4','4']) # most stdlib (and/or user) files will override this
##################################### #####################################
# Read an RC file. All found files are processed. # Read an RC file. All found files are processed.
@ -96,8 +101,9 @@ for i in rcfiles:
error("Specified init file '%s' not found" % gbl.mmaRC) error("Specified init file '%s' not found" % gbl.mmaRC)
else: #if not rcread: else: #if not rcread:
gbl.lineno = -1 if gbl.debug:
warning("No RC file was found or processed") gbl.lineno = -1
warning("No RC file was found or processed")
gbl.createDocs = docOption # Restore doc options gbl.createDocs = docOption # Restore doc options
@ -119,18 +125,19 @@ if gbl.makeGrvDefs:
if not gbl.infile: if not gbl.infile:
MMA.options.usage("No input filename specified.") MMA.options.usage("No input filename specified.")
# Add filename to meta track.
gbl.mtrks[0].addText(0, "Input filename: %s" % gbl.infile)
################################ ################################
# Just extract docs (-Dx) to stdout. # Just extract docs (-Dxh, etc) to stdout.
if docOption: if docOption:
f=MMA.file.locFile(gbl.infile, None) if docOption == 4:
if not f: MMA.docs.htmlGraph(gbl.infile)
error("File '%s' not found" % gbl.infile) else:
MMA.parse.parseFile(f) f=MMA.file.locFile(gbl.infile, None)
if not f:
error("File '%s' not found" % gbl.infile)
MMA.parse.parseFile(f)
MMA.docs.docDump()
sys.exit(0) sys.exit(0)
@ -139,30 +146,12 @@ if docOption:
if gbl.cmdSMF: if gbl.cmdSMF:
gbl.lineno = -1 gbl.lineno = -1
MMA.parse.setMidiFileType(['SMF=%s' % gbl.cmdSMF]) MMA.midifuncs.setMidiFileType(['SMF=%s' % gbl.cmdSMF])
######################################
# Create the output filename
########################################## MMA.paths.createOutfileName(".mid")
# Create the output filename.
# If outfile was specified on cmd line then leave it alone.
# Otherwise ...
# 1. strip off the extension if it is .mma,
# 2. append .mid
if gbl.playFile and gbl.outfile:
error("You cannot use the -f option with -P")
if gbl.outfile:
outfile = gbl.outfile
elif gbl.playFile:
outfile = "MMAtmp%s.mid" % os.getpid()
else:
outfile, ext = os.path.splitext(gbl.infile)
if ext != gbl.ext:
outfile=gbl.infile
outfile += '.mid'
outfile=os.path.expanduser(outfile)
################################################ ################################################
@ -179,7 +168,6 @@ for f in gbl.mmaStart:
# The song file specified on the command line # The song file specified on the command line
f = MMA.file.locFile(gbl.infile, None) f = MMA.file.locFile(gbl.infile, None)
if not f: if not f:
@ -263,8 +251,10 @@ gbl.lineno=-1 # disable line nums for error/warning
""" We fix the outPath now. This lets you set outpath in the song file. """ We fix the outPath now. This lets you set outpath in the song file.
The filename "outfile" was created above. It is either the input filename The filename "outfile" was created in paths, get a copy.
with '.mma' changed to '.mid' OR if -f<FILE> was used then it's just <FILE>.
It is either the input filename with '.mma' changed to '.mid' (or kar)
OR if -f<FILE> was used then it's just <FILE>.
If any of the following is true we skip inserting the outputpath into the If any of the following is true we skip inserting the outputpath into the
filename: filename:
@ -278,6 +268,8 @@ gbl.lineno=-1 # disable line nums for error/warning
otherwise it is inserted before the filename portion. otherwise it is inserted before the filename portion.
""" """
outfile = MMA.paths.outfile
if (not outfile.startswith('/')) and gbl.outPath and not gbl.outfile and not gbl.playFile: if (not outfile.startswith('/')) and gbl.outPath and not gbl.outfile and not gbl.playFile:
if gbl.outPath[0] in '.\\/': if gbl.outPath[0] in '.\\/':
outfile = "%s/%s" % (gbl.outPath, outfile) outfile = "%s/%s" % (gbl.outPath, outfile)
@ -337,11 +329,8 @@ MMA.midi.writeTracks(out)
out.close() out.close()
if gbl.playFile: if gbl.playFile:
print "Playing %s with %s" % (outfile, gbl.midiPlayer) import MMA.player
t=time.time() MMA.player.playMidi(outfile)
os.system("%s %s" % (gbl.midiPlayer, outfile))
os.remove(outfile)
print "Play complete (%.2f min), file has been deleted." % ((time.time()-t)/60)
if gbl.debug: if gbl.debug:
print "Completed processing file '%s'." % outfile print "Completed processing file '%s'." % outfile

View File

@ -31,6 +31,27 @@ import MMA.midiC
import gbl import gbl
from MMA.common import * from MMA.common import *
def mdefine(ln):
""" Set a midi seq pattern. """
if not ln:
error("MDefine needs arguments")
name = ln[0]
if name.startswith('_'):
error("Names with a leading underscore are reserved")
if name.upper() == 'Z':
error("The name 'Z' is reserved")
mdef.set(name, ' '.join(ln[1:]))
def trackMdefine(name, ln):
""" Set a midi seq pattern. Ignore track name."""
mdefine(ln)
class Mdefine: class Mdefine:
@ -38,7 +59,7 @@ class Mdefine:
self.defs = {} self.defs = {}
def get(self, name): def get(self, name):
""" Return a predefine MIDI pattern.""" """ Return a predefined MIDI pattern."""
try: try:
return self.defs[name] return self.defs[name]

View File

@ -30,6 +30,9 @@ from MMA.common import *
splitChannels = [] splitChannels = []
# some constants we use to catorgize event types
MIDI_NOTE = 1
MIDI_PRG = 2
def setSplitChannels(ln): def setSplitChannels(ln):
""" Parser routine, sets up list of track to split. Overwrites existing. """ """ Parser routine, sets up list of track to split. Overwrites existing. """
@ -78,22 +81,22 @@ def writeTracks(out):
tcount = len(keys) tcount = len(keys)
out.write( mkHeader(tcount, gbl.BperQ, gbl.midiFileType) ) out.write( mkHeader(tcount, gbl.BperQ, gbl.midiFileType) )
if gbl.barRange: # compensate for -B/-b options
stripRange()
# Write data chunks for each track # Write data chunks for each track
for n in keys: for n in keys:
if gbl.debug:
print "Writing <%s> ch=%s;" % \
(gbl.mtrks[n].trackname, n),
if len(gbl.mtrks[n].miditrk): if n in splitChannels and gbl.midiFileType:
tcount += writeSplitTrack(n, out)
else:
gbl.mtrks[n].writeMidiTrack(out)
if gbl.debug: """ We may have changed the track count! So, we need to
print "Writing <%s> ch=%s;" % \
(gbl.mtrks[n].trackname, n),
if n in splitChannels and gbl.midiFileType:
tcount += writeSplitTrack(n, out)
else:
gbl.mtrks[n].writeMidiTrack(out)
""" We have increased the track count! So, we need to
fix the file header. This is offset 10/11 which contains fix the file header. This is offset 10/11 which contains
the number of tracks. The counter tcount has been the number of tracks. The counter tcount has been
tracking this, so just seek, replace and seek back. tracking this, so just seek, replace and seek back.
@ -181,7 +184,7 @@ class Mtrk:
self.channel = channel-1 self.channel = channel-1
self.trackname = '' self.trackname = ''
self.lastEvent = [None] * 129 self.lastEvent = [None] * 129
self.lastPrg = 0
def delDup(self, offset, cmd): def delDup(self, offset, cmd):
"""Delete a duplicate event. Used by timesig, etc. """ """Delete a duplicate event. Used by timesig, etc. """
@ -228,18 +231,45 @@ class Mtrk:
self.addToTrack(offset, chr(0xff) + chr(0x06) + intToVarNumber(len(msg)) + msg ) self.addToTrack(offset, chr(0xff) + chr(0x06) + intToVarNumber(len(msg)) + msg )
def addCopyright(self, offset, msg):
""" Insert copyright. """
# should never happen since the caller sets offset=0
if offset != 0:
error("Copyright message must be at offset 0, not %s." % offset)
# we need to bypass addToTrack to force copyright to the start of the track.
ev=chr(0xff) + chr(0x02) + intToVarNumber(len(msg)) + msg
tr=self.miditrk
if hasattr(self, 'ipoint'):
self.ipoint += 1
else:
self.ipoint=0
if offset in tr:
tr[offset].insert(self.ipoint, ev)
else:
tr[offset]=[ev]
def addText(self, offset, msg): def addText(self, offset, msg):
""" Create a midi TextEvent.""" """ Create a midi TextEvent."""
self.addToTrack( offset, chr(0xff) + chr(0x01) + intToVarNumber(len(msg)) + msg ) self.addToTrack( offset, chr(0xff) + chr(0x01) + intToVarNumber(len(msg)) + msg )
def addLyric(self, offset, msg): def addLyric(self, offset, msg):
""" Create a midi lyric event. """ """ Create a midi lyric event. """
self.addToTrack( offset, self.addToTrack( offset,
chr(0xff) + chr(0x05) + intToVarNumber(len(msg)) + msg ) chr(0xff) + chr(0x05) + intToVarNumber(len(msg)) + msg )
def addCuePoint(self, offset, msg):
""" Create a MIDI cue pointr event. """
self.addToTrack( offset, chr(0xff) + chr(0x07) + intToVarNumber(len(msg)) + msg )
def addTrkName(self, offset, msg): def addTrkName(self, offset, msg):
""" Creates a midi track name event. """ """ Creates a midi track name event. """
@ -252,7 +282,6 @@ class Mtrk:
self.delDup(offset, cmd) self.delDup(offset, cmd)
self.addToTrack(offset, cmd + intToVarNumber(len(msg)) + msg ) self.addToTrack(offset, cmd + intToVarNumber(len(msg)) + msg )
def addProgChange( self, offset, program, oldprg): def addProgChange( self, offset, program, oldprg):
""" Create a midi program change (handles extended voicing). """ Create a midi program change (handles extended voicing).
@ -271,8 +300,7 @@ class Mtrk:
# Always do voice change. Maybe not necessary, but let's be safe. # Always do voice change. Maybe not necessary, but let's be safe.
self.addToTrack(offset, chr(0xc0 | self.channel) + chr(v2) ) self.addToTrack(offset, chr(0xc0 | self.channel) + chr(v2), MIDI_PRG )
def addGlis(self, offset, v): def addGlis(self, offset, v):
""" Set the portamento. LowLevel MIDI. """ Set the portamento. LowLevel MIDI.
@ -309,7 +337,7 @@ class Mtrk:
""" """
self.addToTrack(offset, self.addToTrack(offset,
chr(0xb0 | self.channel) + chr(0x7b) + chr(0) ) chr(0xb0 | self.channel) + chr(0x7b) + chr(0), 1 )
def addChannelVol(self, offset, v): def addChannelVol(self, offset, v):
@ -353,7 +381,7 @@ class Mtrk:
if offset > eof: if offset > eof:
del tr[offset] del tr[offset]
self.addToTrack(eof, chr(0xb0 | self.channel) + chr(0x7b) + chr(0)) self.addToTrack(eof, chr(0xb0 | self.channel) + chr(0x7b) + chr(0))
""" To every MIDI track we generate we add (if the -0 flag """ To every MIDI track we generate we add (if the -0 flag
was set) an on/off beep at offset 0. This makes for was set) an on/off beep at offset 0. This makes for
@ -362,9 +390,9 @@ class Mtrk:
if gbl.synctick and self.channel >= 0: if gbl.synctick and self.channel >= 0:
self.addToTrack(0, chr(0x90 | self.channel) + chr(80) + chr(90) ) self.addToTrack(0, chr(0x90 | self.channel) + chr(80) + chr(90) )
self.addToTrack(1, chr(0x90 | self.channel) + chr(80) + chr(0) ) self.addToTrack(1, chr(0x90 | self.channel) + chr(80) + chr(0) )
if gbl.debug: if gbl.debug:
ttl = 0 ttl = 0
lg=1 lg=1
@ -422,11 +450,11 @@ class Mtrk:
out.write( tdata ) out.write( tdata )
def addPairToTrack(self, boffset, startRnd, duration, note, v, unify): def addPairToTrack(self, boffset, startRnd, endRnd, duration, note, v, unify):
""" Add a note on/off pair to a track. """ Add a note on/off pair to a track.
boffset - offset into current bar boffset - offset into current bar
startRnd - rand val start adjustment startRnd, endRnd - rand val start adjustment
duration - note len duration - note len
note - midi value of note note - midi value of note
v - midi velocity v - midi velocity
@ -458,11 +486,11 @@ class Mtrk:
# Start/end offsets # Start/end offsets
onOffset = getOffset( boffset, startRnd) onOffset = getOffset( boffset, startRnd, endRnd)
offOffset = onOffset + duration offOffset = onOffset + duration
# ON/OFF events # ON/OFF events
onEvent = chr(0x90 | self.channel) + chr(note) + chr(v) onEvent = chr(0x90 | self.channel) + chr(note) + chr(v)
offEvent = onEvent[:-1] + chr(0) offEvent = onEvent[:-1] + chr(0)
@ -502,20 +530,43 @@ class Mtrk:
else: else:
del(tr[f][i]) del(tr[f][i])
if not unify: if not unify:
self.addToTrack(onOffset, offEvent) self.addToTrack(onOffset, offEvent, MIDI_NOTE)
else: else:
noOnFlag=1 noOnFlag=1
break break
if not noOnFlag: if not noOnFlag:
self.addToTrack(onOffset, onEvent ) self.addToTrack(onOffset, onEvent, MIDI_NOTE)
self.addToTrack(offOffset, offEvent ) self.addToTrack(offOffset, offEvent, MIDI_NOTE )
# Save the NOTE OFF time for the next loop. # Save the NOTE OFF time for the next loop.
self.lastEvent[note] = offOffset self.lastEvent[note] = offOffset
def addNoteOnToTrack(self, boffset, note, v, startRnd=None, endRnd=None):
""" Add a single note on or note off when v=0 to a track.
boffset - offset into current bar
duration - note len
note - midi value of note
v - midi velocity, set to 0 for note off
startRnd/endRnd - rand val start adjustment
Added by louisjb for plectrum.
"""
# Start offsets
onOffset = getOffset( boffset, startRnd, endRnd)
# ON/OFF events (off is on with v = 0)
onEvent = chr(0x90 | self.channel) + chr(note) + chr(v)
self.addToTrack(onOffset, onEvent, MIDI_NOTE )
def zapRangeTrack(self, start, end): def zapRangeTrack(self, start, end):
""" Clear NoteOn events from track in range: start ... end. """ Clear NoteOn events from track in range: start ... end.
@ -534,7 +585,7 @@ class Mtrk:
del trk[a][i] del trk[a][i]
def addToTrack(self, offset, event): def addToTrack(self, offset, event, evType=None):
""" Add an event to a track. """ Add an event to a track.
MIDI data is saved as created in track structures. MIDI data is saved as created in track structures.
@ -544,11 +595,22 @@ class Mtrk:
the events are stored as a list in the order they are the events are stored as a list in the order they are
created. Our storage looks like: created. Our storage looks like:
miditrk[OFFSET_VALUE] = [event1, event2, ...] miditrk[OFFSET_VALUE] = [event1, event2, ...]
evType is an optional arg. Two values are used:
MIDI_PR - a program (voice) change. Save the timestamp.
MIDI_NOTE - note on/off ... check to see it doesn't happen
before the last program change.
""" """
if offset<0: if evType == MIDI_NOTE and offset < self.lastPrg:
offset=0 offset = self.lastPrg
elif evType == MIDI_PRG:
self.lastPrg=offset
if offset < 0:
offset = 0
tr=self.miditrk tr=self.miditrk
@ -588,3 +650,130 @@ timeSig = TimeSig()
def stripRange():
""" Strip out range limited data. """
bp = gbl.barPtrs # list generated at compile time
if gbl.barRange[-1] == 'ABS':
gbl.barRange.pop() # delete abs marker
for a in bp: # convert comment numbers to abs numbers
bp[a][0] = str(a)
validRange = []
for a in gbl.barRange: # list of bars we want to produce
for b in bp:
if a == bp[b][0]:
validRange.append([bp[b][1], bp[b][2]])
if not validRange:
print " Range directive -b/B would result in empty file."
print " Entire file is being created. Check the range."
return
# Collaspe/merge the valid range pointers
validRange.sort() # barptrs was dict, so this list is not in order
tmp = []
a,b = validRange[0]
for i in range(1, len(validRange)):
if b+1 == validRange[i][0]:
b = validRange[i][1]
else:
tmp.append( [a,b] )
if i < len(validRange):
a,b = validRange[i]
tmp.append( [a,b] )
validRange = tmp # list of event times to keep
""" Create list of event times to discard. Each item in the list:
is [ start-time, end-time]
"""
disList = []
lowestEv = bp[1][1]
for a in validRange:
disList.append( [lowestEv, a[0]-1] )
lowestEv = a[1]
""" Determine the last event time in the buffer. This is not nesc. the
same as the last barptr ... tempos and midinote can write past the
last bar. We need to test each track and find the highest event time.
"""
lastev = -1
for a in gbl.mtrks:
z = sorted(gbl.mtrks[a].miditrk)
if z[-1]>lastev:
lastev = z[-1]
disList.append( [validRange[-1][1]+1, lastev] )
""" 1st pass. For each track take all the cut parts and adjust their
offsets to the end offset of the previous keep section. Strip out
all note on events, lyric and text events in the effected bits.
"""
for start, end in disList:
for n in gbl.mtrks:
tr=gbl.mtrks[n].miditrk
newEvents = []
for ev in sorted(tr.keys()): # sort is important!
if ev >= start and ev <=end:
for e in tr[ev]:
# skip note on events
if ord(e[0]) & 0xf0 == 0x90 and ord(e[2]):
continue
# skip lyric and text events
if ord(e[0]) == 0xff:
if ord(e[1]) == 0x05 or ord(e[1]) == 0x01:
continue
# skip if event is note off and it already is present
if ord(e[0]) & 0xf0 == 0x90 and ord(e[2]) == 0:
for x in newEvents:
if x == e:
e=None
break
if e:
newEvents.append(e)
del (tr[ev])
""" We now have a new list of events for the 'start' offset (it might
just be an empty list) AND we have deleted the events for 'start'
to 'end'. Just a matter of inserted a new event list.
"""
if newEvents:
tr[start] = newEvents
""" 2nd pass. Adjust offsets of stuff to keep. """
offset = 1
for vals in range(len(validRange)): # each valid range
start = validRange[vals][0]
end = validRange[vals][1]+1
offset += (start - disList[vals][0])-1
for a in gbl.mtrks: # each track
tr = gbl.mtrks[a].miditrk
for ev in sorted(tr.keys()): # each event list
if ev >= start and ev <= end:
newoffset = ev-offset
if ev != newoffset: # don't append/copy creating duplicates
if newoffset in tr:
tr[newoffset].extend(tr[ev])
else:
tr[newoffset] = tr[ev]
del tr[ev]
""" After all this compressing the end of file marker is past the
end of the real data. This could bugger up the -1 option, so fix
it. Go though all the tracks again and find the end.
"""
lastev = -1
for a in gbl.mtrks:
z = sorted(gbl.mtrks[a].miditrk)
if z and z[-1]>lastev:
lastev = z[-1]
gbl.tickOffset = lastev
print " File has been truncated for -b/-B option. Bar count/time incorrect."

View File

@ -112,7 +112,7 @@ def ctrlToValue(name):
try: try:
return ctrlInx[name.upper()] return ctrlInx[name.upper()]
except keyError: except KeyError:
return -1 return -1

View File

@ -26,6 +26,7 @@ Bob van der Poel <bob@mellowood.ca>
import os import os
import MMA.midiM import MMA.midiM
import MMA.file
import gbl import gbl
from MMA.common import * from MMA.common import *
@ -33,11 +34,21 @@ from MMA.alloc import trackAlloc
# The following 2 variables are global. A bit ugly :) # The following set of variables are global. A bit ugly :)
midifile = '' # The imported MIDI file (data) as a long string midifile = '' # The imported MIDI file (data) as a long string
offset = 0 # Current pointer into the MIDI file offset = 0 # Current pointer into the MIDI file
# These are the start/end points for the included file. They are in
# beats, but are adjusted after the file is opened to ticks.
istart=0
iend = 0xffffff
octAdjust = 0
volAdjust = 100
firstNote = 0 # signals where 1st note is in file in ticks
ignorePC = 1 # skip program changes in input file
""" Helper functions """ Helper functions
@ -129,114 +140,10 @@ def m16i():
return int(x) return int(x)
def readMidi(filename):
""" Read existing midi file, parse and return events, textevents & lyrics """
###################################################### global offset, midifile, beatDivision, istart, iend, firstNote, ignorePC
## Main function, called from parser.
def midiinc(ln):
""" Include a MIDI file into MMA generated files. """
global midifile, offset
filename = ''
doLyric = 0
doText = 0
volAdjust = 100
octAdjust = 0
transpose = None
channels = []
# These are the start/end points for the included file. They are in
# beats, but are adjusted after the file is opened to ticks.
istart=0
iend = 0xffffff
for a in ln:
try:
cmd, opt = a.split('=')
except:
error("MidiInc expecting cmd=opt pairs, not '%s'." % a)
cmd=cmd.upper()
if cmd == 'FILE':
filename = os.path.expanduser(opt)
elif cmd == 'VOLUME':
volAdjust = stoi(opt)
elif cmd == 'OCTAVE':
octAdjust = stoi(opt)
if octAdjust < -4 or octAdjust > 4:
error("Octave adjustment must be -4 to 4, not %s" % opt)
octAdjust *= 12
elif cmd == 'TRANSPOSE':
transpose = stoi(opt)
if transpose < -24 or transpose > 24:
error("Tranpose must be -24 to 24, not %s" % opt)
elif cmd == 'START':
istart = stof(opt)
elif cmd == 'END':
iend = stof(opt)
elif cmd == 'TEXT':
opt=opt.upper()
if opt in ("ON", 1):
doText=1
elif opt in ("OFF", 0):
doText=0
else:
error("MidiInc Text= expecting 'ON' or 'OFF'")
elif cmd == 'LYRIC' and opt != '0':
opt=opt.upper()
if opt in ("ON", 1):
doLyric=1
elif opt in ("OFF", 0):
doLyric=0
else:
error("MidiInc Lyric= expecting 'ON' or 'OFF'")
# make sure this is last option ... it has to be a TRACKNAME=CHANNEL-NUMBER
else:
trackAlloc(cmd, 0)
if not cmd in gbl.tnames:
error("%s is not a valid MMA track" % cmd)
ch = stoi(opt)
if ch < 1 or ch > 16:
error("MIDI channel for import must be 1..16, not %s" % ch)
channels.append( (cmd, ch-1))
if not channels:
if doLyric or doText:
warning("MidiInc: no import channels specified, only text or lyrics imported")
else:
error("MidiInc: A channel to import and a destination track must be specified")
if (istart >= iend) or (istart < 0) or (iend < 0):
error("MidiInc range invalid: start=%s, end=%s" % (istart, iend))
if gbl.debug:
print "MidiInc: file=%s, Volume=%s, Octave=%s, Transpose=%s, Lyric=%s, Text=%s, Range=%s..%s"\
% (filename, volAdjust, octAdjust, transpose, doLyric, doText, istart, iend)
for t, ch in channels:
print "MidiInc: Channel %s --> Track %s" % (ch+1, t)
# If transpose was NOT set, use the global transpose value
if transpose == None:
transpose = gbl.transpose
octAdjust += transpose # this takes care of octave and transpose
try: try:
inpath = file(filename, "rb") inpath = file(filename, "rb")
@ -261,7 +168,7 @@ def midiinc(ln):
hd=midifile[0:4] hd=midifile[0:4]
if hd != 'MThd': if hd != 'MThd':
error("Expecting 'HThd', %s not a standard midi file" % filename) error("Expecting 'MThd', %s not a standard midi file" % filename)
offset = 4 offset = 4
a = m32i() a = m32i()
@ -339,39 +246,39 @@ def midiinc(ln):
if octAdjust and channel != 10: if octAdjust and channel != 10:
note += octAdjust note += octAdjust
if note < 0 or note > 127: while note < 0: note += 12
continue while note >127: note -= 12
events[channel].append([tm, ev & 0xf0, chr(note)+chr(vel)]) events[channel].append([tm, ev & 0xf0, chr(note)+chr(vel)])
elif sValue == 0x9: # note on event elif sValue == 0x9: # note on event
if tm < firstNote: if tm < firstNote:
firstNote = tm firstNote = tm
note=m1i() note=m1i()
vel=m1i() vel=m1i()
if octAdjust and channel != 10: if octAdjust and channel != 10:
note += octAdjust note += octAdjust
if note < 0 or note > 127: while note < 0: note += 12
continue while note >127: note -= 12
if volAdjust != 100: if volAdjust != 100:
vel = int( (vel*volAdjust)/100) vel = int( (vel*volAdjust)/100)
if vel<0: vel=1 if vel<0: vel=1
if vel>127: vel=127 if vel>127: vel=127
events[ev & 0xf].append([tm, ev & 0xf0, chr(note)+chr(vel)]) events[ev & 0xf].append([tm, ev & 0xf0, chr(note)+chr(vel)])
elif sValue == 0xa: # key pressure elif sValue == 0xa: # key pressure
events[ev & 0xf].append([tm, ev & 0xf0, chars(2)]) events[ev & 0xf].append([tm, ev & 0xf0, chars(2)])
elif sValue == 0xb: # control change elif sValue == 0xb: # control change
events[ev & 0xf].append([tm, ev & 0xf0, chars(2)]) events[ev & 0xf].append([tm, ev & 0xf0, chars(2)])
elif sValue == 0xc: # program change elif sValue == 0xc: # program change
events[ev & 0xf].append([tm, ev & 0xf0, chars(1)]) if ignorePC: # default is to ignore these
offset += 1
else: # set with option IgnorePC=1
events[ev & 0xf].append([tm, ev & 0xf0, chars(1)])
elif sValue == 0xd: # channel pressure elif sValue == 0xd: # channel pressure
events[ev & 0xf].append([tm, ev & 0xf0, chars(1)]) events[ev & 0xf].append([tm, ev & 0xf0, chars(1)])
@ -459,10 +366,224 @@ def midiinc(ln):
if ev >= 0x80 and ev <= 0xef: if ev >= 0x80 and ev <= 0xef:
lastevent = ev lastevent = ev
return (events, textEvs, lyricEvs)
######################################################
## Main function, called from parser.
def midiinc(ln):
""" Include a MIDI file into MMA generated files. """
global midifile, offset, octAdjust, volAdjust, firstNote, istart, iend, ignorePC
filename = ''
doLyric = 0
doText = 0
channels = []
transpose = None
stripSilence = 1
report = 0
notopt, ln = opt2pair(ln)
if notopt:
error("MidiInc expecting cmd=opt pairs, not '%s'." % ' '.join(notopt) )
for cmd, opt in ln:
cmd=cmd.upper()
if cmd == 'FILE':
filename = MMA.file.fixfname(opt)
elif cmd == 'VOLUME':
volAdjust = stoi(opt)
elif cmd == 'OCTAVE':
octAdjust = stoi(opt)
if octAdjust < -4 or octAdjust > 4:
error("Octave adjustment must be -4 to 4, not %s" % opt)
octAdjust *= 12
elif cmd == 'TRANSPOSE':
transpose = stoi(opt)
if transpose < -24 or transpose > 24:
error("Transpose must be -24 to 24, not %s" % opt)
elif cmd == 'START':
istart = stof(opt)
elif cmd == 'END':
iend = stof(opt)
elif cmd == 'TEXT':
opt=opt.upper()
if opt in ("ON", '1'):
doText=1
elif opt in ("OFF", '0'):
doText=0
else:
error("MidiInc Text= expecting 'ON' or 'OFF'")
elif cmd == 'LYRIC':
opt=opt.upper()
if opt in ("ON", '1'):
doLyric=1
elif opt in ("OFF", '0'):
doLyric=0
else:
error("MidiInc Lyric: expecting 'ON' or 'OFF'")
elif cmd == "REPORT":
opt=opt.upper()
if opt in ("ON", '1'):
report=1
elif opt in ("OFF", '0'):
report=0
else:
error("MidiInc Report: expecting 'ON' or 'OFF'")
elif cmd == "STRIPSILENCE":
opt=opt.upper()
if opt in ("OFF", '0'):
stripSilence = 0
elif opt == "ON": # this is the default
stripSilence = -1
else:
stripSilence = stoi(opt,
"MIdiInc StripSilence= expecting 'value', 'On' or 'Off', "
"not %s" % opt)
elif cmd == "INCLUDEPC":
opt=op.upper()
if opt in ("TRUE", "ON", "1"): # default
ignorePC=1
elif opt in ("FALSE", "OFF", "0"): # use program change in imported
ignorePC=0
else:
error ("MIdiInc IncludePC= expecting 'True' or 'False', not %s" % opt)
# If none of the above matched a CMD we assume that it is
# a trackname. Keep this as the last test!
else:
trackAlloc(cmd, 0)
if not cmd in gbl.tnames:
error("MidiInc: %s is not a valid MMA track" % cmd)
opt = opt.split(',')
riffmode=0
printriff=0
ch = None
for o in opt:
o=o.upper()
if o == 'RIFF':
riffmode = 1
elif o == 'PRINT':
printriff = 1
riffmode = 1
else:
if ch != None:
error("MidiInc: Only one channel assignment per track.")
ch = stoi(o)
if ch < 1 or ch > 16:
error("MidiInc: MIDI channel for import must be 1..16, not %s" % ch)
channels.append( (cmd, ch-1, riffmode, printriff))
if report: # don't bother with channel tests, etc.
gbl.noWarn=1
events, textEvs, lyricEvs = readMidi(filename)
print "MIDI File %s successfully read." % filename
print "Total Text events: %s" % len(textEvs)
print "Total Lyric events: %s" % len(lyricEvs)
if beatDivision != gbl.BperQ:
s = "(MMA uses %s, MidiInc will compensate)" % gbl.BperQ
else:
s=''
print "Ticks per quarter note: %s %s" % (beatDivision, s)
print
for ch in sorted(events.keys()):
if not events[ch]:
continue
fnote = fevent = 0xffffff
ncount = 0
for ev in events[ch]:
delta = ev[0]
if delta < fevent:
fevent = delta
if ev[1]>>4 == 0x9:
if delta < fnote:
fnote = delta
if ord(ev[2][1]):
ncount +=1
print "Channel %2s: First event %-8s" % (ch+1, fevent),
if ncount:
print "First Note %-8s Total Notes %-4s" % (fnote, ncount)
else:
print
print
print "No data generated!"
sys.exit(0)
if not channels:
if doLyric or doText:
warning("MidiInc: no import channels specified, "
"only text or lyrics imported")
else:
error("MidiInc: A channel to import and a destination "
"track must be specified")
if (istart >= iend) or (istart < 0) or (iend < 0):
error("MidiInc range invalid: start=%s, end=%s" % (istart, iend))
if gbl.debug:
print "MidiInc: file=%s, Volume=%s, Octave=%s, Transpose=%s, Lyric=%s, " \
"Text=%s, Range=%s..%s StripSilence=%s" \
% (filename, volAdjust, octAdjust, transpose, doLyric, doText, \
istart, iend, stripSilence)
for t, ch, riffmode, riffprint in channels:
o=''
if riffmode:
o=',riff'
elif printriff:
o=',riff,print'
print "MidiInc: Channel %s-->%s%s" % (ch+1, t, o),
print
# If transpose was NOT set, use the global transpose value
# Note special riff value as well. Need to double adjust since
# the riff import will do its own adjustment.
if transpose == None:
transpose = gbl.transpose
riffTranspose = -gbl.transpose
else:
riffTranspose = 0
octAdjust += transpose # this takes care of octave and transpose
events, textEvs, lyricEvs = readMidi(filename)
# Midi file parsed, add selected events to mma data # Midi file parsed, add selected events to mma data
beatad = gbl.BperQ / float(beatDivision) beatad = gbl.BperQ / float(beatDivision)
if not stripSilence:
firstNote = 0
elif stripSilence > 0:
firstNote = stripSilence
if doText: if doText:
inst=0 inst=0
@ -491,17 +612,27 @@ def midiinc(ln):
print"MidiInc lyric events: %s inserted, %s out of range." % (inst, disc) print"MidiInc lyric events: %s inserted, %s out of range." % (inst, disc)
for n,c in channels: for n,c, riffmode, printriff in channels:
if not len(events[c]): if not len(events[c]):
warning("No data to assign from imported channel %s to track %s" % (c+1, n)) warning("No data to assign from imported channel %s to track %s" % (c+1, n))
inst=0 inst=0
disc=0 disc=0
for tr, ch in channels:
for tr, ch, riffmode, printriff in channels:
if gbl.tnames[tr].disable: # skip if disabled track
continue
t=gbl.tnames[tr] t=gbl.tnames[tr]
if not t.channel: if not t.channel:
t.setChannel() t.setChannel()
if riffmode:
riff = []
if t.vtype not in ('MELODY', 'SOLO'):
error("MidiInc Riff only works on Melody/Solo tracks, not '%s'." % t.name)
t.clearPending() t.clearPending()
if t.voice[0] != t.ssvoice: if t.voice[0] != t.ssvoice:
gbl.mtrks[t.channel].addProgChange( gbl.tickOffset, t.voice[0], t.ssvoice) gbl.mtrks[t.channel].addProgChange( gbl.tickOffset, t.voice[0], t.ssvoice)
@ -511,15 +642,87 @@ def midiinc(ln):
for ev in events[ch]: for ev in events[ch]:
delta = ev[0]-firstNote delta = ev[0]-firstNote
if delta >= istart and delta <= iend: if delta >= istart and delta <= iend:
track.addToTrack( gbl.tickOffset + int(delta * beatad), if riffmode:
chr(ev[1] | channel-1) + ev[2] ) offset = int(delta * beatad)
x=ev[1]>>4
if x != 0x09 and x != 0x08:
continue
pitch=ord(ev[2][0])
velocity=ord(ev[2][1])
if x == 0x8:
velocity = 0
riff.append([offset, pitch, velocity])
else:
offset = gbl.tickOffset + int(delta * beatad)
track.addToTrack( offset, chr(ev[1] | channel-1) + ev[2] )
inst+=1 inst+=1
else: else:
disc+=1 disc+=1
if riffmode:
createRiff(riff, tr, printriff, riffTranspose, beatad)
if gbl.debug: if gbl.debug:
print"MidiInc events: %s inserted, %s out of range." % (inst, disc) print"MidiInc events: %s inserted, %s out of range." % (inst, disc)
def createRiff(riff, tname, pt, riffTranspose, beatad):
# convert list of ON values to durations. We need to
# look at each event and, if an on-event, search forward
# for an off. Subtract 2 times and save in new list.
if gbl.tnames[tname].riff:
error("MidiInc: Data already pending for %s." % tname)
missed = 0
events=[]
riff.sort()
for i in range(len(riff)):
duration = None
offset,pitch,velocity = riff[i]
if velocity:
for t in range(i,len(riff)):
off1, pitch1, vel1 = riff[t]
if not vel1 and pitch1 == pitch:
duration = off1 - offset
break
if duration:
if riffTranspose:
pitch += riffTranspose
while pitch > 127: pitch -= 12
while pitch < 0: pitch += 12
events.append([offset, duration, pitch, velocity])
else:
missed += 1
if missed:
warning("MidiInc Riff: conversion missed %s notes in track %s" % (missed, tname))
# We have a list of events: [offset, duration, pitch, velocity]...
# create yet another list with the events put into bars. Easier
# this time to use a dict
tickBar = gbl.BperQ * gbl.QperBar
bars = {}
for offset, duration, pitch, velocity in events:
b = (offset/tickBar)
if not b in bars:
bars[b]=''
bars[b]+= "<Offset=%s> %st %s/%s;" % \
( int(offset % tickBar), duration, pitch, velocity)
w = gbl.noWarn
gbl.noWarn=1
for a in bars:
if pt:
print "%s Riff %s" % (tname, bars[a])
else:
gbl.tnames[tname].setRiff(bars[a])
w = gbl.noWarn

View File

@ -29,7 +29,7 @@ MIDI expects.
def intToWord(x): def intToWord(x):
""" Convert INT to a 2 byte MSB LSB value. """ """ Convert INT to a 2 byte MSB LSB value. Used in MIDI headers. """
return chr(x>>8 & 0xff) + chr(x & 0xff) return chr(x>>8 & 0xff) + chr(x & 0xff)

345
mma/MMA/midifuncs.py Normal file
View File

@ -0,0 +1,345 @@
# midifuncs.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
Low level entry points, mostly called directly from the parser.
"""
import gbl
import MMA.mdefine
from MMA.common import *
# non-track functions
def setTimeSig(ln):
""" Set the midi time signature. """
if len(ln) == 1:
a=ln[0].upper()
if a == 'COMMON':
ln=('4','4')
elif a == 'CUT':
ln=('2','2')
if len(ln) != 2:
error("TimeSig: Usage (num dem) or ('cut' or 'common')")
nn = stoi(ln[0])
if nn<1 or nn>126:
error("Timesig NN must be 1..126")
dd = stoi(ln[1])
if dd == 1: dd = 0
elif dd == 2: dd = 1
elif dd == 4: dd = 2
elif dd == 8: dd = 3
elif dd == 16: dd = 4
elif dd == 32: dd = 5
elif dd == 64: dd = 6
else:
error("Unknown value for timesig denominator")
MMA.midi.timeSig.set(nn,dd)
def midiMarker(ln):
""" Parse off midi marker. """
if len(ln) == 2:
offset = stof(ln[0])
msg = ln[1]
elif len(ln) == 1:
offset = 0
msg = ln[0]
else:
error("Usage: MidiMark [offset] Label")
offset = int(gbl.tickOffset + (gbl.BperQ * offset))
if offset < 0:
error("MidiMark offset points before start of file")
gbl.mtrks[0].addMarker(offset, msg)
def setMidiCue(ln):
""" Insert MIDI cue (text) event into meta track."""
if not ln:
error("MidiCue requires text.")
gbl.mtrks[0].addCuePoint(gbl.tickOffset, ' '.join(ln))
def rawMidi(ln):
""" Send hex bytes as raw midi stream. """
mb=''
for a in ln:
a=stoi(a)
if a<0 or a >0xff:
error("All values must be in the range 0 to 0xff, not '%s'" % a)
mb += chr(a)
gbl.mtrks[0].addToTrack(gbl.tickOffset, mb)
if gbl.debug:
print "Inserted raw midi in metatrack: ",
for b in mb:
print '%02x' % ord(b),
print
def setMidiFileType(ln):
""" Set some MIDI file generation flags. """
if not ln:
error("USE: MidiFile [SMF=0/1] [RUNNING=0/1]")
for l in ln:
try:
mode, val = l.upper().split('=')
except:
error("Each arg must contain an '=', not '%s'" % l)
if mode == 'SMF':
if val == '0':
gbl.midiFileType = 0
elif val == '1':
gbl.midiFileType = 1
else:
error("Use: MIDIFile SMF=0/1")
if gbl.debug:
print "Midi Filetype set to", gbl.midiFileType
elif mode == 'RUNNING':
if val == '0':
gbl.runningStatus = 0
elif val == '1':
gbl.runningStatus = 1
else:
error("Use: MIDIFile RUNNING=0/1")
if gbl.debug:
print "Midi Running Status Generation set to",
if gbl.runningStatus:
print 'ON (Default)'
else:
print 'OFF'
else:
error("Use: MIDIFile [SMF=0/1] [RUNNING=0/1]")
def setChPref(ln):
""" Set MIDI Channel Preference. """
if not ln:
error("Use: ChannelPref TRACKNAME=CHANNEL [...]")
for i in ln:
if '=' not in i:
error("Each item in ChannelPref must have an '='")
n,c = i.split('=')
c = stoi(c, "Expecting an integer for ChannelPref, not '%s'" % c)
if c<1 or c>16:
error("Channel for ChannelPref must be 1..16, not %s" % c)
gbl.midiChPrefs[n.upper()]=c
if gbl.debug:
print "ChannelPref:",
for n,c in gbl.midiChPrefs.items():
print "%s=%s" % (n,c),
print
def setMidiCopyright(ln):
""" Add a copyright message to the file. This is inserted into
the meta track at offset 0.
"""
if not ln:
error("MidiCopyright needs text message.")
gbl.mtrks[0].addCopyright(0, ' '.join(ln))
def setMidiName(ln):
""" Set global/meta track name. This will overwrite the song name set in main."""
if not ln:
error("Use: TrackName text")
gbl.mtrks[0].addTrkName(0, ' '.join(ln) )
def setMidiText(ln):
""" Set midi text into meta track."""
if not ln:
error("Use: MidiText text")
gbl.mtrks[0].addText(gbl.tickOffset, ' '.join(ln))
################################################
## Track functions
def trackGlis(name, ln):
""" Enable/disable portamento. """
if len(ln) != 1:
error("Use: %s MidiGlis NN, off=0, 1..127==on" % name)
gbl.tnames[name].setGlis(ln[0])
def trackPan(name, ln):
""" Set the Midi Pan value for a track."""
if len(ln)==1 or len(ln)==3:
gbl.tnames[name].setPan(ln)
else:
error("Use %s MidiPAN [Value] OR [Initvalue DestValue Beats]." % name)
def trackMidiText(name, ln):
""" Insert midi text event. """
if not ln:
error("Use: %s Text" % name)
# this calls func in pat.py since the event is queued and only
# sent if the track is created.
gbl.tnames[name].setMidiText(' '.join(ln))
def trackMidiCue(name, ln):
""" Insert MIDI cue (text) event."""
if not ln:
error("Use: %s TrackName" % name)
# this calls func in pat.py since the event is queued and only
# sent if the track is created.
gbl.tnames[name].setMidiCue(' '.join(ln))
def trackMidiExt(ln):
""" Helper for trackMidiSeq() and trackMidiVoice()."""
ids=1
while 1:
sp = ln.find("{")
if sp<0:
break
ln, s = pextract(ln, "{", "}", 1)
if not s:
error("Did not find matching '}' for '{'")
pn = "_%s" % ids
ids+=1
MMA.mdefine.mdef.set(pn, s[0])
ln = ln[:sp] + ' ' + pn + ' ' + ln[sp:]
return ln.split()
def trackMidiSeq(name, ln):
""" Set reoccurring MIDI command for track. """
if not ln:
error("Use %s MidiSeq Controller Data" % name)
if ln[0][0] != '{': # add {} wrapper if missing
ln.insert(0, '{')
ln.extend('}')
if len(ln) == 1 and ln[0]== '-':
gbl.tnames[name].setMidiSeq('-')
else:
gbl.tnames[name].setMidiSeq( trackMidiExt(' '.join(ln) ))
def trackMidiVoice(name, ln):
""" Set single shot MIDI command for track. """
if not ln:
error("Use %s MidiVoice Controller Data" % name)
if ln[0][0] != '{': # add {} wrapper if missing
ln.insert(0, '{')
ln.extend('}')
if len(ln) == 1 and ln[0] == '-':
gbl.tnames[name].setMidiVoice( '-' )
else:
gbl.tnames[name].setMidiVoice( trackMidiExt(' '.join(ln) ))
def trackMidiClear(name, ln):
""" Set MIDI command to send at end of groove. """
if not ln:
error("Use %s MIDIClear Controller Data" % name)
if len(ln) == 1 and ln[0] == '-':
gbl.tnames[name].setMidiClear( '-' )
else:
ln=' '.join(ln)
if '{' in ln or '}' in ln:
error("{}s are not permitted in %s MIDIClear command" % name)
gbl.tnames[name].setMidiClear( trackMidiExt( '{' + ln + '}' ))
def trackMidiName(name,ln):
""" Set channel track name."""
if not ln:
error("Use: %s TrackName" % name)
# this calls func in pat.py since the event is queued and only
# sent if the track is created.
gbl.tnames[name].setTname(ln[0])

484
mma/MMA/midinote.py Normal file
View File

@ -0,0 +1,484 @@
# midinote.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
This module does all the midinote stuff.
"""
import MMA.notelen
import MMA.midiC
import gbl
from MMA.common import *
def parse(name, ln):
""" Called from parser for a <Track MidiNote> This figures the right routine."""
if not len(ln):
error("MidiNote: Needs arguments")
trk=gbl.tnames[name]
# parse out the cmd=value options pairs
ln, opts = opt2pair(ln, toupper=0)
for o,v in opts:
o=o.upper()
v=v.upper()
if o == 'TRANSPOSE':
if v in ('0', 'OFF'):
trk.transpose = 0
elif v in ('1', 'ON'):
trk.transpose = gbl.transpose
else:
error("MIDINote: TRANSPOSE expecting ON or OFF, not %s." % v)
elif o == 'OFFSETS':
if v == 'BEATS':
trk.useticks = 0
elif v == 'TICKS':
trk.useticks = 1
else:
error("MIDINote: OFFSETS expecting BEATS or TICKS, not %s." % v)
elif o == 'DURATION':
if v == 'NOTES':
trk.tickdur = 0
elif v == 'TICKS':
trk.tickdur = 1
else:
error("MIDINote: DURATION expecting NOTES or TICKS, not %s." % v)
elif o == 'ARTICULATE':
if v in ('1,' 'ON'):
trk.articulate=1
elif v in ('0', 'OFF'):
trk.articulate=0
else:
error("MIDINote: ARTICULATE expecting ON or OFF, not %s." % v)
elif o == 'OCTAVE':
trk.oadjust = stoi(v)
if trk.oadjust < -4 or trk.oadjust > 4:
error("MIDINote: Octave adjustment must be -4..4, not '%s'." % trk.oadjust)
elif o == 'VOLUME':
trk.vadjust = stof(v)/100
if trk.vadjust <= 0:
error("MIDINote: Volume %% adjustment must be > 0, not '%s'." % trk.vadjust)
elif o == 'ADJUST':
trk.tadjust = stoi(v)
else:
error("MIDINote: unknown option pair %s=%s." % (o,v))
# end of option pairs.
if ln: # process rest of the stuff ... real midi events.
trk.setForceOut()
a=ln[0].upper()
if a[0] in (".0123456789"):
insertNote(trk, ln)
elif a == "NOTE":
insertNote(trk, ln[1:])
elif a == "PB":
insertPB(trk, ln[1:])
elif a == "PBR":
insertPBrange(trk, ln[1:])
elif a == "CTRL":
insertControl(trk, ln[1:])
elif a == "CHAT":
insertChTouch(trk, ln[1:])
elif a == "CHATR":
insertChTouchRange(trk, ln[1:])
else:
error("MidiNote: Unknown command '%s'." % a)
if gbl.debug:
if opts:
print "MIDINOTE: %s" % mopts(trk)
def mopts(trk):
""" Return options string to macro and setoption-debug. """
if trk.useticks:
a1='Ticks'
else:
a1='Beats'
if trk.tickdur:
a2='Ticks';
else:
a2='Notes'
if trk.transpose:
a3='On'
else:
a3='Off'
if trk.articulate:
a4='On'
else:
a4='Off'
return "Offsets=%s Duration=%s Transpose=%s Articulate=%s Adjust=%s Volume=%s Octave=%s" \
% (a1, a2, a3, a4, trk.tadjust, trk.vadjust * 100, trk.oadjust)
def getoffset(trk, v):
""" Convert a string (value) to an offset. Convert to beats if nesc."""
offset = stof(v)
if trk.useticks:
if offset != int(offset):
error("MidiNote: Offset set to ticks, float '%s' given. Integer must be used." % offset)
offset += trk.tadjust
else:
if offset < 1:
warning("MidiNote: Offset %s generates notes before start of current bar." % offset)
if offset >= gbl.QperBar + 1:
warning("MidiNote: Offset %s is past end of current bar." % offset)
offset = (offset-1) * gbl.BperQ
return int(offset) # conversion to int is nescessary
def note2val(trk, acctable, orig):
""" Convert a note name to a value. In this case the OCTAVE setting
is used!
"""
t = list(orig)
n = t.pop(0)
try:
val = {'c':0, 'd':2, 'e':4, 'f':5, 'g':7, 'a':9, 'b':11 }[n]
except:
error("MidiNote: Expecting valid note name, not '%s'." % orig)
val += trk.octave[gbl.seqCount] # add in current octave
# Modify the note with either the keysignature or given accidental.
if t: # override modifier if #,& or n
if t[0] == '#':
acctable[n] = 1
t.pop(0)
elif t[0] == '&':
acctable[n] = -1
t.pop(0)
elif t[0] == 'n':
acctable[n] = 0
t.pop(0)
val += acctable[n]
# adjust for octave - or +
while t and (t[0] == '-' or t[0] == '+'):
if t[0]=='+':
val+=12
else:
val-=12
t.pop(0)
if t: #anything left? Error.
error("MidiNote: Unknown note specifier '%s' in '%s'." % (''.join(t), orig))
return val
def insertNote(trk, ln):
""" Insert specified (raw) MIDI notes into track. """
if len (ln) != 4:
error("Use: %s MidiNote: <offset> <note> <velocity> <duration>" % trk.name)
acctable = MMA.keysig.keySig.accList # keysig modifier, use for chord
offset=getoffset(trk, ln[0])
# Set a flag if this is a drum track.
if trk.vtype == 'DRUM':
isdrum = 1
elif trk.vtype in ('MELODY', 'SOLO') and trk.drumType:
isdrum = 1
else:
isdrum = 0
notes = []
for n in ln[1].split(','):
if n[0] in '0123456789':
n = stoi(n)
else:
if isdrum:
if n == '*':
if trk.vtype in ('MELODY', 'SOLO'):
n = trk.drumTone
else:
n = trk.toneList[gbl.seqCount]
else:
n = MMA.midiC.drumToValue(n)
if n < 0:
error("MidiNote: unknown drum tone '%s' in %s." % (n, trk.name) )
else:
n = note2val(trk, acctable, n)
if n < 0 or n >127:
error("MidiNote: Notes must be in the range 0...127, not %s" % n)
if trk.transpose and not isdrum:
n += gbl.transpose
while n < 0:
n += 12
while n > 127:
n -= 12
if trk.oadjust and not isdrum:
n += (trk.oadjust * 12)
while n < 0:
n += 12
while n > 127:
n -= 12
notes.append(n)
velocity = stoi(ln[2])
if velocity < 1 or velocity > 127:
error("MidiNote: Note velocity must be in the range 1...127, not %s" % velocity)
velocity *= trk.vadjust
if velocity < 1:
velocity = 1
elif velocity > 127:
velocity = 127
velocity = int(velocity) # trk.adjust can be a float
if trk.tickdur:
duration = stoi(ln[3])
else:
duration = MMA.notelen.getNoteLen(ln[3])
if trk.articulate:
duration = (duration * trk.artic[gbl.seqCount]) / 100
if duration < 1:
duration = 1
channel = trk.channel
track = gbl.mtrks[channel]
for n in notes:
onEvent = chr(0x90 | channel-1) + chr(n) + chr(velocity)
offEvent = onEvent[:-1] + chr(0)
track.addToTrack(gbl.tickOffset + offset, onEvent)
track.addToTrack(gbl.tickOffset + offset + duration, offEvent)
if gbl.debug:
print "MidiNote Note %s: inserted note %s at offset %s." % (trk.name, notes, offset)
def insertPB(trk, ln):
""" Insert a pitch controller event. """
if len(ln) != 2:
error("MidiNote: PB expecting 2 arguments.")
offset = getoffset(trk, ln[0])
v = stoi(ln[1])
if v<-8191 or v>8192:
error("MidiNote: PB value must be -8191..+8192, not '%s'." % v)
v+=8191 # convert to 0..16383, max 14 bit value
channel = trk.channel
track = gbl.mtrks[channel]
track.addToTrack(gbl.tickOffset + offset, chr(0xe0 | channel-1) + chr(v%128) + chr(v/128))
if gbl.debug:
print "MidiNote PB %s: inserted bend %s at offset %s." % (trk.name, v-8191, offset)
def insertPBrange(trk, ln):
""" Insert a range of PB events. """
if len(ln) != 3:
error("MidiNote: PBR expecting 3 arguments <count> <start,end> <v1,v2>.")
count = stoi(ln[0])
try:
s1,s2 = ln[1].split(',')
except:
error("MidiNote PBR: event range must be 'v1,v2', not '%s'." % ln[1])
s1 = getoffset(trk, s1)
s2 = getoffset(trk, s2)
tinc = (s2-s1)/float(count)
try:
v1,v2 = ln[2].split(',')
except:
error("MidiNote PBR: pitch blend range must be 'v1,v2', not '%s'." % ln[2])
v1 = stoi(v1)
v2 = stoi(v2)
if v1<-8191 or v1>8192 or v2<-8191 or v2>8192:
error("MidiNote: PBR values must be -8191..+8192, not '%s'." % ln[2])
v1+=8191 # convert to 0..16383, max 14 bit value
v2+=8191
vinc = (v2-v1)/float(count)
channel = trk.channel
track = gbl.mtrks[channel]
ev = chr(0xe0 | channel-1)
offset = s1
bend = v1
for i in range(count+1):
v = int(bend)
track.addToTrack(gbl.tickOffset + int(offset), ev + chr(v%128) + chr(v/128))
offset += tinc
bend += vinc
if gbl.debug:
print "MidiNote PBR %s: inserted bends %s to %s at offsets %s to %s." % \
(trk.name, v1-8191, v2-8191, s1, s2)
def insertControl(trk, ln):
""" Insert a controller event. """
if len(ln) != 3:
error("MidiNote: Controller expecting 3 arguments.")
offset = getoffset(trk, ln[0])
v=MMA.midiC.ctrlToValue(ln[1])
if v < 0:
v=stoi(ln[1])
if v < 0 or v > 0x7f:
error("MidiNote: Controller values must be 0x00 to 0x7f, not '%s'." % ln[1])
d=stoi(ln[2])
if d < 0 or d > 0x7f:
error("MidiNote: Control Datum value must be 0x00 to 0x7f, not '%s'." % ln[2])
channel = trk.channel
track = gbl.mtrks[channel]
# bypass the addctl() defined in midi.py just to keep all the calls in this
# module similar. We should have add**() command in midi.py for the above stuff
# and redo this.???
track.addToTrack(gbl.tickOffset + offset, chr(0xb0 | channel-1) + chr(v) + chr(d) )
if gbl.debug:
print "MidiNote Ctrl %s: inserted Controller %s value %s at offset %s." % \
(trk.name, v, d, offset)
def insertChTouch(trk, ln):
""" Insert a channel aftertouch) event. """
if len(ln) != 2:
error("MidiNote: ChAT expecting 2 arguments.")
offset = getoffset(trk, ln[0])
v = stoi(ln[1])
if v<0 or v>127:
error("MidiNote: ChAT value must be 0 .. 127, not '%s'." % v)
channel = trk.channel
track = gbl.mtrks[channel]
track.addToTrack(gbl.tickOffset + offset, chr(0xd0 | channel-1) + chr(v) )
if gbl.debug:
print "MidiNote ChAT %s: inserted channel aftertouch %s at offset %s." % \
(trk.name, v, offset)
def insertChTouchRange(trk, ln):
""" Insert a range of channel aftertouch events. """
if len(ln) != 3:
error("MidiNote: ChATR expecting 3 arguments <count> <start,end> <v1,v2>.")
count = stoi(ln[0])
try:
s1,s2 = ln[1].split(',')
except:
error("MidiNote ChATR: event range must be 'v1,v2', not '%s'." % ln[1])
s1 = getoffset(trk, s1)
s2 = getoffset(trk, s2)
tinc = (s2-s1)/float(count)
try:
v1,v2 = ln[2].split(',')
except:
error("MidiNote ChATR: range must be 'v1,v2', not '%s'." % ln[2])
v1 = stoi(v1)
v2 = stoi(v2)
if v1<01 or v1>127 or v2<0 or v2>127:
error("MidiNote: ChATR values must be 0.. 127, not '%s'." % ln[2])
vinc = (v2-v1)/float(count)
channel = trk.channel
track = gbl.mtrks[channel]
ev = chr(0xd0 | channel-1)
offset = s1
bend = v1
for i in range(count+1):
v = int(bend)
track.addToTrack(gbl.tickOffset + int(offset), ev + chr(v) )
offset += tinc
bend += vinc
if gbl.debug:
print "MidiNote ChATR %s: inserted events %s to %s at offsets %s to %s." % \
(trk.name, v1, v2, s1, s2)

View File

@ -27,65 +27,22 @@ Bob van der Poel <bob@mellowood.ca>
import gbl import gbl
from MMA.common import * from MMA.common import *
noteLenTable = { noteLenTable = {
'0' : 1, # special 0==1 midi tick '0' : 1, # special 0==1 midi tick
'1' : gbl.BperQ * 4, # whole note '1' : gbl.BperQ * 4, # whole note
'2' : gbl.BperQ * 2, # 1/2 '2' : gbl.BperQ * 2, # 1/2
'23' : gbl.BperQ * 4 / 3, # 1/2 triplet '23' : gbl.BperQ * 4 / 3, # 1/2 triplet
'4' : gbl.BperQ, # 1/4 '4' : gbl.BperQ, # 1/4
'43' : gbl.BperQ * 2 / 3, # 1/4 triplet '43' : gbl.BperQ * 2 / 3, # 1/4 triplet
'8' : gbl.BperQ / 2, # 1/8 '8' : gbl.BperQ / 2, # 1/8
'81' : None, # short 1/8 swing note '81' : None, # short 1/8, set by swing skew
'82' : None, # long 1/8 swing note '82' : None, # long 1/8, set by swing skew
'16' : gbl.BperQ / 4, # 1/16 '16' : gbl.BperQ / 4, # 1/16
'32' : gbl.BperQ / 8, # 1/32 '32' : gbl.BperQ / 8, # 1/32
'64' : gbl.BperQ / 16, # 1/64 '64' : gbl.BperQ / 16, # 1/64
'6' : gbl.BperQ / 6, # 1/16 note triplet '6' : gbl.BperQ / 6, # 1/16 note triplet
'3' : gbl.BperQ / 3, # 1/8 note triplet '3' : gbl.BperQ / 3, # 1/8 note triplet
'5' : gbl.BperQ / 5 } # 1/8 note quintuplet '5' : gbl.BperQ / 5 } # 1/8 note quintuplet
def swingMode(ln):
""" Enable/Disable Swing timing mode. """
emsg = "Use: SwingMode [ On, Off, 0, 1 Skew=xx ]."
if not ln:
error(emsg)
for v in ln:
a = v.upper()
if a in ("ON", "1"):
gbl.swingMode = 1
continue
if a in ("OFF", "0"):
gbl.swingMode = 0
continue
if a.find('=')>1:
a,b = a.split('=')
if a == 'SKEW':
gbl.swingSkew = b
v = int( stoi(b) * gbl.BperQ / 100)
noteLenTable['81'] = v
noteLenTable['82'] = gbl.BperQ - v
continue
error(emsg)
if gbl.debug:
print "SwingMode: Status=%s, Skew Note lengths: %s and %s ticks." % \
(gbl.swingMode, noteLenTable['81'], noteLenTable['82'])
swingMode(['Skew=66']) # Set the default swingskew values.
@ -100,6 +57,17 @@ def getNoteLen(n):
length = 0 length = 0
if n.endswith('T') or n.endswith('t'):
n=n[:-1]
if not n:
error("Specifying a note length in MIDI Ticks requires a value")
n=stoi(n)
if n == 0:
n = 1
if n<1:
error("MIDI note length cannot be negative.")
return n
n=n.replace('-', '+-') # change "2-4" to "2+-4" for easier parsing n=n.replace('-', '+-') # change "2-4" to "2+-4" for easier parsing
n=n.replace('++-', '+-') # and in case we already used "+-", take out 2nd "+" n=n.replace('++-', '+-') # and in case we already used "+-", take out 2nd "+"

View File

@ -22,17 +22,16 @@ Bob van der Poel <bob@mellowood.ca>
""" """
import getopt import getopt
import sys import sys
import os
import MMA.docs import MMA.docs
import MMA.parse import MMA.parse
import MMA.chords import MMA.chords
import MMA.alloc import MMA.alloc
import MMA.volume import MMA.volume
import MMA.exits
import gbl import gbl
from MMA.common import * from MMA.common import *
@ -43,13 +42,20 @@ def opts():
try: try:
opts, args = getopt.gnu_getopt(sys.argv[1:], opts, args = getopt.gnu_getopt(sys.argv[1:],
"dpsS:ri:wneom:f:M:cgGvD:01PT:", [] ) "b:B:dpsS:ri:wneom:f:M:cgGvVD:01PT:", [] )
except getopt.GetoptError: except getopt.GetoptError:
usage() usage()
for o,a in opts: for o,a in opts:
if o == '-b':
setBarRange(a)
elif o == '-B':
setBarRange(a)
gbl.barRange.append("ABS")
if o == '-d': elif o == '-d':
gbl.debug = gbl.Ldebug = 1 gbl.debug = gbl.Ldebug = 1
elif o == '-o': elif o == '-o':
@ -120,9 +126,15 @@ def opts():
elif a == 'xh': elif a == 'xh':
gbl.createDocs = 2 gbl.createDocs = 2
elif a == 'v': elif a == 's':
gbl.createDocs = 3 gbl.createDocs = 3
elif a == 'gh':
gbl.createDocs = 4
elif a == 'bo':
gbl.createDocs = 99
elif a == 'k': elif a == 'k':
def pl(msg, lst, adds): def pl(msg, lst, adds):
@ -151,9 +163,57 @@ def opts():
elif o == '-P': elif o == '-P':
gbl.playFile = 1 gbl.playFile = 1
elif o == '-V':
gbl.playFile = 2 # signal create and play groove
if not args:
error("-V: option requires Groove Name.")
tfile = "MMAtmp%s.mma" % os.getpid()
op = open( tfile, "w")
groove=''
cmds=[]
chords="I, vi, ii, V7"
count=4
for g in args:
if '=' in g:
c=g.split('=')
if c[0].upper() == 'CHORDS':
chords = c[1]
elif c[0].upper() == "COUNT":
count = c[1]
try:
count=int(count)
except:
error("-V: expecting integer for Count.")
else:
cmds.append(c)
elif groove:
error( "-V: Only one groove name permitted.")
else:
groove=g
if not groove:
error("-V: no groove name specified.")
op.write("Groove %s\n" % groove)
for g in cmds:
op.write("%s %s \n" % (g[0], g[1]))
chords = chords.split(',')
while len(chords) < count:
chords += chords
chords = chords[:count]
for c in chords:
op.write("%s\n" % c)
op.close()
MMA.exits.files.append(tfile)
args = [tfile]
else: else:
usage() # unreachable?? usage() # unreachable??
# we have processed all the args. Should just have a filename left # we have processed all the args. Should just have a filename left
if len(args)>1: if len(args)>1:
@ -165,22 +225,28 @@ def opts():
if args: if args:
gbl.infile = args[0] gbl.infile = args[0]
def usage(msg=''): def usage(msg=''):
""" Usage message. """ """ Usage message. """
txt=[ txt=[
"MMA - Musical Midi Accompaniment", "MMA - Musical Midi Accompaniment",
" Copyright 2003-5, Bob van der Poel. Version %s" % gbl.version , " Copyright 2003-9, Bob van der Poel. Version %s" % gbl.version ,
" Distributed under the terms of the GNU Public License.", " Distributed under the terms of the GNU Public License.",
" Usage: mma [opts ...] INFILE [opts ...]", " Usage: mma [opts ...] INFILE [opts ...]",
"", "",
"Options:", "Options:",
" -b <n> Limit compilation to n1-n2 bars (comment numbers)",
" -B <n> Like -b but for absolute bar numbers",
" -c display default Channel assignments", " -c display default Channel assignments",
" -d enable lots of Debugging messages", " -d enable lots of Debugging messages",
" -Dk print list of MMA keywords", " -Dk print list of MMA keywords",
" -Dxl eXtract Latex doc blocks from file", " -Dxl eXtract Latex doc blocks from file",
" -Dxh eXtract HTML doc blocks from file", " -Dxh eXtract HTML doc blocks from file",
" -Dv extract lots of info about the grooves/seqs in file", " -Dgh extract HTML Groove doc",
" -Dbo extract text for browser app",
" -Ds extract sequence lists from file",
" -e show parsed/Expanded lines", " -e show parsed/Expanded lines",
" -f <file> set output Filename", " -f <file> set output Filename",
" -g update Groove dependency database", " -g update Groove dependency database",
@ -191,11 +257,13 @@ def usage(msg=''):
" -n No generation of midi output", " -n No generation of midi output",
" -o show complete filenames when Opened", " -o show complete filenames when Opened",
" -p display Patterns as they are defined", " -p display Patterns as they are defined",
" -P play song (don't save) with player",
" -r display Running progress", " -r display Running progress",
" -s display Sequence info during run", " -s display Sequence info during run",
" -S <var[=data]> Set macro 'var' to 'data'", " -S <var[=data]> Set macro 'var' to 'data'",
" -T <tracks> Limit generation to specified tracks", " -T <tracks> Limit generation to specified tracks",
" -v display Version number", " -v display Version number",
" -V <groove [options]> preview play groove",
" -w disable Warning messages", " -w disable Warning messages",
" -0 create sync at start of all channel tracks", " -0 create sync at start of all channel tracks",
" -1 create sync at end of all channel tracks" ] " -1 create sync at end of all channel tracks" ]
@ -212,3 +280,37 @@ def usage(msg=''):
sys.exit(1) sys.exit(1)
def setBarRange(v):
""" Set a range of bars to compile. This is the -R option."""
if gbl.barRange:
error("Only one -b or -B permitted.")
for ll in v.split(','):
l = ll.split("-")
if len(l) == 2:
s,e = l
try:
s = int(s)
e = int(e)
except:
usage("-R ranges must be integers, not '%s'." % l)
for a in range(s,e+1):
gbl.barRange.append(str(a))
elif len(l) == 1:
try:
s=int(l[0])
except:
usage("-R range must be an integer, not '%s'." % l[0])
gbl.barRange.append(str(s))
else:
usage("-R option expecting N1-N2,N3... not '%s'." % v)

File diff suppressed because it is too large Load Diff

View File

@ -28,7 +28,7 @@ import copy
import random import random
import math import math
import MMA.notelen import MMA.notelen
import MMA.translate import MMA.translate
import MMA.midi import MMA.midi
import MMA.midiC import MMA.midiC
@ -41,33 +41,77 @@ import gbl
from MMA.common import * from MMA.common import *
class Voicing:
def __init__(self):
self.mode = None
self.range = 12
self.center = 4
self.random = 0
self.percent = 0
self.bcount = 0
self.dir = 0
pats = {} # Storage for all pattern defines pats = {} # Storage for all pattern defines
def getIncDec(v):
""" See if 'v' starts with -/+. Strip and return. """
if v.startswith('-'):
incr = -1
v = v[1:]
elif v.startswith('+'):
incr = 1
v = v[1:]
else:
incr = 0
return incr, v
def getIncDecValue(orig, inc, new):
""" Set value based on original, increment and new values. """
if inc == -1:
return orig - new
elif inc == 1:
return orig + new
else:
return new
def getRndPair(l, trk, min, max):
""" Parse off a pair (or single) value for random settings (rvolume, etc.). """
if not l:
error("%s: expecting a value or value pair." % trk)
if l.count(',')>1:
error("%s: Random pairs can only have one ','!" % trk)
if l.count(',') == 1:
n1, n2 = l.split(',')
try:
n1 = int(n1)
n2 = int(n2)
except:
error("%s: Expecting integers, not '%s' or '%s'." % (trk, n1, n2))
else:
n1 = l.strip()
try:
n1 = int(n1)
except:
error("%s: Expecting integer, not '%s'." % trk)
n2 = n1 * -1
if n2 < n1:
n1, n2 = n2, n1
if n1 < min or n1 > max or n2 < min or n2 > max:
error("%s: Max range is %s to %s." % (trk, min, max) )
return (n1, n2)
class PC: class PC:
""" Pattern class. """ Pattern class.
Define classes for processing drum, chord, arp, and chord track. Define classes for processing drum, chord, arp, and chord track.
These are mostly the same, so we create a base class and derive These are mostly the same, so we create a base class and derive
the others from it. the others from it.
We have a class for each track type. They are all derived We have a class for each track type. They are all derived
from the base 'Pats' class. These classes do special processing from the base PC class. Some classes have their own __init__().
like parsing a pattern tuple and creating a chord. They call back here after doing their own special stuff.
No functions ever link to the code in this module, it is
only included into the real track class modules.
""" """
@ -95,14 +139,13 @@ class PC:
self.disable = 0 self.disable = 0
self.clearSequence() self.clearSequence()
self.nextVolume = None self.nextVolume = None
self.inited = 1 self.inited = 1
if gbl.muteTracks and nm not in gbl.muteTracks: if gbl.muteTracks and nm not in gbl.muteTracks:
self.disable = 1 self.disable = 1
########################################## ##########################################
## These are called from process() to set options ## These are called from process() to set options
@ -364,13 +407,31 @@ class PC:
def setChannelVolume(self, v): def setChannelVolume(self, v):
""" LowLevel MIDI command. Set Channel Voice. """ """ LowLevel MIDI command. Set Channel Volume. """
self.midiPending.append(( "CVOLUME", gbl.tickOffset, v) ) self.midiPending.append(( "CVOLUME", gbl.tickOffset, v) )
if gbl.debug: if gbl.debug:
print "Set %s MIDIChannelVolume to %s" % (self.name, v) print "Set %s MIDIChannelVolume to %s" % (self.name, v)
def setMidiCresc(self, v1, v2, count):
""" Low level MIDI (de)cresc channel volume."""
t = v2-v1 # total number of steps
step = (count * gbl.BperQ * gbl.QperBar) / abs(t) # step rate
p=gbl.tickOffset
if v2<v1:
dir=-1
else:
dir=1
for v in range(v1,v2+dir,dir):
self.midiPending.append(("CVOLUME", int(p), v))
p+=step
if gbl.debug:
print "%s MIDIChannelVolume: Added %s changes" % (self.name, t)
def setTname(self, n): def setTname(self, n):
""" Set the track name. """ Set the track name.
@ -384,7 +445,7 @@ class PC:
def setPan(self, ln): def setPan(self, ln):
""" Set MIDI Pan for this track. Parse sends 1 or 3 args. """ """ Set MIDI Pan for this track. Parse sends 1 or 3 args. """
if len(ln)==3: if len(ln)==3:
beats = stof(ln[2]) beats = stof(ln[2])
if beats < 1: if beats < 1:
@ -410,7 +471,7 @@ class PC:
else: else:
span = newPan-initPan span = newPan-initPan
changer=1 changer=1
if span>0: if span>0:
step = ticks/span step = ticks/span
else: else:
@ -423,10 +484,10 @@ class PC:
self.midiPending.append( ("PAN", int(off), v)) self.midiPending.append( ("PAN", int(off), v))
off+=step off+=step
v+=changer v+=changer
else: else:
self.midiPending.append( ("PAN", gbl.tickOffset, newPan)) self.midiPending.append( ("PAN", gbl.tickOffset, newPan))
if gbl.debug: if gbl.debug:
if beats: if beats:
print "Set %s MIDIPan from %s to %s over %s beats." % \ print "Set %s MIDIPan from %s to %s over %s beats." % \
@ -449,13 +510,66 @@ class PC:
if gbl.debug: if gbl.debug:
print "Set %s MIDIPortamento to %s" % (self.name, v) print "Set %s MIDIPortamento to %s" % (self.name, v)
def setMidiText(self, ln):
""" Set/queue midi text. """
self.midiPending.append( ("MIDITEXT", gbl.tickOffset, ln))
if gbl.debug:
print "Set %s MIDIText '%s'." % ln
def setMidiCue(self, ln):
""" Set/queue midi cue. """
self.midiPending.append( ("MIDICUE", gbl.tickOffset, ln))
if gbl.debug:
print "Set %s MIDICue '%s'." % ln
def setStrum(self, ln): def setStrum(self, ln):
""" Set Strum time. CHORD only option. """ """ Set Strum time. """
warning("Strum has no effect in %s tracks" % self.name) ln = lnExpand(ln, '%s Strum' % self.name)
tmp = []
for n in ln:
if ',' in n:
a,b = n.split(',', 1)
a = stoi(a, "Argument for %s Strum must be an integer" % self.name)
b = stoi(b, "Argument for %s Strum must be an integer" % self.name)
else:
a = stoi(n, "Argument for %s Strum must be an integer" % self.name)
b = a
if a>b:
xx=a
a=b
b=xx
if a < -300 or a > 300 or b < -300 or b > 300:
error("STRUM: %s out-of-range. All values must be -300..300" % n)
if a == 0 and b == 0:
tmp.append(None)
else:
tmp.append((a,b))
self.strum = seqBump(tmp)
if self.vtype == "DRUM":
warning("Strum has no effect in %s tracks" % self.name)
if gbl.debug:
print "Set %s Strum to %s" % (self.name, self.strum)
def getStrum(self, sc):
""" Returns the strum factor. Note that if strum==(0,0) a 0 is returned."""
if not self.strum[sc]:
return 0
else:
return random.randint(self.strum[sc][0], self.strum[sc][1])
def setTone(self, ln): def setTone(self, ln):
""" Set Tone. Error trap, only drum tracks have tone. """ """ Set Tone. Error trap, only drum tracks have tone. """
@ -468,11 +582,11 @@ class PC:
if gbl.muteTracks and self.name not in gbl.muteTracks: if gbl.muteTracks and self.name not in gbl.muteTracks:
warning("Attempt to enable muted track %s ignored." % self.name) warning("Attempt to enable muted track %s ignored." % self.name)
else: else:
self.disable = 0 self.disable = 0
self.ssvoice = -1 self.ssvoice = -1
if gbl.debug: if gbl.debug:
print "%s Enabled" % self.name print "%s Enabled" % self.name
@ -490,48 +604,47 @@ class PC:
def setRVolume(self, ln): def setRVolume(self, ln):
""" Set the volume randomizer for a track. """ """ Set the volume randomizer for a track. """
ln = lnExpand(ln, '%s RVolume' % self.name) msg = "%s Rvolume" % self.name
ln = lnExpand(ln, msg)
tmp = [] tmp = []
for n in ln: for n in ln:
n1, n2 = getRndPair(n, msg, -100, 100)
n = stoi(n, "Argument for %s RVolume must be a value" % self.name) tmp.append( [ n1/100. , n2/100. ] )
if n < 0 or n > 100:
error("RVolume %s out-of-range; must be 0..100" % n)
if n > 30:
warning("%s is a large RVolume value!" % n)
tmp.append( n/100. )
self.rVolume = seqBump(tmp) self.rVolume = seqBump(tmp)
if gbl.debug: if gbl.debug:
print "Set %s Rvolume to:" % self.name, print "%s:" % msg,
for n in self.rVolume: for n1, n2 in self.rVolume:
print int(n * 100), n1 = int(n1 * 100)
n2 = int(n2 * 100)
if abs(n1) == n2:
print "%s" % n2,
else:
print "%s,%s" % (n1, n2),
print print
def setRSkip(self, ln): def setRSkip(self, ln):
""" Set the note random skip factor for a track. """ """ Set the note random skip factor for a track. """
ln = lnExpand(ln, '%s RSkip' % self.name) msg = "%s RSkip" % self.name
ln = lnExpand(ln, msg)
tmp = [] tmp = []
for n in ln: for n in ln:
n = stoi(n, "Expecting integer after in RSkip") n = stoi(n, "%s: Expecting integer" % msg)
if n < 0 or n > 99: if n < 0 or n > 99:
error("RSkip arg must be 0..99") error("%s: arg must be 0..99" % msg)
tmp.append(n/100.) tmp.append(n/100.)
self.rSkip = seqBump(tmp) self.rSkip = seqBump(tmp)
if gbl.debug: if gbl.debug:
print "Set %s RSkip to:" % self.name, print "%s set to:" % msg,
for n in self.rSkip: for n in self.rSkip:
print int(n * 100), print int(n * 100),
print print
@ -540,22 +653,24 @@ class PC:
def setRTime(self, ln): def setRTime(self, ln):
""" Set the timing randomizer for a track. """ """ Set the timing randomizer for a track. """
ln = lnExpand(ln, '%s RTime' % self.name) msg = "%s RTime" % self.name
ln = lnExpand(ln, msg)
tmp = [] tmp = []
for n in ln: for n in ln:
n=stoi(n, "Expecting an integer for Rtime") n1, n2 = getRndPair(n, msg, -100, 100)
if n < 0 or n > 100: tmp.append([n1, n2])
error("RTime %s out-of-range; must be 0..100" % n)
tmp.append(n)
self.rTime = seqBump(tmp) self.rTime = seqBump(tmp)
if gbl.debug: if gbl.debug:
print "Set %s RTime to:" % self.name, print "%s:" % msg,
printList(self.rTime) for n1, n2 in self.rVolume:
if abs(n1) == n2:
print "%s" % n2,
else:
print "%s,%s" % (n1, n2),
print
def setRnd(self, arg): def setRnd(self, arg):
""" Enable random pattern selection from sequence.""" """ Enable random pattern selection from sequence."""
@ -663,17 +778,22 @@ class PC:
def setOctave(self, ln): def setOctave(self, ln):
""" Set the octave for a track. """ """ Set the octave for a track. Use 0-10, -x, +x. """
ln = lnExpand(ln, '%s Octave' % self.name) ln = lnExpand(ln, '%s Octave' % self.name)
ln = seqBump(ln) # Needed for +/- values to complete
tmp = [] tmp = []
i = 0
for n in ln: for n in ln:
incr, n = getIncDec(n)
n = stoi(n, "Argument for %s Octave must be an integer" % self.name) n = stoi(n, "Argument for %s Octave must be an integer" % self.name)
n = getIncDecValue(self.octave[i]/12, incr, n)
if n < 0 or n > 10: if n < 0 or n > 10:
error("Octave %s out-of-range; must be 0..10" % n) error("Octave %s out-of-range; must be 0..10" % n)
tmp.append( n * 12 ) tmp.append( n * 12 )
i+=1
self.octave = seqBump(tmp) self.octave = seqBump(tmp)
@ -773,7 +893,10 @@ class PC:
def setSeqSize(self): def setSeqSize(self):
""" Expand existing pattern list. """ """ Expand existing pattern list.
Track functions my have their own and do a callback.
"""
self.sequence = seqBump(self.sequence) self.sequence = seqBump(self.sequence)
if self.midiVoice: if self.midiVoice:
@ -801,9 +924,6 @@ class PC:
self.unify = seqBump(self.unify) self.unify = seqBump(self.unify)
self.accent = seqBump(self.accent) self.accent = seqBump(self.accent)
if self.vtype == "DRUM":
self.toneList = seqBump(self.toneList)
def setVoice(self, ln): def setVoice(self, ln):
""" Set the voice for a track. """ Set the voice for a track.
@ -817,7 +937,7 @@ class PC:
ln = lnExpand(ln, '%s Voice' % self.name) ln = lnExpand(ln, '%s Voice' % self.name)
tmp = [] tmp = []
for n in ln: for n in ln:
n = MMA.translate.vtable.get(n) n = MMA.translate.vtable.get(n)
voc=MMA.midiC.instToValue(n) voc=MMA.midiC.instToValue(n)
@ -847,10 +967,10 @@ class PC:
voc += i voc += i
tmp.append( voc ) tmp.append( voc )
self.voice = seqBump(tmp) self.voice = seqBump(tmp)
if self.channel and len(gbl.midiAssigns[self.channel])>1: if self.channel and len(gbl.midiAssigns[self.channel])>1:
a='' a=''
for n in gbl.midiAssigns[self.channel]: for n in gbl.midiAssigns[self.channel]:
if n != self.name: if n != self.name:
@ -891,7 +1011,7 @@ class PC:
gbl.mtrks[self.channel].addCtl(gbl.tickOffset, i[1]) gbl.mtrks[self.channel].addCtl(gbl.tickOffset, i[1])
self.midiSent = 0 self.midiSent = 0
def doChannelReset(self): def doChannelReset(self):
""" Reset the midi voicing to 'sane'. Called when track ended. """ """ Reset the midi voicing to 'sane'. Called when track ended. """
@ -986,6 +1106,7 @@ class PC:
ln = lnExpand(ln, '%s Volume' % self.name) ln = lnExpand(ln, '%s Volume' % self.name)
tmp = [None] * len(ln) tmp = [None] * len(ln)
self.futureVols = [] # clear off dangling (de)cresc for voice.
for i,n in enumerate(ln): for i,n in enumerate(ln):
a = MMA.volume.calcVolume(n, self.volume[i]) a = MMA.volume.calcVolume(n, self.volume[i])
@ -1042,7 +1163,7 @@ class PC:
if self.volume.count(self.volume[0]) != len(self.volume): if self.volume.count(self.volume[0]) != len(self.volume):
warning("%s Swell being used with track with variable sequence volumes." \ warning("%s Swell being used with track with variable sequence volumes." \
% self.name) % self.name)
count = stoi(ln[1]) count = stoi(ln[1])
if count < 2: if count < 2:
error("%s Swell bar count must be 2 or greater." % self.name) error("%s Swell bar count must be 2 or greater." % self.name)
@ -1061,17 +1182,21 @@ class PC:
self.futureVols.extend(MMA.volume.fvolume(0, self.futureVols[-1], self.futureVols.extend(MMA.volume.fvolume(0, self.futureVols[-1],
[str(int(self.volume[0]*100)), c ] )[offset:] ) [str(int(self.volume[0]*100)), c ] )[offset:] )
if gbl.debug: if gbl.debug:
print "Set %s Swell to:" % self.name, print "Set %s Swell to:" % self.name,
for a in self.futureVols: for a in self.futureVols:
print int(a*100), print int(a*100),
print print
def setMallet(self, ln): def setMallet(self, ln):
""" Mallet (repeat) settngs. """ """ Mallet (repeat) settngs. """
if self.vtype == "PLECTRUM":
warning("%s: Mallet has no effect, ignored." % self.name)
return
for l in ln: for l in ln:
try: try:
mode, val = l.upper().split('=') mode, val = l.upper().split('=')
@ -1079,7 +1204,10 @@ class PC:
error("Each Mallet option must contain a '=', not '%s'" % l) error("Each Mallet option must contain a '=', not '%s'" % l)
if mode == 'RATE': if mode == 'RATE':
self.mallet = MMA.notelen.getNoteLen(val) if val == '0' or val.upper() == 'NONE':
self.mallet = 0
else:
self.mallet = MMA.notelen.getNoteLen(val)
elif mode == 'DECAY': elif mode == 'DECAY':
val = stof(val, "Mallet Decay must be a value, not '%s'" % val) val = stof(val, "Mallet Decay must be a value, not '%s'" % val)
@ -1105,11 +1233,11 @@ class PC:
Track Accent 1 20 3 -10 -- fix up by adding {} around entire option list, Track Accent 1 20 3 -10 -- fix up by adding {} around entire option list,
Track Accent {1 20 3 -10} -- okay Track Accent {1 20 3 -10} -- okay
Track Accent {1 20} / {/} {3 20} -- okay. Track Accent {1 20} / {/} {3 20} -- okay.
At this point ln is a string. We extract each set of {}s and build a At this point ln is a string. We extract each set of {}s and build a
new ln[]. new ln[].
Note that the "/" can or not have {}s. Note that the "/" can or not have {}s.
""" """
ln = ' '.join(ln) ln = ' '.join(ln)
@ -1117,7 +1245,7 @@ class PC:
ln='{' + ln +"}" ln='{' + ln +"}"
l=[] l=[]
while ln: while ln:
if ln[0] == "/": # / not delimited with {} if ln[0] == "/": # / not delimited with {}
ln = "{/}" + ln[1:] ln = "{/}" + ln[1:]
@ -1127,7 +1255,7 @@ class PC:
l.append('/') l.append('/')
else: else:
l.append(b[0].split()) l.append(b[0].split())
ln = lnExpand(l, '%s Accent' % self.name) ln = lnExpand(l, '%s Accent' % self.name)
for l in ln: for l in ln:
@ -1161,17 +1289,24 @@ class PC:
""" Set the note articuation value. """ """ Set the note articuation value. """
ln = lnExpand(ln, '%s Articulate' % self.name) ln = lnExpand(ln, '%s Articulate' % self.name)
ln = seqBump(ln)
tmp = [] tmp = []
incr = 0
i = 0
for n in ln: for n in ln:
incr, n = getIncDec(n)
a = stoi(n, "Expecting value in articulation setting") a = stoi(n, "Expecting value in articulation setting")
if a < 1 or a > 200: a = getIncDecValue(self.artic[i], incr, a)
error("Articulation setting must be 1..200, not %s" % a)
if a>150: if a < 1 or a > 500:
warning("Large Articulate value: %s" % a) error("%s: Articulation setting must be 1..500, not %s" % (self.name,a))
if a > 200:
warning("%s: Articulation '%s' is a large value." % (self.name, a))
tmp.append(a) tmp.append(a)
i += 1
self.artic = seqBump(tmp) self.artic = seqBump(tmp)
@ -1215,10 +1350,10 @@ class PC:
"%s and %s aren't" % (self.name, cp.name)) "%s and %s aren't" % (self.name, cp.name))
self.volume = cp.volume[:] self.volume = cp.volume[:]
self.rVolume = cp.rVolume[:] self.rVolume = copy.deepcopy(cp.rVolume)
self.accent = cp.accent[:] self.accent = cp.accent[:]
self.rSkip = cp.rSkip[:] self.rSkip = cp.rSkip[:]
self.rTime = cp.rTime[:] self.rTime = copy.deepcopy(cp.rTime)
self.strum = cp.strum[:] self.strum = cp.strum[:]
self.octave = cp.octave[:] self.octave = cp.octave[:]
self.harmony = cp.harmony[:] self.harmony = cp.harmony[:]
@ -1249,12 +1384,12 @@ class PC:
""" Define a groove. """ Define a groove.
Called by the 'DefGroove Name'. This is called for Called by the 'DefGroove Name'. This is called for
each track. each track.
If 'gname' is already defined it is overwritten. If 'gname' is already defined it is overwritten.
Note aux. function which may be defined for each track type. Note that tracks may have their own function for local/specific variables.
They call here first to create storage, then do their own.
""" """
self.grooves[gname] = { self.grooves[gname] = {
@ -1271,8 +1406,8 @@ class PC:
'RANGE': self.chordRange[:], 'RANGE': self.chordRange[:],
'OCTAVE': self.octave[:], 'OCTAVE': self.octave[:],
'RSKIP': self.rSkip[:], 'RSKIP': self.rSkip[:],
'RTIME': self.rTime[:], 'RTIME': copy.deepcopy(self.rTime),
'RVOLUME': self.rVolume[:], 'RVOLUME': copy.deepcopy(self.rVolume),
'SCALE': self.scaleType[:], 'SCALE': self.scaleType[:],
'SEQ': self.sequence[:], 'SEQ': self.sequence[:],
'SEQRND': self.seqRnd, 'SEQRND': self.seqRnd,
@ -1289,15 +1424,12 @@ class PC:
} }
if self.vtype == 'CHORD':
self.grooves[gname]['VMODE'] = copy.deepcopy(self.voicing)
if self.vtype == 'DRUM':
self.grooves[gname]['TONES'] = self.toneList[:]
def restoreGroove(self, gname): def restoreGroove(self, gname):
""" Restore a defined groove. """ """ Restore a defined groove.
Some tracks will override to restore their own variables. They
then call back to this to finish the job.
"""
self.doMidiClear() self.doMidiClear()
@ -1332,12 +1464,6 @@ class PC:
self.spanStart, self.spanEnd = g['SPAN'] self.spanStart, self.spanEnd = g['SPAN']
self.mallet, self.malletDecay = g['MALLET'] self.mallet, self.malletDecay = g['MALLET']
if self.vtype == 'CHORD':
self.voicing = g['VMODE']
if self.vtype == 'DRUM':
self.toneList = g['TONES']
""" It's quite possible that the track was created after """ It's quite possible that the track was created after
the groove was saved. This means that the data restored the groove was saved. This means that the data restored
@ -1426,20 +1552,17 @@ class PC:
self.sequence = [None] self.sequence = [None]
self.seqRnd = 0 self.seqRnd = 0
self.seqRndWeight = [1] self.seqRndWeight = [1]
if self.vtype == 'ARIA': self.scaleType = ['AUTO']
self.scaleType = ['CHORD'] self.rVolume = [[0,0]]
else:
self.scaleType = ['AUTO']
self.rVolume = [0]
self.rSkip = [0] self.rSkip = [0]
self.rTime = [0] self.rTime = [[0,0]]
self.octave = [4 * 12] self.octave = [4 * 12]
self.voice = [0] self.voice = [0]
self.chordRange = [1] self.chordRange = [1]
self.harmony = [None] self.harmony = [None]
self.harmonyOnly = [None] self.harmonyOnly = [None]
self.harmonyVolume = [.8] self.harmonyVolume = [.8]
self.strum = [0] self.strum = [None]
self.volume = [MMA.volume.vols['M'] ] self.volume = [MMA.volume.vols['M'] ]
self.compress = [0] self.compress = [0]
self.dupRoot = [0] self.dupRoot = [0]
@ -1456,7 +1579,16 @@ class PC:
self.mallet = 0 self.mallet = 0
self.malletDecay = 0 self.malletDecay = 0
self.futureVols = [] self.futureVols = []
self.direction = ['BOTH']
# for midinote (see midinote.py)
self.transpose = 0 # transpose off=0, on=1
self.useticks = 1 # offsets beats=0, ticks=1 defaults to ticks
self.tickdur = 1 # duration notes=0, ticks=1 defaults to ticks
self.articulate = 0 # honor articulate, defaults to Off
self.tadjust = 0 # time adjustment factor
self.vadjust = 1 # volume adjustment factor (percentage)
self.oadjust = 0 # octave (12 pitches) adjustment
if self.riff: if self.riff:
if len(self.riff) > 1: if len(self.riff) > 1:
@ -1466,13 +1598,6 @@ class PC:
self.riff = [] self.riff = []
if self.vtype == 'CHORD':
self.voicing = Voicing()
self.direction = ['UP']
else:
self.direction = ['BOTH']
self.setSeqSize() self.setSeqSize()
@ -1509,6 +1634,35 @@ class PC:
self.printPattern(pats[slot]) self.printPattern(pats[slot])
def dupRiff(self, ln):
""" Duplicate an existing set of riffs from one solo track to another."""
if not self.riff:
error("%s DupRiff: No data to copy." % self.name)
for t in ln:
t=t.upper()
if not t in gbl.tnames:
error("%s DupRiff: Destination track %s does not exist." \
% (self.name, t))
tr = gbl.tnames[t]
if self.vtype != tr.vtype:
error("%s DupRiff: Can't copy to %s, incompatible types (%s != %s)." \
% (self.name,t, self.vtype, tr.vtype))
if tr.riff:
error("%s DupRiff: Destination track %s has pending data." \
% (self.name, tr.name))
tr.riff = copy.deepcopy(self.riff)
if gbl.debug:
print "%s DupRiff copied to %s." % (self.name, tr.name)
def setRiff(self, ln): def setRiff(self, ln):
""" Define and set a Riff. """ """ Define and set a Riff. """
@ -1647,28 +1801,12 @@ class PC:
plist.sort(patsort) plist.sort(patsort)
if gbl.swingMode: if MMA.swing.mode:
len8 = MMA.notelen.getNoteLen('8') plist = MMA.swing.pattern(plist, self.vtype)
len81 = MMA.notelen.getNoteLen('81')
len82 = MMA.notelen.getNoteLen('82')
onBeats = [ x * gbl.BperQ for x in range(gbl.QperBar)]
offBeats = [ (x * gbl.BperQ + len8) for x in range(gbl.QperBar)]
for p in plist:
if p.duration == len8 or self.vtype=="DRUM" and p.duration==1:
if p.offset in onBeats:
if p.duration == len8:
p.duration = len81
elif p.offset in offBeats:
if p.duration == len8:
p.duration = len82
i=offBeats.index(p.offset)
p.offset = onBeats[i] + len81
return plist return plist
def printPattern(self, pat): def printPattern(self, pat):
""" Print a pattern. Used by debugging code.""" """ Print a pattern. Used by debugging code."""
@ -1703,17 +1841,11 @@ class PC:
s.append( "%s %.0f" % (f, p.vol ) ) s.append( "%s %.0f" % (f, p.vol ) )
elif self.vtype == 'ARPEGGIO': elif self.vtype in ('ARPEGGIO', 'SCALE', 'DRUM', 'WALK'):
s.append( "%.0f " % p.vol ) s.append( "%.0f " % p.vol )
elif self.vtype == 'DRUM':
s.append("%.0f" % p.vol)
elif self.vtype == 'WALK':
s.append("%.0f" % p.vol )
pp.append(' '.join(s)) pp.append(' '.join(s))
return "; ".join(pp) return "; ".join(pp)
@ -1755,8 +1887,9 @@ class PC:
except KeyError: except KeyError:
pass pass
if gbl.debug: if gbl.debug:
print "Track %s Voice %s inserted" % (self.name,MMA.midiC.valueToInst(v) ) print "%s Voice '%s' inserted at %s" % \
(self.name, MMA.midiC.valueToInst(v), gbl.tickOffset )
""" Our 2nd stab at MIDIVOICE. This time any sequences """ Our 2nd stab at MIDIVOICE. This time any sequences
with offsets >0 are sent. AND the smidiVoice and midiSent with offsets >0 are sent. AND the smidiVoice and midiSent
@ -1781,7 +1914,6 @@ class PC:
def bar(self, ctable): def bar(self, ctable):
""" Process a bar of music for this track. """ """ Process a bar of music for this track. """
# Future vol == de(cresc). Done if track is on or off! # Future vol == de(cresc). Done if track is on or off!
if self.futureVols: if self.futureVols:
@ -1819,7 +1951,6 @@ class PC:
pattern = self.riff.pop(0) pattern = self.riff.pop(0)
else: else:
pattern = self.sequence[sc] pattern = self.sequence[sc]
if not pattern: if not pattern:
return return
@ -1853,6 +1984,7 @@ class PC:
while self.midiPending: while self.midiPending:
c, off, v = self.midiPending.pop(0) c, off, v = self.midiPending.pop(0)
if c == 'TNAME': if c == 'TNAME':
gbl.mtrks[self.channel].addTrkName(off, v) gbl.mtrks[self.channel].addTrkName(off, v)
if gbl.debug: if gbl.debug:
@ -1877,25 +2009,41 @@ class PC:
print "%s ChannelVolume at offset %s set to %s" % \ print "%s ChannelVolume at offset %s set to %s" % \
(self.name, off, v) (self.name, off, v)
elif c == 'MIDITEXT':
gbl.mtrks[self.channel].addText(off, v)
if gbl.debug:
print "%s MidiText inserted at %s." % (self.name, off)
elif c == 'MIDICUE':
gbl.mtrks[self.channel].addCuePoint(off, v)
if gbl.debug:
print "%s MidiCue inserted at %s." % (self.name, off)
else: else:
error("Unknown midi command pending. Call Bob") error("Unknown midi command pending. Call Bob")
def getChordInPos( self, offset, ctable): def getChordInPos( self, offset, ctabs):
""" Compare an offset to a list of ctables and return """ Compare an offset to a list of ctables and return
the table entry active for the given beat. the table entry active for the given beat.
We assume that the first offset in 'ctable' is 0! The chord start/end offsets generated by parseChordLine() will be in
We assme that 'offset' is >= 0! the range 0... (BperQ*QperBar). So, negative offset in patterns need
to be reset to 0; and a hit at the end of the bar could be missed if we
don't assume that anything out-of-range is in the last chord. Sort of
ugly, but it's quick and it works.
Returns a ctable. Returns a CTable structure.
""" """
for i in range(len(ctable)-1, -1, -1): # reverse order for c in ctabs:
if offset >= ctable[i].offset: if offset < c.chEnd:
break break
return ctable[i]
return c
@ -1921,10 +2069,11 @@ class PC:
if bt<1: # might have negative offsets, cres code ignores if bt<1: # might have negative offsets, cres code ignores
bt=0 bt=0
a1 += (self.nextVolume - a1) * bt / (gbl.BperQ * gbl.QperBar) a1 += (self.nextVolume - a1) * bt / (gbl.BperQ * gbl.QperBar)
a1 *= MMA.volume.vTRatio a1 *= MMA.volume.vTRatio
a2 = MMA.volume.volume a2 = MMA.volume.volume
if not a2: if not a2:
return 0 return 0
@ -1933,7 +2082,7 @@ class PC:
if bt<1: # might have negative offsets, cres code ignores if bt<1: # might have negative offsets, cres code ignores
bt=0 bt=0
a2 += (MMA.volume.nextVolume - a2) * bt / (gbl.BperQ * gbl.QperBar) a2 += (MMA.volume.nextVolume - a2) * bt / (gbl.BperQ * gbl.QperBar)
a2 *= MMA.volume.vMRatio a2 *= MMA.volume.vMRatio
v *= ( a1 + a2 ) v *= ( a1 + a2 )
@ -1945,9 +2094,10 @@ class PC:
# take .rVolume % of current volume, add/sub result to current # take .rVolume % of current volume, add/sub result to current
if self.rVolume[sc]: if self.rVolume[sc]:
a = int(v * self.rVolume[sc]) a1 = int(v * self.rVolume[sc][0])
if a: a2 = int(v * self.rVolume[sc][1])
v += random.randrange(-a, a) if a1 or a2:
v += random.randrange(a1, a2)
if v > 127: if v > 127:
v = 127 v = 127
@ -1959,19 +2109,14 @@ class PC:
def adjustNote(self, n): def adjustNote(self, n):
""" Adjust a note for a given octave/transposition. """ Adjust a note for a given octave/transposition.
Ensure that the note is in range. Ensure that the note is in range.
""" """
n += self.octave[self.seq] + gbl.transpose n += self.octave[self.seq] + gbl.transpose
while n < 0: while n < 0 or n < self.spanStart:
n += 12 n += 12
while n > 127: while n > 127 or n > self.spanEnd:
n -= 12
while n < self.spanStart:
n += 12
while n > self.spanEnd:
n -= 12 n -= 12
return n return n
@ -2032,13 +2177,13 @@ class PC:
def getDur(self, d): def getDur(self, d):
""" Return the adjusted duration for a note. """ Return the adjusted duration for a note.
The adjustment makes notes more staccato. Valid The adjustment makes notes longer or shorter. Valid
adjustments are 1 to 100. 100 is not recommended. adjustments are 1 to 200.
""" """
d = (d * self.artic[self.seq]) / 100 d = (d * self.artic[self.seq]) / 100
if not d: if not d:
d = 1 d = 1 # force a value if we end with 0.
return d return d
@ -2050,11 +2195,10 @@ class PC:
if not velocity: if not velocity:
return return
sc = self.seq sc = self.seq
rptr = self.mallet rptr = self.mallet
if rptr and duration > rptr: if rptr and duration > rptr:
ll = self.getDur(rptr) ll = self.getDur(rptr)
offs = 0 offs = 0
@ -2064,7 +2208,7 @@ class PC:
for q in range(duration/rptr): for q in range(duration/rptr):
gbl.mtrks[self.channel].addPairToTrack( gbl.mtrks[self.channel].addPairToTrack(
offset + offs, offset + offs,
self.rTime[sc], self.rTime[sc][0], self.rTime[sc][1],
ll, ll,
note, note,
vel, vel,
@ -2082,7 +2226,7 @@ class PC:
else: else:
gbl.mtrks[self.channel].addPairToTrack( gbl.mtrks[self.channel].addPairToTrack(
offset, offset,
self.rTime[sc], self.rTime[sc][0], self.rTime[sc][1],
duration, duration,
note, note,
velocity, velocity,

View File

@ -46,7 +46,6 @@ class Aria(PC):
lastRange = None lastRange = None
def restoreGroove(self, gname): def restoreGroove(self, gname):
""" Grooves are not saved/restored for aria tracks. But, seqsize is honored! """ """ Grooves are not saved/restored for aria tracks. But, seqsize is honored! """
self.setSeqSize() self.setSeqSize()
@ -84,8 +83,8 @@ class Aria(PC):
for n in ln: for n in ln:
n = n.upper() n = n.upper()
if not n in ( 'CHROMATIC', 'AUTO', 'CHORD'): if not n in ( 'CHROMATIC', 'SCALE', 'AUTO', 'CHORD'):
error("Unknown %s ScaleType. Only Chromatic, Scale and Chord are valid" % self.name) error("Unknown %s ScaleType. Only Chromatic, Scale (Auto) and Chord are valid" % self.name)
tmp.append(n) tmp.append(n)
self.scaleType = seqBump(tmp) self.scaleType = seqBump(tmp)
@ -109,14 +108,17 @@ class Aria(PC):
self.selectDir = [] self.selectDir = []
for a in ln: for a in ln:
if a.upper() == 'R': if set(a.upper()) == set('R'): # is direction 'r', 'rr', 'rrr', etc.
if len(a) > 4:
error("Aria Direction has too much randomness"
"(Maximum of 4 r's, got %d)." % len(a))
self.selectDir.append(a.upper()) self.selectDir.append(a.upper())
else: else: # not random, has to be an integer -4 ... 4
a=stoi(a, "Expecting integer value or 'r'.") a=stoi(a, "Expecting integer value or 'r*'.")
if a < -4 or a > 4: if a < -4 or a > 4:
error("Aria direction must be 'r' or -4 to 4, not '%s'" % a) error("Aria direction must be 'r' or -4 to 4, not '%s'" % a)
self.selectDir.append(a) self.selectDir.append(a)
if gbl.debug: if gbl.debug:
print "Set %s Direction:" % self.name, print "Set %s Direction:" % self.name,
printList(self.selectDir) printList(self.selectDir)
@ -143,16 +145,16 @@ class Aria(PC):
thisChord = ct.chord.tonic + ct.chord.chordType thisChord = ct.chord.tonic + ct.chord.chordType
stype = self.scaleType[sc] stype = self.scaleType[sc]
range = self.chordRange[sc] chrange = self.chordRange[sc]
### Generate notelist if nesc. ### Generate notelist if nesc.
if self.lastChord != thisChord or self.lastStype != stype or \ if self.lastChord != thisChord or self.lastStype != stype or \
self.lastRange != range: self.lastRange != chrange:
self.lastChord = thisChord self.lastChord = thisChord
self.lastStype = stype self.lastStype = stype
self.lastRange = range self.lastRange = chrange
if stype == 'CHORD': if stype == 'CHORD':
notelist = ct.chord.noteList notelist = ct.chord.noteList
@ -164,28 +166,32 @@ class Aria(PC):
o=0 o=0
self.notes=[] self.notes=[]
while range >= 1: while chrange >= 1:
for a in notelist: for a in notelist:
self.notes.append(a+o) self.notes.append(a+o)
o+=12 o+=12
range-=1 chrange-=1
if range>0 and range<1: # for fractional scale lengths if chrange>0 and chrange<1: # for fractional scale lengths
range = int(len(notelist) * range) chrange = int(len(notelist) * chrange)
if range < 2: # important, must be at least 2 notes in a scale if chrange < 2: # important, must be at least 2 notes in a scale
range=2 chrange=2
for a in notelist[:range]: for a in notelist[:chrange]:
self.notes.append(a+o) self.notes.append(a+o)
# grab a note from the list # grab a note from the list
if self.dirptr >= len(self.selectDir): if self.dirptr >= len(self.selectDir):
self.dirptr=0 self.dirptr=0
# the direction ptr is either an int(-4..4) or a string of 'r', 'rr, etc.
a = self.selectDir[self.dirptr] a = self.selectDir[self.dirptr]
if a == 'R':
a = random.choice( (-1, 0, 1) ) if type(a) == type(1):
self.noteptr += a self.noteptr += a
else:
self.noteptr += random.choice( range(-len(a), len(a)+1 ))
if self.noteptr >= len(self.notes): if self.noteptr >= len(self.notes):
if a > 0: if a > 0:
@ -197,9 +203,8 @@ class Aria(PC):
self.noteptr = len(self.notes)-1 self.noteptr = len(self.notes)-1
else: else:
self.noteptr = 0 self.noteptr = 0
note = self.notes[self.noteptr]
note = self.notes[self.noteptr]
self.dirptr += 1 self.dirptr += 1
# output # output
@ -211,18 +216,16 @@ class Aria(PC):
self.adjustNote(note), self.adjustNote(note),
self.adjustVolume(p.vol, p.offset)) self.adjustVolume(p.vol, p.offset))
if self.harmony[sc]: if self.harmony[sc]:
h = MMA.harmony.harmonize(self.harmony[sc], note, ct.chord.noteList) h = MMA.harmony.harmonize(self.harmony[sc], note, ct.chord.noteList)
strumOffset = self.getStrum(sc)
for n in h: for n in h:
self.sendNote( self.sendNote(
p.offset, p.offset + strumOffset,
self.getDur(p.duration), self.getDur(p.duration),
self.adjustNote(n), self.adjustNote(n),
self.adjustVolume(p.vol * self.harmonyVolume[sc], -1)) self.adjustVolume(p.vol * self.harmonyVolume[sc], -1))
strumOffset += self.getStrum(sc)

View File

@ -35,9 +35,12 @@ from MMA.pat import PC
class Arpeggio(PC): class Arpeggio(PC):
""" Pattern class for an arpeggio track. """ """ Pattern class for an arpeggio track. """
vtype = 'ARPEGGIO' vtype = 'ARPEGGIO'
arpOffset = -1 arpOffset = -1
arpDirection = 1 arpDirection = 1
lastRange = 999
lastDirection = 999
def getPgroup(self, ev): def getPgroup(self, ev):
""" Get group for apreggio pattern. """ Get group for apreggio pattern.
@ -61,6 +64,8 @@ class Arpeggio(PC):
self.ssvoice = -1 self.ssvoice = -1
self.arpOffset=-1 self.arpOffset=-1
self.arpDirection=1 self.arpDirection=1
lastRange = 999
lastDirection = 999
def trackBar(self, pattern, ctable): def trackBar(self, pattern, ctable):
""" Do a arpeggio bar. """ Do a arpeggio bar.
@ -70,7 +75,18 @@ class Arpeggio(PC):
""" """
sc = self.seq sc = self.seq
direct = self.direction[sc] direct = self.direction[sc]
if direct != self.lastDirection:
self.arpOffset=-1
self.arpDirection=1
self.lastDirection = direct
range = self.chordRange[sc]
if range != self.lastRange:
self.arpOffset=-1
self.arpDirection=1
self.lastRange = range
for p in pattern: for p in pattern:
tb = self.getChordInPos(p.offset, ctable) tb = self.getChordInPos(p.offset, ctable)
@ -95,7 +111,7 @@ class Arpeggio(PC):
# settings each for each bar as well, so it's probably just as easy to # settings each for each bar as well, so it's probably just as easy to
# leave it as is. Besides, this works. # leave it as is. Besides, this works.
ln = self.chordRange[sc] ln = range
o = 0 o = 0
ourChord = [] ourChord = []
while ln >= 1: while ln >= 1:
@ -136,7 +152,6 @@ class Arpeggio(PC):
self.arpOffset += self.arpDirection self.arpOffset += self.arpDirection
if not self.harmonyOnly[sc]: if not self.harmonyOnly[sc]:
self.sendNote( self.sendNote(
p.offset, p.offset,
@ -144,16 +159,19 @@ class Arpeggio(PC):
self.adjustNote(note), self.adjustNote(note),
self.adjustVolume(p.vol, p.offset) ) self.adjustVolume(p.vol, p.offset) )
if self.harmony[sc]: if self.harmony[sc]:
h = MMA.harmony.harmonize(self.harmony[sc], note, ourChord) h = MMA.harmony.harmonize(self.harmony[sc], note, ourChord)
strumOffset = self.getStrum(sc)
for n in h: for n in h:
self.sendNote( self.sendNote(
p.offset, p.offset + strumOffset,
self.getDur(p.duration), self.getDur(p.duration),
self.adjustNote(n), self.adjustNote(n),
self.adjustVolume(p.vol * self.harmonyVolume[sc], -1) ) self.adjustVolume(p.vol * self.harmonyVolume[sc], -1) )
strumOffset += self.getStrum(sc)
tb.chord.reset() # important, other tracks chord object tb.chord.reset() # important, other tracks chord object

View File

@ -34,9 +34,10 @@ from MMA.pat import PC
class Bass(PC): class Bass(PC):
""" Pattern class for a bass track. """ """ Pattern class for a bass track. """
vtype = 'BASS' vtype = 'BASS'
def getPgroup(self, ev): def getPgroup(self, ev):
""" Get group for bass pattern. """ Get group for bass pattern.
@ -106,10 +107,8 @@ class Bass(PC):
if ct.bassZ: if ct.bassZ:
continue continue
note = ct.chord.scaleList[p.noteoffset] + p.addoctave + p.accidental note = ct.chord.scaleList[p.noteoffset] + p.addoctave + p.accidental
if not self.harmonyOnly[sc]: if not self.harmonyOnly[sc]:
self.sendNote( self.sendNote(
p.offset, p.offset,
@ -117,16 +116,19 @@ class Bass(PC):
self.adjustNote(note), self.adjustNote(note),
self.adjustVolume(p.vol, p.offset)) self.adjustVolume(p.vol, p.offset))
if self.harmony[sc]: if self.harmony[sc]:
h = MMA.harmony.harmonize(self.harmony[sc], note, ct.chord.noteList) h = MMA.harmony.harmonize(self.harmony[sc], note, ct.chord.noteList)
strumOffset = self.getStrum(sc)
for n in h: for n in h:
self.sendNote( self.sendNote(
p.offset, p.offset + strumOffset,
self.getDur(p.duration), self.getDur(p.duration),
self.adjustNote(n), self.adjustNote(n),
self.adjustVolume(p.vol * self.harmonyVolume[sc], -1)) self.adjustVolume(p.vol * self.harmonyVolume[sc], -1))
strumOffset += self.getStrum(sc)

View File

@ -26,31 +26,66 @@ Bob van der Poel <bob@mellowood.ca>
import random import random
import MMA.notelen import MMA.notelen
import gbl import gbl
from MMA.common import * from MMA.common import *
from MMA.pat import PC from MMA.pat import PC
import copy
class Voicing:
def __init__(self):
self.mode = None
self.range = 12
self.center = 4
self.random = 0
self.percent = 0
self.bcount = 0
self.dir = 0
class Chord(PC): class Chord(PC):
""" Pattern class for a chord track. """ """ Pattern class for a chord track. """
vtype = 'CHORD' vtype = 'CHORD'
sortDirection = 0 # used for tracking direction of strummed chords
def __init__(self, ln):
self.voicing = Voicing()
PC.__init__(self, ln)
def saveGroove(self, gname):
""" Save special/local variables for groove. """
PC.saveGroove(self, gname) # create storage. Do this 1st.
self.grooves[gname]['VMODE'] = copy.deepcopy(self.voicing)
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
self.voicing = self.grooves[gname]['VMODE']
PC.restoreGroove(self, gname)
def clearSequence(self):
""" Set some initial values. Called from init and clear seq. """
PC.clearSequence(self)
self.voicing = Voicing()
# .direction was set in PC.clear.. we're changing to our default
self.direction = seqBump(['UP'])
def setVoicing(self, ln): def setVoicing(self, ln):
""" set the Voicing Mode options. Only valid for CHORDS. """ """ set the Voicing Mode options. Only valid for CHORDS. """
for l in ln: notopt, ln = opt2pair(ln, toupper=1)
try:
mode, val = l.upper().split('=')
except:
error("Each Voicing option must contain a '=', not '%s'" % l)
if notopt:
error("Voicing: Each Voicing option must be a OPT=VALUE pair.")
for mode, val in ln:
if mode == 'MODE': if mode == 'MODE':
valid= ("-", "OPTIMAL", "NONE", "ROOT", "COMPRESSED", "INVERT") valid= ("-", "OPTIMAL", "NONE", "ROOT", "COMPRESSED", "INVERT")
@ -65,7 +100,7 @@ class Chord(PC):
warning("Setting both VoicingMode and Invert/Compress is not a good idea") warning("Setting both VoicingMode and Invert/Compress is not a good idea")
""" When we set voicing mode we always reset this. This forces """ When we set voicing mode we always reset this. This forces
the voicingmode code to restart its rotations. the voicingmode code to restart its rotations.
""" """
self.lastChord = [] self.lastChord = []
@ -74,55 +109,47 @@ class Chord(PC):
elif mode == 'RANGE': elif mode == 'RANGE':
val = stoi(val, "Argument for %s Voicing Range " val = stoi(val, "VOICING RANGE %s: Arg must be a value" % self.name)
"must be a value" % self.name)
if val < 1 or val > 30: if val < 1 or val > 30:
error("Voicing Range '%s' out-of-range; " error("Voicing Range: Arg out-of-range; must be 1 to 30, not '%s'." % val)
"must be 1 to 30" % val)
self.voicing.range = val self.voicing.range = val
elif mode == 'CENTER': elif mode == 'CENTER':
val = stoi(val, "Argument for %s Voicing Center " val = stoi(val, "Argument for %s VOICING CENTER must be a value" % self.name)
"must be a value" % self.name)
if val < 1 or val > 12: if val < 1 or val > 12:
error("Voicing Center %s out-of-range; " error("VOICING CENTER: arg out-of-range; must be 1 to 12, not '%s'." % val)
"must be 1 to 12" % val)
self.voicing.center = val self.voicing.center = val
elif mode == 'RMOVE': elif mode == 'RMOVE':
val = stoi(val, "Argument for %s Voicing Random " val = stoi(val, "Argument for %s VOICING RANDOM must be a value" % self.name)
"must be a value" % self.name)
if val < 0 or val > 100: if val < 0 or val > 100:
error("Voicing Random value must be 0 to 100 " error("VOICING RANDOM: arg must be 0 to 100, not %s" % val)
"not %s" % val)
self.voicing.random = val self.voicing.random = val
self.voicing.bcount = 0 self.voicing.bcount = 0
elif mode == 'MOVE': elif mode == 'MOVE':
val = stoi(val, "Argument for %s Voicing Move " val = stoi(val, "Argument for %s VOICING MOVE must be a value" % self.name)
"must be a value" % self.name)
if val < 0 : if val < 0 :
error("Voicing Move (bar count) must >= 0, not %s" % val) error("VOICING MOVE: bar count must >= 0, not %s" % val)
if val > 20: if val > 20:
warning("Voicing Move (bar count) %s is quite large" % val) warning("VOICING MOVE: bar count '%s' is quite large" % val)
self.voicing.bcount = val self.voicing.bcount = val
self.voicing.random = 0 self.voicing.random = 0
elif mode == 'DIR': elif mode == 'DIR':
val = stoi(val, "Argument for %s Voicing Dir (move direction) " val = stoi(val, "Argument for %s VOICING DIR must be a value" % self.name)
"must be a value" % self.name)
if not val in (1,0,-1): if not val in (1,0,-1):
error("Voicing Move Dir -1, 0 or 1, not %s" % val) error("VOICING MOVE: Dir must be -1, 0 or 1, not '%s'." % val)
self.voicing.dir = val self.voicing.dir = val
@ -156,26 +183,6 @@ class Chord(PC):
printList(ln) printList(ln)
def setStrum(self, ln):
""" Set Strum time. """
ln = lnExpand(ln, '%s Strum' % self.name)
tmp = []
for n in ln:
n = stoi(n, "Argument for %s Strum must be an integer" % self.name)
if n < 0 or n > 100:
error("Strum %s out-of-range; must be 0..100" % n)
tmp.append(n)
self.strum = seqBump(tmp)
if gbl.debug:
print "Set %s Strum to %s" % (self.name, self.strum)
def getPgroup(self, ev): def getPgroup(self, ev):
""" Get group for chord pattern. """ Get group for chord pattern.
@ -328,23 +335,6 @@ class Chord(PC):
if self.invert[sc]: if self.invert[sc]:
tb.chord.invert(self.invert[sc]) tb.chord.invert(self.invert[sc])
# Set STRUM flags
strumAdjust = self.strum[sc]
strumOffset = 0
sd = self.direction[sc]
if sd=='BOTH':
sd = 'BOTHDOWN'
if sd == 'BOTHDOWN':
sd = 'BOTHUP'
elif sd == 'BOTHUP':
sd = 'BOTHDOWN'
if strumAdjust and sd in ('DOWN', 'BOTHDOWN'):
strumOffset += strumAdjust * tb.chord.noteListLen
strumAdjust = -strumAdjust
""" Voicing adjustment for 'jazz' or altered chords. If a chord (most """ Voicing adjustment for 'jazz' or altered chords. If a chord (most
likely something like a M7 or flat-9 ends up with any 2 adjacent likely something like a M7 or flat-9 ends up with any 2 adjacent
notes separated by a single tone an unconfortable dissonance results. notes separated by a single tone an unconfortable dissonance results.
@ -386,14 +376,39 @@ class Chord(PC):
v /= c v /= c
loo.append( (tb.chord.rootNote + self.crDupRoot, v)) loo.append( (tb.chord.rootNote + self.crDupRoot, v))
for note, v in sorted(loo): # sorting low-to-high notes. Mainly for STRUM. # For strum we need to know the direction. Note that the direction
# is saved for the next loop (needed for alternating in BOTH).
sd = self.direction[sc]
if sd == 'BOTH':
if self.sortDirection:
self.sortDirection = 0
else:
self.sortDirection = 1
elif sd == 'DOWN':
self.sortDirection = 1
elif sd == 'RANDOM':
self.sortDirection = random.randint(0,1)
else:
self.sortDirection = 0
# take the list of notes and sort them in low to high order.
# reverse the list if direction is set.
loo.sort()
if self.sortDirection:
loo.reverse()
strumOffset = 0
for note, v in loo: # sorting low-to-high notes. Mainly for STRUM.
self.sendNote( self.sendNote(
p.offset+strumOffset, p.offset + strumOffset,
self.getDur(p.duration), self.getDur(p.duration),
self.adjustNote(note), self.adjustNote(note),
self.adjustVolume( v, p.offset) ) self.adjustVolume(v, p.offset) )
strumOffset += strumAdjust strumOffset += self.getStrum(sc)
tb.chord.reset() # important, other tracks chord object tb.chord.reset() # important, other tracks chord object
@ -403,3 +418,4 @@ class Chord(PC):
self.voicing.bcount -= 1 self.voicing.bcount -= 1

View File

@ -34,18 +34,43 @@ class Drum(PC):
""" Pattern class for a drum track. """ """ Pattern class for a drum track. """
vtype = 'DRUM' vtype = 'DRUM'
toneList = [38]
def __init__(self, ln): def __init__(self, ln):
""" init for drum track. """ """ init for drum track. """
PC.__init__(self, ln) self.toneList = [38]
PC.__init__(self, ln) # This order is important!
self.setChannel('10') self.setChannel('10')
if not gbl.mtrks[self.channel].trackname: if not gbl.mtrks[self.channel].trackname:
gbl.mtrks[self.channel].addTrkName(0, 'Drum') gbl.mtrks[self.channel].addTrkName(0, 'Drum')
def saveGroove(self, gname):
""" Save special/local variables for groove. """
PC.saveGroove(self, gname) # do this 1st. Creates storage.
self.grooves[gname]['TONES'] = self.toneList[:]
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
self.toneList = self.grooves[gname]['TONES']
PC.restoreGroove(self, gname)
def setSeqSize(self):
""" Expand existing pattern list. """
self.toneList = seqBump(self.toneList)
PC.setSeqSize(self)
def clearSequence(self):
""" Set some initial values. Called from init and clear seq. """
PC.clearSequence(self)
self.toneList = seqBump([38])
def setTone(self, ln): def setTone(self, ln):
""" Set a tone list. Only valid for DRUMs. """ Set a tone list. Only valid for DRUMs.
ln[] is not nesc. the right length. ln[] is not nesc. the right length.

501
mma/MMA/patPlectrum.py Normal file
View File

@ -0,0 +1,501 @@
# patPlectrum.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
Louis James Barman
"""
import MMA.notelen
import MMA.harmony
import gbl
from MMA.common import *
from MMA.pat import PC
class Plectrum(PC):
""" Pattern class for a Raw MIDI track. """
vtype = 'PLECTRUM'
def __init__(self, nm):
PC.__init__(self, nm)
# We have vibrating strings (a string in python refers to text not a guitar string)
self._vibrating = []
self._tuning = []
self._capoFretNo = 0 # The number that the capo is on (0 for open strings)
self.setPlectrumTuning(['e-', 'a-', 'd', 'g', 'b', 'e+'])
def saveGroove(self, gname):
""" Save special/local variables for groove. """
PC.saveGroove(self, gname) # create storage. Do this 1st.
self.grooves[gname]['CAPO'] = self._capoFretNo
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
self._capoFretNo = self.grooves[gname]['CAPO']
PC.restoreGroove(self, gname)
def clearSequence(self):
""" Set some initial values. Called from init and clear seq. """
PC.clearSequence(self)
self._capoFretNo = 0
if self.channel != 0: # not sure if this is nesc. But safer!
self.grooveFinish(0)
def doMidiClear(self):
""" Reset MIDI settings, special hook for stopping strings. """
if self.channel != 0:
self.grooveFinish(0)
PC.doMidiClear(self)
def setPlectrumTuning (self, stringPitchNames):
""" This is called from the parser TUNING option to set the
instrument tuning.
For standard guitar tuning use setTuning("e- a- d g b e+")
"""
if self.channel != 0: # if tuning changes while strings are still sounding
self.grooveFinish(0)
self._tuning=[]
self._vibration=[]
for pitchName in stringPitchNames:
midiPitch = noteNameToMidiPitch(pitchName)
if midiPitch == None:
error("%s TUNING: Illegal/unknown string name '%s'." % (self.name, pitchName))
self._tuning.append(midiPitch)
vibration = struct()
vibration.note = None # None means the string not vibrating
self._vibrating.append(vibration)
def setPlectrumCapo (self, capoFretNo):
""" Set a capo value. Called from main parser. """
self._capoFretNo = stoi(capoFretNo, "%s Capo: expecting integer, not '%s'." \
% (self.name, capoFretNo))
def decodePlectrumPatterns(self, a, patterns) :
""" Decode plectrum patterns for a guitar here are examples """
a.pluckVol = []
if patterns[0].find(':') != -1 or len(patterns) == 1 :
# set all strings to note plucked
for stringNo in range(len(self._tuning)):
a.pluckVol.append(-1)
if len(patterns) == 1 and patterns[0].find(':') == -1:
# put in the missing : if there is just one pattern
patterns[0] = ":" + patterns[0]
for patString in patterns:
if patString.find(':') == -1:
error("%s: Not all string definitions have a : in them '%s'"% \
(self.name, ' '.join(patterns)))
start = 0
end = len(self._tuning) - 1
pat = patString.split(':')
if pat[0]:
emsg = "%s: Note String Number in Plectrum definition not int" % self.name
if pat[0].find('-') != -1:
startString, endString = pat[0].split('-')
if startString:
start = stoi(startString, emsg) - 1
if endString:
end = stoi(endString, emsg) - 1
else:
start = stoi(pat[0], emsg) - 1
end = start
if start> end :
start, end = end , start
for n in range(start, end + 1):
# we number strings from the other end
stringNo = len(self._tuning) - n - 1
if stringNo <0 or stringNo >= len(self._tuning):
error("%s: string number %d does not exists" % (self.name, stringNo + 1))
return
if a.pluckVol[stringNo] != -1:
error("%s: Duplicate string %d definition" % (self.name, stringNo + 1))
return
a.pluckVol[stringNo] = stoi(pat[1], "%s: Note volume not int" % self.name)
else:
# this is without a the string specifier so all strings must be listed.
if len(patterns ) != len(self._tuning):
error("%s: There must be %s strings listed definition, "
"not '%s'" % (self.name, len(self._tuning), ' '.join(patterns)) )
return
for stringNo in range(len(self._tuning)):
val = patterns[stringNo]
if val=='-':
val = '-1' # -1 means ignore this string
a.pluckVol.append(stoi(val, "%s: Note volume not int" % self.name))
def getPgroup(self, ev):
""" Get group for rawmid pattern.
Fields - start, length, note, volume
"""
if len(ev) < 3: # we need offset, strum and at least one pattern
error("%s: There must be n groups of 3 or more in a pattern definition, "
"not '%s'" % (self.name, ' '.join(ev) ) )
a = struct()
a.vol = 0 # as is this
a.offset = self.setBarOffset(ev[0])
a.strum = stoi(ev[1], "%s: Expecting int value for strum" % self.name)
self.decodePlectrumPatterns(a, ev[2:] )
""" For the doc generators ... we need a setting for duration, even
though this track doesn't really have one. Using the value of 0
pretty much matches the results for a drum track. The author of
this file used "pluckVol" and the docs are expecting a "vol" variable
so we just duplicate it ... easier than changing all the uses here.
"""
a.duration = 0 # this is a dummy value to keep docs happy
a.vol = a.pluckVol
return a
def restart(self):
self.ssvoice = -1
def endVibration(self, stringNo, offset):
""" kill the vibration on the string by sending out a note off """
# first test if this string has been played before
if self._vibrating[stringNo].note == None:
return
vibration = self._vibrating[stringNo]
gbl.mtrks[self.channel].addNoteOnToTrack( offset, vibration.note, 0) # v=0 ==note off
self._vibrating[stringNo].note = None
def grooveFinish(self, offset):
""" End all vibrations (ie output all outstanding note off). """
for stringNo in range(len(self._vibrating)):
self.endVibration(stringNo, offset)
def fretboardNote(self, stringNo, chordList, startIdx, previousFret, chordBarreFretNo):
""" Returns a single note that is is on the chord for one string
Unlike a guitar string number the lowest string is string Number 0
"""
openString = self._tuning[stringNo] + self._capoFretNo + chordBarreFretNo
fretNotes = {}
for n,note in enumerate(chordList[startIdx:]):
fretNo = note - openString % 12
while fretNo < 0:
fretNo += 12
fretNo %= 12
fret = struct()
fret.pitch = self.adjustNote(openString + fretNo)
fret.fretNo = fretNo
fret.chordIndex = n + startIdx
fretNotes[fretNo] = fret
# Try to guess where the next finger position in the chord goes
# without trying to stretch the hand too much.
if previousFret :
if fretNotes.has_key(previousFret.fretNo):
return fretNotes[previousFret.fretNo]
if fretNotes.has_key(previousFret.fretNo -1):
return fretNotes[previousFret.fretNo -1]
if fretNotes.has_key(previousFret.fretNo -2):
return fretNotes[previousFret.fretNo -2]
if fretNotes.has_key(previousFret.fretNo + 1) and previousFret.fretNo <= 3:
return fretNotes[previousFret.fretNo + 1]
lowest = min(fretNotes.keys())
return fretNotes[lowest]
def fretboardNotes(self, chordList, chordBarreFretNo):
notes = []
if len(chordList) >= 5 or len(self._tuning) >= 8:
# I don't know how to handle five or more notes in a chord
# or more than 8 strings (eg a harp)
# so just do a single pass and see what happens
previousFret = None
for stringNo in range(len(self._tuning)):
fret = self.fretboardNote( stringNo, chordList, 0, previousFret, chordBarreFretNo)
previousFret = fret
notes.append(fret)
else:
#find the triad chord (the first three notes of the chord) first
previousFret = None
for stringNo in range(len(self._tuning)):
fret = self.fretboardNote( stringNo, chordList[:3], 0,
previousFret, chordBarreFretNo)
previousFret = fret
notes.append(fret)
if len(chordList) == 4:
# Now put in missing 7th (or what ever it is called) but
# start searching from the top string
for stringNo in reversed(range(len(self._tuning))):
fret = self.fretboardNote( stringNo, chordList, 3, None, chordBarreFretNo)
if fret.fretNo <= 4:
notes[stringNo] = fret
# now go back up to the top string to make sure there is no bunching
stringNo += 1
while stringNo < len(self._tuning):
notes[stringNo] = self.fretboardNote( stringNo, chordList, 0,
None, chordBarreFretNo)
stringNo += 1
break
# look for and mark duplicates
notes[0].duplicate = False
for stringNo in range(1, len(self._tuning)):
if notes[stringNo -1].pitch == notes[stringNo].pitch:
notes[stringNo].duplicate = True
else:
notes[stringNo].duplicate = False
return notes
def trackBar(self, pattern, ctable):
""" Do a plectrum bar.
Called from self.bar()
"""
sc = self.seq
for p in pattern:
try:
ct = self.getChordInPos(p.offset, ctable)
chordList=ct.chord.noteList # catch the case when there is no noteList attribute
except AttributeError:
continue
if ct.plectrumZ:
continue
if len(self._tuning) != len(p.pluckVol):
error("%s: Pattern and tuning lengths (%s, %s) do not match. "
"Was tuning changed?" % (self.name, len(p.pluckVol), len(self._tuning)))
chordBarreFretNo = 0
if ct.name.startswith('+'):
chordBarreFretNo += 12
if ct.name.startswith('-'):
chordBarreFretNo += -12
chordBarreFretNo += ct.chord.barre
if gbl.debug or gbl.plecShow:
self.printChordShape(ct, chordBarreFretNo)
plectrumNoteOnList = [] # for debugging only
# Find how many strings have been plucked this time
pluckStringCount = 0;
for vol in p.pluckVol:
if vol == -1:
continue
pluckStringCount += 1
pluckStringIndex = 0;
notes = self.fretboardNotes(chordList, chordBarreFretNo)
for stringNo, vol in enumerate(p.pluckVol):
# the centre of the strum is on the beat
strumOffset = p.offset + p.strum*(pluckStringIndex - pluckStringCount/2.0)
if vol == -1:
# silence this stringNo if the note on this string has changed
# even if this stringNo has not been plucked or muted
if notes[stringNo].pitch != self._vibrating[stringNo].note:
self.endVibration(stringNo, strumOffset)
continue # this string has not been plucked or damped
pluckStringIndex += 1
self.endVibration(stringNo, strumOffset)
if vol >= 1:
note = notes[stringNo].pitch
if notes[stringNo].duplicate:
if gbl.debug:
print "%s: Ignoring duplicate note %d." % (self.name, note)
continue
outputVolume = self.adjustVolume(vol, p.offset)
gbl.mtrks[self.channel].addNoteOnToTrack(strumOffset, note,
outputVolume, self.rTime[sc][0], self.rTime[sc][1] )
self._vibrating[stringNo].note = note
if outputVolume == 0:
self._vibrating[stringNo].note = None
plectrumNoteOnList.append(note) # for debugging only
if gbl.debug:
print "%s: channel=%s offset=%s chordList=%s NoteOn=%s." % \
(self.name, self.channel, p.offset + gbl.tickOffset, \
chordList, plectrumNoteOnList )
def printChordShape(self, chordTable, chordBarreFretNo = 0):
chordList=chordTable.chord.noteList
# catch the case when there is no noteList attribute
if hasattr(self, 'previousChordList'):
if chordList == self.previousChordList and \
chordBarreFretNo == self.previousFretNo:
return
self.previousChordList = chordList
self.previousFretNo = chordBarreFretNo
notes = self.fretboardNotes(chordList, chordBarreFretNo)
notes.reverse()
printStart = 0
startFretNo = self._capoFretNo + chordBarreFretNo
if startFretNo < 0:
printStart = startFretNo
print
print self.name,chordTable.name, " chord ", chordList
for stringNo, openNote in enumerate(reversed(self._tuning)):
openNote = self.adjustNote(openNote) # puts into middle octave 60==5*12
note = notes[stringNo].pitch
print "%s %3d" % (self.name, openNote + self._capoFretNo),
finger = note - openNote
for fretNo in range (printStart, 20):
if fretNo == 0 and self._capoFretNo == 0:
print "|",
elif fretNo == self._capoFretNo and chordBarreFretNo == 0:
print "$",
elif fretNo == finger:
print "*",
elif fretNo == self._capoFretNo:
print "$",
elif fretNo == startFretNo:
print ":",
elif fretNo == 0:
print "|",
else:
print "-",
print "%d %d"% ( notes[stringNo].chordIndex, note, ),
if notes[stringNo].duplicate:
print " duplicate",
print
print
def noteNameToMidiPitch(s):
""" Convert a name ('e', 'g#') to a MIDI pitch. """
tb = { 'c': 0, 'c#': 1, 'd&': 1, 'd': 2, 'd#': 3, 'e&': 3,
'e': 4, 'f&': 4, 'e#': 5, 'f': 5, 'f#': 6, 'g&': 6,
'g': 7, 'g#': 8, 'a&': 8, 'a': 9, 'a#': 10, 'b&': 10,
'b': 11, 'b&': 11, 'c&': 11, 'b#': 0 }
# strip and count trailing '+' and '-'
if '-' in s and '+' in s:
return None
adjust = 0
while s.endswith('-'):
adjust -= 12
s=s[:-1]
while s.endswith('+'):
adjust += 12
s=s[:-1]
try:
value = tb[s] # puts into middle octave 60==5*12
except:
return None
return value + adjust
#not used. Leave for debugging??
def MidiPitch2NoteName(value):
nameLookUp = [ 'c','c#','d','e&','e','f','f#','g','g#','a','b&','b' ]

View File

@ -37,14 +37,14 @@ class Scale(PC):
vtype = 'SCALE' vtype = 'SCALE'
lastNote = -1 lastNote = -1
lastChord = None lastChord = None
lastStype = None lastStype = None
lastDirect = 1 lastDirect = 1
lastRange = 0 lastRange = 0
sOffset = 0 sOffset = 0
notes = None notes = None
dirfact = 1 dirfact = 1
def getPgroup(self, ev): def getPgroup(self, ev):
""" Get group for scale patterns. """ Get group for scale patterns.
@ -217,15 +217,18 @@ class Scale(PC):
self.adjustNote(note), self.adjustNote(note),
self.adjustVolume(p.vol, p.offset)) self.adjustVolume(p.vol, p.offset))
if self.harmony[sc]: if self.harmony[sc]:
ch = self.getChordInPos(p.offset, ctable).chord.noteList ch = self.getChordInPos(p.offset, ctable).chord.noteList
h = MMA.harmony.harmonize(self.harmony[sc], note, ch) h = MMA.harmony.harmonize(self.harmony[sc], note, ch)
strumOffset = self.getStrum(sc)
for n in h: for n in h:
self.sendNote( self.sendNote(
p.offset, p.offset + strumOffset,
self.getDur(p.duration), self.getDur(p.duration),
self.adjustNote(n), self.adjustNote(n),
self.adjustVolume(self.harmonyVolume[sc] * p.vol, -1) ) self.adjustVolume(self.harmonyVolume[sc] * p.vol, -1) )
strumOffset += self.getStrum(sc)

View File

@ -28,19 +28,27 @@ import MMA.translate
import MMA.harmony import MMA.harmony
import MMA.volume import MMA.volume
import MMA.alloc import MMA.alloc
import MMA.swing
import gbl import gbl
from MMA.common import * from MMA.common import *
from MMA.pat import PC from MMA.pat import PC
from MMA.keysig import keySig
import re
import random
# Each note in a solo gets a NoteEvent.
class NoteEvent:
def __init__(self, pitch, velocity):
self.duration = None
self.pitch = pitch
self.articulation = None
self.velocity = velocity
self.defvelocity = velocity
class NoteList: accValues = {'#': 1, "&":-1, 'n':0}
def __init__(self, length):
self.dur = length
self.velocity = []
self.nl = []
############################## ##############################
@ -55,6 +63,9 @@ class Melody(PC):
endTilde = [] endTilde = []
drumTone = 38 drumTone = 38
arpRate = 0
arpDecay = 0
arpDirection = 'UP'
def setDrumType(self): def setDrumType(self):
""" Set this track to be a drum track. """ """ Set this track to be a drum track. """
@ -69,7 +80,38 @@ class Melody(PC):
def definePattern(self, name, ln): def definePattern(self, name, ln):
error("Melody/solo patterns cannot be defined") error("Melody/solo patterns cannot be defined")
def setArp(self, ln):
""" Set the arpeggiate options. """
notopt, ln = opt2pair(ln, 1)
if notopt:
error("%s Arpeggiate: expecting cmd=opt pairs, not '%s'." \
% (self.name, ' '.join(notopt) ))
for cmd, opt in ln:
if cmd == 'RATE':
if opt == '0' or opt == 'NONE':
self.arpRate = 0
else:
self.arpRate = MMA.notelen.getNoteLen(opt)
elif cmd == 'DECAY':
v = stof(opt, "Mallet Decay must be a value, not '%s'" % opt)
if v < -50 or v > 50:
error("%s Arpeggiate: Decay rate must be -50..+50" % \
self.name )
self.arpDecay = v/100
elif cmd == 'DIRECTION':
valid = ("UP", "DOWN", "BOTH", "RANDOM")
if opt not in valid:
error("%s Arpeggiate Direction: Unknown setting '%s', use %s."\
% (self.name, opt, ', '.join(valid)))
self.arpDirection = opt
def restart(self): def restart(self):
self.ssvoice = -1 self.ssvoice = -1
@ -84,9 +126,175 @@ class Melody(PC):
self.drumTone = MMA.translate.dtable.get(ln[0]) self.drumTone = MMA.translate.dtable.get(ln[0])
def getLine(self, pat, ctable): def xswingIt(self, notes):
""" Adjust an entire bar of chords for swingmode.
Check each chord in the array of chords for a bar for
successive 8ths on & off the beat. If found, the first is
converted to 'long' 8th, the 2nd to a 'short'
and the offset for the 2nd is adjusted to comp. for the 'long'.
If there is a spurious offset between an on/off beat that pair
will NOT be adjusted. Nor sure if that is right or not?
Only called from getLine(), separate for sanity.
"""
len8 = MMA.notelen.getNoteLen('8')
len81 = MMA.notelen.getNoteLen('81')
len82 = MMA.notelen.getNoteLen('82')
all8 = set([len8])
onBeats = [ x * gbl.BperQ for x in range(gbl.QperBar)]
nl = sorted(notes) # list of offsets
for i in range(len(nl)-1):
# Check for successive note event offsets on 8th note positions
if nl[i] in onBeats and nl[i+1] == nl[i]+len8:
beat0 = nl[i]
beat1 = nl[i+1]
# check that all notes are 8ths by comparing a set of all
# the durations in both offsets with set([len8])
if set([nev.duration for nev in notes[beat0]+notes[beat1] ]) == all8:
# lengthen notes on-the-beat
for nev in notes[beat0]:
nev.duration = len81
nev.velocity *= MMA.swing.accent1
nev.defvelocity *= MMA.swing.accent1
# shorten notes off-the-beat
for nev in notes[beat1]:
nev.duration = len82
nev.velocity *= MMA.swing.accent2
nev.defvelocity *= MMA.swing.accent2
# move off-beat list back
notes[beat0+len81] = notes[beat1]
del notes[beat1]
return notes
def getChord(self, c, velocity, isdrum):
""" Extract a set of notes for a single beat.
This is a function just to make getLine() a bit shorter
and more readble.
"""
c = re.split("[, ]+", c)
if not c:
error("You must specify the first note in a solo line")
""" Convert the note part into a series of midi values
Notes can be a single note, or a series of notes. And
each note can be a letter a-g (or r), a '#,&,n' plus
a series of '+'s or '-'s. Drum solos must have each
note separated by ' ' or ','s: "Snare1,KickDrum1,44".
Each chunk could be:
- a midi value (44)
- a drum note ( KickDrum1)
- a single note (g#) (g&-)
- Or groups with spaces/commas (f 100) (44 , KickDrum) (a,b c)
"""
events = [] # array for each note event
for cc in c:
if not cc or not cc[0]:
continue
if '/' in cc:
if cc.count('/') > 1:
error("%s: Only 1 '/velocity' permitted. You can separate " \
"notes in the chord with ',' or ' ' and it'll work." % \
self.name)
cc, newvel = cc.split('/')
if not newvel:
error("%s: expecting 'volume' after '/'" % self.name)
if not cc:
error("%s: Volume '/' must immediately follow note." % self.name)
thisvel = stoi(newvel)
if thisvel < 0 or thisvel > 127:
error("%s: Velocity must be 0..127, not '%s'." % (self.name, newvel))
else:
thisvel = velocity
if cc[0] == 'r':
if events or len(cc) > 1:
error("%s: Rests and notes cannot be combined." % self.name)
else:
events.append( NoteEvent(None, 0)) # note event with no pitch
elif cc[0] in "1234567890":
n = stoi(cc, "%s: Note values must be integer or literal." % \
self.name)
if n<0 or n>127:
error("%s: Midi notes must be 0..127, not '%s'" % \
(self.name, n))
# if using value we fake-adjust octave,
# it (and transpose) is set later.
if not isdrum:
n -= self.octave[self.seq]
events.append(NoteEvent(n, thisvel))
elif isdrum: # drum must be a value, * or drum-name
if cc == '*':
events.append( NoteEvent(self.drumTone, thisvel ))
else:
events.append( NoteEvent(int(MMA.translate.dtable.get(cc)), thisvel) )
else: # must be a note(s) in std. notation
cc = list(cc)
while cc:
name = cc.pop(0)
if not name in self.midiNotes:
error("%s: Encountered illegal note name '%s'"
% (self.name, name))
n = self.midiNotes[ name ] # name is string, n is value
# Parse out a "#', '&' or 'n' accidental.
if cc and cc[0] in accValues:
i = cc.pop(0)
self.acc[name] = accValues[i]
n += self.acc[name] # accidental adjust (from above or keysig)
# Parse out +/- (or series) for octave
while cc and cc[0] in '+-':
a = cc.pop(0)
if a == '+':
n += 12
else:
n -= 12
events.append( NoteEvent(n, thisvel) )
return events
def getLine(self, pat):
""" Extract a melodyline for solo/melody tracks. """ Extract a melodyline for solo/melody tracks.
This is only called from trackbar(), but it's nicer This is only called from trackbar(), but it's nicer
@ -95,24 +303,29 @@ class Melody(PC):
RETURNS: notes structure. This is a dictionary. Each key represents RETURNS: notes structure. This is a dictionary. Each key represents
an offset in MIDI ticks in the current bar. The data for an offset in MIDI ticks in the current bar. The data for
each entry is an array of notes, a duration and velocity: each entry is an array of note events:
notes[offset].dur - duration in ticks notes[offset] - [nev [,...] ] See top of file for noteEvent()
notes[offset].velocity[] - velocity for notes class which sets the fields.
notes[offset].defaultVel - default velocity for this offset """
notes[offset].nl[] - list of notes (if the only note value
is None this is a rest placeholder) sc=self.seq
savedSpecial = None
""" Get a COPY of the keysignature note table (a dict).
As a bar is processed the table is updated. There is one flaw here---in
real music an accidental for a note in a give octave does not
effect the following same-named notes in different octaves.
In this routine IT DOES.
""" """
sc = self.seq self.acc=keySig.accList.copy()
barEnd = gbl.BperQ*gbl.QperBar
acc=keySig.getAcc()
# list of notename to midivalues # list of notename to midivalues
midiNotes = {'c':0, 'd':2, 'e':4, 'f':5, 'g':7, 'a':9, 'b':11, 'r':None } self.midiNotes = {'c':0, 'd':2, 'e':4, 'f':5, 'g':7, 'a':9, 'b':11, 'r':None }
""" The initial string is in the format "1ab;4c;;4r;". The trailing """ The initial string is in the format "1ab;4c;;4r;". The trailing
';' is important and needed. If we don't have this requirement ';' is important and needed. If we don't have this requirement
@ -125,77 +338,133 @@ class Melody(PC):
if not pat.endswith(';'): if not pat.endswith(';'):
error("All Solo strings must end with a ';'") error("All Solo strings must end with a ';'")
""" Take our list of note/value pairs and decode into barEnd = gbl.BperQ*gbl.QperBar # end of bar in ticks
a list of midi values. Quite ugly. duration = MMA.notelen.getNoteLen('4') # default note length
"""
if gbl.swingMode:
len8 = MMA.notelen.getNoteLen('8')
len81 = MMA.notelen.getNoteLen('81')
len82 = MMA.notelen.getNoteLen('82')
onBeats = [ x * gbl.BperQ for x in range(gbl.QperBar)]
offBeats = [ (x * gbl.BperQ + len8) for x in range(gbl.QperBar)]
length = MMA.notelen.getNoteLen('4') # default note length
lastc = '' # last parsed note
velocity = 90 # intial/default velocity for solo notes velocity = 90 # intial/default velocity for solo notes
articulation = 1 # additional articulation for solo notes
notes={} # A dict of NoteList, keys == offset notes={} # NoteEvent list, keys == offset
if self.drumType: if self.drumType:
isdrum = 1 isdrum = 1
lastc = str(self.drumTone) lastc = str(self.drumTone)
else: else:
isdrum = None isdrum = None
lastc = '' # last parsed note
pat = pat.replace(' ', '').split(';')[:-1]
# set initial offset into bar # convert pat to a list
pat = [x.strip() for x in pat.split(';')[:-1]]
# set initial offset into bar. This compensates for the previous
# bar ending in a ~ and this one starting with ~.
# This special case bumps the initial bar offset
if pat[0].startswith("~"): if pat[0].startswith("~"):
pat[0]=pat[0][1:]
if not self.endTilde or self.endTilde[1] != gbl.tickOffset: if not self.endTilde or self.endTilde[1] != gbl.tickOffset:
error("Previous line did not end with '~'") error("Previous line did not end with '~'")
else: else:
pat[0] = pat[0][1:].strip()
offset = self.endTilde[0] offset = self.endTilde[0]
else: else:
offset = 0 offset = 0
lastOffset = None lastOffset = None
# Strip off trailing ~ # Strip off trailing ~. This permits long notes to end past the
# current barend. Note, flag set for the next bar to test for
# a leading ~.
if pat[-1].endswith("~"): if pat[-1].endswith("~"):
self.endTilde = [1, gbl.tickOffset + (gbl.BperQ * gbl.QperBar) ] self.endTilde = [1, gbl.tickOffset + (gbl.BperQ * gbl.QperBar) ]
pat[-1]=pat[-1][:-1] pat[-1] = pat[-1][:-1].strip()
else: else:
self.endTilde = [] self.endTilde = []
##################################################
# Begin parse loop # Now we can parse each chunk of the solo string.
for a in pat: for a in pat:
""" If we find a "<>" we just ignore that. It's useful when
multiple continuation bars are needed with ~.
"""
accentVol = None
accentDur = None
if a == '<>': if a == '<>':
savedSpecial = None
continue continue
""" Next, strip out all '<SPECIAL=xx>' settings.
VOLUME: If no option is set, we assume VOLUME. The default
velocity setting was set before the loop (==90) and is
changed here for the duration of the current bar/riff.
The set velocity will still be modified by the global
and track volume adjustments.
DURATION: Duration or articulation setting is defaulted to 100.
Changing it here will do so for the duration of the
bar/riff. Note, the track ARTICULATION is still applied.
OFFSET: change the current offset into the bar. Can be negative
which forces overlapping notes.
"""
a, vls = pextract(a, "<", ">")
if vls:
if len(vls) > 1:
error("Only 1 <modifier> is permitted per note-set")
vls = vls[0].split(',')
for vv in vls:
vv = vv.upper().strip()
if vv == '..':
savedSpecial = [','.join(vls)]
continue
if not '=' in vv:
vv = "VOLUME=" + vv
vc,vo = vv.split('=', 1) # note: it's already uppercase!
if vc == 'VOLUME':
if vo in MMA.volume.vols: # arg was a volume 'FF, 'mp', etc.
velocity *= MMA.volume.vols[vo]
else:
error("%s: No volume '%s'." % (self.name, vo))
elif vc == 'OFFSET':
offset = stoi(vo, "%s: Offset expecting integer, not %s." \
% (self.name, vo))
if offset < 0:
error("%s: Offset must be positive." % self.name)
if offset >= barEnd:
error("%s: Offset has been set past the end of the bar." \
% self.name )
elif vc == 'ARTICULATE':
articulation = stoi(vo, "%s: Articulation expecting integer,"
" not %s." % (self.name, vo))
if articulation < 1 or articulation >200:
error("%s: Articulation must be 1..200, not %s." % \
(self.name, vo) )
articulation /= 100.
else:
error("%s: Unknown command '%s'." % (self.name, vv))
if offset >= barEnd: if offset >= barEnd:
error("Attempt to start Solo note '%s' after end of bar" % a) error("Attempt to start Solo note '%s' after end of bar" % a)
# strip out all '<volume>' setting and adjust velocity
a, vls = pextract(a, "<", ">")
if vls:
if len(vls) > 1:
error("Only 1 volume string is permitted per note-set")
vls = vls[0].upper().strip()
if not vls in MMA.volume.vols:
error("%s string Expecting a valid volume, not '%s'" % \
(self.name, vls))
velocity *= MMA.volume.vols[vls]
""" Split the chord chunk into a note length and notes. Each """ Split the chord chunk into a note length and notes. Each
part of this is optional and defaults to the previously part of this is optional and defaults to the previously
parsed value. parsed value.
@ -203,120 +472,70 @@ class Melody(PC):
i = 0 i = 0
while i < len(a): while i < len(a):
if not a[i] in '1234568.+': if not a[i] in '1234567890.+tT':
break break
else: else:
i+=1 i += 1
if i: if i:
l=MMA.notelen.getNoteLen(a[0:i]) l=MMA.notelen.getNoteLen(a[0:i].replace(' ', '') )
c=a[i:] a = a[i:].strip()
else: else:
l=length l=duration
c=a
if not c: duration = l # save last duration for next loop
c=lastc
if not c:
error("You must specify the first note in a solo line")
length = l # set defaults for next loop # next item might be an accent string.
lastc = c
""" Convert the note part into a series of midi values
Notes can be a single note, or a series of notes. And
each note can be a letter a-g (or r), a '#,&,n' plus
a series of '+'s or '-'s. Drum solos must have each
note separated by ','s: "Snare1,Kick1,44".
"""
if isdrum:
c=c.split(',')
else:
c=list(c)
while c:
# Parse off note name or 'r' for a rest
name = c.pop(0)
if name == 'r' and (offset in notes or c):
error("You cannot combine a rest with a note in a chord for solos")
if not isdrum:
if not name in midiNotes:
error("%s encountered illegal note name '%s'"
% (self.name, name))
v = midiNotes[ name ]
# Parse out a "#', '&' or 'n' accidental.
if c and c[0]=='#':
c.pop(0)
acc[name] = 1
elif c and c[0]=='&':
c.pop(0)
acc[name] = -1
elif c and c[0]=='n':
c.pop(0)
acc[name] = 0
if v != None:
v += acc[name]
# Parse out +/- (or series) for octave
if c and c[0] == '+':
while c and c[0] == '+':
c.pop(0)
v += 12
elif c and c[0] == '-':
while c and c[0] == '-':
c.pop(0)
v -= 12
i = 0
while i < len(a):
if not a[i] in "!-^&":
break
else: else:
if not name: # just for leading '.'s i += 1
continue
if name == 'r': if i:
v = midiNotes[ name ] c = a[0:i]
elif name == '*': accentVol = 1
v = self.drumTone accentDur = 1
else:
v = int(MMA.translate.dtable.get(name)) accentDur -= c.count('!') * .2
accentDur += c.count('-') * .2
accentVol += c.count('^') * .2
accentVol -= c.count('&') * .2
if accentDur<.1: accentDur = .1
if accentDur>2: accentDur = 2
if accentVol<.1: accentVol = .1
if accentVol>2: accentVol = 2
a = a[i:]
# Now we get to look at pitches.
if not a or a=='' or a==' ':
a=lastc
evts = self.getChord(a, velocity, isdrum) # get chord
for e in evts:
e.velocity = self.adjustVolume(e.defvelocity, offset)
if accentVol:
e.velocity *= accentVol
e.duration = duration
if accentDur:
e.articulation = articulation * accentDur
else:
e.articulation = articulation
lastc = a # save last chord for next loop
""" Swingmode -- This tests for successive 8ths on/off beat # add note event(s) to note{}
If found, the first is converted to 'long' 8th, the 2nd to a 'short'
and the offset for the 2nd is adjusted to comp. for the 'long'.
"""
if gbl.swingMode and l==len8 and \ if not offset in notes:
offset in offBeats and \ notes[offset] = []
lastOffset in onBeats and \ notes[offset].extend(evts)
lastOffset in notes:
if notes[lastOffset].dur == len8:
offset = lastOffset + len81
notes[lastOffset].dur = len81
l=len82
# create a new note[] entry for this offset
if not offset in notes:
notes[offset] = NoteList(l)
# add note event to note[] array
notes[offset].nl.append(v)
notes[offset].velocity.append(self.adjustVolume(velocity, offset))
notes[offset].defaultVel = velocity # needed for addHarmony()
lastOffset = offset lastOffset = offset
offset += l offset += l
@ -333,6 +552,9 @@ class Melody(PC):
warning("%s, end of last note overlaps end of bar by %2.3f " warning("%s, end of last note overlaps end of bar by %2.3f "
"beat(s)." % (self.name, (offset-barEnd)/float(gbl.BperQ))) "beat(s)." % (self.name, (offset-barEnd)/float(gbl.BperQ)))
if MMA.swing.mode:
notes = MMA.swing.swingSolo(notes)
return notes return notes
@ -347,64 +569,115 @@ class Melody(PC):
for offset in notes: for offset in notes:
nn = notes[offset] nn = notes[offset]
if len(nn.nl) == 1 and nn.nl[0] != None: if len(nn) == 1 and nn[0].pitch != None:
tb = self.getChordInPos(offset, ctable) tb = self.getChordInPos(offset, ctable)
if tb.chordZ: if tb.chordZ:
continue continue
h = MMA.harmony.harmonize(harmony, nn.nl[0], tb.chord.bnoteList) h = MMA.harmony.harmonize(harmony, nn[0].pitch, tb.chord.bnoteList)
""" If harmonyonly set then drop note, substitute harmony, duration = nn[0].duration
else append harmony notes to chord. articulation = nn[0].articulation
""" velocity = nn[0].defvelocity
if harmOnly:
nn.nl = h
nn.velocity = []
off=0
else:
nn.nl.extend(h)
off=1
# Create velocites for harmony note(s)
for i in range(off,len(nn.nl)):
nn.velocity.append(self.adjustVolume(nn.defaultVel *
self.harmonyVolume[sc], offset))
return notes
if harmOnly: # remove melody note if harmony only
nn.pop(0) # DON'T use nn=[] that would release the ptr.
for n in h:
e = NoteEvent(n,
self.adjustVolume(velocity * self.harmonyVolume[sc], offset))
e.duration = duration
e.articulation = articulation
nn.append(e)
def trackBar(self, pat, ctable): def trackBar(self, pat, ctable):
""" Do the solo/melody line. Called from self.bar() """ """ Do the solo/melody line. Called from self.bar() """
notes = self.getLine(pat, ctable) notes = self.getLine(pat)
sc=self.seq
if self.harmony[self.seq] and not self.drumType:
if self.harmony[sc] and not self.drumType:
self.addHarmony(notes, ctable) self.addHarmony(notes, ctable)
sc=self.seq
unify = self.unify[sc] unify = self.unify[sc]
rptr = self.mallet rptr = self.mallet
for offset in sorted(notes.keys()): for offset in sorted(notes.keys()):
nn=notes[offset] nn=notes[offset]
strumOffset = 0
if self.arpRate:
self.trackArp(nn, offset)
continue
for n,v in zip(nn.nl, nn.velocity): for nev in nn:
n = nev.pitch
if n == None: # skip rests if n == None: # skip rests
continue continue
if not self.drumType: # octave, transpose if not self.drumType: # no octave/transpose for drums
n = self.adjustNote(n) n = self.adjustNote(n)
self.sendNote(offset + strumOffset,
self.sendNote( offset, self.getDur(nn.dur), n, v) self.getDur(int(nev.duration * nev.articulation)),
n, self.adjustVolume(nev.velocity, offset) )
strumOffset += self.getStrum(sc)
def trackArp(self, nn, offset):
""" Special trackbar() for arpeggiator. """
if self.drumType:
error("%s Arpeggiate: Incompatible with DRUMTYPE. Try MALLET?" % self.name)
notes = [ [self.adjustNote(x.pitch), x.velocity] for x in nn]
notes.sort()
random = self.direction == 'RANDOM'
if self.arpDirection == "DOWN":
notes.reverse()
elif self.arpDirection == "BOTH":
z=notes[:]
z.reverse()
notes.extend(z[1:-1])
duration = self.arpRate # duration of each note
count = nn[0].duration / duration # total number to play
if count < 1:
count = 1
while 1:
nn = range(len(notes))
if random:
random.randomize(nn)
for i in nn:
n = notes[i]
self.sendNote(offset,
self.getDur(duration), n[0],
self.adjustVolume(n[1], offset) )
count -= 1
if not count:
break
offset += duration
if self.arpDecay:
n[1] = int(n[1] + (n[1] * self.arpDecay))
if n[1] < 1: n[1] = 1
if n[1] > 127: n[1] = 127
if not count:
break
class Solo(Melody): class Solo(Melody):
""" Pattern class for a solo track. """ """ Pattern class for a solo track. """
@ -420,128 +693,6 @@ class Solo(Melody):
pass pass
##################################
""" Keysignature. This is only used in the solo/melody tracks so it
probably makes sense to have the parse routine here as well. To
contain everything in one location we make a single instance class
of the whole mess.
"""
class KeySig:
def __init__(self):
self.kSig = 0
majKy = { "C" : 0, "G" : 1, "D" : 2,
"A" : 3, "E" : 4, "B" : 5,
"F#": 6, "C#": 7, "F" : -1,
"Bb": -2, "Eb": -3, "Ab": -4,
"Db": -5, "Gb": -6, "Cb": -7 }
minKy = { "A" : 0, "E" : 1, "B" : 2,
"F#": 3, "C#": 4, "G#": 5,
"D#": 6, "A#": 7, "D" : -1,
"G" : -2, "C" : -3, "F" : -4,
"Bb": -5, "Eb": -6, "Ab": -7 }
def set(self,ln):
""" Set the keysignature. Used by solo tracks."""
mi = 0
if len(ln) < 1 or len(ln) > 2:
error("KeySig only takes 1 or 2 arguments")
if len(ln) == 2:
l=ln[1][0:3].upper()
if l == 'MIN':
mi=1
elif l == 'MAJ':
mi=0
else:
error("KeySig 2nd arg must be 'Major' or 'Minor', not '%s'" % ln[1])
l=ln[0]
t=l[0].upper() + l[1:]
if mi and t in self.minKy:
self.kSig = self.minKy[t]
elif not mi and t in self.majKy:
self.kSig = self.majKy[t]
elif l[0] in "ABCDEFG":
error("There is no key signature name: '%s'" % l)
else:
c=l[0]
f=l[1].upper()
if not f in ("B", "&", "#"):
error("2nd char in KeySig must be 'b' or '#', not '%s'" % f)
if not c in "01234567":
error("1st char in KeySig must be digit 0..7, not '%s'" % c)
self.kSig = int(c)
if f in ('B', '&'):
self.kSig = -self.kSig
if not c in "01234567":
error("1st char in KeySig must be digit 0..7, not '%s'" % c)
# Set the midi meta track with the keysig. This doen't do anything
# in the playback, but other programs may use it.
n = self.kSig
if n < 0:
n = 256 + n
gbl.mtrks[0].addKeySig(gbl.tickOffset, n, mi)
if gbl.debug:
n = self.kSig
if n >= 0:
f = "Sharps"
else:
f = "Flats"
print "KeySig set to %s %s" % (abs(n), f)
def getAcc(self):
""" The solo parser needs to know which notes are accidentals.
This is simple with a keysig table. There is an entry for each note,
either -1,0,1 corresponding to flat,natural,sharp. We populate
the table for each bar from the keysig value. As we process
the bar data we update the table. There is one flaw here---in
real music an accidental for a note in a give octave does not
effect the following same-named notes in different octaves.
In this routine IT DOES.
NOTE: This is recreated for each bar of music for each solo/melody track.
"""
acc = {'a':0, 'b':0, 'c':0, 'd':0, 'e':0, 'f':0, 'g':0 }
ks=self.kSig
if ks < 0:
for a in range( abs(ks) ):
acc[ ['b','e','a','d','g','c','f'][a] ] = -1
else:
for a in range(ks):
acc[ ['f','c','g','d','a','e','b'][a] ] = 1
return acc
keySig=KeySig() # single instance
####################### #######################
""" When solos are included in a chord/data line they are """ When solos are included in a chord/data line they are
@ -567,7 +718,8 @@ def setAutoSolo(ln):
n=n.upper() n=n.upper()
MMA.alloc.trackAlloc(n, 1) MMA.alloc.trackAlloc(n, 1)
if gbl.tnames[n].vtype not in ('MELODY', 'SOLO'): if gbl.tnames[n].vtype not in ('MELODY', 'SOLO'):
error("All autotracks must be Melody or Solo tracks, not %s" % gbl.tnames[n].vtype) error("All autotracks must be Melody or Solo tracks, not %s"\
% gbl.tnames[n].vtype)
autoSoloTracks.append(n) autoSoloTracks.append(n)
@ -596,23 +748,27 @@ def extractSolo(ln, rptcount):
error("Bars with both repeat count and solos are not permitted") error("Bars with both repeat count and solos are not permitted")
ln, solo = pextract(ln, '{', '}') ln, solo = pextract(ln, '{', '}')
if len(solo) > len(autoSoloTracks): if len(solo) > len(autoSoloTracks):
error("Too many melody/solo riffs in chord line. %s used, " error("Too many melody/solo riffs in chord line. %s used, "
"only %s defined" % (len(solo), len(autoSoloTracks)) ) "only %s defined" % (len(solo), len(autoSoloTracks)) )
firstSolo = solo[0][:] # save for autoharmony tracks firstSolo = solo[0][:] # save for autoharmony tracks
""" We have the solo information. Now we loop though each "solo" and: """ We have the solo information. Now we loop though each "solo" and:
1. Ensure or Create a MMA track for the solo 1. Ensure or Create a MMA track for the solo
2. Push the solo data into a Riff for the given track. 2. Push the solo data into a Riff for the given track.
""" """
for s, trk in zip(solo, autoSoloTracks): for s, trk in zip(solo, autoSoloTracks):
if not s: continue # skip placeholder/empty tracks
MMA.alloc.trackAlloc(trk, 1) MMA.alloc.trackAlloc(trk, 1)
gbl.tnames[trk].setRiff( s.strip() ) t = gbl.tnames[trk]
if t.riff:
error("%s: Attempt to add {} solo when the track "
"has pending RIFF data." % t.name)
t.setRiff( s.strip() )
""" After all the solo data is interpreted and sent to the """ After all the solo data is interpreted and sent to the
correct track, we check any leftover tracks. If any of these correct track, we check any leftover tracks. If any of these
@ -624,12 +780,12 @@ def extractSolo(ln, rptcount):
""" """
for t in autoSoloTracks[1:]: for t in autoSoloTracks[1:]:
if t in gbl.tnames and gbl.tnames[t].riff == [] \ if t in gbl.tnames and not gbl.tnames[t].riff \
and max(gbl.tnames[t].harmonyOnly): and max(gbl.tnames[t].harmonyOnly):
gbl.tnames[t].setRiff( firstSolo[:] ) gbl.tnames[t].setRiff( firstSolo[:] )
if gbl.debug: if gbl.debug:
print "%s duplicated to %s for HarmonyOnly." % (trk, t) print "%s duplicated to %s for HarmonyOnly." % (trk, t)
return ln return ln

View File

@ -142,7 +142,7 @@ class Walk(PC):
else: # BOTH else: # BOTH
self.walkChoice += random.choice( (-1,0,0,2,2,1,1,1,1,1,1,1)) self.walkChoice += random.choice( (-1,0,0,2,2,1,1,1,1,1,1,1))
if not self.harmonyOnly[sc]: if not self.harmonyOnly[sc]:
self.sendNote( self.sendNote(
p.offset, p.offset,
@ -150,16 +150,18 @@ class Walk(PC):
self.adjustNote(note), self.adjustNote(note),
self.adjustVolume(p.vol, p.offset) ) self.adjustVolume(p.vol, p.offset) )
if self.harmony[sc]: if self.harmony[sc]:
ch = self.getChordInPos(p.offset, ctable).chord.noteList ch = self.getChordInPos(p.offset, ctable).chord.noteList
h = MMA.harmony.harmonize(self.harmony[sc], note, ch) h = MMA.harmony.harmonize(self.harmony[sc], note, ch)
strumOffset = self.getStrum(sc)
for n in h: for n in h:
self.sendNote( self.sendNote(
p.offset, p.offset + strumOffset,
self.getDur(p.duration), self.getDur(p.duration),
self.adjustNote(n), self.adjustNote(n),
self.adjustVolume(p.vol * self.harmonyVolume[sc], -1) ) self.adjustVolume(p.vol * self.harmonyVolume[sc], -1) )
strumOffset += self.getStrum(sc)

View File

@ -33,7 +33,7 @@ def patch(ln):
""" Main routine to manage midi patch names. """ """ Main routine to manage midi patch names. """
for i,a in enumerate(ln): for i,a in enumerate(ln):
if a.count('=') == 1: if a.count('=') == 1:
a,b = a.split('=') a,b = a.split('=')
else: else:
@ -51,15 +51,16 @@ def patch(ln):
else: else:
error("Expecting All, EXT or GM argument for List") error("Expecting All, EXT or GM argument for List")
if a == "RENAME": elif a == "RENAME":
prename(ln[i+1:]) prename(ln[i+1:])
break break
if a == 'SET': elif a == 'SET':
patchset(ln[i+1:]) patchset(ln[i+1:])
break break
error("Unknown option for Patch: %s" % a) else:
error("Unknown option for Patch: %s" % a)
# Set a patch value=name # Set a patch value=name
@ -67,17 +68,18 @@ def patchset(ln):
if not ln: if not ln:
error("Patch Set expecting list of value pairs.") error("Patch Set expecting list of value pairs.")
for a in ln: notopt, ln = opt2pair(ln, 1)
if notopt:
try: error("PATCH SET: All options must be VALUE=PAIR items.")
v,n = a.split('=', 1)
except: for v,n in ln:
error("Patch Set expecting value=name pair, not: %s" % a)
v=v.split('.') v=v.split('.')
if len(v) > 3 or len(v) < 1: if len(v) > 3 or len(v) < 1:
error("Patch Set: Expecting a voice value Prog.MSB.LSB." ) error("Patch Set: Expecting a voice value Prog.MSB.LSB." )
# Parse out value. Can be 'nn', 'nn.nn' or 'nn.nn.nn'
# the parts are for MSB(ctrl32), LSB(ctrl0), and Patch
voc = 0 voc = 0
if len(v) > 2: # ctrl32 if len(v) > 2: # ctrl32
i = stoi(v[2], "Patch Set LSB expecting integer.") i = stoi(v[2], "Patch Set LSB expecting integer.")
@ -95,16 +97,19 @@ def patchset(ln):
if i<0 or i>127: if i<0 or i>127:
error("Program must be 0..127, not '%s'." % i) error("Program must be 0..127, not '%s'." % i)
voc += i voc += i
# Handle the name.
if voc in voiceNames: if voc in voiceNames:
warning("Patch Set duplicating voice name %s with %s=%s" % \ warning("Patch Set duplicating voice name %s with %s=%s" % \
(voiceNames[voc], n, MMA.midiC.extVocStr(voc) )) (voiceNames[voc], n, MMA.midiC.extVocStr(voc) ))
if n.upper() in voiceInx:
if n in voiceInx:
warning("Patch Set duplicating voice value %s with %s=%s" % \ warning("Patch Set duplicating voice value %s with %s=%s" % \
(MMA.midiC.extVocStr(voiceInx[n.upper()]), (MMA.midiC.extVocStr(voiceInx[n]), MMA.midiC.extVocStr(voc), n) )
MMA.midiC.extVocStr(voc), n) )
voiceNames[voc]=n voiceNames[voc]=n
voiceInx[n.upper()]=voc voiceInx[n]=voc
@ -114,35 +119,41 @@ def prename(ln):
if not ln: if not ln:
error("Patch Rename expecting list of value pairs.") error("Patch Rename expecting list of value pairs.")
for a in ln: notopt, ln = opt2pair(ln, 1)
if not a.count("=") == 1:
error("Patch Rename expecting oldname=newname pair")
a,b = a.split("=") if notopt:
error("PATCH RENAME: expecting OLDNAME=NEWNAME pairs.")
if not a.upper() in voiceInx: for a, b in ln:
error("Patch %s doen't exist, can't be renamed." % a) if not a in voiceInx:
error("PATCH RENAME: oldname '%s' doen't exist, can't be renamed." % a)
if b.upper() in voiceInx: if b in voiceInx:
error("Patch name %s already exists" % b) error("PATCH RENAME: newname '%s' already exists." % b)
v = voiceInx[a.upper()] v = voiceInx[a]
voiceNames[v]=b voiceNames[v]=b
del voiceInx[a.upper()] del voiceInx[a]
voiceInx[b.upper()]=v voiceInx[b]=v
# list funcs # list funcs
def plistgm(): def plistgm():
""" List GM voices. """
for v in sorted(voiceNames.keys()): for v in sorted(voiceNames.keys()):
if v <= 127: if v <= 127:
print "%s=%s" % (MMA.midiC.extVocStr(v), voiceNames[v] ) print "%s=%s" % (MMA.midiC.extVocStr(v), voiceNames[v] )
def plistall():
plistgm()
plistext()
def plistext(): def plistext():
""" List extended voices. """
for v in sorted(voiceNames.keys()): for v in sorted(voiceNames.keys()):
if v>127: if v>127:
print "%s=%s" % (MMA.midiC.extVocStr(v), voiceNames[v]) print "%s=%s" % (MMA.midiC.extVocStr(v), voiceNames[v])
def plistall():
""" List all voices. """
plistgm()
plistext()

175
mma/MMA/paths.py Normal file
View File

@ -0,0 +1,175 @@
# paths.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
This module contains functions for setting various path variables.
"""
import os
import gbl
from MMA.common import *
import MMA.auto
import MMA.grooves
import MMA.exits
outfile = ''
##################################
# These routines set various filepaths in gbl
def mmastart(ln):
""" Set/append to the mmastart list. """
if not ln:
error ("Use: MMAstart FILE [file...]")
for a in ln:
gbl.mmaStart.append(MMA.file.fixfname(a))
if gbl.debug:
print "MMAstart set to:",
for a in gbl.mmaStart:
print "'%s'" % a,
print
def mmaend(ln):
""" Set/append to the mmaend list. """
if not ln:
error ("Use: MMAend FILE [file...]")
for a in ln:
gbl.mmaEnd.append(MMA.file.fixfname(a))
if gbl.debug:
print "MMAend set to:",
for a in gbl.mmaEnd:
print "'%s'" % a,
print
def setLibPath(ln):
""" Set the LibPath variable. """
if len(ln) > 1:
error("Only one path can be entered for LibPath")
f = MMA.file.fixfname(ln[0])
gbl.libPath = f
# forget about previously loaded mma lib databases
MMA.auto.grooveDB = []
MMA.grooves.glist = {}
MMA.grooves.lastGroove = ''
MMA.grooves.currentGroove = ''
if gbl.debug:
print "LibPath set to '%s'" % gbl.libPath
def setAutoPath(ln):
""" Set the autoPath variable. """
if not ln:
error("SetAutoLibPath: At least one filename is needed.")
gbl.autoLib = []
for l in ln:
gbl.autoLib.append( MMA.file.fixfname(l))
# delete previous auto groove list. We'll read again when needed.
MMA.auto.grooveDB = []
# To avoid conflicts, delete all existing grooves (current seq not effected)
MMA.grooves.glist = {}
MMA.grooves.lastGroove = ''
MMA.grooves.currentGroove = ''
if gbl.debug:
print "AutoLibPath set to '%s'" % gbl.autoLib
def setIncPath(ln):
""" Set the IncPath variable. """
if len(ln)>1:
error("Only one path is permitted in SetIncPath")
gbl.incPath = MMA.file.fixfname(ln[0])
if gbl.debug:
print "IncPath set to '%s'" % gbl.incPath
def setOutPath(ln):
""" Set the Outpath variable. """
if not ln:
gbl.outPath = ""
elif len(ln) > 1:
error ("Use: SetOutPath PATH")
else:
gbl.outPath = MMA.file.fixfname(ln[0])
if gbl.debug:
print "OutPath set to '%s'" % gbl.outPath
def createOutfileName(extension):
""" Create the output filename.
Called from the mainline, below and from lyrics karmode.
If outfile was specified on cmd line then leave it alone.
Otherwise ...
1. strip off the extension if it is .mma,
2. append .mid
"""
global outfile
if gbl.playFile and gbl.outfile:
error("You cannot use the -f option with -P")
if gbl.outfile:
outfile = gbl.outfile
elif gbl.playFile:
outfile = "MMAtmp%s.mid" % os.getpid()
MMA.exits.files.append(outfile)
else:
outfile, ext = os.path.splitext(gbl.infile)
if ext != gbl.ext:
outfile=gbl.infile
outfile += extension
outfile=MMA.file.fixfname(outfile)

135
mma/MMA/player.py Normal file
View File

@ -0,0 +1,135 @@
# player.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
"""
import time
import subprocess
import re
from MMA.common import *
import MMA.gbl
# Just in case the player is NOT set in mma.py we wrap the import
# in a try/except. Set it to '' if the import fails.
try:
from __main__ import midiPlayer
except:
midiPlayer = ['']
# We run in background in windows, foreground in linux
if gbl.platform == 'Windows':
inBackGround = 1 # by default we run in foreground
else:
inBackGround = 0
waitTime = 5 # default time to wait after forking in background
def setMidiPlayer(ln):
""" Set the MIDI file player (used with -P and -V). """
global midiPlayer, waitTime, inBackGround
if not ln:
ln = ['']
n = []
for l in ln: # parse out optional args
if '=' in l:
a,b = l.upper().split('=', 1)
if a == 'DELAY':
b = stof(b, "SetMidiPlayer: Delay must be value, not '%s'." % b)
waitTime = b
elif a == "BACKGROUND":
if b in ('1','YES'):
inBackGround = 1
elif b in ('0', 'NO'):
inBackGround = 0
else:
error("SetMidiPlayer: Background must be 'yes'"
"or 'no', not '%s'." % b)
else: error("SetMidiPlayer: unknown option '%s'." % a)
else:
n.append(MMA.file.fixfname(l))
if not n:
n=['']
midiPlayer = n
if gbl.debug:
print "MidiPlayer set to '%s' Background=%s Delay=%s." % \
(' '.join(midiPlayer), inBackGround, waitTime)
def playMidi(file):
""" Play a midi file. """
pl = midiPlayer[0]
opts = midiPlayer[1:]
if not pl and gbl.platform != "Windows":
error("No MIDI file player defined, temp files will be deleted.")
if not pl:
m = "default windows MIDI player"
else:
m = pl
print "Playing MIDI '%s' with %s." % (file, m)
if gbl.platform == "Windows":
sh = True
else:
sh = False
cmd = [pl]
if opts:
cmd.append(' '.join(opts))
cmd.append(file)
t=time.time()
# fork our player.
try:
pid = subprocess.Popen(cmd, shell=sh)
except OSError, e:
print e
msg = "MidiPlayer fork error."
if re.search("[\'\"]", ''.join(cmd)):
msg += " Using quotes in the MidiPlayer name/opts might be your problem."
error(msg)
if inBackGround: # if the background option set, do a sleep
print "Play in progress ... file will be deleted."
time.sleep(waitTime)
else: # foreground player ... wait for process to finish
pid.wait()
print "Play complete (%.2f min), file has been deleted." \
% ((time.time()-t)/60)

167
mma/MMA/roman.py Normal file
View File

@ -0,0 +1,167 @@
# roman.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
Roman numeral chord to standard notations.
"""
from common import *
from MMA.keysig import keySig
# Table of scales ... a list of 7 notes for each possible Major/Minor scale
majTable = { 'C': ('C', 'D', 'E', 'F', 'G', 'A', 'B'),
'C#': ('C#', 'D#', 'F', 'F#', 'G#', 'A#', 'C'),
'D': ('D', 'E', 'F#', 'G', 'A', 'B', 'C#'),
'Db': ('Db', 'Eb', 'F', 'Gb', 'Ab', 'Bb', 'C'),
'D#': ('D#', 'F', 'G', 'G#', 'A#', 'C', 'D'),
'Eb': ('Eb', 'F', 'G', 'Ab', 'Bb', 'C', 'D'),
'E': ('E', 'F#', 'G#', 'A', 'B', 'C#', 'D#'),
'F': ('F', 'G', 'A', 'Bb', 'C', 'D', 'E'),
'F#': ('F#', 'G#', 'A#', 'B', 'C#', 'D#', 'F'),
'Gb': ('Gb', 'Ab', 'Bb', 'B', 'Db', 'Eb', 'F'),
'G': ('G', 'A', 'B', 'C', 'D', 'E', 'F#'),
'G#': ('G#', 'A#', 'C', 'C#', 'D#', 'F', 'G'),
'Ab': ('Ab', 'Bb', 'C', 'Db', 'Eb', 'F', 'G'),
'A': ('A', 'B', 'C#', 'D', 'E', 'F#', 'G#'),
'A#': ('A#', 'C', 'D', 'D#', 'F', 'G', 'A'),
'Bb': ('Bb', 'C', 'D', 'Eb', 'F', 'G', 'A'),
'B': ('B', 'C#', 'D#', 'E', 'F#', 'G#', 'A#') }
minTable = { 'C': ('C', 'D', 'Eb', 'F', 'G', 'Ab', 'Bb'),
'C#': ('C#', 'D#', 'E', 'F#', 'G#', 'A', 'B'),
'Db': ('Db', 'Eb', 'E', 'Gb', 'Ab', 'A', 'B'),
'D': ('D', 'E', 'F', 'G', 'A', 'Bb', 'C'),
'D#': ('D#', 'F', 'F#', 'G#', 'A#', 'B', 'C#'),
'Eb': ('Eb', 'F', 'Gb', 'Ab', 'Bb', 'B', 'Db'),
'E': ('E', 'F#', 'G', 'A', 'B', 'C', 'D'),
'F': ('F', 'G', 'Ab', 'Bb', 'C', 'Db', 'Eb'),
'F#': ('F#', 'G#', 'A', 'B', 'C#', 'D', 'E'),
'Gb': ('Gb', 'Ab', 'A', 'B', 'Db', 'D', 'E'),
'F': ('F', 'G', 'G#', 'A#', 'C', 'C#', 'D#'),
'G': ('G', 'A', 'A#', 'C', 'D', 'D#', 'F'),
'G#': ('G#', 'A#', 'B', 'C#', 'D#', 'E', 'F#'),
'Ab': ('Ab', 'Bb', 'B', 'Db', 'Eb', 'E', 'Gb'),
'A': ('A', 'B', 'C', 'D', 'E', 'F', 'G'),
'A#': ('A#', 'C', 'C#', 'D#', 'F', 'F#', 'G#'),
'Bb': ('Bb', 'C', 'Db', 'Eb', 'F', 'Gb', 'Ab'),
'B': ('B', 'C#', 'D', 'E', 'F#', 'G', 'A') }
uroman = {'I':0, 'II':1, 'III':2, 'IV':3, 'V':4, 'VI':5, 'VII':6}
lroman = {'i':0, 'ii':1, 'iii':2, 'iv':3, 'v':4, 'vi':5, 'vii':6}
arabic = {'1':0, '2':1, '3':2, '4':3, '5':4, '6':5, '7':6 }
doubleflat = { 'Cbb':'Bb', 'Dbb':'C', 'Ebb':'D', 'Fbb':'Eb',
'Gbb':'F', 'Abb':'G', 'Bbb':'A' }
doubleshart = { 'C##':'D', 'D##':'E', 'E##':'F#', 'F##':'G',
'G##':'A', 'A##':'B', 'B##':'C#' }
convertable = { 'm'+chr(176):'dim3', 'm0':'dim3', 'mo':'dim3', 'mO':'dim3',
'm'+chr(176)+'7':'dim7', 'm07':'dim7', 'mo7':'dim7', 'mO7':'dim7',
'm'+chr(248)+'7':'m7b5', 'm-07':'m7b5', 'm-o7':'m7b5', 'm-O7':'m7b5' }
def rvalue(s):
""" Convert a roman or arabic numeral to value (-1). """
if s in uroman:
return uroman[s]
elif s in lroman:
return lroman[s]
elif s in arabic:
return arabic[s]
else:
if s[0].isdigit:
error ("Unknown Arabic value '%s'. Use 1 to 7." % s)
else:
error("Unknown Roman numeral '%s'. Use 'I' to 'VII' in all u/l case." % s)
def convert(sym):
""" Convert a roman numeral to a standard chord name. """
keysig, minor = keySig.kName
# figure number of roman numerals leading symbol
sym=list(sym)
rm=''
while(sym) and sym[0] in ('I', 'V', 'i', 'v'):
rm += sym.pop(0)
sym=''.join(sym)
if rm[0].islower():
isminor = True
else:
isminor = False
offset = rvalue(rm)
# convert the roman to a pitch ... just a table lookup
if minor:
pitch = minTable[keysig][offset]
else:
pitch = majTable[keysig][offset]
"""
Adjust the pitch if the remainder starts with a # or b. (Note, '&'
was converted to 'b' early in the chord parser.
This permits technically incorrect things like 'Ib' which end up (in C)
as 'Cb'. Useful with dim chords. We also need to worry about doubles!
"""
if sym.startswith('b') or sym.startswith('#'):
pitch += sym[0]
sym = sym[1:]
if pitch.endswith('#b') or pitch.endswith('b#'): # 'b#' cancel each other
pitch = pitch[:-2]
elif pitch.endswith('##'):
pitch = doublesharp[pitch]
elif pitch.endswith('bb'):
pitch = doubleflat[pitch]
""" Now translate the quality. This is whatever was left after
stripping off the number and sharp/flat. Two uglies:
- some names are different in RN and standard, ie 07 .. dim7
- lowercase == minor, so we add in 'm' to start of the
leftover quality, unless it's there already. "v07" becomes "Xdim7",
and "Vm0" (wrong!) still works and becomes Xdim3"
- special trap for double 'm's. Hide conversion of "vm7" which becomes
"Xmm7" and then "Xm7".
"""
if isminor and not sym.startswith('m'):
sym = 'm'+sym
if sym in convertable:
sym = convertable[sym]
return pitch + sym

View File

@ -35,7 +35,7 @@ safeCmds = [ 'ceil', 'fabs', 'floor', 'exp', 'log', 'log10', 'pow',
def safe_eval( expr ): def safe_eval( expr ):
toks = re.split( r'([a-zA-Z_\.]+|.)', expr ) toks = re.split( r'([a-zA-Z_\.]+|.)', expr )
for t in toks: for t in toks:
if len(t)>1 and t not in safeCmds: if len(t)>1 and t not in safeCmds:
error("Illegal/Unknown operator '%s' in $()." % t) error("Illegal/Unknown operator '%s' in $()." % t)

262
mma/MMA/swing.py Normal file
View File

@ -0,0 +1,262 @@
# swing.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bob van der Poel <bob@mellowood.ca>
"""
import gbl
from MMA.common import *
from MMA.notelen import noteLenTable
mode = 0 # defaults to 0, set to 1 for swing mode
skew = None # this is just for $_SwingMode macro
accent1 = 1 # velocity % adjustments for 1st/2nd notes of swing pattern
accent2 = 1
delay1 = 0 # value, in ticks, for additional delay
delay2 = 0
noteValue = 8 # this can be 8 or 16 for 8th swing or 16th swing
# These 2 funcs are called by the groove save/restore funcs. They
# are used just to make the groove code a bit more readable.
def gsettings():
return (mode, skew, accent1, accent2, delay1, delay2, noteLenTable['81'], noteLenTable['82'], noteValue)
def grestore(s):
global mode, skew, accent1, accent2, delay1, delay2, noteValue
mode, skew, accent1, accent2, delay1, delay2, \
noteLenTable['81'], noteLenTable['82'], noteValue = s
def swingMode(ln):
""" Enable/Disable Swing timing mode. """
global skew, mode, accent1, accent2, delay1, delay2, noteValue
emsg = "Use: SwingMode [ ON | 1, OFF | 0, SKEW=nn | Accent=nn,nn | Delay=nn,nn | Notes=8|16 ]."
if not ln:
error(emsg)
ln, opts = opt2pair(ln, toupper=1)
for v in ln:
if v in ("ON", "1"):
mode = 1
continue
elif v in ("OFF", "0"):
mode = 0
continue
else:
error(emsg)
for v, o in opts:
if v == 'SKEW':
skew = o
a = int( stoi(o) * gbl.BperQ / 100)
noteLenTable['81'] = a
noteLenTable['82'] = gbl.BperQ - a
elif v == 'ACCENT':
if o.count(',') != 1:
error("Swingmode: ACCENT expecting comma separated values, not '%s'." % o)
a1,a2 = o.split(',')
a1 = stoi(a1)
a2 = stoi(a2)
if a1 < 1 or a1 > 200 or a2 < 1 or a2 > 200:
error("Swingmode: Both ACCENT values must be 1..200, not %s,%s." \
% (a1, a2))
accent1 = a1/100.
accent2 = a2/100.
elif v == 'DELAY':
if o.count(',') != 1:
error("Swingmode: DELAY expecting comma separated values, not '%s'." % o)
a1,a2 = o.split(',')
a1 = stoi(a1)
a2 = stoi(a2)
if a1 < -20 or a1 > 20 or a2 < -20 or a2 > 20:
error("Swingmode: Both DELAY values must be -20..20, not %s,%s." \
% (a1, a2))
delay1 = a1
delay2 = a2
elif v == 'NOTES':
o = stoi(o)
if o not in (8,16):
error("Swingmode: NOTES expecting 8 or 16, not '%s'." % o)
noteValue = o
else:
error(emsg)
if gbl.debug:
print "SwingMode: Status=%s; Accent=%s,%s; Delay=%s,%s; Skew Note lengths: " \
"%s and %s ticks. Notes=%s" % \
(mode, int(accent1*100), int(accent2*100), delay1, delay2,
noteLenTable['81'], noteLenTable['82'], noteValue)
def settings():
""" Return string of current settings. For macros. """
if mode:
a = "On"
else:
a = "Off"
return "%s Accent=%s,%s Delay=%s,%s Skew=%s Notes=%s" % \
(a, int(accent1*100), int(accent2*100), delay1, delay2, skew, noteValue)
def getBeats():
""" Calc on and off beats for swing. This will work if "notevalue" is
set to 8 or 16.
"""
len8 = noteLenTable['8']
len81 = noteLenTable['81']
len82 = noteLenTable['82']
rng = gbl.QperBar
cnt = gbl.BperQ
if noteValue == 16:
len8 /= 2
len81 /= 2
len82 /= 2
rng *= 2
cnt /= 2
onBeats = [ x * cnt for x in range(rng)]
offBeats = [ (x * cnt + len8) for x in range(rng)]
return (len8, len81, len82, onBeats, offBeats)
def pattern(plist, vtype):
""" Do swing adjustments for pattern defs. """
len8, len81, len82, onBeats, offBeats = getBeats()
for p in plist:
if p.duration == len8 or ( vtype=="DRUM" and p.duration==1 ):
if p.offset in onBeats:
if p.duration == len8:
p.duration = len81
adj = accent1
if type(p.vol) == type([]):
p.vol = [ x * adj for x in p.vol]
else:
p.vol *= adj
p.offset += delay1
elif p.offset in offBeats:
if p.duration == len8:
p.duration = len82
adj = accent2
if type(p.vol) == type([]):
p.vol = [ x * adj for x in p.vol]
else:
p.vol *= adj
i=offBeats.index(p.offset)
p.offset = onBeats[i] + len81 + delay2
return plist
def swingSolo(notes):
""" Adjust an entire bar of solo note chords for swingmode.
Check each chord in the array of chords for a bar for
successive 8ths on & off the beat. If found, the first is
converted to 'long' 8th, the 2nd to a 'short'
and the offset for the 2nd is adjusted to comp. for the 'long'.
If there is a spurious offset between an on/off beat that pair
will NOT be adjusted. Nor sure if that is right or not?
Only called from getLine(), separate for sanity.
"""
len8, len81, len82, onBeats, offBeats = getBeats()
nl = sorted(notes) # list of offsets
for i in range(len(nl)-1):
# Check for successive note event offsets on 8th note positions
if nl[i] in onBeats and nl[i+1] == nl[i]+len8:
beat0 = nl[i]
beat1 = nl[i+1]
# check that all notes are 8ths by comparing a set of all
# the durations in both offsets with set([len8])
if set([nev.duration for nev in notes[beat0]+notes[beat1] ]) == set([len8]):
# lengthen notes on-the-beat
for nev in notes[beat0]:
nev.duration = len81
nev.velocity *= accent1
nev.defvelocity *= accent1
# if we have a delay for the first note we push
# the whole array by the correct value.
if delay1:
notes[beat0+delay1]=notes[beat0]
del notes[beat0]
# shorten notes off-the-beat
for nev in notes[beat1]:
nev.duration = len82
nev.velocity *= accent2
nev.defvelocity *= accent2
# move notes off-the-beat to the proper offset.
src = beat1
dest = beat0+len81+delay2
if src != dest:
notes[dest] = notes[src]
del notes[src]
return notes
# This forces our skew value default and in the process
# it sets the durations for the 81/82 notes
swingMode(['Skew=66'])

View File

@ -59,21 +59,21 @@ class Vtable:
if not ln: if not ln:
self.table = {} self.table = {}
if gbl.debug: if gbl.debug:
print "Voice Translaion table reset." print "Voice Translation table reset."
return return
for l in ln: ln, opts = opt2pair(ln, toupper=1)
l=l.upper()
if l.count('=') != 1: if ln:
error("Each translation pair must be in the format Voice=Alias") error("VOICETR: Each translation pair must be in the format Alias=Voice.")
v,a = l.split('=')
for v, a in opts:
self.table[v] = a self.table[v] = a
if gbl.debug: if gbl.debug:
print "Voice Translations: ", print "Voice Translations: ",
for l in ln: for v, a in opts:
print l, print "%s=%s" % (v,a),
print print
def get(self, name): def get(self, name):
@ -114,27 +114,32 @@ class Dtable:
if not ln: if not ln:
self.table = {} self.table = {}
if gbl.debug: if gbl.debug:
print "DrumTone Translaion table reset." print "DrumTone Translation table reset."
return return
ln, opts = opt2pair(ln, 1)
if ln:
error("TONETR: Each translation pair must be in the format Tone=NewTone.")
for l in ln:
l=l.upper()
if l.count('=') != 1:
error("Each translation pair must be in the format Voice=Alias")
v,a = l.split('=')
for v, a in opts:
v1=MMA.midiC.drumToValue(v) v1=MMA.midiC.drumToValue(v)
if v1<0: if v1<0:
error("Drum Tone '%s' not defined." % v) error("TONETR: Tone '%s' not defined." % v)
a1=MMA.midiC.drumToValue(a) a1=MMA.midiC.drumToValue(a)
if a1<0: if a1<0:
error("Drum Tone '%s' not defined." % a) error("TONETR: Tone '%s' not defined." % a)
self.table[v1] = a1 self.table[v1] = a1
if gbl.debug:
print "DrumTone Translation: %s=%s" % \ if gbl.debug:
(MMA.midiC.valueToDrum(v), MMA.midiC.valueToDrum(a)) print "TONETR Translations:",
for v, a in opts:
print "%s=%s" % (MMA.midiC.valueToDrum(v), MMA.midiC.valueToDrum(a)),
print
def get(self, name): def get(self, name):
@ -186,29 +191,38 @@ class VoiceVolTable:
return return
for l in ln: ln, opts = opt2pair(ln)
l=l.upper()
if l.count('=') != 1: if ln:
error("Each translation pair must be in the format Voice=Ajustment") error("VOICEVOLTR: Expecting VOICE=VOLUME pairs.")
v,a = l.split('=')
for v, a in opts:
val=MMA.midiC.instToValue(v)
if val<0:
error("VOICEVOLTR: unknown voice '%s'." % v)
v=MMA.midiC.instToValue(v)
a=stoi(a) a=stoi(a)
if a<1 or a>200: if a<1 or a>200:
error("Voice volume adjustments must be in range 1 to 200, not %s" % a) error("VOICEVOLTR: adjustments must be in range 1 to 200, not '%s'." % a)
self.table[v] = a/100.
if gbl.debug: self.table[val] = a/100.
print "Voice Volume Adjustment: %s=%s" % (MMA.midiC.valueToInst(v), a)
if gbl.debug:
print "VOICEVOLTR: ",
for v, a in opts:
print "%s=%s" % (v.upper(), a),
print
def get(self, v, vol): def get(self, v, vol):
""" Return an adjusted value or original. """ """ Return an adjusted value or original. """
try: try:
vol = int(vol * self.table[v]) return vol * self.table[v]
except KeyError: except:
return vol return vol
voiceVolTable=VoiceVolTable() voiceVolTable=VoiceVolTable()
@ -227,36 +241,46 @@ class DrumVolTable:
def set(self, ln): def set(self, ln):
""" Set a name/alias for voice volume adjustment, called from parser. """ """ Set a name/alias for drumtone volume adjustment, called from parser. """
if not ln: if not ln:
self.table = {} self.table = {}
if gbl.debug: if gbl.debug:
print "Drum Volume Adjustment table reset." print "DRUMVOLTR: Adjustment table reset."
return return
for l in ln: ln, opt = opt2pair(ln, 1)
l=l.upper()
if l.count('=') != 1: if ln:
error("Each translation pair must be in the format Drum=Ajustment") error("DRUMVOLTR: Each option must be in the format TONE=AJUSTMENT.")
v,a = l.split('=')
v=MMA.midiC.instToValue(v) for v, a in opt:
a=stoi(a) val = MMA.midiC.drumToValue(v)
if val < 0:
error("DRUMVOLTR: Unknown tone '%s'." % v)
a = stoi(a)
if a<1 or a>200: if a<1 or a>200:
error("Drum volume adjustments must be in range 1 to 200, not %s" % a) error("DRUMVOLTR: adjustments must be in range 1 to 200, not '%s'." % a)
self.table[v] = a/100.
if gbl.debug: self.table[val] = a/100
print "Drum Volume Adjustment: %s=%s" % (MMA.midiC.valueToDrum(v), a)
if gbl.debug:
print "DRUMVOLTR: Adjustments",
for v, a in opt:
print "%s=%s" % (MMA.midiC.valueToDrum(val), a),
print
def get(self, v, vol): def get(self, v, vol):
""" Return an adjusted value or original. """ """ Return an adjusted value or original. """
try: try:
vol = int(vol * self.table[v]) return vol * self.table[v]
except KeyError:
except: # not the best, but any errors just return the orignal volume.
return vol return vol

View File

@ -59,21 +59,17 @@ def adjvolume(ln):
if not ln: if not ln:
error("Use: AdjustVolume DYN=RATIO [..]") error("Use: AdjustVolume DYN=RATIO [..]")
for l in ln: notopt, ln = opt2pair(ln, 1)
try: if notopt:
v,r = l.split('=') error("ADJUSTVOLUME: Expecting DYNAMIC=RATIO pairs" )
except:
error("AdjustVolume expecting DYN=RATIO pair, not '%s'" % l)
v=v.upper()
for v, r in ln:
if v == 'RATIO': if v == 'RATIO':
r=stof(r) r=stof(r)
if r<0 or r>100: if r<0 or r>100:
error("VolumeRatio must be value 0 to 100") error("ADJUSTVOLUME RATIO: value must be 0 to 100")
vTRatio = r/100 vTRatio = r/100
vMRatio = 1-vTRatio vMRatio = 1-vTRatio
@ -82,14 +78,13 @@ def adjvolume(ln):
vols[v] = calcVolume(r, vols[v]) vols[v] = calcVolume(r, vols[v])
else: else:
error("Dynamic '%s' for AdjustVolume is unknown" % v ) error("ADJUSTVOLUME DYNAMIC: '%s' for AdjustVolume is unknown" % v )
if gbl.debug: if gbl.debug:
print "Volume Ratio: %s%% Track / %s%% Master" % ( vTRatio * 100, vMRatio * 100) print "Volume Ratio: %s%% Track / %s%% Master" % ( vTRatio * 100, vMRatio * 100)
print "Volume table:", print "Volume table:",
for a in vols: for a in sorted(vols):
print "%s=%s" % (a, int(vols[a] * 100)), print "%s=%s" % (a, int(vols[a] * 100)),
print print
@ -101,6 +96,9 @@ def calcVolume(new, old):
if new[0] == '-' or new[0] == '+': if new[0] == '-' or new[0] == '+':
a = stoi(new, "Volume expecting value for %% adjustment, not %s" % new) a = stoi(new, "Volume expecting value for %% adjustment, not %s" % new)
v = old + (old * a/100.) v = old + (old * a/100.)
if v < 0:
v=0
warning("Volume adjustment results in 0 volume.")
elif new[0] in "0123456789": elif new[0] in "0123456789":
v = stoi(new, "Volume expecting value, not '%s'" % new) / 100. v = stoi(new, "Volume expecting value, not '%s'" % new) / 100.
@ -131,7 +129,7 @@ def calcVolume(new, old):
def setVolume(ln): def setVolume(ln):
""" Set master volume. """ """ Set master volume. """
global volume, lastVolume global volume, lastVolume, futureVol
lastVolume = volume lastVolume = volume
@ -140,10 +138,12 @@ def setVolume(ln):
volume = calcVolume(ln[0], volume) volume = calcVolume(ln[0], volume)
futureVol = []
if gbl.debug: if gbl.debug:
print "Volume: %s%%" % volume print "Volume: %s%%" % volume
# The next 3 are called from the parser. # The next 3 are called from the parser.
@ -255,7 +255,7 @@ def fvolume(dir, startvol, ln):
volList.append( startvol) volList.append( startvol)
volList.append(destvol) volList.append(destvol)
return volList return volList

View File

@ -48,6 +48,12 @@ Continuing will probably cause all kinds of strange errors
and a generally unsatisfactory experience. But, we can try... and a generally unsatisfactory experience. But, we can try...
""") """)
rootdir = "/usr/local/share"
rootexe = "/usr/local/bin"
dest = rootdir + "/mma"
exe = rootexe + "/mma"
print """ print """
We recommend that you install the package with this script We recommend that you install the package with this script
in the default locations. This script will create a in the default locations. This script will create a
@ -57,32 +63,47 @@ script's directory locations. But, please note that ONLY
/usr/local/share and /usr/share are supported as default /usr/local/share and /usr/share are supported as default
locations. locations.
The main executable script will be installed in /usr/local/bin. The main executable script will be installed in %s.
If you ever decide to get rid of MMA, just delete the executable If you ever decide to get rid of MMA, just delete the executable
in /usr/local/mma and the directory tree in /usr/local/share/mma. in /usr/local/mma and the directory tree in /usr/local/share/mma.
""" """ % rootexe
okay("") okay("")
# Check to make sure install directories exist. Offer to create
# ... these might need to be created in Mac OS X
if not os.path.exists(rootdir):
okay("""The directory %s does not exist. Create okay?""" % rootdir)
if os.system("mkdir -p %s" % rootdir):
print "Opps, create failed. Were you root?"
sys.exit(1)
if not os.path.exists(rootexe):
okay("""The directory %s does not exist. Create okay?""" % rootexe)
if os.system("mkdir -p %s" % rootexe):
print "Opps, create failed. Were you root?"
sys.exit(1)
########################################### ###########################################
######## Copy the executable. ######## Copy the executable.
bin='/usr/local/bin/mma'
if os.path.exists(bin): if os.path.exists(exe):
okay("Existing mma executable '%s' is being overwritten." % bin) okay("Existing mma executable '%s' is being overwritten." % exe)
os.remove(bin) os.remove(exe)
print "Copying mma to", bin print "Copying mma to", exe
shutil.copy( 'mma.py', bin) shutil.copy( 'mma.py', exe)
########################################### ###########################################
######## Copy the library ######## Copy the library
dest = '/usr/local/share/mma'
if os.path.exists(dest): if os.path.exists(dest):
bu=dest.rsplit('/', 1)[0] + '/mma-old' bu=dest.rsplit('/', 1)[0] + '/mma-old'

BIN
mma/docs/html/lib/black.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 B

BIN
mma/docs/html/lib/blue.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,5 +1,7 @@
<HTML> <HTML>
<!-- Autogenerated by mma-libdoc. Do not edit ... you'll lose it! -->
<Center> <h1> The MMA Library </h1> </Center> <Center> <h1> The MMA Library </h1> </Center>
<P> <P>
@ -14,8 +16,8 @@ started" information.
The information on these HTML pages has been generated directly The information on these HTML pages has been generated directly
from the library files in your MMA library. Each from the library files in your MMA library. Each
entry uses the filename as a header and then lists the various entry uses the filename as a header and then lists the various
defined grooves. defined grooves. In addition, the individual groove names are
clickable and will display further, detailed information on that groove.
<P> <P>
You should be able to use any of the grooves listed in the "STDLIB" You should be able to use any of the grooves listed in the "STDLIB"
section in your files without section in your files without
@ -66,9 +68,13 @@ information from the each library file:
</UL> </UL>
</UL> </UL>
<P>If you find that you don't have some of the grooves listed below in your distribution <P>In addition, the <em>-Dgh</em> command generates sequence graphs and
you need to run the program mklibdoc.py to update these docs. Not all style files are detailed settings for each groove.
distributed in the default MMA distribution.
<P>If you find that you don't have some of the grooves listed below
in your distribution you need to run the program <em>mma-libdoc</em>
to update these docs. Not all style files are distributed in the
default MMA distribution.
<HR Size=3pt> <HR Size=3pt>
<CENTER> <H2> Index </H2> </CENTER> <CENTER> <H2> Index </H2> </CENTER>
@ -81,6 +87,7 @@ information from the each library file:
<ul> <ul>
<li> <A Href = stdlib/50srock.html> stdlib/50srock.mma </a> </li> <li> <A Href = stdlib/50srock.html> stdlib/50srock.mma </a> </li>
<li> <A Href = stdlib/60srock.html> stdlib/60srock.mma </a> </li> <li> <A Href = stdlib/60srock.html> stdlib/60srock.mma </a> </li>
<li> <A Href = stdlib/68march.html> stdlib/68march.mma </a> </li>
<li> <A Href = stdlib/8beat.html> stdlib/8beat.mma </a> </li> <li> <A Href = stdlib/8beat.html> stdlib/8beat.mma </a> </li>
<li> <A Href = stdlib/ballad.html> stdlib/ballad.mma </a> </li> <li> <A Href = stdlib/ballad.html> stdlib/ballad.mma </a> </li>
<li> <A Href = stdlib/ballad128.html> stdlib/ballad128.mma </a> </li> <li> <A Href = stdlib/ballad128.html> stdlib/ballad128.mma </a> </li>
@ -96,21 +103,30 @@ information from the each library file:
<li> <A Href = stdlib/broadway.html> stdlib/broadway.mma </a> </li> <li> <A Href = stdlib/broadway.html> stdlib/broadway.mma </a> </li>
<li> <A Href = stdlib/calypso.html> stdlib/calypso.mma </a> </li> <li> <A Href = stdlib/calypso.html> stdlib/calypso.mma </a> </li>
<li> <A Href = stdlib/chacha.html> stdlib/chacha.mma </a> </li> <li> <A Href = stdlib/chacha.html> stdlib/chacha.mma </a> </li>
<li> <A Href = stdlib/charleston.html> stdlib/charleston.mma </a> </li>
<li> <A Href = stdlib/countryblues.html> stdlib/countryblues.mma </a> </li> <li> <A Href = stdlib/countryblues.html> stdlib/countryblues.mma </a> </li>
<li> <A Href = stdlib/countryswing.html> stdlib/countryswing.mma </a> </li> <li> <A Href = stdlib/countryswing.html> stdlib/countryswing.mma </a> </li>
<li> <A Href = stdlib/countrywaltz.html> stdlib/countrywaltz.mma </a> </li> <li> <A Href = stdlib/countrywaltz.html> stdlib/countrywaltz.mma </a> </li>
<li> <A Href = stdlib/descendingjazz.html> stdlib/descendingjazz.mma </a> </li>
<li> <A Href = stdlib/desert.html> stdlib/desert.mma </a> </li> <li> <A Href = stdlib/desert.html> stdlib/desert.mma </a> </li>
<li> <A Href = stdlib/dixie.html> stdlib/dixie.mma </a> </li> <li> <A Href = stdlib/dixie.html> stdlib/dixie.mma </a> </li>
<li> <A Href = stdlib/dixiemarch.html> stdlib/dixiemarch.mma </a> </li> <li> <A Href = stdlib/dixiemarch.html> stdlib/dixiemarch.mma </a> </li>
<li> <A Href = stdlib/easyswing.html> stdlib/easyswing.mma </a> </li> <li> <A Href = stdlib/easyswing.html> stdlib/easyswing.mma </a> </li>
<li> <A Href = stdlib/fastblues.html> stdlib/fastblues.mma </a> </li> <li> <A Href = stdlib/fastblues.html> stdlib/fastblues.mma </a> </li>
<li> <A Href = stdlib/fastswing.html> stdlib/fastswing.mma </a> </li>
<li> <A Href = stdlib/fastwaltz.html> stdlib/fastwaltz.mma </a> </li>
<li> <A Href = stdlib/folk.html> stdlib/folk.mma </a> </li> <li> <A Href = stdlib/folk.html> stdlib/folk.mma </a> </li>
<li> <A Href = stdlib/folkballad.html> stdlib/folkballad.mma </a> </li>
<li> <A Href = stdlib/folkyjazz.html> stdlib/folkyjazz.mma </a> </li>
<li> <A Href = stdlib/foxtrot.html> stdlib/foxtrot.mma </a> </li> <li> <A Href = stdlib/foxtrot.html> stdlib/foxtrot.mma </a> </li>
<li> <A Href = stdlib/frenchwaltz.html> stdlib/frenchwaltz.mma </a> </li> <li> <A Href = stdlib/frenchwaltz.html> stdlib/frenchwaltz.mma </a> </li>
<li> <A Href = stdlib/guitarballad.html> stdlib/guitarballad.mma </a> </li> <li> <A Href = stdlib/guitarballad.html> stdlib/guitarballad.mma </a> </li>
<li> <A Href = stdlib/hillcountry.html> stdlib/hillcountry.mma </a> </li> <li> <A Href = stdlib/hillcountry.html> stdlib/hillcountry.mma </a> </li>
<li> <A Href = stdlib/jazz-54.html> stdlib/jazz-54.mma </a> </li> <li> <A Href = stdlib/jazz-54.html> stdlib/jazz-54.mma </a> </li>
<li> <A Href = stdlib/jazzcombo.html> stdlib/jazzcombo.mma </a> </li>
<li> <A Href = stdlib/jazzguitar.html> stdlib/jazzguitar.mma </a> </li> <li> <A Href = stdlib/jazzguitar.html> stdlib/jazzguitar.mma </a> </li>
<li> <A Href = stdlib/jazzrhumba.html> stdlib/jazzrhumba.mma </a> </li>
<li> <A Href = stdlib/jazzrock.html> stdlib/jazzrock.mma </a> </li>
<li> <A Href = stdlib/jazzwaltz.html> stdlib/jazzwaltz.mma </a> </li> <li> <A Href = stdlib/jazzwaltz.html> stdlib/jazzwaltz.mma </a> </li>
<li> <A Href = stdlib/jive.html> stdlib/jive.mma </a> </li> <li> <A Href = stdlib/jive.html> stdlib/jive.mma </a> </li>
<li> <A Href = stdlib/lfusion.html> stdlib/lfusion.mma </a> </li> <li> <A Href = stdlib/lfusion.html> stdlib/lfusion.mma </a> </li>
@ -145,6 +161,7 @@ information from the each library file:
<li> <A Href = stdlib/softrock.html> stdlib/softrock.mma </a> </li> <li> <A Href = stdlib/softrock.html> stdlib/softrock.mma </a> </li>
<li> <A Href = stdlib/softshoe.html> stdlib/softshoe.mma </a> </li> <li> <A Href = stdlib/softshoe.html> stdlib/softshoe.mma </a> </li>
<li> <A Href = stdlib/son.html> stdlib/son.mma </a> </li> <li> <A Href = stdlib/son.html> stdlib/son.mma </a> </li>
<li> <A Href = stdlib/stringballad.html> stdlib/stringballad.mma </a> </li>
<li> <A Href = stdlib/swing.html> stdlib/swing.mma </a> </li> <li> <A Href = stdlib/swing.html> stdlib/swing.mma </a> </li>
<li> <A Href = stdlib/tango.html> stdlib/tango.mma </a> </li> <li> <A Href = stdlib/tango.html> stdlib/tango.mma </a> </li>
<li> <A Href = stdlib/trance.html> stdlib/trance.mma </a> </li> <li> <A Href = stdlib/trance.html> stdlib/trance.mma </a> </li>
@ -152,17 +169,31 @@ information from the each library file:
<li> <A Href = stdlib/waltz.html> stdlib/waltz.mma </a> </li> <li> <A Href = stdlib/waltz.html> stdlib/waltz.mma </a> </li>
<li> <A Href = stdlib/zydeco.html> stdlib/zydeco.mma </a> </li> <li> <A Href = stdlib/zydeco.html> stdlib/zydeco.mma </a> </li>
</ul> </ul>
<P><h3>Use the following grooves with a "use" directive.</h3> <P><h3>These groove should be callable just by using their names. If you have problems with duplicate groove names you can always force their use with a "use" directive.</h3>
<A Name =kara></a> <A Name =kara></a>
<h2> Kara </h2> <h2> Kara </h2>
<ul> <ul>
<li> <A Href = kara/2beatp.html> kara/2beatp.mma </a> </li>
<li> <A Href = kara/8beatmotown.html> kara/8beatmotown.mma </a> </li>
<li> <A Href = kara/K50s_rock.html> kara/K50s_rock.mma </a> </li> <li> <A Href = kara/K50s_rock.html> kara/K50s_rock.mma </a> </li>
<li> <A Href = kara/Kfunk1.html> kara/Kfunk1.mma </a> </li> <li> <A Href = kara/Kfunk1.html> kara/Kfunk1.mma </a> </li>
<li> <A Href = kara/fasttwist.html> kara/fasttwist.mma </a> </li>
<li> <A Href = kara/happyshuffle.html> kara/happyshuffle.mma </a> </li>
<li> <A Href = kara/kbossa.html> kara/kbossa.mma </a> </li>
<li> <A Href = kara/kwestballad.html> kara/kwestballad.mma </a> </li>
<li> <A Href = kara/twi.html> kara/twi.mma </a> </li> <li> <A Href = kara/twi.html> kara/twi.mma </a> </li>
</ul> </ul>
<A Name =yamaha></a> <A Name =yamaha></a>
<h2> Yamaha </h2> <h2> Yamaha </h2>
<ul> <ul>
<li> <A Href = yamaha/jazzGrtrio.html> yamaha/jazzGrtrio.mma </a> </li>
<li> <A Href = yamaha/jazzbasie.html> yamaha/jazzbasie.mma </a> </li>
<li> <A Href = yamaha/jazzbossa.html> yamaha/jazzbossa.mma </a> </li>
<li> <A Href = yamaha/jazzbouncy.html> yamaha/jazzbouncy.mma </a> </li>
<li> <A Href = yamaha/jazzcountry.html> yamaha/jazzcountry.mma </a> </li>
<li> <A Href = yamaha/jazzswing.html> yamaha/jazzswing.mma </a> </li>
<li> <A Href = yamaha/jazztrio.html> yamaha/jazztrio.mma </a> </li>
<li> <A Href = yamaha/jazzwaltz.html> yamaha/jazzwaltz.mma </a> </li>
<li> <A Href = yamaha/mambo.html> yamaha/mambo.mma </a> </li> <li> <A Href = yamaha/mambo.html> yamaha/mambo.mma </a> </li>
<li> <A Href = yamaha/quando-g.s280.html> yamaha/quando-g.s280.mma </a> </li> <li> <A Href = yamaha/quando-g.s280.html> yamaha/quando-g.s280.mma </a> </li>
<li> <A Href = yamaha/salsa1.html> yamaha/salsa1.mma </a> </li> <li> <A Href = yamaha/salsa1.html> yamaha/salsa1.mma </a> </li>
@ -172,9 +203,9 @@ information from the each library file:
</ul> </ul>
<BR> <BR>
<HR Size=3pt> <HR Size=3pt>
<P> This document and the files linked were created by <em>mkdoclib.py</em>. <P> This document and the files linked were created by <em>mma-libdoc</em>.
<P>It is a part of the MMA distribution <P>It is a part of the MMA distribution
and is protected by the same copyrights as MMA (the GNU General Public License). and is protected by the same copyrights as MMA (the GNU General Public License).
<P> Created: Sun Sep 28 11:30:06 2008<HTML> <P> Created: Mon Nov 8 09:30:44 2010<HTML>

View File

@ -0,0 +1,214 @@
<ul>
<LI><A Href=#2beatpA>2beatpA</a>
<LI><A Href=#2beatpB>2beatpB</a>
<LI><A Href=#2beatpC>2beatpC</a>
<LI><A Href=#2beatpD>2beatpD</a>
<LI><A Href=#2beatpFillA>2beatpFillA</a>
<LI><A Href=#2beatpFillB>2beatpFillB</a>
<LI><A Href=#2beatpFillC>2beatpFillC</a>
<LI><A Href=#2beatpFillD>2beatpFillD</a>
<LI><A Href=#2beatpIntroA>2beatpIntroA</a>
<LI><A Href=#2beatpIntroB>2beatpIntroB</a>
<LI><A Href=#2beatpIntroC>2beatpIntroC</a>
<LI><A Href=#2beatpEndingA>2beatpEndingA</a>
<LI><A Href=#2beatpEndingB>2beatpEndingB</a>
<LI><A Href=#2beatpEndingC>2beatpEndingC</a>
</ul>
<!-- GROOVE=2beatpa FILE=2beatp_2beatpa.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpa.html> 2beatpA </a> </H2>
Main A. 2 bars, left & right hand comping <B>(2)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-1 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpb FILE=2beatp_2beatpb.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpb.html> 2beatpB </a> </H2>
Main B. 2 bars, more rythm in the right hand <B>(2)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpc FILE=2beatp_2beatpc.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpc.html> 2beatpC </a> </H2>
Main C. 2bars, more busy & upper octave <B>(2)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpd FILE=2beatp_2beatpd.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpD></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpd.html> 2beatpD </a> </H2>
Main D. 2 bars variation on Main C <B>(2)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpfilla FILE=2beatp_2beatpfilla.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpFillA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpfilla.html> 2beatpFillA </a> </H2>
Fill In A. One bar Fill <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpfillb FILE=2beatp_2beatpfillb.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpFillB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpfillb.html> 2beatpFillB </a> </H2>
Fill In B. One bar fill <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpfillc FILE=2beatp_2beatpfillc.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpFillC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpfillc.html> 2beatpFillC </a> </H2>
Fill In C. One bar <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Chord-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpfilld FILE=2beatp_2beatpfilld.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpFillD></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpfilld.html> 2beatpFillD </a> </H2>
Fill In D. One bar <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpintroa FILE=2beatp_2beatpintroa.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpIntroA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpintroa.html> 2beatpIntroA </a> </H2>
'Intro A. One bar; simple <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpintrob FILE=2beatp_2beatpintrob.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpIntroB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpintrob.html> 2beatpIntroB </a> </H2>
Intro B. 4 bar intro, 2 octaves <B>(4)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Chord-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpintroc FILE=2beatp_2beatpintroc.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpIntroC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpintroc.html> 2beatpIntroC </a> </H2>
Intro C. 6 bars intro <B>(6)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-1 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpendinga FILE=2beatp_2beatpendinga.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpEndingA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpendinga.html> 2beatpEndingA </a> </H2>
Ending A. 1 bars <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpendingb FILE=2beatp_2beatpendingb.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpEndingB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpendingb.html> 2beatpEndingB </a> </H2>
Ending B. 3 bar ending <B>(3)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=2beatpendingc FILE=2beatp_2beatpendingc.html SRC=/usr/local/share/mma/lib/kara/2beatp.mma -->
<A Name=2beatpEndingC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=2beatp_2beatpendingc.html> 2beatpEndingC </a> </H2>
Ending C. 2 bar ending <B>(2)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-1 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-2 </TD> <TD> Piano1 </TD></TR>
</Table>
</TD></TR>
</Table>
</Body></HTML>

View File

@ -0,0 +1,94 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:02 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpa</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Main A. 2 bars, left & right hand comping
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 7.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.625em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,104 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:02 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpb</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Main B. 2 bars, more rythm in the right hand
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 7.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.640625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.640625em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.640625em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.640625em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.140625em; width:0.625em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,166 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpc</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Main C. 2bars, more busy & upper octave
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 7.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 70.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5390625em; width:0.625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0390625em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.1927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.1927083333em; width:0.625em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,118 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpd</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Main D. 2 bars variation on Main C
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 7.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0390625em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.1927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.921875em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.5885416667em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.1927083333em; width:0.625em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,80 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:04 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpendinga</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Ending A. 1 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:10.0em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:10.0em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,130 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:04 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpendingb</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Ending B. 3 bar ending
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 3 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 7.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:10.0em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 70.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.74479166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.140625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.9453125em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.7161458333em; width:10.0em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,104 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:04 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpendingc</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Ending C. 2 bar ending
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:10.0em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 70.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.8203125em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.58854166667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.421875em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.08854166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.640625em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.08854166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0390625em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0390625em; width:10.0em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,84 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpfilla</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In A. One bar Fill
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 70.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 7.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:10.0em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,96 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpfillb</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In B. One bar fill
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,97 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpfillc</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In C. One bar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Chord-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.494791666667em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.924479166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.421875em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,102 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpfilld</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In D. One bar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.924479166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.69270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.421875em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,53 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpintroa</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> 'Intro A. One bar; simple
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:9.0em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:6.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.25em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,155 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpintrob</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Intro B. 4 bar intro, 2 octaves
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Chord-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.3697916667em; width:2.5em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.74479166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.19270833333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.140625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.7447916667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.1927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.140625em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.921875em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5390625em; width:2.5em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,158 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:03 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: </h2>
<h2>Groove: 2Beatpintroc</h2>
<p><b>Notes:</b>
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Intro C. 6 bars intro
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 6 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:60.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:50.0em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:54.921875em; width:1.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:60.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.921875em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0390625em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0911458333em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:50.0em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:51.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:52.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:54.1927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:55.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:56.6927083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:59.1927083333em; width:0.625em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,358 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:04 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<H1>8Beatmotown</H1>
<P>Motown style in 8 beat rhythm
<ul>
<LI><A Href=#8beatmotownA>8beatmotownA</a>
<LI><A Href=#8beatmotownB>8beatmotownB</a>
<LI><A Href=#8beatmotownC>8beatmotownC</a>
<LI><A Href=#8beatmotownD>8beatmotownD</a>
<LI><A Href=#8beatmotownFillA>8beatmotownFillA</a>
<LI><A Href=#8beatmotownFillB>8beatmotownFillB</a>
<LI><A Href=#8beatmotownFillC>8beatmotownFillC</a>
<LI><A Href=#8beatmotownFillD>8beatmotownFillD</a>
<LI><A Href=#8beatmotownIntroA>8beatmotownIntroA</a>
<LI><A Href=#8beatmotownIntroB>8beatmotownIntroB</a>
<LI><A Href=#8beatmotownIntroC>8beatmotownIntroC</a>
<LI><A Href=#8beatmotownEndingA>8beatmotownEndingA</a>
<LI><A Href=#8beatmotownEndingB>8beatmotownEndingB</a>
<LI><A Href=#8beatmotownEndingC>8beatmotownEndingC</a>
<LI><A Href=#8beatmotownFillBA>8beatmotownFillBA</a>
</ul>
<!-- GROOVE=8beatmotowna FILE=8beatmotown_8beatmotowna.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotowna.html> 8beatmotownA </a> </H2>
Main A 8 bars drums, bass, piano, guitar <B>(8)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownb FILE=8beatmotown_8beatmotownb.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownb.html> 8beatmotownB </a> </H2>
Main B 8 Bar add strings <B>(8)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownc FILE=8beatmotown_8beatmotownc.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownc.html> 8beatmotownC </a> </H2>
Main C 8 bars <B>(8)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownd FILE=8beatmotown_8beatmotownd.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownD></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownd.html> 8beatmotownD </a> </H2>
Main D 8 bars the full band rocks <B>(8)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownfilla FILE=8beatmotown_8beatmotownfilla.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownFillA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownfilla.html> 8beatmotownFillA </a> </H2>
Fill In AA 1 bar <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownfillb FILE=8beatmotown_8beatmotownfillb.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownFillB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownfillb.html> 8beatmotownFillB </a> </H2>
Fill In BB 1 bar <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownfillc FILE=8beatmotown_8beatmotownfillc.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownFillC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownfillc.html> 8beatmotownFillC </a> </H2>
Fill In CC 1 bar <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownfilld FILE=8beatmotown_8beatmotownfilld.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownFillD></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownfilld.html> 8beatmotownFillD </a> </H2>
Fill In DD 1 bar <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownintroa FILE=8beatmotown_8beatmotownintroa.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownIntroA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownintroa.html> 8beatmotownIntroA </a> </H2>
Intro A 4 bars <B>(4)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Pedalhihat </TD> <TD> PedalHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownintrob FILE=8beatmotown_8beatmotownintrob.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownIntroB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownintrob.html> 8beatmotownIntroB </a> </H2>
Intro B 4 bars <B>(4)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Pedalhihat </TD> <TD> PedalHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownintroc FILE=8beatmotown_8beatmotownintroc.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownIntroC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownintroc.html> 8beatmotownIntroC </a> </H2>
Intro C 4 bars <B>(5)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownendinga FILE=8beatmotown_8beatmotownendinga.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownEndingA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownendinga.html> 8beatmotownEndingA </a> </H2>
Ending A 4 bars <B>(4)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Hightom2 </TD> <TD> HighTom2 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom1 </TD> <TD> LowTom1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom1 </TD> <TD> MidTom1 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownendingb FILE=8beatmotown_8beatmotownendingb.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownEndingB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownendingb.html> 8beatmotownEndingB </a> </H2>
Ending B 4 bars <B>(4)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Hightom2 </TD> <TD> HighTom2 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom1 </TD> <TD> LowTom1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom1 </TD> <TD> MidTom1 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownendingc FILE=8beatmotown_8beatmotownendingc.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownEndingC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownendingc.html> 8beatmotownEndingC </a> </H2>
Ending C 3 bars <B>(3)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Chord-13 </TD> <TD> Piano1 </TD></TR>
<TR><TD> Chord-14 </TD> <TD> CleanGuitar </TD></TR>
<TR><TD> Chord-15 </TD> <TD> SlowStrings </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Hightom2 </TD> <TD> HighTom2 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Ridecymbal1 </TD> <TD> RideCymbal1 </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
<TR><TD> Drum-Splashcymbal </TD> <TD> SplashCymbal </TD></TR>
</Table>
</TD></TR>
</Table>
<!-- GROOVE=8beatmotownfillba FILE=8beatmotown_8beatmotownfillba.html SRC=/usr/local/share/mma/lib/kara/8beatmotown.mma -->
<A Name=8beatmotownFillBA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD>
<H2> <A Href=8beatmotown_8beatmotownfillba.html> 8beatmotownFillBA </a> </H2>
Fill In BA 1 bar <B>(1)</B>
</TD></TR>
<TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
<TR><TD> Bass-12 </TD> <TD> FingeredBass </TD></TR>
<TR><TD> Chord-11 </TD> <TD> Piano2 </TD></TR>
<TR><TD> Drum-Closedhihat </TD> <TD> ClosedHiHat </TD></TR>
<TR><TD> Drum-Crashcymbal1 </TD> <TD> CrashCymbal1 </TD></TR>
<TR><TD> Drum-Kickdrum1 </TD> <TD> KickDrum1 </TD></TR>
<TR><TD> Drum-Lowtom2 </TD> <TD> LowTom2 </TD></TR>
<TR><TD> Drum-Midtom2 </TD> <TD> MidTom2 </TD></TR>
<TR><TD> Drum-Openhihat </TD> <TD> OpenHiHat </TD></TR>
<TR><TD> Drum-Snaredrum2 </TD> <TD> SnareDrum2 </TD></TR>
</Table>
</TD></TR>
</Table>
</Body></HTML>

View File

@ -0,0 +1,938 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:05 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotowna</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Main A 8 bars drums, bass, piano, guitar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 8 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.28125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:50.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:51.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:53.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:55.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:56.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:60.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:61.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:63.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:65.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:66.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:68.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:70.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:71.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:72.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:73.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:75.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:76.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:50.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:51.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:52.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:53.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:55.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:56.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:60.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:61.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:62.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:63.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:65.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:66.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:67.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:68.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:70.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:71.25em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:72.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:73.75em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:75.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:76.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.75em; width:0.625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:10.0em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:10.0em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:1.875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:10.0em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:56.25em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.75em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:65.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:66.25em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:67.5em; width:10.0em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:68.75em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:76.25em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.5em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.75em; width:1.25em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-14</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.6979166667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:52.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:52.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:52.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.6979166667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.7630208333em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:62.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:62.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:62.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:67.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:67.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:67.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:72.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:72.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:72.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.5390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.6979166667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.7630208333em; width:0.625em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:50.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:51.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:52.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:53.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:55.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:56.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:60.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:61.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:62.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:63.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:65.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:66.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:67.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:68.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:70.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:71.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:72.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:73.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:75.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:76.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.5em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:50.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:53.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:55.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:58.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:60.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:63.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:65.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:68.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:70.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:73.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:75.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:76.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:78.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:80.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:50.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:60.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:70.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:52.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:57.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:62.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:67.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:72.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:77.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,601 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:08 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownendinga</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Ending A 4 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.88802083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.8880208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Hightom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: HighTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.7447916667em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5390625em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.0182291667em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.265625em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.3151041667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,960 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:09 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownendingb</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Ending B 4 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:2.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:2.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:2.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:6.75em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:7.5em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-14</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.671875em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7890625em; width:7.5em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-15</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SlowStrings </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 6 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.171875em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.39583333333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.421875em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.671875em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.171875em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1979166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.3958333333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.421875em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.671875em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1979166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.171875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.6979166667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9479166667em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:7.5em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.88802083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.8880208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Hightom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: HighTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.7447916667em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5390625em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.0182291667em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.265625em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.3151041667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,803 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:09 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownendingc</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Ending C 3 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 3 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.638020833333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.88802083333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.13802083333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.38802083333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.63802083333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.88802083333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.13802083333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.38802083333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.6380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.8880208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.3880208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.6380208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.8880208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.3880208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.6380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.8880208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.3880208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.6380208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.8880208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.3880208333em; width:0.3125em; height:1em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.25em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-14</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0390625em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0911458333333em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.171875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.2890625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.671875em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.7890625em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.171875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2890625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.921875em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0390625em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.171875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2890625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.671875em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7890625em; width:1.25em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-15</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SlowStrings </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:10.0em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.25em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Hightom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: HighTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2890625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Splashcymbal</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SplashCymbal </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,268 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:06 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownfilla</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In AA 1 bar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.640625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.0703125em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,445 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:06 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownfillb</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In BB 1 bar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.28125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:10.0em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-14</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.25em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-15</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SlowStrings </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 6 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,332 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:09 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownfillba</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In BA 1 bar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.28125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,312 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:07 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownfillc</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In CC 1 bar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:2.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.640625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.0703125em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,445 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:07 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownfilld</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Fill In DD 1 bar
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.28125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:10.0em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-14</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.25em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-15</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SlowStrings </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 6 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.5em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,428 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:07 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownintroa</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Intro A 4 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.8880208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9479166667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Pedalhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: PedalHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.640625em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.0703125em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,789 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:08 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownintrob</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Intro B 4 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.6875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.6875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.6875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:1.6875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.375em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.875em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.125em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.375em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0390625em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.39583333333em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:2.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.2890625em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1197916667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1458333333em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.8958333333em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.671875em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:7.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.671875em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.8697916667em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.8958333333em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.421875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.671875em; width:1.875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7890625em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.8151041667em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5390625em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.6979166667em; width:1.25em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-14</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.421875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5390625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.421875em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5390625em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.421875em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5390625em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.171875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2890625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.421875em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5390625em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.671875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7890625em; width:0.625em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-15</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SlowStrings </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 6 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.8411458333em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.0625em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.1666666667em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.3880208333em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.5182291667em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:2.5em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:1.875em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:1.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.625em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.8880208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9479166667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Pedalhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: PedalHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.640625em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.0703125em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,867 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:08 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: 8beatmotown.mma</h2>
<h2>Groove: 8Beatmotownintroc</h2>
<p><b>Notes:</b> Motown style in 8 beat rhythm
<p><b>Author:</b> Rony Steelandt
<p><b>Description:</b> Intro C 4 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 5 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:1.125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.6380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.6380208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.6380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.6380208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.6380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.6380208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.6380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:44.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.6380208333em; width:0.3125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.8880208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.1380208333em; width:0.3125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:49.3880208333em; width:0.3125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:1.25em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:1.875em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-14</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0390625em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0911458333em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.171875em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2890625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.671875em; width:10.0em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:10.0em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7890625em; width:10.0em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.921875em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0390625em; width:3.75em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.921875em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0390625em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.171875em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2890625em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.671875em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7890625em; width:7.5em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.625em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.125em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.3125em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Chord-15</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SlowStrings </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 10.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
<td width=50%> Voicing: OPTIMAL </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:10.0em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.3125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:3.75em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.3125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.625em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:49.9479166667em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.75em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 100 </td>
</tr>
<tr>
<td width=50%> Volume: 40.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.54947916667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.88802083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.39583333333em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:45.0em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:46.25em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:48.125em; width:0.1em; height:4em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -1,29 +1,30 @@
<!-- Auto-Generated by MMA on: Sun Sep 28 11:30:04 2008 --> <!-- Auto-Generated by MMA on: Sun Nov 7 10:30:10 2010 -->
<HTML> <HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black> <BODY BGCOLOR="#B7DFFF" Text=Black>
<H1>K50S_Rock</H1> <H1>K50S_Rock</H1>
<P>A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style. <P>A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<ul> <ul>
<LI><A Href=#50sMain-A>50sMain-A</a> <LI><A Href=#50s_RockA>50s_RockA</a>
<LI><A Href=#50sFill-In-AA>50sFill-In-AA</a> <LI><A Href=#50s_RockFillAA>50s_RockFillAA</a>
<LI><A Href=#50sIntro-A>50sIntro-A</a> <LI><A Href=#50s_RockIntroA>50s_RockIntroA</a>
<LI><A Href=#50sEnding-A>50sEnding-A</a> <LI><A Href=#50s_RockEndingA>50s_RockEndingA</a>
<LI><A Href=#50sMain-B>50sMain-B</a> <LI><A Href=#50s_RockB>50s_RockB</a>
<LI><A Href=#50sFill-In-BB>50sFill-In-BB</a> <LI><A Href=#50s_RockFillBB>50s_RockFillBB</a>
<LI><A Href=#50sFill-In-BA>50sFill-In-BA</a> <LI><A Href=#50s_RockFillBA>50s_RockFillBA</a>
<LI><A Href=#50sIntro-B>50sIntro-B</a> <LI><A Href=#50s_RockIntroB>50s_RockIntroB</a>
<LI><A Href=#50sEnding-B>50sEnding-B</a> <LI><A Href=#50s_RockEndingB>50s_RockEndingB</a>
<LI><A Href=#50sMain-C>50sMain-C</a> <LI><A Href=#50s_RockC>50s_RockC</a>
<LI><A Href=#50sFill-In-CC>50sFill-In-CC</a> <LI><A Href=#50s_RockFillCC>50s_RockFillCC</a>
<LI><A Href=#50sIntro-C>50sIntro-C</a> <LI><A Href=#50s_RockIntroC>50s_RockIntroC</a>
<LI><A Href=#50sEnding-C>50sEnding-C</a> <LI><A Href=#50s_RockEndingC>50s_RockEndingC</a>
<LI><A Href=#50sMain-D>50sMain-D</a> <LI><A Href=#50s_RockD>50s_RockD</a>
<LI><A Href=#50sFill-In-DD>50sFill-In-DD</a> <LI><A Href=#50s_RockFillDD>50s_RockFillDD</a>
</ul> </ul>
<A Name=50sMain-A></a> <!-- GROOVE=50s_rocka FILE=K50s_rock_50s_rocka.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sMain-A </H2> <H2> <A Href=K50s_rock_50s_rocka.html> 50s_RockA </a> </H2>
'Main A' 50s rock, length is 4 bars. <B>(4)</B> 'Main A' 50s rock, length is 4 bars. <B>(4)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -37,10 +38,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sFill-In-AA></a> <!-- GROOVE=50s_rockfillaa FILE=K50s_rock_50s_rockfillaa.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockFillAA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sFill-In-AA </H2> <H2> <A Href=K50s_rock_50s_rockfillaa.html> 50s_RockFillAA </a> </H2>
'One bar Fill In Main A substyle' 50s rock <B>(1)</B> 'One bar Fill In Main A substyle' 50s rock <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -54,10 +56,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sIntro-A></a> <!-- GROOVE=50s_rockintroa FILE=K50s_rock_50s_rockintroa.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockIntroA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sIntro-A </H2> <H2> <A Href=K50s_rock_50s_rockintroa.html> 50s_RockIntroA </a> </H2>
One bar 'Intro A' 50s rock <B>(1)</B> One bar 'Intro A' 50s rock <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -71,10 +74,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sEnding-A></a> <!-- GROOVE=50s_rockendinga FILE=K50s_rock_50s_rockendinga.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockEndingA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sEnding-A </H2> <H2> <A Href=K50s_rock_50s_rockendinga.html> 50s_RockEndingA </a> </H2>
Two bars 'Ending A' 50s rock <B>(2)</B> Two bars 'Ending A' 50s rock <B>(2)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -91,10 +95,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sMain-B></a> <!-- GROOVE=50s_rockb FILE=K50s_rock_50s_rockb.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sMain-B </H2> <H2> <A Href=K50s_rock_50s_rockb.html> 50s_RockB </a> </H2>
B sub-style 50s rock. Length is 4 bars <B>(4)</B> B sub-style 50s rock. Length is 4 bars <B>(4)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -108,10 +113,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sFill-In-BB></a> <!-- GROOVE=50s_rockfillbb FILE=K50s_rock_50s_rockfillbb.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockFillBB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sFill-In-BB </H2> <H2> <A Href=K50s_rock_50s_rockfillbb.html> 50s_RockFillBB </a> </H2>
One Bar Fill In for B substyle' 50s rock <B>(1)</B> One Bar Fill In for B substyle' 50s rock <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -126,10 +132,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sFill-In-BA></a> <!-- GROOVE=50s_rockfillba FILE=K50s_rock_50s_rockfillba.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockFillBA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sFill-In-BA </H2> <H2> <A Href=K50s_rock_50s_rockfillba.html> 50s_RockFillBA </a> </H2>
One bar Fill In used to return from B substyle to A substyle. 50s rock <B>(1)</B> One bar Fill In used to return from B substyle to A substyle. 50s rock <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -144,10 +151,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sIntro-B></a> <!-- GROOVE=50s_rockintrob FILE=K50s_rock_50s_rockintrob.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockIntroB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sIntro-B </H2> <H2> <A Href=K50s_rock_50s_rockintrob.html> 50s_RockIntroB </a> </H2>
Two bar 'Intro B substyle ' 50s rock. <B>(2)</B> Two bar 'Intro B substyle ' 50s rock. <B>(2)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -162,11 +170,12 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sEnding-B></a> <!-- GROOVE=50s_rockendingb FILE=K50s_rock_50s_rockendingb.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockEndingB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sEnding-B </H2> <H2> <A Href=K50s_rock_50s_rockendingb.html> 50s_RockEndingB </a> </H2>
Tree bars 'Ending B substyle' 50s rock <B>(3)</B> Three bars 'Ending B substyle' 50s rock <B>(3)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
<Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%"> <Table CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="10%">
@ -183,10 +192,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sMain-C></a> <!-- GROOVE=50s_rockc FILE=K50s_rock_50s_rockc.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sMain-C </H2> <H2> <A Href=K50s_rock_50s_rockc.html> 50s_RockC </a> </H2>
Four bar 'Main C substyle' 50s rock <B>(4)</B> Four bar 'Main C substyle' 50s rock <B>(4)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -201,10 +211,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sFill-In-CC></a> <!-- GROOVE=50s_rockfillcc FILE=K50s_rock_50s_rockfillcc.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockFillCC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sFill-In-CC </H2> <H2> <A Href=K50s_rock_50s_rockfillcc.html> 50s_RockFillCC </a> </H2>
One bar Fill In for C substyle' 50s rock <B>(1)</B> One bar Fill In for C substyle' 50s rock <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -220,10 +231,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sIntro-C></a> <!-- GROOVE=50s_rockintroc FILE=K50s_rock_50s_rockintroc.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockIntroC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sIntro-C </H2> <H2> <A Href=K50s_rock_50s_rockintroc.html> 50s_RockIntroC </a> </H2>
Four bar Intro for C substyle 50srock. <B>(4)</B> Four bar Intro for C substyle 50srock. <B>(4)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -238,10 +250,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sEnding-C></a> <!-- GROOVE=50s_rockendingc FILE=K50s_rock_50s_rockendingc.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockEndingC></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sEnding-C </H2> <H2> <A Href=K50s_rock_50s_rockendingc.html> 50s_RockEndingC </a> </H2>
Five bar Ending for C substyle 50s rock <B>(5)</B> Five bar Ending for C substyle 50s rock <B>(5)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -259,10 +272,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sMain-D></a> <!-- GROOVE=50s_rockd FILE=K50s_rock_50s_rockd.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockD></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sMain-D </H2> <H2> <A Href=K50s_rock_50s_rockd.html> 50s_RockD </a> </H2>
Four bar Main D substyle 50s rock. <B>(4)</B> Four bar Main D substyle 50s rock. <B>(4)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -276,10 +290,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=50sFill-In-DD></a> <!-- GROOVE=50s_rockfilldd FILE=K50s_rock_50s_rockfilldd.html SRC=/usr/local/share/mma/lib/kara/K50s_rock.mma -->
<A Name=50s_RockFillDD></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> 50sFill-In-DD </H2> <H2> <A Href=K50s_rock_50s_rockfilldd.html> 50s_RockFillDD </a> </H2>
One bar Fill In for D substyle 50s rock <B>(1)</B> One bar Fill In for D substyle 50s rock <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>

View File

@ -0,0 +1,609 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:10 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rocka</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> 'Main A' 50s rock, length is 4 bars.
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9739583333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:2.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.3671875em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.796875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.1875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5390625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.3671875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.7708333333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1875em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5651041667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.3411458333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.7708333333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.1744791667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.6875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.3411458333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.7447916667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.1484375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.6875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:1.125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.31510416667em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.61458333333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.9921875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.421875em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2890625em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.5625em; width:1.6875em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9401041667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.5885416667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.9921875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.5625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.9921875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0130208333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7239583333em; width:9.0em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7239583333em; width:9.0em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.31510416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2890625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.3411458333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.1484375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.48958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.79166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1744791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.9895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.3958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.7395833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.0703125em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.9635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.7135416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.1484375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.34375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.765625em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.48958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.48958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.6223958333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.84375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9739583333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,633 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:11 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockb</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> B sub-style 50s rock. Length is 4 bars
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:2.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2239583333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.11979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.2890625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3151041667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.3671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.3151041667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.06770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.12239583333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.98958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.421875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.61979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.765625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1484375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.9895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.34375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.6875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.0963541667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.3177083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.6875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.0963541667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.3958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.765625em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.54166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.3723958333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.3880208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.6484375em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.8697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9739583333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,638 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:12 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockc</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Four bar 'Main C substyle' 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:2.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.3671875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.796875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.12239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.56510416667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.3671875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.7447916667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1744791667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.3671875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.7708333333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.1875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5651041667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.3411458333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.7708333333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.1875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5651041667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2239583333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:1.125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.31510416667em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.58854166667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.9921875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2890625em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.5885416667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9921875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.5625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.0182291667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.421875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2890625em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.6145833333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.9661458333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.11979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.3671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3151041667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.3411458333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.14583333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.0703125em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.42447916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.06770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.48958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.765625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1223958333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.5677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.7395833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.1223958333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.9375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.765625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.1223958333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.6875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.46354166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.3984375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.3489583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.6875em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.765625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9739583333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,817 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:13 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockd</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Four bar Main D substyle 50s rock.
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:2.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1979166667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1979166667em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.6979166667em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.1979166667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.6979166667em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7239583333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:0.28125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:1.6875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.3671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2890625em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.14583333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.0703125em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.48958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.04166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.421875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.64583333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.67447916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1484375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.9895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.421875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.6744791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.1223958333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.3697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.6197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.6875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1458333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.1223958333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.9635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.1979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.3958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.7135416667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.37239583333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.89583333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.48958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4244791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4244791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.5677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.3880208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.6875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.7916666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9739583333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,442 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:11 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockendinga</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Two bars 'Ending A' 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:3.375em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.34114583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.796875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.1875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5390625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:3.375em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.5625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.9921875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.421875em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:3.375em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Hightom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: HighTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.2135416667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.2890625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.8697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.9166666667em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.21875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.9427083333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.1875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.7213541667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.06770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.09635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.98958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.54166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.6875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.0963541667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.3177083333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.3984375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.59375em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,693 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:12 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockendingb</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Three bars 'Ending B substyle' 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 3 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:3.375em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 6 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.3932291667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.796875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:1.6875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:3.375em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.5885416667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9921875em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9479166667em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:3.375em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.796875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.07291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.38802083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.59895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.29166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.32291666667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Hightom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: HighTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.265625em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.74479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.02083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.24479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.52083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.84895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.94270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.27083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.890625em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.296875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.24479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.9166666667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.02083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.1875em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.6432291667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.0963541667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.9375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.765625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.1223958333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.421875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:30.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.442708333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.71875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.99479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.21875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.46875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.796875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,933 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:13 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockendingc</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Five bar Ending for C substyle 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 5 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9739583333em; width:1.125em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.2630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.7630208333em; width:3.375em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.3671875em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.796875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1484375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5390625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:1.6875em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.3671875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.796875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.1223958333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5651041667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0130208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.7239583333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.7630208333em; width:3.375em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.6145833333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9401041667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7630208333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2890625em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.6145833333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.9661458333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.421875em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.1979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.7239583333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.75em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.7630208333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.7630208333em; width:3.375em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.71875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.0729166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.3880208333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.6380208333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.2135416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.1380208333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.296875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Hightom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: HighTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.2395833333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2890625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.6927083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.9427083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.1927083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.4166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.7708333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.046875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.21875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2890625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:44.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.890625em; width:0.1em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:49.2447916667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.31770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.06770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.34895833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.546875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.2447916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.890625em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.046875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.1875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.6953125em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.11979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.36979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.81770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.14583333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.29166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.32291666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.86979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.4947916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.0963541667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.9895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.765625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.9479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.0963541667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4244791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.6744791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:40.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:41.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.0703125em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:42.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:43.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:47.3958333333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:50.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:40.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.48958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.54166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.3880208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.6744791667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.8697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.1432291667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.4427083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.71875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.046875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.21875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.5989583333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.7708333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.59375em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,277 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:10 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockfillaa</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> 'One bar Fill In Main A substyle' 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.84895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.99479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.38802083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.63802083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.34375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.19010416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.32291666667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.66666666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.94270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.296875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.52083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.74479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.046875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.296875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.21875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.94270833333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.442708333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.71875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.96875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.16666666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.52083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.71875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,363 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:11 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockfillba</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> One bar Fill In used to return from B substyle to A substyle. 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:1.125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.796875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.07291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.4140625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.6640625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.31770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.19010416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.34895833333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.66666666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.02083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.27083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.46875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.84895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.046875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.21875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.296875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.02083333333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.442708333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.66666666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.96875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.21875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.57291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.796875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,371 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:11 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockfillbb</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> One Bar Fill In for B substyle' 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.82291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.02083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.38802083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.6640625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.29166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.1640625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.34895833333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.69270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.96875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.27083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.52083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.84895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.99479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.296875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.24479166667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.046875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.442708333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.640625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.99479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.24479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.52083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.71875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.32291666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.62239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.84375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,449 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:12 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockfillcc</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> One bar Fill In for C substyle' 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 6 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.82291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.07291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.34895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.59895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.29166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.296875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.71875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.94270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.24479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.390625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.74479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.02083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.24479166667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.296875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.94270833333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.46875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.69270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.96875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.19270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.546875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.69270833333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,449 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:13 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockfilldd</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> One bar Fill In for D substyle 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 6 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.19791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.796875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.07291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.4140625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.59895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.265625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.1640625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.38802083333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.74479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.94270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.24479166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.44270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.796875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.046875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.21875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.27083333333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.99479166667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.442708333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.71875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.96875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.19270833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.52083333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.77083333333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,281 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:10 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockintroa</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> One bar 'Intro A' 50s rock
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:2.25em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.39322916667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.77083333333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.17447916667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:1.125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 4 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.5625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.96614583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.19791666667em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:9.0em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:9.0em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.82291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.71875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.7421875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.265625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.61979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.98958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.31770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.56770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.71354166667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.09895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.86979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.9453125em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,434 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:12 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockintrob</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Two bar 'Intro B substyle ' 50s rock.
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.39322916667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.77083333333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.12239583333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.51302083333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.01302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.22395833333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.31510416667em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.58854166667em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.96614583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.82291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.71875em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.3697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.0677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.3229166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.768229166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.22395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.31770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.671875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.06770833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.34375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.44791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.61979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.6875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.2916666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.8177083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.3697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.3229166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.8697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.07291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.86979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.97135416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.59375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.6223958333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.7916666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9739583333em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,634 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:12 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: K50s_rock.mma</h2>
<h2>Groove: 50S_Rockintroc</h2>
<p><b>Notes:</b> A 50's rock style Highly reconizable rock from the 50's, Buddy Holly amongst, others, used this style.
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Four bar Intro for C substyle 50srock.
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: AcousticBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:3.375em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.9479166667em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:2.25em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:1.125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-12</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Piano1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 7 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.34114583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.77083333333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.17447916667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5390625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.72395833333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.3411458333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.7447916667em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5390625em; width:1.6875em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:1.6875em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4739583333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.6979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-13</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SteelGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.31510416667em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.61458333333em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.94010416667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.44791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.69791666667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.97395833333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.47395833333em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.94791666667em; width:3.375em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2890625em; width:3.375em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.5625em; width:1.6875em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9661458333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:2.25em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.4739583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.1979166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2239583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4739583333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.6979166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:1.125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.4479166667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7239583333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.82291666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.94791666667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.796875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.9479166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3151041667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2890625em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.1979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.34375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.171875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.3880208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9479166667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Ridecymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: RideCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0130208333333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.7421875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.29166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.64583333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.72395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.98958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.26302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.421875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.51302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.61979166667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.76302083333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.6875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.0416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.1744791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4479166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.6744791667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.1484375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.9895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.2630208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.3958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.6197916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.6979166667em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.7395833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0130208333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.015625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.34375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.515625em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.8177083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.9479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.09375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.1979166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.3697916667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.5677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.3489583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.84375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.9479166667em; width:0.1em; height:0em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.47395833333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.09895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.76302083333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.79166666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.97135416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.4739583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.3984375em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.5677083333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.4479166667em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.4895833333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.7239583333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.8958333333em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.5416666667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5130208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.4635416667em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.7630208333em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.921875em; width:0.1em; height:0em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.515625em; width:0.1em; height:0em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -1,22 +1,23 @@
<!-- Auto-Generated by MMA on: Sun Sep 28 11:30:05 2008 --> <!-- Auto-Generated by MMA on: Sun Nov 7 10:30:13 2010 -->
<HTML> <HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black> <BODY BGCOLOR="#B7DFFF" Text=Black>
<H1>Kfunk1</H1> <H1>Kfunk1</H1>
<P>Kfunk1.sty Clean funky style, tempo 100 - 125 The Grooves Main-A & Main C are a couple where C adds some brass So it's a good to use C only in the bars whare you need the brass. Note : I'm not a brass player, so the riffs are a bit dull, if somebody makes those riffs better, mplease upload the new style to www.kara-moon.com <P>Kfunk1.sty Clean funky style, tempo 100 - 125 The Grooves Main-A & Main C are a couple where C adds some brass So it's a good to use C only in the bars whare you need the brass. Note : I'm not a brass player, so the riffs are a bit dull, if somebody makes those riffs better, mplease upload the new style to www.kara-moon.com
<ul> <ul>
<LI><A Href=#Main-A>Main-A</a> <LI><A Href=#Kfunk1A>Kfunk1A</a>
<LI><A Href=#Fill-In-AA>Fill-In-AA</a> <LI><A Href=#Kfunk1FillAA>Kfunk1FillAA</a>
<LI><A Href=#Fill-In-AB>Fill-In-AB</a> <LI><A Href=#Kfunk1FillAB>Kfunk1FillAB</a>
<LI><A Href=#Main-B>Main-B</a> <LI><A Href=#Kfunk1B>Kfunk1B</a>
<LI><A Href=#Fill-In-BA>Fill-In-BA</a> <LI><A Href=#Kfunk1FillBA>Kfunk1FillBA</a>
<LI><A Href=#Fill-In-BB>Fill-In-BB</a> <LI><A Href=#Kfunk1FillBB>Kfunk1FillBB</a>
<LI><A Href=#Intro-A>Intro-A</a> <LI><A Href=#Kfunk1IntroA>Kfunk1IntroA</a>
<LI><A Href=#Ending-A>Ending-A</a> <LI><A Href=#Kfunk1EndingA>Kfunk1EndingA</a>
</ul> </ul>
<A Name=Main-A></a> <!-- GROOVE=kfunk1a FILE=Kfunk1_kfunk1a.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1A></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Main-A </H2> <H2> <A Href=Kfunk1_kfunk1a.html> Kfunk1A </a> </H2>
A nice funk quartet, nothing to heavy <B>(4)</B> A nice funk quartet, nothing to heavy <B>(4)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -33,10 +34,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=Fill-In-AA></a> <!-- GROOVE=kfunk1fillaa FILE=Kfunk1_kfunk1fillaa.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1FillAA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Fill-In-AA </H2> <H2> <A Href=Kfunk1_kfunk1fillaa.html> Kfunk1FillAA </a> </H2>
Fill In AA <B>(1)</B> Fill In AA <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -54,10 +56,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=Fill-In-AB></a> <!-- GROOVE=kfunk1fillab FILE=Kfunk1_kfunk1fillab.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1FillAB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Fill-In-AB </H2> <H2> <A Href=Kfunk1_kfunk1fillab.html> Kfunk1FillAB </a> </H2>
Fill In AB, we prepare the B substyle, we add some brass <B>(1)</B> Fill In AB, we prepare the B substyle, we add some brass <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -76,10 +79,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=Main-B></a> <!-- GROOVE=kfunk1b FILE=Kfunk1_kfunk1b.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1B></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Main-B </H2> <H2> <A Href=Kfunk1_kfunk1b.html> Kfunk1B </a> </H2>
Main B more busy & with brass <B>(4)</B> Main B more busy & with brass <B>(4)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -99,10 +103,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=Fill-In-BA></a> <!-- GROOVE=kfunk1fillba FILE=Kfunk1_kfunk1fillba.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1FillBA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Fill-In-BA </H2> <H2> <A Href=Kfunk1_kfunk1fillba.html> Kfunk1FillBA </a> </H2>
Fill In BA, go back to A-substyle <B>(1)</B> Fill In BA, go back to A-substyle <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -124,10 +129,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=Fill-In-BB></a> <!-- GROOVE=kfunk1fillbb FILE=Kfunk1_kfunk1fillbb.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1FillBB></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Fill-In-BB </H2> <H2> <A Href=Kfunk1_kfunk1fillbb.html> Kfunk1FillBB </a> </H2>
Fill In BB <B>(1)</B> Fill In BB <B>(1)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -148,10 +154,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=Intro-A></a> <!-- GROOVE=kfunk1introa FILE=Kfunk1_kfunk1introa.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1IntroA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Intro-A </H2> <H2> <A Href=Kfunk1_kfunk1introa.html> Kfunk1IntroA </a> </H2>
Intro A,drum starts others follow from second bar <B>(5)</B> Intro A,drum starts others follow from second bar <B>(5)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>
@ -171,10 +178,11 @@
</Table> </Table>
</TD></TR> </TD></TR>
</Table> </Table>
<A Name=Ending-A></a> <!-- GROOVE=kfunk1endinga FILE=Kfunk1_kfunk1endinga.html SRC=/usr/local/share/mma/lib/kara/Kfunk1.mma -->
<A Name=Kfunk1EndingA></a>
<Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%"> <Table Border=3 CELLSPACING=0 CELLPADDING=5 BGColor="#eeeeee" Width="60%">
<TR><TD> <TR><TD>
<H2> Ending-A </H2> <H2> <A Href=Kfunk1_kfunk1endinga.html> Kfunk1EndingA </a> </H2>
Ending A <B>(2)</B> Ending A <B>(2)</B>
</TD></TR> </TD></TR>
<TR><TD> <TR><TD>

View File

@ -0,0 +1,974 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:14 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: Kfunk1.mma</h2>
<h2>Groove: Kfunk1A</h2>
<p><b>Notes:</b> Kfunk1.sty Clean funky style, tempo 100 - 125 The Grooves Main-A & Main C are a couple where C adds some brass So it's a good to use C only in the bars whare you need the brass. Note : I'm not a brass player, so the riffs are a bit dull, if somebody makes those riffs better, mplease upload the new style to www.kara-moon.com
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> A nice funk quartet, nothing to heavy
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 4 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.375em; width:0.28125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-3</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 3.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0390625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.88802083333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.9140625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.1640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.4140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.6640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.9140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.1640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.4140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0390625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.2630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.8880208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9140625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.1380208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.1640625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.4140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0130208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.6640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.2630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.8880208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.9140625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5130208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.1640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.7630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.3880208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.4140625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0390625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.2630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.8880208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.9140625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.1640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.4140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.6640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.9140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.1640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.4140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0390625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.2630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.8880208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.9140625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.1640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.4140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0130208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.6640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.2630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.9140625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5130208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.1640625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.7630208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.3880208333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.4140625em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-4</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Organ3 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 3.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.625em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-5</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Organ3 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 3.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.28125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.875em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:1.125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.375em; width:0.5625em; height:4em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.125em; width:0.28125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 4.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:23.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:24.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:29.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:30.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:33.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:34.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:39.375em; width:0.1em; height:1em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 4 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9140625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:20.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:25.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:28.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.9140625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:35.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:38.125em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 4.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:21.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:26.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:31.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:36.875em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Pedalhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: PedalHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 4.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 4.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 2 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:40.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:20.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; bottom:0; left:30.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:22.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:27.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:32.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:37.5em; width:0.1em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,706 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:15 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: Kfunk1.mma</h2>
<h2>Groove: Kfunk1Endinga</h2>
<p><b>Notes:</b> Kfunk1.sty Clean funky style, tempo 100 - 125 The Grooves Main-A & Main C are a couple where C adds some brass So it's a good to use C only in the bars whare you need the brass. Note : I'm not a brass player, so the riffs are a bit dull, if somebody makes those riffs better, mplease upload the new style to www.kara-moon.com
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Ending A
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 2 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 3.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.5625em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.5625em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-3</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 3.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0911458333333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.1171875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.6640625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.6640625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.31510416667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.34114583333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.9140625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.94010416667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.59114583333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.6171875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.1640625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.19010416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.81510416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.84114583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.4140625em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.44010416667em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.6640625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.69010416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.31510416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.34114583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.9140625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.94010416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.56510416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.59114583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.1640625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.19010416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.81510416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.84114583333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.4140625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.44010416667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0911458333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.1171875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.6640625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.6640625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.3151041667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.3411458333em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9140625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.9401041667em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5911458333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.6171875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.1640625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.1901041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.8151041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.8411458333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.4140625em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.4401041667em; width:1.125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.6640625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.6901041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3151041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.3411458333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.9140625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.9401041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5651041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5911458333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.1640625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.1901041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.8151041667em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.8411458333em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.4140625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.4401041667em; width:0.1em; height:1em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-4</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Organ3 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 3.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.28125em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-5</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Organ3 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 3.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.28125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.875em; width:0.28125em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Lowtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: LowTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Midtom2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: MidTom2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.875em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.375em; width:0.1em; height:4em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Pedalhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: PedalHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.0em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:11.25em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:15.0em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:16.25em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:17.5em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:19.9479166667em; width:0.1em; height:1em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:20.0em">
<img style="position:absolute; bottom:0; left:10.0em; width:.05em; height:5em; border:.05em solid white" src="../black.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:10.625em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:12.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.4375em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:13.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:14.375em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.125em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:18.75em; width:0.1em; height:2em"
src="../blue.gif">
</div>
</Body></HTML>

View File

@ -0,0 +1,397 @@
<!-- Auto-Generated by MMA on: Sun Nov 7 10:30:14 2010 -->
<HTML>
<BODY BGCOLOR="#B7DFFF" Text=Black>
<h2>File: Kfunk1.mma</h2>
<h2>Groove: Kfunk1Fillaa</h2>
<p><b>Notes:</b> Kfunk1.sty Clean funky style, tempo 100 - 125 The Grooves Main-A & Main C are a couple where C adds some brass So it's a good to use C only in the bars whare you need the brass. Note : I'm not a brass player, so the riffs are a bit dull, if somebody makes those riffs better, mplease upload the new style to www.kara-moon.com
<p><b>Author:</b> Kara Music Production
<p><b>Description:</b> Fill In AA
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> SeqSize: 1 </td>
<td width=50%> Time (beats per bar): 4 </td>
</tr>
</Table>
<p> <b>Track Name: Bass-11</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: FingeredBass </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 2 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 4 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-3</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CleanGuitar </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 4.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0390625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.26302083333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.88802083333em; width:0.5625em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.9140625em; width:0.5625em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-4</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Organ3 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 5 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.28125em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Bass-5</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: Organ3 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Unify: 0 </td>
<td width=50%> Octave: 3 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 2.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.5625em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.28125em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Closedhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: ClosedHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 5.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.625em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.125em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:3.75em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:4.375em; width:0.1em; height:1em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.625em; width:0.1em; height:1em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Crashcymbal1</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: CrashCymbal1 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 0 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.97395833333em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Kickdrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: KickDrum2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 2 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:0.0em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:5.0em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Openhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: OpenHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:1.875em; width:0.1em; height:2em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:9.375em; width:0.1em; height:2em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Pedalhihat</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: PedalHiHat </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
</div>
<p> <b>Track Name: Drum-Snaredrum2</b>
<p><Table Border=0 Width=75%>
<tr>
<td width=50%> Voice/Tones: SnareDrum2 </td>
<td width=50%> Articulate: 90 </td>
</tr>
<tr>
<td width=50%> Volume: 110.0 </td>
<td width=50%> Harmony: None </td>
</tr>
<tr>
<td width=50%> Rskip: 0 </td>
<td width=50%> Rvolume: 0.0 </td>
</tr>
<tr>
<td width=50%> Rtime: 3 </td>
<td width=50%> SeqRND: Off </td>
</tr>
<tr>
<td width=50%> Strum: None </td>
</tr>
</Table>
<div style="position:relative;background-color:#99bdf4;
padding:0; border:.1em solid black; left:5em;
height:5em; width:10.0em">
<img style="position:absolute; border:.02em solid red;bottom:0; left:2.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.25em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:6.875em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:7.5em; width:0.1em; height:3em"
src="../blue.gif">
<img style="position:absolute; border:.02em solid red;bottom:0; left:8.125em; width:0.1em; height:3em"
src="../blue.gif">
</div>
</Body></HTML>

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