changeset 48:803edc47e825

Adding files, possibly some minor code changes
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Tue, 06 Mar 2012 17:11:46 +0000
parents 1726189a6317
children 3ce6dadd8167
files .DS_Store jnmr/midiEventHolder.cpp jnmr/midiEventHolder.h jnmr/testApp.cpp jnmr/testApp.h maxPatchToPlayFiles/RWC_files_to_audio2.maxpat maxPatchToPlayFiles/RWC_files_to_audio2a.maxpat maxPatchToPlayFiles/playMidiTranscription8.maxpat maxPatchToPlayFiles/playMidiTranscription9.maxpat workingNotes.rtf
diffstat 10 files changed, 15820 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
Binary file .DS_Store has changed
--- a/jnmr/midiEventHolder.cpp	Sun Feb 05 22:07:55 2012 +0000
+++ b/jnmr/midiEventHolder.cpp	Tue Mar 06 17:11:46 2012 +0000
@@ -132,6 +132,9 @@
 	
 	smoothIndex = 0;
 	smoothPlayPosition = 0.0;
+	causalPlayPosition = 0;
+	lastCausalUpdateTime = getTimeNow(0);
+	
 //	relativeSpeedForSmooth = 1.0;
 //	storedSmoothPlayPosition = smoothPlayPosition;
 //	lastSmoothUpdateTime = getTimeNow(0);
@@ -783,7 +786,7 @@
 	
 	if (runningInRealTime){
 		
-		bayesStruct.updateBestEstimate(timeDifference);
+		bayesStruct.updateBestEstimate(0);//was timedifference
 		//	bayesStruct.updateTmpBestEstimate(timeDifference);
 	}
 	
@@ -794,6 +797,8 @@
 		//smoothPlayPosition = bayesStruct.bestEstimate;
 	}
 	
+	updateCausalPlayPosition(getTimeNow(bayesStruct.lastBestEstimateUpdateTime));
+	
 //	playPositionInMillis = timeDifference;//based on updating from when we change period
 	//this to be added
 
@@ -857,12 +862,10 @@
 					(*fileOutput) << " corresponds to " << annotationTime;
 				}
 			(*fileOutput) << " \n";
-			
-
-	
+				
 		}
 	
-		printf("annotaions: rec tick time %i vs %i midi %i beat pos %f playing time now at %f :: annotaion %i loc % f time %f diff \t%f ms\n",  
+		printf("annotations: rec tick time %i vs %i midi %i beat pos %f playing time now at %f :: annotaion %i loc % f time %f diff \t%f ms\n",  
 			   recordedNoteOnMatrix[smoothIndex][0], annotationTick, recordedNoteOnMatrix[smoothIndex][1], 
 			   beatPositions[smoothIndex], playingTime, 
 			   annotationNote, annotationLocation, annotationTime, difference);
@@ -872,7 +875,7 @@
 	
 		
 		if ((*differenceOutput).is_open()){
-			(*differenceOutput) << beatPositions[smoothIndex] << "," << difference << "\n";
+			(*differenceOutput) << beatPositions[smoothIndex] << "," << difference << "," << playingTime << "," << (annotationTime*1000.0) << "\n";
 		//	printf("midi %i beat pos %f playing time now at %f :: annotaion %i loc % f time %f diff \t%f ms\n",  
 		//		   recordedNoteOnMatrix[smoothIndex][1], 
 		//		   beatPositions[smoothIndex], playingTime, 
@@ -889,6 +892,20 @@
 		
 }
 
+void midiEventHolder::updateCausalPlayPosition(const double& timeNow){
+	//projected position
+	double timeProjectionToMeet = 1000;//ms in future they will intersect
+	double difference =	bayesStruct.bestEstimate - causalPlayPosition;
+	causalSpeed = bayesStruct.speedEstimate;
+	causalSpeed += (difference/timeProjectionToMeet);
+	
+	if (causalSpeed < 0)
+		causalSpeed = 0;
+	
+	causalPlayPosition += causalSpeed * (timeNow - lastCausalUpdateTime);
+	lastCausalUpdateTime = timeNow;
+	
+}
 /*
 void midiEventHolder::updatePeriodValue(const double& millis){
 
@@ -985,9 +1002,12 @@
 		
 		xLocation = getLocationFromMillis(smoothPlayPosition);//bayesStruct.tmpBestEstimate
 		ofSetColor(0,250,0);//250,150, 250,100,0);
+	//	ofLine(xLocation, 0, xLocation, (*screenHeight));
+		
+		xLocation = getLocationFromMillis(causalPlayPosition);//bayesStruct.tmpBestEstimate
+		ofSetColor(0,250,0);//250,150, 250,100,0);
 		ofLine(xLocation, 0, xLocation, (*screenHeight));
 		
-		
 		//lines where matching window start and end are 
 		ofSetColor(0);//0,100,255);
 		xLocation = getLocationFromMillis(windowStartTime);
--- a/jnmr/midiEventHolder.h	Sun Feb 05 22:07:55 2012 +0000
+++ b/jnmr/midiEventHolder.h	Tue Mar 06 17:11:46 2012 +0000
@@ -178,6 +178,11 @@
 	double alignmentPosition;
 	double firstEventOffsetTimeMillis;
 	
+	double causalPlayPosition;
+	void updateCausalPlayPosition(const double& timeNow);
+	double lastCausalUpdateTime ;
+	double causalSpeed;
+	
 	void updateSmoothPositionTo(const double& newPosition);
 	int smoothIndex;
 	DoubleVector beatPositions;
--- a/jnmr/testApp.cpp	Sun Feb 05 22:07:55 2012 +0000
+++ b/jnmr/testApp.cpp	Tue Mar 06 17:11:46 2012 +0000
@@ -5,6 +5,7 @@
 	this->args = args;
 }
 
+
 //--------------------------------------------------------------
 void testApp::setup(){
 
@@ -17,7 +18,7 @@
 	
 	
 	
-//	diffFile.open("../../../data/FilesOut/diffTest.txt");
+// 	diffFile.open("../../../data/FilesOut/diffTest.txt");
 	
 	midiEvents.fileOutput = &myfile;
 	midiEvents.differenceOutput = &diffFile;
@@ -102,6 +103,14 @@
 		midiEvents.updatePlayPosition();//this fn calls	midiEvents.bayesStruct.updateBestEstimate();
 	}
 //	drawer.tickLocation+=20;
+	checkOSCmessages();
+	
+	if (midiEvents.recordedEventTimes.size() > 0)
+	checkNewScoreNote();
+	
+}
+
+void testApp::checkOSCmessages(){
 	
 	// check for waiting messages
 	while( receiver.hasWaitingMessages() )
@@ -120,11 +129,11 @@
 					startPlaying();
 					printf("starting to PLAY!!!");
 				}
-			//	printf("MIDI NOTE %i \n", newMidiOnPitch);
+				//	printf("MIDI NOTE %i \n", newMidiOnPitch);
 				midiEvents.newNoteOnEvent(newMidiOnPitch, velocity, time);
 				noteInStream.newNoteCounted(newMidiOnPitch);//counts notes for an overall score
 			}
-
+			
 		}
 		
 		if ( m.getAddress() == "/setSpeedPrior" )
@@ -137,7 +146,7 @@
 		
 		if ( m.getAddress() == "/startplaying" )
 		{
-//			prepareToStartOnNextNote();
+			//			prepareToStartOnNextNote();
 			startPlaying();
 		}
 		
@@ -151,7 +160,7 @@
 		{
 			midiEvents.bayesStruct.usingIntegratedTempoEstimate = true;
 		}
-	
+		
 		if ( m.getAddress() == "/MAPestimate" )
 		{
 			midiEvents.bayesStruct.usingIntegratedTempoEstimate = false;
@@ -171,15 +180,15 @@
 		
 		if ( m.getAddress() == "/minimumSpeedRatio" )
 		{
-				
+			
 			float minSpeed = m.getArgAsFloat(0);
 			//printf("minimum speed received is  %f and max is %f\n", minSpeed, midiEvents.bayesStruct.relativeSpeedLikelihood.getIndexInRealTerms(midiEvents.bayesStruct.relativeSpeedLikelihood.length-1));
 			if (minSpeed > 0 && minSpeed < midiEvents.bayesStruct.relativeSpeedLikelihood.getIndexInRealTerms(midiEvents.bayesStruct.relativeSpeedLikelihood.length-1)){
-			printf("minimum speed accepted is %f\n", minSpeed);
+				printf("minimum speed accepted is %f\n", minSpeed);
 				midiEvents.minimumMatchSpeed = minSpeed;
 			}
 		}
-
+		
 		if ( m.getAddress() == "/maximumSpeedRatio" )
 		{
 			
@@ -200,7 +209,7 @@
 				midiEvents.likelihoodToNoiseRatio = ratio;
 				printf("likelihood for events relative to noise uses ratio %f\n", ratio);
 			}
-		
+			
 		}
 		
 		if ( m.getAddress() == "/duration" )
@@ -223,9 +232,6 @@
 		
 	}//end while osc
 	
-	if (midiEvents.recordedEventTimes.size() > 0)
-	checkNewScoreNote();
-	
 }
 
 
--- a/jnmr/testApp.h	Sun Feb 05 22:07:55 2012 +0000
+++ b/jnmr/testApp.h	Tue Mar 06 17:11:46 2012 +0000
@@ -18,6 +18,8 @@
 
 //other users would need to change root in testApp setup to point to their director for the RWC files
 
+
+
 #include "ofMain.h"
 
 #include "MIDIFileReader.h"
@@ -67,6 +69,7 @@
 		void mouseReleased(int x, int y, int button);
 		void windowResized(int w, int h);
 
+	void checkOSCmessages();
 	void startPlaying();
 	void stopPlaying();
 	bool getFilenameFromDialogBox(string* fileNameToSave);
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/maxPatchToPlayFiles/RWC_files_to_audio2.maxpat	Tue Mar 06 17:11:46 2012 +0000
@@ -0,0 +1,3357 @@
+{
+	"patcher" : 	{
+		"fileversion" : 1,
+		"rect" : [ 591.0, 75.0, 1089.0, 872.0 ],
+		"bglocked" : 0,
+		"defrect" : [ 591.0, 75.0, 1089.0, 872.0 ],
+		"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+		"openinpresentation" : 1,
+		"default_fontsize" : 10.0,
+		"default_fontface" : 0,
+		"default_fontname" : "Verdana",
+		"gridonopen" : 0,
+		"gridsize" : [ 15.0, 15.0 ],
+		"gridsnaponopen" : 0,
+		"toolbarvisible" : 1,
+		"boxanimatetime" : 200,
+		"imprint" : 0,
+		"enablehscroll" : 1,
+		"enablevscroll" : 1,
+		"devicewidth" : 0.0,
+		"boxes" : [ 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "record~ midire 1",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "signal" ],
+					"patching_rect" : [ 1138.0, 428.0, 96.0, 19.0 ],
+					"id" : "obj-76",
+					"fontname" : "Verdana",
+					"numinlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "+~",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "signal" ],
+					"patching_rect" : [ 1445.0, 283.0, 32.5, 19.0 ],
+					"id" : "obj-12",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "\"Macintosh HD:/Users/andrew/Documents/work/RWCmidi-03.wav\"",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1057.0, -181.0, 494.0, 17.0 ],
+					"id" : "obj-47",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "time since started playing when bang",
+					"linecount" : 2,
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"patching_rect" : [ 553.0, 527.0, 150.0, 31.0 ],
+					"id" : "obj-43",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "bang" ],
+					"patching_rect" : [ 598.0, 614.0, 123.0, 19.0 ],
+					"id" : "obj-35",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 622.0, 540.0, 20.0, 20.0 ],
+					"id" : "obj-15",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "timer",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "float", "" ],
+					"patching_rect" : [ 601.0, 584.0, 37.0, 19.0 ],
+					"id" : "obj-8",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 746.0, 18.0, 20.0, 20.0 ],
+					"id" : "obj-39",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "delay 1000",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 720.0, -26.0, 66.0, 19.0 ],
+					"id" : "obj-33",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 486.0, -154.0, 20.0, 20.0 ],
+					"id" : "obj-29",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "delay 1000",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 1073.0, -328.0, 66.0, 19.0 ],
+					"id" : "obj-6",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 356.0, -105.0, 32.5, 17.0 ],
+					"id" : "obj-22",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b b",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang", "bang" ],
+					"patching_rect" : [ 323.0, -148.0, 34.0, 19.0 ],
+					"id" : "obj-10",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 279.0, -255.0, 96.0, 96.0 ],
+					"id" : "obj-9",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "bang" ],
+					"patching_rect" : [ 476.0, -240.0, 50.0, 19.0 ],
+					"id" : "obj-38",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ],
+					"patching_rect" : [ 414.0, -366.0, 20.0, 20.0 ],
+					"id" : "obj-34",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 494.0, -362.0, 20.0, 20.0 ],
+					"id" : "obj-31",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 549.0, -246.0, 32.5, 17.0 ],
+					"id" : "obj-23",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 389.0, -312.0, 33.0, 19.0 ],
+					"id" : "obj-21",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "counter 0 0 61",
+					"numoutlets" : 4,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "", "", "int" ],
+					"patching_rect" : [ 490.0, -297.0, 85.0, 19.0 ],
+					"id" : "obj-13",
+					"fontname" : "Verdana",
+					"numinlets" : 5
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 1014.0, -94.0, 20.0, 20.0 ],
+					"id" : "obj-68",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "write \"Macintosh HD:/Users/andrew/Documents/work/RWCmidi-03.wav\"",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1071.0, -63.0, 406.0, 17.0 ],
+					"id" : "obj-64",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend write",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1070.0, -118.0, 80.0, 19.0 ],
+					"id" : "obj-61",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 1048.0, -271.0, 20.0, 20.0 ],
+					"id" : "obj-51",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"fontsize" : 11.595187,
+					"outlettype" : [ "int", "bang" ],
+					"patching_rect" : [ 1288.0, -271.0, 50.0, 20.0 ],
+					"id" : "obj-58",
+					"fontname" : "Arial",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "combine \"Macintosh HD\" :/ Users/andrew/Documents / work/RWCmidi - version . wav @triggers 4 6 @padding 0 0 0 0 0 0 2",
+					"linecount" : 2,
+					"numoutlets" : 2,
+					"fontsize" : 11.595187,
+					"outlettype" : [ "", "" ],
+					"patching_rect" : [ 1048.0, -241.0, 608.0, 33.0 ],
+					"id" : "obj-59",
+					"fontname" : "Arial",
+					"numinlets" : 9
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "bang" ],
+					"patching_rect" : [ 746.0, 127.0, 50.0, 19.0 ],
+					"id" : "obj-32",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "writewave 3",
+					"linecount" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1266.0, 88.0, 50.0, 29.0 ],
+					"id" : "obj-30",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b b b",
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang", "bang", "bang" ],
+					"patching_rect" : [ 1233.0, -341.0, 46.0, 19.0 ],
+					"id" : "obj-27",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "i 0",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int" ],
+					"patching_rect" : [ 1233.0, -312.0, 45.5, 19.0 ],
+					"id" : "obj-26",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "writewave $1",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1294.0, 150.0, 78.0, 17.0 ],
+					"id" : "obj-24",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "append .wav",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1512.0, 75.0, 75.0, 19.0 ],
+					"id" : "obj-7",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "meter~",
+					"numoutlets" : 1,
+					"outlettype" : [ "float" ],
+					"patching_rect" : [ 973.0, 221.0, 59.0, 251.0 ],
+					"id" : "obj-5",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "meter~",
+					"numoutlets" : 1,
+					"outlettype" : [ "float" ],
+					"patching_rect" : [ 904.0, 220.0, 59.0, 251.0 ],
+					"id" : "obj-3",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "stop at end",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"patching_rect" : [ 648.0, 357.0, 150.0, 19.0 ],
+					"id" : "obj-124",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 505.0, 368.0, 66.0, 66.0 ],
+					"id" : "obj-122",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "set midire",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1256.0, 316.0, 61.0, 17.0 ],
+					"id" : "obj-117",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 1275.0, 287.0, 20.0, 20.0 ],
+					"id" : "obj-120",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "clear",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1285.0, 221.0, 35.0, 17.0 ],
+					"id" : "obj-118",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b i",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang", "int" ],
+					"patching_rect" : [ 1110.0, 131.0, 32.5, 19.0 ],
+					"id" : "obj-116",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "bang" ],
+					"patching_rect" : [ 1201.0, 156.0, 66.0, 19.0 ],
+					"id" : "obj-115",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "size $1",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1201.0, 193.0, 56.0, 17.0 ],
+					"id" : "obj-112",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number~",
+					"numoutlets" : 2,
+					"mode" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "signal", "float" ],
+					"sig" : 0.0,
+					"patching_rect" : [ 1106.0, 503.0, 56.0, 19.0 ],
+					"id" : "obj-108",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "adc~ 1 2",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "signal", "signal" ],
+					"patching_rect" : [ 1082.0, 185.0, 56.0, 19.0 ],
+					"id" : "obj-107",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1154.0, 311.0, 32.5, 17.0 ],
+					"id" : "obj-93",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "buffer~ midire 10000",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "float", "bang" ],
+					"patching_rect" : [ 1198.0, 247.0, 119.0, 19.0 ],
+					"id" : "obj-88",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 1110.0, 369.0, 32.5, 17.0 ],
+					"id" : "obj-86",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 1062.0, 268.0, 20.0, 20.0 ],
+					"id" : "obj-80",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ],
+					"patching_rect" : [ -90.0, 449.0, 20.0, 20.0 ],
+					"id" : "obj-78",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ -67.0, 473.0, 33.0, 19.0 ],
+					"id" : "obj-62",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "print",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"patching_rect" : [ -53.0, 505.0, 34.0, 19.0 ],
+					"id" : "obj-57",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "change this to load your own location of the RWC warped files",
+					"linecount" : 3,
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 578.0, 28.0, 330.0, 19.0 ],
+					"patching_rect" : [ 670.0, 38.0, 150.0, 43.0 ],
+					"presentation" : 1,
+					"id" : "obj-52",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "bang" ],
+					"presentation_rect" : [ 438.0, 20.0, 50.0, 19.0 ],
+					"patching_rect" : [ 1292.0, -345.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-56",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import \"Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth/RM-C005.MID\"",
+					"linecount" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 403.0, 89.0, 568.0, 29.0 ],
+					"id" : "obj-42",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "prefix /Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth",
+					"presentation_linecount" : 3,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"presentation_rect" : [ 571.0, 7.0, 363.0, 41.0 ],
+					"patching_rect" : [ 325.0, -426.0, 441.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-106",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend import",
+					"numoutlets" : 1,
+					"fontsize" : 11.595187,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 816.0, 1.0, 86.0, 20.0 ],
+					"id" : "obj-101",
+					"fontname" : "Arial",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "", "" ],
+					"presentation_rect" : [ 267.0, 18.0, 164.0, 18.0 ],
+					"items" : [ "RM-C001.MID", ",", "RM-C002.MID", ",", "RM-C003.MID", ",", "RM-C004.MID", ",", "RM-C005.MID", ",", "RM-C006.MID", ",", "RM-C007.MID", ",", "RM-C008.MID", ",", "RM-C009.MID", ",", "RM-C010.MID", ",", "RM-C011.MID", ",", "RM-C012.MID", ",", "RM-C013.MID", ",", "RM-C014.MID", ",", "RM-C015.MID", ",", "RM-C016.MID", ",", "RM-C017.MID", ",", "RM-C018.MID", ",", "RM-C019.MID", ",", "RM-C020.MID", ",", "RM-C021.MID", ",", "RM-C022.MID", ",", "RM-C023A.MID", ",", "RM-C023B.MID", ",", "RM-C023C.MID", ",", "RM-C023D.MID", ",", "RM-C023E.MID", ",", "RM-C024A.MID", ",", "RM-C024B.MID", ",", "RM-C024C.MID", ",", "RM-C025A.MID", ",", "RM-C025B.MID", ",", "RM-C025C.MID", ",", "RM-C025D.MID", ",", "RM-C026.MID", ",", "RM-C027.MID", ",", "RM-C028.MID", ",", "RM-C029.MID", ",", "RM-C030.MID", ",", "RM-C031.MID", ",", "RM-C032.MID", ",", "RM-C033.MID", ",", "RM-C034.MID", ",", "RM-C035A.MID", ",", "RM-C035B.MID", ",", "RM-C035C.MID", ",", "RM-C036.MID", ",", "RM-C037.MID", ",", "RM-C038.MID", ",", "RM-C039.MID", ",", "RM-C040.MID", ",", "RM-C041.MID", ",", "RM-C042.MID", ",", "RM-C043.MID", ",", "RM-C044.MID", ",", "RM-C045.MID", ",", "RM-C046.MID", ",", "RM-C047.MID", ",", "RM-C048.MID", ",", "RM-C049.MID", ",", "RM-C050.MID" ],
+					"types" : [  ],
+					"autopopulate" : 1,
+					"patching_rect" : [ 700.0, -396.0, 164.0, 18.0 ],
+					"presentation" : 1,
+					"id" : "obj-102",
+					"fontname" : "Arial",
+					"numinlets" : 1,
+					"prefix" : "Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth/"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess prefix /Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth",
+					"numoutlets" : 1,
+					"fontsize" : 11.595187,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 470.0, -468.0, 505.0, 20.0 ],
+					"id" : "obj-103",
+					"fontname" : "Arial",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"presentation_rect" : [ 523.0, 109.0, 20.0, 20.0 ],
+					"patching_rect" : [ 795.0, 496.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-87",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"triscale" : 0.9,
+					"fontsize" : 10.0,
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"outlettype" : [ "int", "bang" ],
+					"presentation_rect" : [ 522.0, 136.0, 63.0, 19.0 ],
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"patching_rect" : [ 916.0, 613.0, 63.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-66",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"triangle" : 0,
+					"numoutlets" : 2,
+					"triscale" : 0.9,
+					"fontsize" : 10.0,
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"cantchange" : 1,
+					"presentation_rect" : [ 522.0, 159.0, 64.0, 19.0 ],
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"patching_rect" : [ 916.0, 636.0, 64.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-75",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "number of events",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 587.0, 136.0, 97.0, 19.0 ],
+					"patching_rect" : [ 979.0, 615.0, 97.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-77",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"numoutlets" : 1,
+					"ftm_objref_conv" : 0,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"#init" : "",
+					"text" : [ "_($1 size)" ],
+					"presentation_rect" : [ 857.0, 614.0, 51.93457, 17.0 ],
+					"#untuple" : 0,
+					"#triggerall" : 0,
+					"patching_rect" : [ 857.0, 614.0, 51.93457, 17.0 ],
+					"#loadbang" : 0,
+					"presentation" : 1,
+					"id" : "obj-81",
+					"fontname" : "Verdana",
+					"numinlets" : 2,
+					"ftm_scope" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"numoutlets" : 1,
+					"ftm_objref_conv" : 0,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"#init" : "",
+					"text" : [ "_($1 duration)" ],
+					"presentation_rect" : [ 838.0, 637.0, 74.566406, 17.0 ],
+					"#untuple" : 0,
+					"#triggerall" : 0,
+					"patching_rect" : [ 838.0, 637.0, 74.566406, 17.0 ],
+					"#loadbang" : 0,
+					"presentation" : 1,
+					"id" : "obj-84",
+					"fontname" : "Verdana",
+					"numinlets" : 2,
+					"ftm_scope" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "duration in msec",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 587.0, 159.0, 93.0, 19.0 ],
+					"patching_rect" : [ 979.0, 638.0, 93.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-85",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import /Users/andrew/hg/midi-score-follower/MIDIfiles/test.mid",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 994.0, 551.0, 335.0, 17.0 ],
+					"id" : "obj-53",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ -28.0, 309.0, 68.0, 19.0 ],
+					"id" : "obj-28",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "148 74 0",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"presentation_rect" : [ 10.0, 226.0, 95.0, 17.0 ],
+					"patching_rect" : [ -131.0, 428.0, 95.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-50",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 86.0, 135.0, 32.5, 17.0 ],
+					"id" : "obj-41",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 250",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ 141.0, 150.0, 80.0, 19.0 ],
+					"id" : "obj-37",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "bang" ],
+					"presentation_rect" : [ 583.0, 228.0, 50.0, 19.0 ],
+					"patching_rect" : [ 141.0, 173.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-36",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ],
+					"presentation_rect" : [ 523.0, 204.0, 20.0, 20.0 ],
+					"patching_rect" : [ 89.0, 165.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-11",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "metro 250",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang" ],
+					"presentation_rect" : [ 517.0, 230.0, 63.0, 19.0 ],
+					"patching_rect" : [ 90.0, 201.0, 63.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-2",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"numoutlets" : 2,
+					"fontsize" : 12.0,
+					"outlettype" : [ "float", "bang" ],
+					"presentation_rect" : [ 282.0, 62.0, 57.0, 21.0 ],
+					"patching_rect" : [ 527.0, 270.0, 57.0, 21.0 ],
+					"presentation" : 1,
+					"id" : "obj-99",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p ftmPlayer",
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"outlettype" : [ "", "", "bang" ],
+					"patching_rect" : [ 45.0, 316.0, 476.0, 19.0 ],
+					"id" : "obj-60",
+					"fontname" : "Verdana",
+					"numinlets" : 2,
+					"patcher" : 					{
+						"fileversion" : 1,
+						"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"bglocked" : 0,
+						"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+						"openinpresentation" : 0,
+						"default_fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"gridonopen" : 0,
+						"gridsize" : [ 15.0, 15.0 ],
+						"gridsnaponopen" : 0,
+						"toolbarvisible" : 1,
+						"boxanimatetime" : 200,
+						"imprint" : 0,
+						"enablehscroll" : 1,
+						"enablevscroll" : 1,
+						"devicewidth" : 0.0,
+						"boxes" : [ 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numoutlets" : 0,
+									"patching_rect" : [ 350.0, 326.0, 25.0, 25.0 ],
+									"id" : "obj-3",
+									"numinlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"numoutlets" : 1,
+									"outlettype" : [ "float" ],
+									"patching_rect" : [ 336.0, 56.0, 25.0, 25.0 ],
+									"id" : "obj-1",
+									"numinlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "midi",
+									"numoutlets" : 0,
+									"fontsize" : 10.0,
+									"presentation_rect" : [ 52.0, 420.0, 150.0, 19.0 ],
+									"patching_rect" : [ 131.0, 214.0, 150.0, 19.0 ],
+									"presentation" : 1,
+									"id" : "obj-11",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p otherFtmControls",
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ],
+									"patching_rect" : [ 50.0, 109.0, 108.0, 19.0 ],
+									"id" : "obj-115",
+									"fontname" : "Verdana",
+									"numinlets" : 0,
+									"patcher" : 									{
+										"fileversion" : 1,
+										"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"bglocked" : 0,
+										"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+										"openinpresentation" : 0,
+										"default_fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"gridonopen" : 0,
+										"gridsize" : [ 15.0, 15.0 ],
+										"gridsnaponopen" : 0,
+										"toolbarvisible" : 1,
+										"boxanimatetime" : 200,
+										"imprint" : 0,
+										"enablehscroll" : 1,
+										"enablevscroll" : 1,
+										"devicewidth" : 0.0,
+										"boxes" : [ 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "ordinary file following (x) or else one shot test",
+													"linecount" : 2,
+													"presentation_linecount" : 2,
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"presentation_rect" : [ 52.0, 186.0, 156.0, 31.0 ],
+													"patching_rect" : [ 98.0, 56.0, 153.0, 31.0 ],
+													"presentation" : 1,
+													"id" : "obj-111",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 362.0, 263.0, 57.0, 19.0 ],
+													"id" : "obj-3",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"#init" : "",
+													"text" : [ "_loop 500 1500 1." ],
+													"presentation_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"patching_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"#loadbang" : 0,
+													"id" : "obj-4",
+													"fontname" : "Verdana",
+													"numinlets" : 2,
+													"ftm_scope" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (begin, end and speed) and loop",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 306.0, 167.0, 240.0, 19.0 ],
+													"id" : "obj-5",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"#init" : "",
+													"text" : [ "_play $play.seq 500 1500 1." ],
+													"presentation_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"patching_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"#loadbang" : 0,
+													"id" : "obj-6",
+													"fontname" : "Verdana",
+													"numinlets" : 2,
+													"ftm_scope" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (track, begin, end and speed) and play",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 370.0, 147.0, 272.0, 19.0 ],
+													"id" : "obj-7",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to next time",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 88.0, 258.0, 115.0, 19.0 ],
+													"id" : "obj-8",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "slider",
+													"orientation" : 1,
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"size" : 1001.0,
+													"patching_rect" : [ 162.0, 238.0, 169.0, 15.0 ],
+													"id" : "obj-9",
+													"numinlets" : 1,
+													"mult" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate or jump at given time",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 114.0, 121.0, 151.0, 19.0 ],
+													"id" : "obj-10",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "next",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 50.0, 257.0, 33.0, 17.0 ],
+													"id" : "obj-11",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "jump 300.",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 50.0, 119.0, 62.0, 17.0 ],
+													"id" : "obj-12",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed by giving a duration for the current segment",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 336.0, 281.0, 285.0, 19.0 ],
+													"id" : "obj-23",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (only begin and end) and play straight",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 354.0, 120.0, 270.0, 19.0 ],
+													"id" : "obj-24",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 86.0, 147.0, 116.0, 19.0 ],
+													"id" : "obj-25",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 0.5",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 299.0, 262.0, 58.0, 17.0 ],
+													"id" : "obj-26",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"#init" : "",
+													"text" : [ "_set 0 9999999" ],
+													"presentation_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"patching_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"#loadbang" : 0,
+													"id" : "obj-27",
+													"fontname" : "Verdana",
+													"numinlets" : 2,
+													"ftm_scope" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "flonum",
+													"numoutlets" : 2,
+													"triscale" : 0.9,
+													"fontsize" : 10.0,
+													"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+													"outlettype" : [ "float", "bang" ],
+													"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+													"patching_rect" : [ 104.0, 238.0, 56.0, 19.0 ],
+													"id" : "obj-28",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "duration 1000",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 252.0, 281.0, 79.0, 17.0 ],
+													"id" : "obj-29",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 2.",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 252.0, 262.0, 52.0, 17.0 ],
+													"id" : "obj-30",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "pause",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 50.0, 192.0, 40.0, 17.0 ],
+													"id" : "obj-31",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "locate 300.",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 50.0, 100.0, 67.0, 17.0 ],
+													"id" : "obj-32",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "sync $1",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 50.0, 238.0, 49.0, 17.0 ],
+													"id" : "obj-33",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"#init" : "",
+													"text" : [ "_set $play.seq 500 1500 1." ],
+													"presentation_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"patching_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"#loadbang" : 0,
+													"id" : "obj-40",
+													"fontname" : "Verdana",
+													"numinlets" : 2,
+													"ftm_scope" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "loop",
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ],
+													"patching_rect" : [ 50.0, 165.0, 32.5, 17.0 ],
+													"id" : "obj-41",
+													"fontname" : "Verdana",
+													"numinlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"numoutlets" : 1,
+													"outlettype" : [ "bang" ],
+													"patching_rect" : [ 50.0, 292.0, 15.0, 15.0 ],
+													"id" : "obj-50",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to gven time (output all events on the way)",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 326.0, 238.0, 274.0, 19.0 ],
+													"id" : "obj-54",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate halted at given time",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 119.0, 101.0, 143.0, 19.0 ],
+													"id" : "obj-55",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "loop current segment",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 85.0, 166.0, 116.0, 19.0 ],
+													"id" : "obj-57",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "stop playing and reset",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 86.0, 212.0, 121.0, 19.0 ],
+													"id" : "obj-58",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "halt playing",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 93.0, 193.0, 67.0, 19.0 ],
+													"id" : "obj-59",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment straight",
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 67.0, 292.0, 158.0, 19.0 ],
+													"id" : "obj-60",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "note that setting a new track stops and resets the player (play and loop start from beginning)",
+													"linecount" : 2,
+													"numoutlets" : 0,
+													"fontsize" : 10.0,
+													"patching_rect" : [ 277.0, 196.0, 266.0, 31.0 ],
+													"id" : "obj-62",
+													"fontname" : "Verdana",
+													"numinlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"numoutlets" : 0,
+													"patching_rect" : [ 147.357147, 371.0, 25.0, 25.0 ],
+													"id" : "obj-114",
+													"numinlets" : 1,
+													"comment" : ""
+												}
+
+											}
+ ],
+										"lines" : [ 											{
+												"patchline" : 												{
+													"source" : [ "obj-26", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-27", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-40", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-29", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-30", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-4", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-6", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-50", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-11", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-33", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-31", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-41", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-12", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-32", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-28", 0 ],
+													"destination" : [ "obj-33", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-9", 0 ],
+													"destination" : [ "obj-28", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+ ]
+									}
+,
+									"saved_object_attributes" : 									{
+										"default_fontface" : 0,
+										"globalpatchername" : "",
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontname" : "Arial",
+										"default_fontsize" : 12.0,
+										"fontname" : "Arial"
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "syntax:",
+									"numoutlets" : 0,
+									"fontsize" : 10.0,
+									"patching_rect" : [ 358.0, 168.0, 46.0, 19.0 ],
+									"id" : "obj-2",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "kill hanging notes when looping",
+									"hidden" : 1,
+									"numoutlets" : 0,
+									"fontsize" : 10.0,
+									"patching_rect" : [ 291.0, 203.0, 168.0, 19.0 ],
+									"id" : "obj-13",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment end",
+									"numoutlets" : 0,
+									"fontsize" : 10.0,
+									"patching_rect" : [ 433.0, 120.0, 93.0, 19.0 ],
+									"id" : "obj-21",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "change 0 -",
+									"hidden" : 1,
+									"numoutlets" : 3,
+									"fontsize" : 10.0,
+									"outlettype" : [ "", "int", "int" ],
+									"patching_rect" : [ 128.0, 202.0, 62.0, 19.0 ],
+									"id" : "obj-34",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"orientation" : 1,
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"size" : 1001.0,
+									"patching_rect" : [ 262.0, 120.0, 169.0, 15.0 ],
+									"id" : "obj-35",
+									"numinlets" : 1,
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"orientation" : 1,
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"size" : 1001.0,
+									"patching_rect" : [ 187.0, 100.0, 169.0, 15.0 ],
+									"id" : "obj-36",
+									"numinlets" : 1,
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "GM",
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ],
+									"presentation_rect" : [ 127.0, 442.0, 32.5, 17.0 ],
+									"patching_rect" : [ 203.0, 228.0, 32.5, 17.0 ],
+									"presentation" : 1,
+									"id" : "obj-37",
+									"fontname" : "Verdana",
+									"numinlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "panic",
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ],
+									"presentation_rect" : [ 85.0, 442.0, 37.0, 17.0 ],
+									"patching_rect" : [ 161.0, 228.0, 37.0, 17.0 ],
+									"presentation" : 1,
+									"id" : "obj-38",
+									"fontname" : "Verdana",
+									"numinlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "off",
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ],
+									"presentation_rect" : [ 48.0, 442.0, 32.5, 17.0 ],
+									"patching_rect" : [ 124.0, 228.0, 32.5, 17.0 ],
+									"presentation" : 1,
+									"id" : "obj-39",
+									"fontname" : "Verdana",
+									"numinlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"numoutlets" : 2,
+									"triscale" : 0.9,
+									"fontsize" : 10.0,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"patching_rect" : [ 262.0, 143.0, 55.0, 19.0 ],
+									"id" : "obj-42",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"numoutlets" : 2,
+									"triscale" : 0.9,
+									"fontsize" : 10.0,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"patching_rect" : [ 187.0, 143.0, 55.0, 19.0 ],
+									"id" : "obj-43",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.midiunparse",
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ],
+									"patching_rect" : [ 112.0, 249.0, 93.0, 19.0 ],
+									"id" : "obj-45",
+									"fontname" : "Verdana",
+									"numinlets" : 1,
+									"saved_object_attributes" : 									{
+										"ftm_objref_conv" : 0,
+										"ftm_scope" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"numoutlets" : 1,
+									"outlettype" : [ "bang" ],
+									"patching_rect" : [ 337.0, 228.0, 15.0, 15.0 ],
+									"id" : "obj-51",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"numoutlets" : 2,
+									"triscale" : 0.9,
+									"fontsize" : 10.0,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"patching_rect" : [ 215.0, 201.0, 72.0, 19.0 ],
+									"id" : "obj-52",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.play $play.seq",
+									"numoutlets" : 3,
+									"fontsize" : 18.0,
+									"outlettype" : [ "", "", "" ],
+									"patching_rect" : [ 112.0, 166.0, 244.0, 28.0 ],
+									"id" : "obj-53",
+									"fontname" : "Verdana",
+									"numinlets" : 4,
+									"saved_object_attributes" : 									{
+										"ftm_objref_conv" : 0,
+										"ftm_scope" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment beginning",
+									"numoutlets" : 0,
+									"fontsize" : 10.0,
+									"patching_rect" : [ 358.0, 100.0, 123.0, 19.0 ],
+									"id" : "obj-61",
+									"fontname" : "Verdana",
+									"numinlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"patching_rect" : [ 112.0, 40.0, 25.0, 25.0 ],
+									"id" : "obj-57",
+									"numinlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numoutlets" : 0,
+									"patching_rect" : [ 112.0, 328.0, 25.0, 25.0 ],
+									"id" : "obj-58",
+									"numinlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numoutlets" : 0,
+									"patching_rect" : [ 224.0, 328.0, 25.0, 25.0 ],
+									"id" : "obj-59",
+									"numinlets" : 1,
+									"comment" : ""
+								}
+
+							}
+ ],
+						"lines" : [ 							{
+								"patchline" : 								{
+									"source" : [ "obj-51", 0 ],
+									"destination" : [ "obj-3", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-59", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-45", 0 ],
+									"destination" : [ "obj-58", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-57", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 2 ],
+									"destination" : [ "obj-51", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-42", 0 ],
+									"destination" : [ "obj-53", 2 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-35", 0 ],
+									"destination" : [ "obj-42", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-52", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-43", 0 ],
+									"destination" : [ "obj-53", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-36", 0 ],
+									"destination" : [ "obj-43", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-34", 0 ],
+									"destination" : [ "obj-39", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-52", 0 ],
+									"destination" : [ "obj-34", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-39", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-38", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-37", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-115", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-1", 0 ],
+									"destination" : [ "obj-53", 3 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+ ]
+					}
+,
+					"saved_object_attributes" : 					{
+						"default_fontface" : 0,
+						"globalpatchername" : "",
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontname" : "Arial",
+						"default_fontsize" : 12.0,
+						"fontname" : "Arial"
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "pause",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"presentation_rect" : [ 62.0, 86.0, 51.0, 17.0 ],
+					"patching_rect" : [ 226.0, 269.0, 40.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-55",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "hear MIDI playing",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"patching_rect" : [ -32.0, 255.0, 150.0, 19.0 ],
+					"id" : "obj-54",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "next",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"presentation_rect" : [ 22.0, 86.0, 33.0, 17.0 ],
+					"patching_rect" : [ 182.0, 268.0, 33.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-25",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ],
+					"presentation_rect" : [ 188.0, 84.0, 20.0, 20.0 ],
+					"patching_rect" : [ -24.0, 341.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-4",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"patching_rect" : [ -15.0, 373.0, 33.0, 19.0 ],
+					"id" : "obj-1",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "zl slice 1",
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "", "" ],
+					"patching_rect" : [ -54.0, 200.0, 54.0, 19.0 ],
+					"id" : "obj-82",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ezdac~",
+					"varname" : "autohelp_dac",
+					"numoutlets" : 0,
+					"presentation_rect" : [ 186.0, 14.0, 45.0, 45.0 ],
+					"patching_rect" : [ 909.0, 164.0, 45.0, 45.0 ],
+					"presentation" : 1,
+					"id" : "obj-94",
+					"local" : 1,
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 306.0, 171.0, 20.0, 20.0 ],
+					"id" : "obj-71",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"patching_rect" : [ 422.0, 174.0, 20.0, 20.0 ],
+					"id" : "obj-70",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "74 0",
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ],
+					"presentation_rect" : [ 30.0, 255.0, 50.0, 17.0 ],
+					"patching_rect" : [ -47.0, 229.0, 50.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-67",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.object",
+					"text" : "sequence midi",
+					"numoutlets" : 2,
+					"ftm_objref_conv" : 0,
+					"persistence" : 0,
+					"fontsize" : 12.0,
+					"outlettype" : [ "", "" ],
+					"presentation_rect" : [ 851.0, 579.0, 165.820312, 20.0 ],
+					"description" : "sequence midi",
+					"patching_rect" : [ 851.0, 579.0, 165.820312, 20.0 ],
+					"editor_interface" : "matrix",
+					"id" : "obj-14",
+					"fontname" : "Verdana",
+					"numinlets" : 1,
+					"name" : "play.seq",
+					"ftm_scope" : 2,
+					"scope" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "play an FTM track",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"patching_rect" : [ 60.0, 23.0, 98.0, 19.0 ],
+					"id" : "obj-17",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "ftm.play",
+					"numoutlets" : 0,
+					"fontsize" : 24.0,
+					"patching_rect" : [ 54.0, -10.0, 108.0, 36.0 ],
+					"id" : "obj-18",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "FTM basic objects",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"patching_rect" : [ 48.0, -22.0, 97.0, 19.0 ],
+					"id" : "obj-19",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "fpic",
+					"numoutlets" : 0,
+					"patching_rect" : [ 8.0, -25.0, 54.0, 74.0 ],
+					"pic" : "ftm.help.jpg",
+					"id" : "obj-20",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "midiout",
+					"numoutlets" : 0,
+					"fontsize" : 10.0,
+					"patching_rect" : [ -9.0, 401.0, 48.0, 19.0 ],
+					"id" : "obj-44",
+					"fontname" : "Verdana",
+					"numinlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "play",
+					"numoutlets" : 1,
+					"fontsize" : 18.0,
+					"outlettype" : [ "" ],
+					"presentation_rect" : [ 18.0, 22.0, 52.0, 26.0 ],
+					"patching_rect" : [ 409.0, 130.0, 52.0, 26.0 ],
+					"presentation" : 1,
+					"id" : "obj-46",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "stop",
+					"numoutlets" : 1,
+					"fontsize" : 18.0,
+					"outlettype" : [ "" ],
+					"presentation_rect" : [ 86.0, 22.0, 51.0, 26.0 ],
+					"patching_rect" : [ 306.0, 129.0, 51.0, 26.0 ],
+					"presentation" : 1,
+					"id" : "obj-49",
+					"fontname" : "Verdana",
+					"numinlets" : 2
+				}
+
+			}
+ ],
+		"lines" : [ 			{
+				"patchline" : 				{
+					"source" : [ "obj-76", 0 ],
+					"destination" : [ "obj-108", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-12", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-117", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-93", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-86", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-88", 1 ],
+					"destination" : [ "obj-120", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-118", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-112", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-24", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-64", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 1 ],
+					"destination" : [ "obj-12", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 0 ],
+					"destination" : [ "obj-12", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-39", 0 ],
+					"destination" : [ "obj-33", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-39", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-33", 0 ],
+					"destination" : [ "obj-29", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-29", 0 ],
+					"destination" : [ "obj-46", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-10", 0 ],
+					"destination" : [ "obj-31", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-10", 1 ],
+					"destination" : [ "obj-22", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-9", 0 ],
+					"destination" : [ "obj-10", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-22", 0 ],
+					"destination" : [ "obj-34", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-103", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-13", 0 ],
+					"destination" : [ "obj-38", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-21", 0 ],
+					"destination" : [ "obj-13", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-13", 2 ],
+					"destination" : [ "obj-23", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 1 ],
+					"destination" : [ "obj-26", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 2 ],
+					"destination" : [ "obj-93", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-122", 0 ],
+					"destination" : [ "obj-27", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-26", 0 ],
+					"destination" : [ "obj-58", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-68", 0 ],
+					"destination" : [ "obj-64", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-51", 0 ],
+					"destination" : [ "obj-59", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-58", 0 ],
+					"destination" : [ "obj-59", 6 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-59", 0 ],
+					"destination" : [ "obj-61", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-122", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-56", 0 ],
+					"destination" : [ "obj-26", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-24", 0 ],
+					"destination" : [ "obj-30", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-26", 0 ],
+					"destination" : [ "obj-24", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 1 ],
+					"destination" : [ "obj-7", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 1 ],
+					"destination" : [ "obj-5", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 0 ],
+					"destination" : [ "obj-3", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 2 ],
+					"destination" : [ "obj-122", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 0 ],
+					"destination" : [ "obj-117", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-93", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-62", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-62", 0 ],
+					"destination" : [ "obj-57", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-78", 0 ],
+					"destination" : [ "obj-62", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-42", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 1 ],
+					"destination" : [ "obj-101", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-106", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-87", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-53", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-28", 0 ],
+					"destination" : [ "obj-4", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-41", 0 ],
+					"destination" : [ "obj-11", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-41", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-37", 0 ],
+					"destination" : [ "obj-36", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-36", 0 ],
+					"destination" : [ "obj-2", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-2", 0 ],
+					"destination" : [ "obj-25", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-11", 0 ],
+					"destination" : [ "obj-2", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-70", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-71", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-67", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-44", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-4", 0 ],
+					"destination" : [ "obj-1", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-1", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-82", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-55", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-25", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-99", 0 ],
+					"destination" : [ "obj-60", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-50", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-81", 0 ],
+					"destination" : [ "obj-66", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-84", 0 ],
+					"destination" : [ "obj-75", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-81", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-84", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-87", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 0 ],
+					"destination" : [ "obj-56", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-80", 0 ],
+					"destination" : [ "obj-86", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-115", 0 ],
+					"destination" : [ "obj-112", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-75", 0 ],
+					"destination" : [ "obj-116", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 1 ],
+					"destination" : [ "obj-115", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 0 ],
+					"destination" : [ "obj-80", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-21", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-34", 0 ],
+					"destination" : [ "obj-21", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-23", 0 ],
+					"destination" : [ "obj-34", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-38", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 0 ],
+					"destination" : [ "obj-6", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-6", 0 ],
+					"destination" : [ "obj-31", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-10", 1 ],
+					"destination" : [ "obj-13", 2 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-87", 0 ],
+					"destination" : [ "obj-8", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-15", 0 ],
+					"destination" : [ "obj-8", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-8", 0 ],
+					"destination" : [ "obj-35", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-61", 0 ],
+					"destination" : [ "obj-64", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-61", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-59", 0 ],
+					"destination" : [ "obj-47", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+ ]
+	}
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/maxPatchToPlayFiles/RWC_files_to_audio2a.maxpat	Tue Mar 06 17:11:46 2012 +0000
@@ -0,0 +1,3465 @@
+{
+	"patcher" : 	{
+		"fileversion" : 1,
+		"rect" : [ 591.0, 75.0, 1089.0, 872.0 ],
+		"bglocked" : 0,
+		"defrect" : [ 591.0, 75.0, 1089.0, 872.0 ],
+		"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+		"openinpresentation" : 1,
+		"default_fontsize" : 10.0,
+		"default_fontface" : 0,
+		"default_fontname" : "Verdana",
+		"gridonopen" : 0,
+		"gridsize" : [ 15.0, 15.0 ],
+		"gridsnaponopen" : 0,
+		"toolbarvisible" : 1,
+		"boxanimatetime" : 200,
+		"imprint" : 0,
+		"enablehscroll" : 1,
+		"enablevscroll" : 1,
+		"devicewidth" : 0.0,
+		"boxes" : [ 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "3. turn on and press button GO",
+					"linecount" : 2,
+					"patching_rect" : [ 226.0, -286.0, 154.0, 31.0 ],
+					"numinlets" : 1,
+					"id" : "obj-69",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "2. change max driver to soundflower",
+					"linecount" : 2,
+					"patching_rect" : [ 226.0, -323.0, 150.0, 31.0 ],
+					"numinlets" : 1,
+					"id" : "obj-65",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "1. change sound in system prefs to use soundflower 2 ch",
+					"linecount" : 3,
+					"patching_rect" : [ 226.0, -378.0, 150.0, 43.0 ],
+					"numinlets" : 1,
+					"id" : "obj-63",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "*~ 0.8",
+					"patching_rect" : [ 1123.0, 232.0, 45.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-45",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "signal" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "*~ 0.8",
+					"patching_rect" : [ 1065.0, 232.0, 45.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-40",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "signal" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "meter~",
+					"patching_rect" : [ 1476.0, 260.0, 59.0, 251.0 ],
+					"numinlets" : 1,
+					"id" : "obj-16",
+					"numoutlets" : 1,
+					"outlettype" : [ "float" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "+~",
+					"patching_rect" : [ 1099.0, 280.0, 32.5, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-12",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "signal" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "\"Macintosh HD:/Users/andrew/Documents/work/RWCmidi-60.wav\"",
+					"patching_rect" : [ 1057.0, -181.0, 494.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-47",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "time since started playing when bang",
+					"linecount" : 2,
+					"patching_rect" : [ 553.0, 527.0, 150.0, 31.0 ],
+					"numinlets" : 1,
+					"id" : "obj-43",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 598.0, 614.0, 123.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-35",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 622.0, 540.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-15",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "timer",
+					"patching_rect" : [ 601.0, 584.0, 37.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-8",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "float", "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 746.0, 18.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-39",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "delay 1000",
+					"patching_rect" : [ 720.0, -26.0, 66.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-33",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 486.0, -154.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-29",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "delay 1000",
+					"patching_rect" : [ 1073.0, -328.0, 66.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-6",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"patching_rect" : [ 356.0, -105.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-22",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b b",
+					"patching_rect" : [ 323.0, -148.0, 34.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-10",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "bang", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 279.0, -255.0, 96.0, 96.0 ],
+					"numinlets" : 1,
+					"id" : "obj-9",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 476.0, -240.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-38",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ 414.0, -366.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-34",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 494.0, -362.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-31",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"patching_rect" : [ 549.0, -246.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-23",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"patching_rect" : [ 389.0, -312.0, 33.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-21",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "counter 0 0 61",
+					"patching_rect" : [ 490.0, -297.0, 85.0, 19.0 ],
+					"numinlets" : 5,
+					"id" : "obj-13",
+					"fontname" : "Verdana",
+					"numoutlets" : 4,
+					"outlettype" : [ "int", "", "", "int" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 1075.0, -87.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-68",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "write \"Macintosh HD:/Users/andrew/Documents/work/RWCmidi-60.wav\"",
+					"patching_rect" : [ 1071.0, -63.0, 406.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-64",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend write",
+					"patching_rect" : [ 1070.0, -118.0, 80.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-61",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 1048.0, -271.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-51",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 1288.0, -271.0, 50.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-58",
+					"fontname" : "Arial",
+					"numoutlets" : 2,
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 11.595187
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "combine \"Macintosh HD\" :/ Users/andrew/Documents / work/RWCmidi - version . wav @triggers 4 6 @padding 0 0 0 0 0 0 2",
+					"linecount" : 2,
+					"patching_rect" : [ 1048.0, -241.0, 608.0, 33.0 ],
+					"numinlets" : 9,
+					"id" : "obj-59",
+					"fontname" : "Arial",
+					"numoutlets" : 2,
+					"outlettype" : [ "", "" ],
+					"fontsize" : 11.595187
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 746.0, 127.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-32",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "writewave 60",
+					"linecount" : 2,
+					"patching_rect" : [ 1266.0, 88.0, 50.0, 29.0 ],
+					"numinlets" : 2,
+					"id" : "obj-30",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b b b",
+					"patching_rect" : [ 1233.0, -341.0, 46.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-27",
+					"fontname" : "Verdana",
+					"numoutlets" : 3,
+					"outlettype" : [ "bang", "bang", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "i 0",
+					"patching_rect" : [ 1233.0, -312.0, 45.5, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-26",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "writewave $1",
+					"patching_rect" : [ 1294.0, 150.0, 78.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-24",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "meter~",
+					"patching_rect" : [ 973.0, 221.0, 59.0, 251.0 ],
+					"numinlets" : 1,
+					"id" : "obj-5",
+					"numoutlets" : 1,
+					"outlettype" : [ "float" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "meter~",
+					"patching_rect" : [ 904.0, 220.0, 59.0, 251.0 ],
+					"numinlets" : 1,
+					"id" : "obj-3",
+					"numoutlets" : 1,
+					"outlettype" : [ "float" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "stop at end",
+					"patching_rect" : [ 648.0, 357.0, 150.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-124",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 505.0, 368.0, 66.0, 66.0 ],
+					"numinlets" : 1,
+					"id" : "obj-122",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "set midire",
+					"patching_rect" : [ 1256.0, 316.0, 61.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-117",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 1275.0, 287.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-120",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "clear",
+					"patching_rect" : [ 1285.0, 221.0, 35.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-118",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b i",
+					"patching_rect" : [ 1054.0, 76.0, 32.5, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-116",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "bang", "int" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 1201.0, 156.0, 66.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-115",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "size $1",
+					"patching_rect" : [ 1201.0, 193.0, 56.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-112",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number~",
+					"mode" : 2,
+					"patching_rect" : [ 1106.0, 503.0, 56.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-108",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"sig" : 0.0,
+					"outlettype" : [ "signal", "float" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "adc~ 1 2",
+					"patching_rect" : [ 1082.0, 185.0, 56.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-107",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "signal", "signal" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "write",
+					"patching_rect" : [ 1208.0, 351.0, 61.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-104",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"patching_rect" : [ 1154.0, 311.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-93",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "buffer~ midire 10000 1",
+					"patching_rect" : [ 1198.0, 247.0, 130.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-88",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"patching_rect" : [ 1062.0, 303.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-86",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 1062.0, 268.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-80",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "record~ midire",
+					"patching_rect" : [ 1123.0, 413.0, 102.0, 19.0 ],
+					"numinlets" : 3,
+					"id" : "obj-76",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "signal" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ -90.0, 449.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-78",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"patching_rect" : [ -67.0, 473.0, 33.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-62",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "print",
+					"patching_rect" : [ -53.0, 505.0, 34.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-57",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "change this to load your own location of the RWC warped files",
+					"linecount" : 3,
+					"presentation_rect" : [ 578.0, 28.0, 330.0, 19.0 ],
+					"patching_rect" : [ 670.0, 38.0, 150.0, 43.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-52",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"presentation_rect" : [ 438.0, 20.0, 50.0, 19.0 ],
+					"patching_rect" : [ 1292.0, -345.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-56",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import \"Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth/RM-C001.MID\"",
+					"linecount" : 2,
+					"patching_rect" : [ 403.0, 89.0, 568.0, 29.0 ],
+					"numinlets" : 2,
+					"id" : "obj-42",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "prefix /Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth",
+					"presentation_linecount" : 3,
+					"presentation_rect" : [ 571.0, 7.0, 363.0, 41.0 ],
+					"patching_rect" : [ 325.0, -426.0, 441.0, 17.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-106",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend import",
+					"patching_rect" : [ 816.0, 1.0, 86.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-101",
+					"fontname" : "Arial",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 11.595187
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"presentation_rect" : [ 267.0, 18.0, 164.0, 18.0 ],
+					"prefix" : "Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth/",
+					"items" : [ "RM-C001.MID", ",", "RM-C002.MID", ",", "RM-C003.MID", ",", "RM-C004.MID", ",", "RM-C005.MID", ",", "RM-C006.MID", ",", "RM-C007.MID", ",", "RM-C008.MID", ",", "RM-C009.MID", ",", "RM-C010.MID", ",", "RM-C011.MID", ",", "RM-C012.MID", ",", "RM-C013.MID", ",", "RM-C014.MID", ",", "RM-C015.MID", ",", "RM-C016.MID", ",", "RM-C017.MID", ",", "RM-C018.MID", ",", "RM-C019.MID", ",", "RM-C020.MID", ",", "RM-C021.MID", ",", "RM-C022.MID", ",", "RM-C023A.MID", ",", "RM-C023B.MID", ",", "RM-C023C.MID", ",", "RM-C023D.MID", ",", "RM-C023E.MID", ",", "RM-C024A.MID", ",", "RM-C024B.MID", ",", "RM-C024C.MID", ",", "RM-C025A.MID", ",", "RM-C025B.MID", ",", "RM-C025C.MID", ",", "RM-C025D.MID", ",", "RM-C026.MID", ",", "RM-C027.MID", ",", "RM-C028.MID", ",", "RM-C029.MID", ",", "RM-C030.MID", ",", "RM-C031.MID", ",", "RM-C032.MID", ",", "RM-C033.MID", ",", "RM-C034.MID", ",", "RM-C035A.MID", ",", "RM-C035B.MID", ",", "RM-C035C.MID", ",", "RM-C036.MID", ",", "RM-C037.MID", ",", "RM-C038.MID", ",", "RM-C039.MID", ",", "RM-C040.MID", ",", "RM-C041.MID", ",", "RM-C042.MID", ",", "RM-C043.MID", ",", "RM-C044.MID", ",", "RM-C045.MID", ",", "RM-C046.MID", ",", "RM-C047.MID", ",", "RM-C048.MID", ",", "RM-C049.MID", ",", "RM-C050.MID" ],
+					"types" : [  ],
+					"patching_rect" : [ 700.0, -396.0, 164.0, 18.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-102",
+					"fontname" : "Arial",
+					"numoutlets" : 3,
+					"outlettype" : [ "int", "", "" ],
+					"autopopulate" : 1,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess prefix /Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth",
+					"patching_rect" : [ 470.0, -468.0, 505.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-103",
+					"fontname" : "Arial",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 11.595187
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"presentation_rect" : [ 523.0, 109.0, 20.0, 20.0 ],
+					"patching_rect" : [ 795.0, 496.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-87",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"presentation_rect" : [ 522.0, 136.0, 63.0, 19.0 ],
+					"triscale" : 0.9,
+					"patching_rect" : [ 916.0, 613.0, 63.0, 19.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-66",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"presentation_rect" : [ 522.0, 159.0, 64.0, 19.0 ],
+					"triscale" : 0.9,
+					"patching_rect" : [ 843.0, 676.0, 64.0, 19.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-75",
+					"cantchange" : 1,
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"triangle" : 0,
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "number of events",
+					"presentation_rect" : [ 587.0, 136.0, 97.0, 19.0 ],
+					"patching_rect" : [ 979.0, 615.0, 97.0, 19.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-77",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"presentation_rect" : [ 857.0, 614.0, 51.93457, 17.0 ],
+					"#loadbang" : 0,
+					"ftm_scope" : 1,
+					"patching_rect" : [ 857.0, 614.0, 51.93457, 17.0 ],
+					"text" : [ "_($1 size)" ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-81",
+					"ftm_objref_conv" : 0,
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"#untuple" : 0,
+					"#init" : "",
+					"outlettype" : [ "" ],
+					"#triggerall" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"presentation_rect" : [ 838.0, 637.0, 74.566406, 17.0 ],
+					"#loadbang" : 0,
+					"ftm_scope" : 0,
+					"patching_rect" : [ 838.0, 637.0, 74.566406, 17.0 ],
+					"text" : [ "_($1 duration)" ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-84",
+					"ftm_objref_conv" : 0,
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"#untuple" : 0,
+					"#init" : "",
+					"outlettype" : [ "" ],
+					"#triggerall" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "duration in msec",
+					"presentation_rect" : [ 587.0, 159.0, 93.0, 19.0 ],
+					"patching_rect" : [ 979.0, 638.0, 93.0, 19.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-85",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import /Users/andrew/hg/midi-score-follower/MIDIfiles/test.mid",
+					"patching_rect" : [ 994.0, 551.0, 335.0, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-53",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"patching_rect" : [ -28.0, 309.0, 68.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-28",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "151 68 38",
+					"presentation_rect" : [ 10.0, 226.0, 95.0, 17.0 ],
+					"patching_rect" : [ -131.0, 428.0, 95.0, 17.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-50",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"patching_rect" : [ 86.0, 135.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"id" : "obj-41",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 250",
+					"patching_rect" : [ 141.0, 150.0, 80.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-37",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"presentation_rect" : [ 583.0, 228.0, 50.0, 19.0 ],
+					"patching_rect" : [ 141.0, 173.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-36",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"presentation_rect" : [ 523.0, 204.0, 20.0, 20.0 ],
+					"patching_rect" : [ 89.0, 165.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-11",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "metro 250",
+					"presentation_rect" : [ 517.0, 230.0, 63.0, 19.0 ],
+					"patching_rect" : [ 90.0, 201.0, 63.0, 19.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-2",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"presentation_rect" : [ 282.0, 62.0, 57.0, 21.0 ],
+					"patching_rect" : [ 527.0, 270.0, 57.0, 21.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-99",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 12.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p ftmPlayer",
+					"patching_rect" : [ 45.0, 316.0, 476.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-60",
+					"fontname" : "Verdana",
+					"numoutlets" : 3,
+					"outlettype" : [ "", "", "bang" ],
+					"fontsize" : 10.0,
+					"patcher" : 					{
+						"fileversion" : 1,
+						"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"bglocked" : 0,
+						"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+						"openinpresentation" : 0,
+						"default_fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"gridonopen" : 0,
+						"gridsize" : [ 15.0, 15.0 ],
+						"gridsnaponopen" : 0,
+						"toolbarvisible" : 1,
+						"boxanimatetime" : 200,
+						"imprint" : 0,
+						"enablehscroll" : 1,
+						"enablevscroll" : 1,
+						"devicewidth" : 0.0,
+						"boxes" : [ 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"patching_rect" : [ 350.0, 326.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"id" : "obj-3",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 336.0, 56.0, 25.0, 25.0 ],
+									"numinlets" : 0,
+									"id" : "obj-1",
+									"numoutlets" : 1,
+									"outlettype" : [ "float" ],
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "midi",
+									"presentation_rect" : [ 52.0, 420.0, 150.0, 19.0 ],
+									"patching_rect" : [ 131.0, 214.0, 150.0, 19.0 ],
+									"numinlets" : 1,
+									"presentation" : 1,
+									"id" : "obj-11",
+									"fontname" : "Verdana",
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p otherFtmControls",
+									"patching_rect" : [ 50.0, 109.0, 108.0, 19.0 ],
+									"numinlets" : 0,
+									"id" : "obj-115",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"patcher" : 									{
+										"fileversion" : 1,
+										"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"bglocked" : 0,
+										"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+										"openinpresentation" : 0,
+										"default_fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"gridonopen" : 0,
+										"gridsize" : [ 15.0, 15.0 ],
+										"gridsnaponopen" : 0,
+										"toolbarvisible" : 1,
+										"boxanimatetime" : 200,
+										"imprint" : 0,
+										"enablehscroll" : 1,
+										"enablevscroll" : 1,
+										"devicewidth" : 0.0,
+										"boxes" : [ 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "ordinary file following (x) or else one shot test",
+													"linecount" : 2,
+													"presentation_linecount" : 2,
+													"presentation_rect" : [ 52.0, 186.0, 156.0, 31.0 ],
+													"patching_rect" : [ 98.0, 56.0, 153.0, 31.0 ],
+													"numinlets" : 1,
+													"presentation" : 1,
+													"id" : "obj-111",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed",
+													"patching_rect" : [ 362.0, 263.0, 57.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-3",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"presentation_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"patching_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"text" : [ "_loop 500 1500 1." ],
+													"numinlets" : 2,
+													"id" : "obj-4",
+													"ftm_objref_conv" : 0,
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"#untuple" : 0,
+													"#init" : "",
+													"outlettype" : [ "" ],
+													"#triggerall" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (begin, end and speed) and loop",
+													"patching_rect" : [ 306.0, 167.0, 240.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-5",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"presentation_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"patching_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"text" : [ "_play $play.seq 500 1500 1." ],
+													"numinlets" : 2,
+													"id" : "obj-6",
+													"ftm_objref_conv" : 0,
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"#untuple" : 0,
+													"#init" : "",
+													"outlettype" : [ "" ],
+													"#triggerall" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (track, begin, end and speed) and play",
+													"patching_rect" : [ 370.0, 147.0, 272.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-7",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to next time",
+													"patching_rect" : [ 88.0, 258.0, 115.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-8",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "slider",
+													"patching_rect" : [ 162.0, 238.0, 169.0, 15.0 ],
+													"numinlets" : 1,
+													"id" : "obj-9",
+													"numoutlets" : 1,
+													"size" : 1001.0,
+													"orientation" : 1,
+													"outlettype" : [ "" ],
+													"mult" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate or jump at given time",
+													"patching_rect" : [ 114.0, 121.0, 151.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-10",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "next",
+													"patching_rect" : [ 50.0, 257.0, 33.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-11",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "jump 300.",
+													"patching_rect" : [ 50.0, 119.0, 62.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-12",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed by giving a duration for the current segment",
+													"patching_rect" : [ 336.0, 281.0, 285.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-23",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (only begin and end) and play straight",
+													"patching_rect" : [ 354.0, 120.0, 270.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-24",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment",
+													"patching_rect" : [ 86.0, 147.0, 116.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-25",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 0.5",
+													"patching_rect" : [ 299.0, 262.0, 58.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-26",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"presentation_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"patching_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"text" : [ "_set 0 9999999" ],
+													"numinlets" : 2,
+													"id" : "obj-27",
+													"ftm_objref_conv" : 0,
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"#untuple" : 0,
+													"#init" : "",
+													"outlettype" : [ "" ],
+													"#triggerall" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "flonum",
+													"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+													"triscale" : 0.9,
+													"patching_rect" : [ 104.0, 238.0, 56.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-28",
+													"fontname" : "Verdana",
+													"numoutlets" : 2,
+													"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+													"outlettype" : [ "float", "bang" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "duration 1000",
+													"patching_rect" : [ 252.0, 281.0, 79.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-29",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 2.",
+													"patching_rect" : [ 252.0, 262.0, 52.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-30",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "pause",
+													"patching_rect" : [ 50.0, 192.0, 40.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-31",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "locate 300.",
+													"patching_rect" : [ 50.0, 100.0, 67.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-32",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "sync $1",
+													"patching_rect" : [ 50.0, 238.0, 49.0, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-33",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"presentation_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"patching_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"text" : [ "_set $play.seq 500 1500 1." ],
+													"numinlets" : 2,
+													"id" : "obj-40",
+													"ftm_objref_conv" : 0,
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"#untuple" : 0,
+													"#init" : "",
+													"outlettype" : [ "" ],
+													"#triggerall" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "loop",
+													"patching_rect" : [ 50.0, 165.0, 32.5, 17.0 ],
+													"numinlets" : 2,
+													"id" : "obj-41",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"patching_rect" : [ 50.0, 292.0, 15.0, 15.0 ],
+													"numinlets" : 1,
+													"id" : "obj-50",
+													"numoutlets" : 1,
+													"outlettype" : [ "bang" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to gven time (output all events on the way)",
+													"patching_rect" : [ 326.0, 238.0, 274.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-54",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate halted at given time",
+													"patching_rect" : [ 119.0, 101.0, 143.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-55",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "loop current segment",
+													"patching_rect" : [ 85.0, 166.0, 116.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-57",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "stop playing and reset",
+													"patching_rect" : [ 86.0, 212.0, 121.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-58",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "halt playing",
+													"patching_rect" : [ 93.0, 193.0, 67.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-59",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment straight",
+													"patching_rect" : [ 67.0, 292.0, 158.0, 19.0 ],
+													"numinlets" : 1,
+													"id" : "obj-60",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "note that setting a new track stops and resets the player (play and loop start from beginning)",
+													"linecount" : 2,
+													"patching_rect" : [ 277.0, 196.0, 266.0, 31.0 ],
+													"numinlets" : 1,
+													"id" : "obj-62",
+													"fontname" : "Verdana",
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"patching_rect" : [ 147.357147, 371.0, 25.0, 25.0 ],
+													"numinlets" : 1,
+													"id" : "obj-114",
+													"numoutlets" : 0,
+													"comment" : ""
+												}
+
+											}
+ ],
+										"lines" : [ 											{
+												"patchline" : 												{
+													"source" : [ "obj-9", 0 ],
+													"destination" : [ "obj-28", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-28", 0 ],
+													"destination" : [ "obj-33", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-32", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-12", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-41", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-31", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-33", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-11", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-50", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-6", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-4", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-30", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-29", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-40", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-27", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-26", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+ ]
+									}
+,
+									"saved_object_attributes" : 									{
+										"default_fontsize" : 12.0,
+										"fontname" : "Arial",
+										"globalpatchername" : "",
+										"default_fontface" : 0,
+										"fontface" : 0,
+										"default_fontname" : "Arial",
+										"fontsize" : 12.0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "syntax:",
+									"patching_rect" : [ 358.0, 168.0, 46.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-2",
+									"fontname" : "Verdana",
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "kill hanging notes when looping",
+									"hidden" : 1,
+									"patching_rect" : [ 291.0, 203.0, 168.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-13",
+									"fontname" : "Verdana",
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment end",
+									"patching_rect" : [ 433.0, 120.0, 93.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-21",
+									"fontname" : "Verdana",
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "change 0 -",
+									"hidden" : 1,
+									"patching_rect" : [ 128.0, 202.0, 62.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-34",
+									"fontname" : "Verdana",
+									"numoutlets" : 3,
+									"outlettype" : [ "", "int", "int" ],
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"patching_rect" : [ 262.0, 120.0, 169.0, 15.0 ],
+									"numinlets" : 1,
+									"id" : "obj-35",
+									"numoutlets" : 1,
+									"size" : 1001.0,
+									"orientation" : 1,
+									"outlettype" : [ "" ],
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"patching_rect" : [ 187.0, 100.0, 169.0, 15.0 ],
+									"numinlets" : 1,
+									"id" : "obj-36",
+									"numoutlets" : 1,
+									"size" : 1001.0,
+									"orientation" : 1,
+									"outlettype" : [ "" ],
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "GM",
+									"presentation_rect" : [ 127.0, 442.0, 32.5, 17.0 ],
+									"patching_rect" : [ 203.0, 228.0, 32.5, 17.0 ],
+									"numinlets" : 2,
+									"presentation" : 1,
+									"id" : "obj-37",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "panic",
+									"presentation_rect" : [ 85.0, 442.0, 37.0, 17.0 ],
+									"patching_rect" : [ 161.0, 228.0, 37.0, 17.0 ],
+									"numinlets" : 2,
+									"presentation" : 1,
+									"id" : "obj-38",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "off",
+									"presentation_rect" : [ 48.0, 442.0, 32.5, 17.0 ],
+									"patching_rect" : [ 124.0, 228.0, 32.5, 17.0 ],
+									"numinlets" : 2,
+									"presentation" : 1,
+									"id" : "obj-39",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"triscale" : 0.9,
+									"patching_rect" : [ 262.0, 143.0, 55.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-42",
+									"fontname" : "Verdana",
+									"numoutlets" : 2,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"triscale" : 0.9,
+									"patching_rect" : [ 187.0, 143.0, 55.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-43",
+									"fontname" : "Verdana",
+									"numoutlets" : 2,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.midiunparse",
+									"patching_rect" : [ 112.0, 249.0, 93.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-45",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"patching_rect" : [ 337.0, 228.0, 15.0, 15.0 ],
+									"numinlets" : 1,
+									"id" : "obj-51",
+									"numoutlets" : 1,
+									"outlettype" : [ "bang" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"triscale" : 0.9,
+									"patching_rect" : [ 215.0, 201.0, 72.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-52",
+									"fontname" : "Verdana",
+									"numoutlets" : 2,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.play $play.seq",
+									"patching_rect" : [ 112.0, 166.0, 244.0, 28.0 ],
+									"numinlets" : 4,
+									"id" : "obj-53",
+									"fontname" : "Verdana",
+									"numoutlets" : 3,
+									"outlettype" : [ "", "", "" ],
+									"fontsize" : 18.0,
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment beginning",
+									"patching_rect" : [ 358.0, 100.0, 123.0, 19.0 ],
+									"numinlets" : 1,
+									"id" : "obj-61",
+									"fontname" : "Verdana",
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 112.0, 40.0, 25.0, 25.0 ],
+									"numinlets" : 0,
+									"id" : "obj-57",
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"patching_rect" : [ 112.0, 328.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"id" : "obj-58",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"patching_rect" : [ 224.0, 328.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"id" : "obj-59",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+ ],
+						"lines" : [ 							{
+								"patchline" : 								{
+									"source" : [ "obj-1", 0 ],
+									"destination" : [ "obj-53", 3 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-115", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-37", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-38", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-39", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-52", 0 ],
+									"destination" : [ "obj-34", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-34", 0 ],
+									"destination" : [ "obj-39", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-36", 0 ],
+									"destination" : [ "obj-43", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-43", 0 ],
+									"destination" : [ "obj-53", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-52", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-35", 0 ],
+									"destination" : [ "obj-42", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-42", 0 ],
+									"destination" : [ "obj-53", 2 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 2 ],
+									"destination" : [ "obj-51", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-57", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-45", 0 ],
+									"destination" : [ "obj-58", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-59", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-51", 0 ],
+									"destination" : [ "obj-3", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+ ]
+					}
+,
+					"saved_object_attributes" : 					{
+						"default_fontsize" : 12.0,
+						"fontname" : "Arial",
+						"globalpatchername" : "",
+						"default_fontface" : 0,
+						"fontface" : 0,
+						"default_fontname" : "Arial",
+						"fontsize" : 12.0
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "pause",
+					"presentation_rect" : [ 62.0, 86.0, 51.0, 17.0 ],
+					"patching_rect" : [ 226.0, 269.0, 40.0, 17.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-55",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "hear MIDI playing",
+					"patching_rect" : [ -32.0, 255.0, 150.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-54",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "next",
+					"presentation_rect" : [ 22.0, 86.0, 33.0, 17.0 ],
+					"patching_rect" : [ 182.0, 268.0, 33.0, 17.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-25",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"presentation_rect" : [ 188.0, 84.0, 20.0, 20.0 ],
+					"patching_rect" : [ -24.0, 341.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-4",
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"patching_rect" : [ -15.0, 373.0, 33.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-1",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "zl slice 1",
+					"patching_rect" : [ -54.0, 200.0, 54.0, 19.0 ],
+					"numinlets" : 2,
+					"id" : "obj-82",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ezdac~",
+					"varname" : "autohelp_dac",
+					"presentation_rect" : [ 186.0, 14.0, 45.0, 45.0 ],
+					"patching_rect" : [ 909.0, 164.0, 45.0, 45.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-94",
+					"local" : 1,
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 306.0, 171.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-71",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 422.0, 174.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"id" : "obj-70",
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "68 38",
+					"presentation_rect" : [ 30.0, 255.0, 50.0, 17.0 ],
+					"patching_rect" : [ -47.0, 229.0, 50.0, 17.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-67",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.object",
+					"text" : "sequence midi",
+					"presentation_rect" : [ 851.0, 579.0, 165.820312, 20.0 ],
+					"scope" : 0,
+					"ftm_scope" : 2,
+					"description" : "sequence midi",
+					"patching_rect" : [ 851.0, 579.0, 165.820312, 20.0 ],
+					"persistence" : 0,
+					"numinlets" : 1,
+					"id" : "obj-14",
+					"ftm_objref_conv" : 0,
+					"name" : "play.seq",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"outlettype" : [ "", "" ],
+					"editor_interface" : "matrix",
+					"fontsize" : 12.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "play an FTM track",
+					"patching_rect" : [ 60.0, 23.0, 98.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-17",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "ftm.play",
+					"patching_rect" : [ 54.0, -10.0, 108.0, 36.0 ],
+					"numinlets" : 1,
+					"id" : "obj-18",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 24.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "FTM basic objects",
+					"patching_rect" : [ 48.0, -22.0, 97.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-19",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "fpic",
+					"patching_rect" : [ 8.0, -25.0, 54.0, 74.0 ],
+					"pic" : "ftm.help.jpg",
+					"numinlets" : 1,
+					"id" : "obj-20",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "midiout",
+					"patching_rect" : [ -9.0, 401.0, 48.0, 19.0 ],
+					"numinlets" : 1,
+					"id" : "obj-44",
+					"fontname" : "Verdana",
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "play",
+					"presentation_rect" : [ 18.0, 22.0, 52.0, 26.0 ],
+					"patching_rect" : [ 409.0, 130.0, 52.0, 26.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-46",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 18.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "stop",
+					"presentation_rect" : [ 86.0, 22.0, 51.0, 26.0 ],
+					"patching_rect" : [ 306.0, 129.0, 51.0, 26.0 ],
+					"numinlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-49",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"outlettype" : [ "" ],
+					"fontsize" : 18.0
+				}
+
+			}
+ ],
+		"lines" : [ 			{
+				"patchline" : 				{
+					"source" : [ "obj-45", 0 ],
+					"destination" : [ "obj-12", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 1 ],
+					"destination" : [ "obj-45", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-40", 0 ],
+					"destination" : [ "obj-12", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 0 ],
+					"destination" : [ "obj-40", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-12", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-59", 0 ],
+					"destination" : [ "obj-47", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-61", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-61", 0 ],
+					"destination" : [ "obj-64", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-8", 0 ],
+					"destination" : [ "obj-35", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-15", 0 ],
+					"destination" : [ "obj-8", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-87", 0 ],
+					"destination" : [ "obj-8", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-10", 1 ],
+					"destination" : [ "obj-13", 2 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-6", 0 ],
+					"destination" : [ "obj-31", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 0 ],
+					"destination" : [ "obj-6", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-38", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-23", 0 ],
+					"destination" : [ "obj-34", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-34", 0 ],
+					"destination" : [ "obj-21", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-21", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 0 ],
+					"destination" : [ "obj-80", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 1 ],
+					"destination" : [ "obj-115", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-75", 0 ],
+					"destination" : [ "obj-116", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-115", 0 ],
+					"destination" : [ "obj-112", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-86", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-93", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-104", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-76", 0 ],
+					"destination" : [ "obj-108", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-80", 0 ],
+					"destination" : [ "obj-86", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 0 ],
+					"destination" : [ "obj-56", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-87", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-84", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-81", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-84", 0 ],
+					"destination" : [ "obj-75", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-81", 0 ],
+					"destination" : [ "obj-66", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-50", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-99", 0 ],
+					"destination" : [ "obj-60", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-25", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-55", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-82", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-1", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-4", 0 ],
+					"destination" : [ "obj-1", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-44", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-67", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-71", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-70", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-11", 0 ],
+					"destination" : [ "obj-2", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-2", 0 ],
+					"destination" : [ "obj-25", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-36", 0 ],
+					"destination" : [ "obj-2", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-37", 0 ],
+					"destination" : [ "obj-36", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-41", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-41", 0 ],
+					"destination" : [ "obj-11", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-28", 0 ],
+					"destination" : [ "obj-4", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-53", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-87", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-106", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 1 ],
+					"destination" : [ "obj-101", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-42", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-78", 0 ],
+					"destination" : [ "obj-62", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-62", 0 ],
+					"destination" : [ "obj-57", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-62", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-93", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 0 ],
+					"destination" : [ "obj-117", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-117", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 2 ],
+					"destination" : [ "obj-122", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 0 ],
+					"destination" : [ "obj-3", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 1 ],
+					"destination" : [ "obj-5", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-26", 0 ],
+					"destination" : [ "obj-24", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-24", 0 ],
+					"destination" : [ "obj-30", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-56", 0 ],
+					"destination" : [ "obj-26", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-122", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-59", 0 ],
+					"destination" : [ "obj-61", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-58", 0 ],
+					"destination" : [ "obj-59", 6 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-51", 0 ],
+					"destination" : [ "obj-59", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-68", 0 ],
+					"destination" : [ "obj-64", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-26", 0 ],
+					"destination" : [ "obj-58", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-122", 0 ],
+					"destination" : [ "obj-27", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 2 ],
+					"destination" : [ "obj-93", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 1 ],
+					"destination" : [ "obj-26", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-13", 2 ],
+					"destination" : [ "obj-23", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-21", 0 ],
+					"destination" : [ "obj-13", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-13", 0 ],
+					"destination" : [ "obj-38", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-103", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-22", 0 ],
+					"destination" : [ "obj-34", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-9", 0 ],
+					"destination" : [ "obj-10", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-10", 1 ],
+					"destination" : [ "obj-22", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-10", 0 ],
+					"destination" : [ "obj-31", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-29", 0 ],
+					"destination" : [ "obj-46", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-33", 0 ],
+					"destination" : [ "obj-29", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-39", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-39", 0 ],
+					"destination" : [ "obj-33", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-64", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-24", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-112", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-118", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-88", 1 ],
+					"destination" : [ "obj-120", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-12", 0 ],
+					"destination" : [ "obj-16", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+ ]
+	}
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/maxPatchToPlayFiles/playMidiTranscription8.maxpat	Tue Mar 06 17:11:46 2012 +0000
@@ -0,0 +1,4617 @@
+{
+	"patcher" : 	{
+		"fileversion" : 1,
+		"rect" : [ 705.0, 75.0, 1089.0, 872.0 ],
+		"bglocked" : 0,
+		"defrect" : [ 705.0, 75.0, 1089.0, 872.0 ],
+		"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+		"openinpresentation" : 1,
+		"default_fontsize" : 10.0,
+		"default_fontface" : 0,
+		"default_fontname" : "Verdana",
+		"gridonopen" : 0,
+		"gridsize" : [ 15.0, 15.0 ],
+		"gridsnaponopen" : 0,
+		"toolbarvisible" : 1,
+		"boxanimatetime" : 200,
+		"imprint" : 0,
+		"enablehscroll" : 1,
+		"enablevscroll" : 1,
+		"devicewidth" : 0.0,
+		"boxes" : [ 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1275.0, 287.0, 20.0, 20.0 ],
+					"id" : "obj-120",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 1285.0, 221.0, 50.0, 17.0 ],
+					"id" : "obj-118",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b i",
+					"outlettype" : [ "bang", "int" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 1110.0, 131.0, 32.5, 19.0 ],
+					"id" : "obj-116",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 1180.0, 135.0, 66.0, 19.0 ],
+					"id" : "obj-115",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "size $1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 1201.0, 193.0, 56.0, 17.0 ],
+					"id" : "obj-112",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number~",
+					"outlettype" : [ "signal", "float" ],
+					"mode" : 2,
+					"sig" : 0.0,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 1106.0, 503.0, 56.0, 19.0 ],
+					"id" : "obj-108",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "adc~ 1 2",
+					"outlettype" : [ "signal", "signal" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 1082.0, 185.0, 56.0, 19.0 ],
+					"id" : "obj-107",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "writewave",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 1207.0, 351.0, 61.0, 17.0 ],
+					"id" : "obj-104",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 1154.0, 311.0, 32.5, 17.0 ],
+					"id" : "obj-93",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "buffer~ midire 10000 2",
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 1143.0, 239.0, 130.0, 19.0 ],
+					"id" : "obj-88",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 1062.0, 303.0, 32.5, 17.0 ],
+					"id" : "obj-86",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1062.0, 268.0, 20.0, 20.0 ],
+					"id" : "obj-80",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "record~ midire",
+					"outlettype" : [ "signal" ],
+					"fontsize" : 10.0,
+					"numinlets" : 3,
+					"patching_rect" : [ 1123.0, 413.0, 102.0, 19.0 ],
+					"id" : "obj-76",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 698.0, 772.0, 68.0, 19.0 ],
+					"id" : "obj-30",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"numinlets" : 1,
+					"patching_rect" : [ -90.0, 449.0, 20.0, 20.0 ],
+					"id" : "obj-78",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ -67.0, 473.0, 33.0, 19.0 ],
+					"id" : "obj-62",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "print",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -53.0, 505.0, 34.0, 19.0 ],
+					"id" : "obj-57",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "change this to load your own location of the RWC warped files",
+					"linecount" : 3,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 578.0, 28.0, 330.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 670.0, 38.0, 150.0, 43.0 ],
+					"presentation" : 1,
+					"id" : "obj-52",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 438.0, 20.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 210.0, 89.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-56",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/RWCfile $1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 869.0, 480.0, 70.0, 17.0 ],
+					"id" : "obj-48",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import \"Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Muller_warp/RM-C023B_warped.mid\"",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 403.0, 89.0, 568.0, 17.0 ],
+					"id" : "obj-42",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "set prior on start",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 327.0, 93.0, 150.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 739.0, 374.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-47",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"presentation_rect" : [ 300.0, 92.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 712.0, 373.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-39",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 710.0, 401.0, 33.0, 19.0 ],
+					"id" : "obj-21",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "prefix /Users/andrew/Documents/work/MuseScore/RWC/Muller_warp",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 571.0, 7.0, 363.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 478.0, 12.0, 363.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-106",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend import",
+					"outlettype" : [ "" ],
+					"fontsize" : 11.595187,
+					"numinlets" : 1,
+					"patching_rect" : [ 267.0, 45.0, 86.0, 20.0 ],
+					"id" : "obj-101",
+					"fontname" : "Arial",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"outlettype" : [ "int", "", "" ],
+					"autopopulate" : 1,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 267.0, 18.0, 164.0, 18.0 ],
+					"items" : [ "RM-C001_warped.mid", ",", "RM-C002_warped.mid", ",", "RM-C003_warped.mid", ",", "RM-C004_warped.mid", ",", "RM-C005_warped.mid", ",", "RM-C006_warped.mid", ",", "RM-C007_warped.mid", ",", "RM-C008_warped.mid", ",", "RM-C009_warped.mid", ",", "RM-C010_warped.mid", ",", "RM-C011_warped.mid", ",", "RM-C012_warped.mid", ",", "RM-C013_warped.mid", ",", "RM-C014_warped.mid", ",", "RM-C015_warped.mid", ",", "RM-C016_warped.mid", ",", "RM-C017_warped.mid", ",", "RM-C018_warped.mid", ",", "RM-C019_warped.mid", ",", "RM-C020_warped.mid", ",", "RM-C021_warped.mid", ",", "RM-C022_warped.mid", ",", "RM-C023A_warped.mid", ",", "RM-C023B_warped.mid", ",", "RM-C023C_warped.mid", ",", "RM-C023D_warped.mid", ",", "RM-C023E_warped.mid", ",", "RM-C024A_warped.mid", ",", "RM-C024B_warped.mid", ",", "RM-C024C_warped.mid", ",", "RM-C025A_warped.mid", ",", "RM-C025B_warped.mid", ",", "RM-C025C_warped.mid", ",", "RM-C025D_warped.mid", ",", "RM-C026_warped.mid", ",", "RM-C027_warped.mid", ",", "RM-C028_warped.mid", ",", "RM-C029_warped.mid", ",", "RM-C030_warped.mid", ",", "RM-C031_warped.mid", ",", "RM-C032_warped.mid", ",", "RM-C033_warped.mid", ",", "RM-C034_warped.mid", ",", "RM-C035A_warped.mid", ",", "RM-C035B_warped.mid", ",", "RM-C035C_warped.mid", ",", "RM-C036_warped.mid", ",", "RM-C037_warped.mid", ",", "RM-C038_warped.mid", ",", "RM-C039_warped.mid", ",", "RM-C040_warped.mid", ",", "RM-C041_warped.mid", ",", "RM-C042_warped.mid", ",", "RM-C043_warped.mid", ",", "RM-C044_warped.mid", ",", "RM-C045_warped.mid", ",", "RM-C046_warped.mid", ",", "RM-C047_warped.mid", ",", "RM-C048_warped.mid", ",", "RM-C049_warped.mid", ",", "RM-C050_warped.mid" ],
+					"types" : [  ],
+					"numinlets" : 1,
+					"patching_rect" : [ 267.0, 18.0, 164.0, 18.0 ],
+					"presentation" : 1,
+					"id" : "obj-102",
+					"fontname" : "Arial",
+					"numoutlets" : 3,
+					"prefix" : "Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Muller_warp/"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess prefix /Users/andrew/Documents/work/MuseScore/RWC/Muller_warp",
+					"outlettype" : [ "" ],
+					"fontsize" : 11.595187,
+					"numinlets" : 1,
+					"patching_rect" : [ 267.0, -14.0, 426.0, 20.0 ],
+					"id" : "obj-103",
+					"fontname" : "Arial",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"outlettype" : [ "int", "", "" ],
+					"fontsize" : 10.0,
+					"items" : "<empty>",
+					"types" : [  ],
+					"numinlets" : 1,
+					"patching_rect" : [ 607.0, 32.0, 100.0, 19.0 ],
+					"id" : "obj-100",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p routingNoteons",
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 4,
+					"patching_rect" : [ 143.0, 530.0, 97.0, 19.0 ],
+					"id" : "obj-98",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"patcher" : 					{
+						"fileversion" : 1,
+						"rect" : [ 0.0, 0.0, 640.0, 480.0 ],
+						"bglocked" : 0,
+						"defrect" : [ 0.0, 0.0, 640.0, 480.0 ],
+						"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+						"openinpresentation" : 0,
+						"default_fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"gridonopen" : 0,
+						"gridsize" : [ 15.0, 15.0 ],
+						"gridsnaponopen" : 0,
+						"toolbarvisible" : 1,
+						"boxanimatetime" : 200,
+						"imprint" : 0,
+						"enablehscroll" : 1,
+						"enablevscroll" : 1,
+						"devicewidth" : 0.0,
+						"boxes" : [ 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "176 64 127",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 310.0, 160.0, 102.0, 17.0 ],
+									"id" : "obj-93",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "74 74",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 120.0, 185.0, 50.0, 17.0 ],
+									"id" : "obj-91",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "t l",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 73.0, 158.0, 21.0, 19.0 ],
+									"id" : "obj-89",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "route 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159",
+									"outlettype" : [ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 50.0, 100.0, 398.0, 19.0 ],
+									"id" : "obj-88",
+									"fontname" : "Verdana",
+									"numoutlets" : 17
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p weirdStarter",
+									"outlettype" : [ "bang" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 144.0, 237.0, 83.0, 19.0 ],
+									"id" : "obj-48",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"patcher" : 									{
+										"fileversion" : 1,
+										"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"bglocked" : 0,
+										"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+										"openinpresentation" : 0,
+										"default_fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"gridonopen" : 0,
+										"gridsize" : [ 15.0, 15.0 ],
+										"gridsnaponopen" : 0,
+										"toolbarvisible" : 1,
+										"boxanimatetime" : 200,
+										"imprint" : 0,
+										"enablehscroll" : 1,
+										"enablevscroll" : 1,
+										"devicewidth" : 0.0,
+										"boxes" : [ 											{
+												"box" : 												{
+													"maxclass" : "toggle",
+													"outlettype" : [ "int" ],
+													"numinlets" : 1,
+													"patching_rect" : [ 94.0, 159.0, 20.0, 20.0 ],
+													"id" : "obj-132",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"outlettype" : [ "bang" ],
+													"numinlets" : 1,
+													"patching_rect" : [ 95.0, 217.0, 20.0, 20.0 ],
+													"id" : "obj-130",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "0",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 92.0, 239.0, 32.5, 17.0 ],
+													"id" : "obj-128",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "newobj",
+													"text" : "gate",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 92.0, 192.0, 33.0, 19.0 ],
+													"id" : "obj-126",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "1",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 65.0, 136.0, 32.5, 17.0 ],
+													"id" : "obj-125",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "newobj",
+													"text" : "loadbang",
+													"outlettype" : [ "bang" ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 50.0, 100.0, 56.0, 19.0 ],
+													"id" : "obj-123",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "inlet",
+													"outlettype" : [ "bang" ],
+													"numinlets" : 0,
+													"patching_rect" : [ 65.0, 40.0, 25.0, 25.0 ],
+													"id" : "obj-40",
+													"numoutlets" : 1,
+													"comment" : ""
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "inlet",
+													"outlettype" : [ "" ],
+													"numinlets" : 0,
+													"patching_rect" : [ 106.0, 40.0, 25.0, 25.0 ],
+													"id" : "obj-41",
+													"numoutlets" : 1,
+													"comment" : ""
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"numinlets" : 1,
+													"patching_rect" : [ 95.0, 331.5, 25.0, 25.0 ],
+													"id" : "obj-47",
+													"numoutlets" : 0,
+													"comment" : ""
+												}
+
+											}
+ ],
+										"lines" : [ 											{
+												"patchline" : 												{
+													"source" : [ "obj-130", 0 ],
+													"destination" : [ "obj-47", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-41", 0 ],
+													"destination" : [ "obj-126", 1 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-40", 0 ],
+													"destination" : [ "obj-125", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-123", 0 ],
+													"destination" : [ "obj-125", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-132", 0 ],
+													"destination" : [ "obj-126", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-126", 0 ],
+													"destination" : [ "obj-130", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-130", 0 ],
+													"destination" : [ "obj-128", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-128", 0 ],
+													"destination" : [ "obj-132", 0 ],
+													"hidden" : 0,
+													"midpoints" : [ 101.5, 253.0, 101.5, 264.0, 83.0, 264.0, 83.0, 155.0, 103.5, 155.0 ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-125", 0 ],
+													"destination" : [ "obj-132", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+ ]
+									}
+,
+									"saved_object_attributes" : 									{
+										"globalpatchername" : "",
+										"default_fontface" : 0,
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontname" : "Arial",
+										"default_fontsize" : 12.0,
+										"fontname" : "Arial"
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "gate",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 52.0, 456.0, 33.0, 19.0 ],
+									"id" : "obj-30",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"outlettype" : [ "bang" ],
+									"numinlets" : 1,
+									"patching_rect" : [ 169.0, 298.0, 20.0, 20.0 ],
+									"id" : "obj-134",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "zl join",
+									"outlettype" : [ "", "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 88.0, 388.0, 41.0, 19.0 ],
+									"id" : "obj-83",
+									"fontname" : "Verdana",
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "- 0.",
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 102.0, 357.0, 32.5, 19.0 ],
+									"id" : "obj-80",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "t l b",
+									"outlettype" : [ "", "bang" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 88.0, 299.0, 32.5, 19.0 ],
+									"id" : "obj-79",
+									"fontname" : "Verdana",
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "cpuclock",
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 169.0, 328.0, 53.0, 19.0 ],
+									"id" : "obj-78",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "cpuclock",
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 102.0, 327.0, 53.0, 19.0 ],
+									"id" : "obj-76",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 50.0, 40.0, 25.0, 25.0 ],
+									"id" : "obj-21",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "int" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 52.0, 40.0, 25.0, 25.0 ],
+									"id" : "obj-39",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "bang" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 144.0, 40.0, 25.0, 25.0 ],
+									"id" : "obj-42",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 169.0, 40.0, 25.0, 25.0 ],
+									"id" : "obj-47",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 52.0, 535.0, 25.0, 25.0 ],
+									"id" : "obj-86",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 73.0, 535.0, 25.0, 25.0 ],
+									"id" : "obj-96",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+ ],
+						"lines" : [ 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-96", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-30", 0 ],
+									"destination" : [ "obj-86", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-47", 0 ],
+									"destination" : [ "obj-134", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-42", 0 ],
+									"destination" : [ "obj-48", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-39", 0 ],
+									"destination" : [ "obj-30", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-21", 0 ],
+									"destination" : [ "obj-88", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-83", 0 ],
+									"destination" : [ "obj-30", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-134", 0 ],
+									"destination" : [ "obj-78", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-80", 0 ],
+									"destination" : [ "obj-83", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-76", 0 ],
+									"destination" : [ "obj-80", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-78", 0 ],
+									"destination" : [ "obj-80", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-79", 1 ],
+									"destination" : [ "obj-76", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-79", 0 ],
+									"destination" : [ "obj-83", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-91", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-48", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-79", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 14 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 13 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 12 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 10 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 9 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 8 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 7 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 6 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 5 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 4 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 3 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 2 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 1 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 0 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 16 ],
+									"destination" : [ "obj-93", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 15 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+ ]
+					}
+,
+					"saved_object_attributes" : 					{
+						"globalpatchername" : "",
+						"default_fontface" : 0,
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontname" : "Arial",
+						"default_fontsize" : 12.0,
+						"fontname" : "Arial"
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /duration",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 769.0, 340.0, 101.0, 19.0 ],
+					"id" : "obj-97",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "print",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 33.0, 893.0, 34.0, 19.0 ],
+					"id" : "obj-92",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 33.0, 827.0, 20.0, 20.0 ],
+					"id" : "obj-90",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 33.0, 862.0, 33.0, 19.0 ],
+					"id" : "obj-7",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 0.08",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 633.0, 513.0, 84.0, 19.0 ],
+					"id" : "obj-61",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /likelihoodToNoiseRatio",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 135.0, 522.0, 171.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 612.0, 579.0, 171.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-58",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"minimum" : 0.001,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 138.0, 500.0, 50.0, 19.0 ],
+					"maximum" : 0.6,
+					"numinlets" : 1,
+					"patching_rect" : [ 612.0, 552.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-59",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /maximumSpeedRatio",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 311.0, 464.0, 167.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 702.0, 728.0, 167.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-45",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"minimum" : 0.0,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 311.0, 436.0, 50.0, 19.0 ],
+					"maximum" : 2.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 702.0, 701.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-51",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"presentation_rect" : [ 523.0, 109.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 713.0, 162.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-87",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0,
+					"triscale" : 0.9,
+					"presentation_rect" : [ 522.0, 136.0, 63.0, 19.0 ],
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 777.0, 284.0, 63.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-66",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"triangle" : 0,
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0,
+					"triscale" : 0.9,
+					"presentation_rect" : [ 522.0, 159.0, 64.0, 19.0 ],
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"cantchange" : 1,
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 777.0, 307.0, 64.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-75",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "number of events",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 587.0, 136.0, 97.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 840.0, 286.0, 97.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-77",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"outlettype" : [ "" ],
+					"#untuple" : 0,
+					"fontsize" : 10.0,
+					"text" : [ "_($1 size)" ],
+					"#loadbang" : 0,
+					"presentation_rect" : [ 718.0, 285.0, 51.93457, 17.0 ],
+					"#triggerall" : 0,
+					"numinlets" : 2,
+					"patching_rect" : [ 718.0, 285.0, 51.93457, 17.0 ],
+					"ftm_scope" : 1,
+					"#init" : "",
+					"presentation" : 1,
+					"id" : "obj-81",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"ftm_objref_conv" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"outlettype" : [ "" ],
+					"#untuple" : 0,
+					"fontsize" : 10.0,
+					"text" : [ "_($1 duration)" ],
+					"#loadbang" : 0,
+					"presentation_rect" : [ 699.0, 308.0, 74.566406, 17.0 ],
+					"#triggerall" : 0,
+					"numinlets" : 2,
+					"patching_rect" : [ 699.0, 308.0, 74.566406, 17.0 ],
+					"ftm_scope" : 0,
+					"#init" : "",
+					"presentation" : 1,
+					"id" : "obj-84",
+					"fontname" : "Verdana",
+					"numoutlets" : 1,
+					"ftm_objref_conv" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "duration in msec",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 587.0, 159.0, 93.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 840.0, 309.0, 93.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-85",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import /Users/andrew/hg/midi-score-follower/MIDIfiles/test.mid",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 663.0, 129.0, 335.0, 17.0 ],
+					"id" : "obj-53",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -28.0, 309.0, 68.0, 19.0 ],
+					"id" : "obj-28",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "176 64 127",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 10.0, 226.0, 95.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ -131.0, 428.0, 95.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-50",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/MAPestimate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 364.0, 375.0, 108.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 793.0, 807.0, 108.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-43",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/MAPestimate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 768.0, 865.0, 80.0, 17.0 ],
+					"id" : "obj-40",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sel 0 1",
+					"outlettype" : [ "bang", "bang", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 698.0, 826.0, 46.0, 19.0 ],
+					"id" : "obj-38",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/integratedEstimate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 646.0, 865.0, 110.0, 17.0 ],
+					"id" : "obj-35",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"presentation_rect" : [ 364.0, 350.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 698.0, 796.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-22",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /minimumSpeedRatio",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 134.0, 463.0, 164.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 685.0, 657.0, 164.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-13",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"minimum" : 0.0,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 134.0, 436.0, 50.0, 19.0 ],
+					"maximum" : 2.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 685.0, 630.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-12",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 86.0, 135.0, 32.5, 17.0 ],
+					"id" : "obj-41",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 250",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 141.0, 150.0, 80.0, 19.0 ],
+					"id" : "obj-37",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"outlettype" : [ "int", "bang" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 583.0, 228.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 141.0, 173.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-36",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "iterate through notes when used offline",
+					"linecount" : 2,
+					"presentation_linecount" : 2,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 550.0, 197.0, 150.0, 31.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1247.0, 855.0, 150.0, 31.0 ],
+					"presentation" : 1,
+					"id" : "obj-34",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"presentation_rect" : [ 523.0, 204.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 89.0, 165.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-11",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "metro 250",
+					"outlettype" : [ "bang" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 517.0, 230.0, 63.0, 19.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 90.0, 201.0, 63.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-2",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 12.0,
+					"presentation_rect" : [ 282.0, 62.0, 57.0, 21.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 511.0, 249.0, 57.0, 21.0 ],
+					"presentation" : 1,
+					"id" : "obj-99",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/offline",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 169.0, 893.0, 46.0, 17.0 ],
+					"id" : "obj-74",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/realtime",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 100.0, 890.0, 56.0, 17.0 ],
+					"id" : "obj-73",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sel 1 2",
+					"outlettype" : [ "bang", "bang", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 85.0, 860.0, 46.0, 19.0 ],
+					"id" : "obj-64",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p ftmPlayer",
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 45.0, 316.0, 476.0, 19.0 ],
+					"id" : "obj-60",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"patcher" : 					{
+						"fileversion" : 1,
+						"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"bglocked" : 0,
+						"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+						"openinpresentation" : 0,
+						"default_fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"gridonopen" : 0,
+						"gridsize" : [ 15.0, 15.0 ],
+						"gridsnaponopen" : 0,
+						"toolbarvisible" : 1,
+						"boxanimatetime" : 200,
+						"imprint" : 0,
+						"enablehscroll" : 1,
+						"enablevscroll" : 1,
+						"devicewidth" : 0.0,
+						"boxes" : [ 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "float" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 336.0, 56.0, 25.0, 25.0 ],
+									"id" : "obj-1",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "midi",
+									"fontsize" : 10.0,
+									"presentation_rect" : [ 52.0, 420.0, 150.0, 19.0 ],
+									"numinlets" : 1,
+									"patching_rect" : [ 131.0, 214.0, 150.0, 19.0 ],
+									"presentation" : 1,
+									"id" : "obj-11",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p otherFtmControls",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 0,
+									"patching_rect" : [ 50.0, 109.0, 108.0, 19.0 ],
+									"id" : "obj-115",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"patcher" : 									{
+										"fileversion" : 1,
+										"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"bglocked" : 0,
+										"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+										"openinpresentation" : 0,
+										"default_fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"gridonopen" : 0,
+										"gridsize" : [ 15.0, 15.0 ],
+										"gridsnaponopen" : 0,
+										"toolbarvisible" : 1,
+										"boxanimatetime" : 200,
+										"imprint" : 0,
+										"enablehscroll" : 1,
+										"enablevscroll" : 1,
+										"devicewidth" : 0.0,
+										"boxes" : [ 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "ordinary file following (x) or else one shot test",
+													"linecount" : 2,
+													"presentation_linecount" : 2,
+													"fontsize" : 10.0,
+													"presentation_rect" : [ 52.0, 186.0, 156.0, 31.0 ],
+													"numinlets" : 1,
+													"patching_rect" : [ 98.0, 56.0, 153.0, 31.0 ],
+													"presentation" : 1,
+													"id" : "obj-111",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 362.0, 263.0, 57.0, 19.0 ],
+													"id" : "obj-3",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#untuple" : 0,
+													"fontsize" : 10.0,
+													"text" : [ "_loop 500 1500 1." ],
+													"#loadbang" : 0,
+													"presentation_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"patching_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"ftm_scope" : 0,
+													"#init" : "",
+													"id" : "obj-4",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (begin, end and speed) and loop",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 306.0, 167.0, 240.0, 19.0 ],
+													"id" : "obj-5",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#untuple" : 0,
+													"fontsize" : 10.0,
+													"text" : [ "_play $play.seq 500 1500 1." ],
+													"#loadbang" : 0,
+													"presentation_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"patching_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"ftm_scope" : 0,
+													"#init" : "",
+													"id" : "obj-6",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (track, begin, end and speed) and play",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 370.0, 147.0, 272.0, 19.0 ],
+													"id" : "obj-7",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to next time",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 88.0, 258.0, 115.0, 19.0 ],
+													"id" : "obj-8",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "slider",
+													"outlettype" : [ "" ],
+													"size" : 1001.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 162.0, 238.0, 169.0, 15.0 ],
+													"id" : "obj-9",
+													"numoutlets" : 1,
+													"mult" : 10.0,
+													"orientation" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate or jump at given time",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 114.0, 121.0, 151.0, 19.0 ],
+													"id" : "obj-10",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "next",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 257.0, 33.0, 17.0 ],
+													"id" : "obj-11",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "jump 300.",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 119.0, 62.0, 17.0 ],
+													"id" : "obj-12",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed by giving a duration for the current segment",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 336.0, 281.0, 285.0, 19.0 ],
+													"id" : "obj-23",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (only begin and end) and play straight",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 354.0, 120.0, 270.0, 19.0 ],
+													"id" : "obj-24",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 86.0, 147.0, 116.0, 19.0 ],
+													"id" : "obj-25",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 0.5",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 299.0, 262.0, 58.0, 17.0 ],
+													"id" : "obj-26",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#untuple" : 0,
+													"fontsize" : 10.0,
+													"text" : [ "_set 0 9999999" ],
+													"#loadbang" : 0,
+													"presentation_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"patching_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"ftm_scope" : 0,
+													"#init" : "",
+													"id" : "obj-27",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "flonum",
+													"outlettype" : [ "float", "bang" ],
+													"fontsize" : 10.0,
+													"triscale" : 0.9,
+													"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+													"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+													"numinlets" : 1,
+													"patching_rect" : [ 104.0, 238.0, 56.0, 19.0 ],
+													"id" : "obj-28",
+													"fontname" : "Verdana",
+													"numoutlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "duration 1000",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 252.0, 281.0, 79.0, 17.0 ],
+													"id" : "obj-29",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 2.",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 252.0, 262.0, 52.0, 17.0 ],
+													"id" : "obj-30",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "pause",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 192.0, 40.0, 17.0 ],
+													"id" : "obj-31",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "locate 300.",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 100.0, 67.0, 17.0 ],
+													"id" : "obj-32",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "sync $1",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 238.0, 49.0, 17.0 ],
+													"id" : "obj-33",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#untuple" : 0,
+													"fontsize" : 10.0,
+													"text" : [ "_set $play.seq 500 1500 1." ],
+													"#loadbang" : 0,
+													"presentation_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"patching_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"ftm_scope" : 0,
+													"#init" : "",
+													"id" : "obj-40",
+													"fontname" : "Verdana",
+													"numoutlets" : 1,
+													"ftm_objref_conv" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "loop",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 165.0, 32.5, 17.0 ],
+													"id" : "obj-41",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"outlettype" : [ "bang" ],
+													"numinlets" : 1,
+													"patching_rect" : [ 50.0, 292.0, 15.0, 15.0 ],
+													"id" : "obj-50",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to gven time (output all events on the way)",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 326.0, 238.0, 274.0, 19.0 ],
+													"id" : "obj-54",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate halted at given time",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 119.0, 101.0, 143.0, 19.0 ],
+													"id" : "obj-55",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "loop current segment",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 85.0, 166.0, 116.0, 19.0 ],
+													"id" : "obj-57",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "stop playing and reset",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 86.0, 212.0, 121.0, 19.0 ],
+													"id" : "obj-58",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "halt playing",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 93.0, 193.0, 67.0, 19.0 ],
+													"id" : "obj-59",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment straight",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 67.0, 292.0, 158.0, 19.0 ],
+													"id" : "obj-60",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "note that setting a new track stops and resets the player (play and loop start from beginning)",
+													"linecount" : 2,
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 277.0, 196.0, 266.0, 31.0 ],
+													"id" : "obj-62",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"numinlets" : 1,
+													"patching_rect" : [ 147.357147, 371.0, 25.0, 25.0 ],
+													"id" : "obj-114",
+													"numoutlets" : 0,
+													"comment" : ""
+												}
+
+											}
+ ],
+										"lines" : [ 											{
+												"patchline" : 												{
+													"source" : [ "obj-9", 0 ],
+													"destination" : [ "obj-28", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-28", 0 ],
+													"destination" : [ "obj-33", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-32", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-12", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-41", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-31", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-33", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-11", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-50", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-6", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-4", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-30", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-29", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-40", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-27", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-26", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+ ]
+									}
+,
+									"saved_object_attributes" : 									{
+										"globalpatchername" : "",
+										"default_fontface" : 0,
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontname" : "Arial",
+										"default_fontsize" : 12.0,
+										"fontname" : "Arial"
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "syntax:",
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 358.0, 168.0, 46.0, 19.0 ],
+									"id" : "obj-2",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "kill hanging notes when looping",
+									"hidden" : 1,
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 291.0, 203.0, 168.0, 19.0 ],
+									"id" : "obj-13",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment end",
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 433.0, 120.0, 93.0, 19.0 ],
+									"id" : "obj-21",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "change 0 -",
+									"hidden" : 1,
+									"outlettype" : [ "", "int", "int" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 128.0, 202.0, 62.0, 19.0 ],
+									"id" : "obj-34",
+									"fontname" : "Verdana",
+									"numoutlets" : 3
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"outlettype" : [ "" ],
+									"size" : 1001.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 262.0, 120.0, 169.0, 15.0 ],
+									"id" : "obj-35",
+									"numoutlets" : 1,
+									"mult" : 10.0,
+									"orientation" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"outlettype" : [ "" ],
+									"size" : 1001.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 187.0, 100.0, 169.0, 15.0 ],
+									"id" : "obj-36",
+									"numoutlets" : 1,
+									"mult" : 10.0,
+									"orientation" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "GM",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"presentation_rect" : [ 127.0, 442.0, 32.5, 17.0 ],
+									"numinlets" : 2,
+									"patching_rect" : [ 203.0, 228.0, 32.5, 17.0 ],
+									"presentation" : 1,
+									"id" : "obj-37",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "panic",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"presentation_rect" : [ 85.0, 442.0, 37.0, 17.0 ],
+									"numinlets" : 2,
+									"patching_rect" : [ 161.0, 228.0, 37.0, 17.0 ],
+									"presentation" : 1,
+									"id" : "obj-38",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "off",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"presentation_rect" : [ 48.0, 442.0, 32.5, 17.0 ],
+									"numinlets" : 2,
+									"patching_rect" : [ 124.0, 228.0, 32.5, 17.0 ],
+									"presentation" : 1,
+									"id" : "obj-39",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0,
+									"triscale" : 0.9,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"numinlets" : 1,
+									"patching_rect" : [ 262.0, 143.0, 55.0, 19.0 ],
+									"id" : "obj-42",
+									"fontname" : "Verdana",
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0,
+									"triscale" : 0.9,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"numinlets" : 1,
+									"patching_rect" : [ 187.0, 143.0, 55.0, 19.0 ],
+									"id" : "obj-43",
+									"fontname" : "Verdana",
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.midiunparse",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 112.0, 249.0, 93.0, 19.0 ],
+									"id" : "obj-45",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"outlettype" : [ "bang" ],
+									"numinlets" : 1,
+									"patching_rect" : [ 337.0, 228.0, 15.0, 15.0 ],
+									"id" : "obj-51",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0,
+									"triscale" : 0.9,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"numinlets" : 1,
+									"patching_rect" : [ 215.0, 201.0, 55.0, 19.0 ],
+									"id" : "obj-52",
+									"fontname" : "Verdana",
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.play $play.seq",
+									"outlettype" : [ "", "", "" ],
+									"fontsize" : 18.0,
+									"numinlets" : 4,
+									"patching_rect" : [ 112.0, 166.0, 244.0, 28.0 ],
+									"id" : "obj-53",
+									"fontname" : "Verdana",
+									"numoutlets" : 3,
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment beginning",
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 358.0, 100.0, 123.0, 19.0 ],
+									"id" : "obj-61",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 112.0, 40.0, 25.0, 25.0 ],
+									"id" : "obj-57",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 112.0, 328.0, 25.0, 25.0 ],
+									"id" : "obj-58",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 224.0, 328.0, 25.0, 25.0 ],
+									"id" : "obj-59",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+ ],
+						"lines" : [ 							{
+								"patchline" : 								{
+									"source" : [ "obj-1", 0 ],
+									"destination" : [ "obj-53", 3 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-115", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-37", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-38", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-39", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-52", 0 ],
+									"destination" : [ "obj-34", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-34", 0 ],
+									"destination" : [ "obj-39", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-36", 0 ],
+									"destination" : [ "obj-43", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-43", 0 ],
+									"destination" : [ "obj-53", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-52", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-35", 0 ],
+									"destination" : [ "obj-42", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-42", 0 ],
+									"destination" : [ "obj-53", 2 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 2 ],
+									"destination" : [ "obj-51", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-57", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-45", 0 ],
+									"destination" : [ "obj-58", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-59", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+ ]
+					}
+,
+					"saved_object_attributes" : 					{
+						"globalpatchername" : "",
+						"default_fontface" : 0,
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontname" : "Arial",
+						"default_fontsize" : 12.0,
+						"fontname" : "Arial"
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "pause",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 62.0, 86.0, 51.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 226.0, 269.0, 40.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-55",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "hear MIDI playing",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -32.0, 255.0, 150.0, 19.0 ],
+					"id" : "obj-54",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 110.0, 692.0, 68.0, 19.0 ],
+					"id" : "obj-33",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"outlettype" : [ "int", "", "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 232.0, 138.0, 100.0, 19.0 ],
+					"items" : [ "off", ",", "realtime", ",", "offline" ],
+					"types" : [  ],
+					"numinlets" : 1,
+					"patching_rect" : [ 113.0, 722.0, 100.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-32",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "switch",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 3,
+					"patching_rect" : [ 121.0, 786.0, 46.0, 19.0 ],
+					"id" : "obj-31",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "74 74 78305.585938",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 32.0, 199.0, 201.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 173.0, 787.0, 201.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-29",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend set",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 190.0, 627.0, 70.0, 19.0 ],
+					"id" : "obj-27",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "append",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 190.0, 655.0, 47.0, 19.0 ],
+					"id" : "obj-26",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "next",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 22.0, 86.0, 33.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 182.0, 268.0, 33.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-25",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "speed",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 245.0, 62.0, 150.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 571.0, 365.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-9",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "MIDI representation",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 16.0, -3.0, 150.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1141.0, 862.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-24",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "audio",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 14.0, 119.0, 150.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1126.0, 847.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-23",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "send notes",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 149.0, 169.0, 67.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1243.0, 894.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-10",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 170.0, 442.0, 68.0, 19.0 ],
+					"id" : "obj-3",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "midi playing on/off",
+					"presentation_linecount" : 2,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 215.0, 84.0, 73.0, 31.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 712.0, 190.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-8",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "plays midi and accompanying audio too",
+					"linecount" : 2,
+					"presentation_linecount" : 2,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 294.0, 517.0, 150.0, 31.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 906.0, 904.0, 150.0, 31.0 ],
+					"presentation" : 1,
+					"id" : "obj-6",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"presentation_rect" : [ 188.0, 84.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ -24.0, 341.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-4",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ -15.0, 373.0, 33.0, 19.0 ],
+					"id" : "obj-1",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -28.0, 861.0, 68.0, 19.0 ],
+					"id" : "obj-138",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /setSpeedPrior",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 128.0, 383.0, 129.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ -29.0, 923.0, 129.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-137",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"minimum" : 0.0,
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 133.0, 351.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ -29.0, 884.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-136",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "open",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 58.0, 170.0, 35.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 622.0, 320.0, 35.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-113",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 583.0, 320.0, 32.5, 17.0 ],
+					"id" : "obj-110",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 19.0, 172.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 542.0, 320.0, 32.5, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-105",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sfplay~ 2",
+					"outlettype" : [ "signal", "signal", "bang" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 532.0, 343.0, 58.0, 19.0 ],
+					"id" : "obj-65",
+					"fontname" : "Verdana",
+					"numoutlets" : 3,
+					"save" : [ "#N", "sfplay~", "", 2, 120960, 0, "", ";" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"presentation_rect" : [ 126.0, 169.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 170.0, 471.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"id" : "obj-109",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "zl slice 1",
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ -54.0, 200.0, 54.0, 19.0 ],
+					"id" : "obj-82",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ezdac~",
+					"varname" : "autohelp_dac",
+					"presentation_rect" : [ 186.0, 14.0, 45.0, 45.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 531.0, 388.0, 45.0, 45.0 ],
+					"presentation" : 1,
+					"id" : "obj-94",
+					"local" : 1,
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel",
+					"border" : 2,
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"presentation_rect" : [ 12.0, 136.0, 205.0, 57.0 ],
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1093.0, 826.0, 100.0, 55.0 ],
+					"presentation" : 1,
+					"id" : "obj-95",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 306.0, 171.0, 20.0, 20.0 ],
+					"id" : "obj-71",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/stopplaying",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 336.0, 492.0, 73.0, 17.0 ],
+					"id" : "obj-72",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 422.0, 174.0, 20.0, 20.0 ],
+					"id" : "obj-70",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/startplaying",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 244.0, 490.0, 75.0, 17.0 ],
+					"id" : "obj-63",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /midinoteon",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 122.0, 833.0, 116.0, 19.0 ],
+					"id" : "obj-69",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "udpsend 127.0.0.1 12121",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 229.0, 962.0, 141.0, 19.0 ],
+					"id" : "obj-68",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "64 127",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 30.0, 255.0, 50.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ -47.0, 229.0, 50.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-67",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.object",
+					"text" : "sequence midi",
+					"outlettype" : [ "", "" ],
+					"scope" : 0,
+					"fontsize" : 12.0,
+					"persistence" : 0,
+					"presentation_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"numinlets" : 1,
+					"description" : "sequence midi",
+					"patching_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"ftm_scope" : 2,
+					"id" : "obj-14",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"name" : "play.seq",
+					"ftm_objref_conv" : 0,
+					"editor_interface" : "matrix"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 19.0, 57.0, 43.0, 17.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 712.0, 222.0, 43.0, 17.0 ],
+					"presentation" : 1,
+					"id" : "obj-15",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "import MIDI file",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 60.0, 56.0, 90.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 757.0, 221.0, 90.0, 19.0 ],
+					"presentation" : 1,
+					"id" : "obj-16",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "play an FTM track",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 60.0, 23.0, 98.0, 19.0 ],
+					"id" : "obj-17",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "ftm.play",
+					"fontsize" : 24.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 54.0, -10.0, 108.0, 36.0 ],
+					"id" : "obj-18",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "FTM basic objects",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 48.0, -22.0, 97.0, 19.0 ],
+					"id" : "obj-19",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "fpic",
+					"numinlets" : 1,
+					"patching_rect" : [ 8.0, -25.0, 54.0, 74.0 ],
+					"pic" : "ftm.help.jpg",
+					"id" : "obj-20",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "midiout",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -9.0, 401.0, 48.0, 19.0 ],
+					"id" : "obj-44",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "play",
+					"outlettype" : [ "" ],
+					"fontsize" : 18.0,
+					"presentation_rect" : [ 18.0, 22.0, 52.0, 26.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 409.0, 130.0, 52.0, 26.0 ],
+					"presentation" : 1,
+					"id" : "obj-46",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "stop",
+					"outlettype" : [ "" ],
+					"fontsize" : 18.0,
+					"presentation_rect" : [ 86.0, 22.0, 51.0, 26.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 306.0, 129.0, 51.0, 26.0 ],
+					"presentation" : 1,
+					"id" : "obj-49",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel[1]",
+					"border" : 2,
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"presentation_rect" : [ 12.0, 17.0, 167.0, 98.0 ],
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1093.0, 886.0, 100.0, 55.0 ],
+					"presentation" : 1,
+					"id" : "obj-5",
+					"numoutlets" : 0
+				}
+
+			}
+ ],
+		"lines" : [ 			{
+				"patchline" : 				{
+					"source" : [ "obj-88", 1 ],
+					"destination" : [ "obj-120", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 0 ],
+					"destination" : [ "obj-80", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-116", 1 ],
+					"destination" : [ "obj-115", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-75", 0 ],
+					"destination" : [ "obj-116", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-115", 0 ],
+					"destination" : [ "obj-112", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-112", 0 ],
+					"destination" : [ "obj-88", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 1 ],
+					"destination" : [ "obj-76", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-107", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-86", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-93", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-104", 0 ],
+					"destination" : [ "obj-76", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-76", 0 ],
+					"destination" : [ "obj-108", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-80", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-80", 0 ],
+					"destination" : [ "obj-86", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-30", 0 ],
+					"destination" : [ "obj-22", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 0 ],
+					"destination" : [ "obj-56", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-48", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-103", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-39", 0 ],
+					"destination" : [ "obj-21", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-21", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-97", 0 ],
+					"destination" : [ "obj-21", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-75", 0 ],
+					"destination" : [ "obj-97", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-61", 0 ],
+					"destination" : [ "obj-59", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-58", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-59", 0 ],
+					"destination" : [ "obj-58", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-45", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-51", 0 ],
+					"destination" : [ "obj-45", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-12", 0 ],
+					"destination" : [ "obj-13", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-13", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-87", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-84", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-81", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-84", 0 ],
+					"destination" : [ "obj-75", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-81", 0 ],
+					"destination" : [ "obj-66", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-50", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-40", 0 ],
+					"destination" : [ "obj-43", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-35", 0 ],
+					"destination" : [ "obj-43", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-40", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-35", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-38", 1 ],
+					"destination" : [ "obj-40", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-38", 0 ],
+					"destination" : [ "obj-35", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-22", 0 ],
+					"destination" : [ "obj-38", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-99", 0 ],
+					"destination" : [ "obj-60", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-69", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-74", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-64", 1 ],
+					"destination" : [ "obj-74", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-73", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-64", 0 ],
+					"destination" : [ "obj-73", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-32", 0 ],
+					"destination" : [ "obj-64", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-25", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-55", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-82", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-1", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 1 ],
+					"destination" : [ "obj-27", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-29", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-32", 0 ],
+					"destination" : [ "obj-31", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-33", 0 ],
+					"destination" : [ "obj-32", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-26", 0 ],
+					"destination" : [ "obj-31", 2 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 0 ],
+					"destination" : [ "obj-26", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-4", 0 ],
+					"destination" : [ "obj-1", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-44", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-65", 1 ],
+					"destination" : [ "obj-94", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-65", 0 ],
+					"destination" : [ "obj-94", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-110", 0 ],
+					"destination" : [ "obj-65", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-105", 0 ],
+					"destination" : [ "obj-65", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-113", 0 ],
+					"destination" : [ "obj-65", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-105", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-67", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-71", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-72", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-72", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-63", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-70", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-15", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-69", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-138", 0 ],
+					"destination" : [ "obj-136", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-137", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-136", 0 ],
+					"destination" : [ "obj-137", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-110", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-3", 0 ],
+					"destination" : [ "obj-109", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-11", 0 ],
+					"destination" : [ "obj-2", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-2", 0 ],
+					"destination" : [ "obj-25", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-36", 0 ],
+					"destination" : [ "obj-2", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-37", 0 ],
+					"destination" : [ "obj-36", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-41", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-41", 0 ],
+					"destination" : [ "obj-11", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-28", 0 ],
+					"destination" : [ "obj-4", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-53", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-90", 0 ],
+					"destination" : [ "obj-7", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-7", 0 ],
+					"destination" : [ "obj-92", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-7", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-63", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-87", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-98", 1 ],
+					"destination" : [ "obj-26", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-98", 0 ],
+					"destination" : [ "obj-31", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-63", 0 ],
+					"destination" : [ "obj-98", 3 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-98", 2 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-109", 0 ],
+					"destination" : [ "obj-98", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-98", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-106", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 1 ],
+					"destination" : [ "obj-101", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-42", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 0 ],
+					"destination" : [ "obj-48", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-78", 0 ],
+					"destination" : [ "obj-62", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-62", 0 ],
+					"destination" : [ "obj-57", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-62", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+ ]
+	}
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/maxPatchToPlayFiles/playMidiTranscription9.maxpat	Tue Mar 06 17:11:46 2012 +0000
@@ -0,0 +1,4316 @@
+{
+	"patcher" : 	{
+		"fileversion" : 1,
+		"rect" : [ 591.0, 75.0, 1089.0, 872.0 ],
+		"bglocked" : 0,
+		"defrect" : [ 591.0, 75.0, 1089.0, 872.0 ],
+		"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+		"openinpresentation" : 1,
+		"default_fontsize" : 10.0,
+		"default_fontface" : 0,
+		"default_fontname" : "Verdana",
+		"gridonopen" : 0,
+		"gridsize" : [ 15.0, 15.0 ],
+		"gridsnaponopen" : 0,
+		"toolbarvisible" : 1,
+		"boxanimatetime" : 200,
+		"imprint" : 0,
+		"enablehscroll" : 1,
+		"enablevscroll" : 1,
+		"devicewidth" : 0.0,
+		"boxes" : [ 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"patching_rect" : [ 698.0, 772.0, 68.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-30",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ -90.0, 449.0, 20.0, 20.0 ],
+					"outlettype" : [ "int" ],
+					"numinlets" : 1,
+					"id" : "obj-78",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"patching_rect" : [ -67.0, 473.0, 33.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-62",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "print",
+					"patching_rect" : [ -53.0, 505.0, 34.0, 19.0 ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-57",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "change this to load your own location of the RWC warped files",
+					"linecount" : 3,
+					"patching_rect" : [ 670.0, 38.0, 150.0, 43.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 578.0, 28.0, 330.0, 19.0 ],
+					"id" : "obj-52",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 210.0, 89.0, 50.0, 19.0 ],
+					"outlettype" : [ "int", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 438.0, 20.0, 50.0, 19.0 ],
+					"id" : "obj-56",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/RWCfile $1",
+					"patching_rect" : [ 869.0, 480.0, 70.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-48",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import \"Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Muller_warp/RM-C023B_warped.mid\"",
+					"patching_rect" : [ 403.0, 89.0, 568.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-42",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "set prior on start",
+					"patching_rect" : [ 739.0, 374.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 327.0, 93.0, 150.0, 19.0 ],
+					"id" : "obj-47",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ 712.0, 373.0, 20.0, 20.0 ],
+					"outlettype" : [ "int" ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"presentation_rect" : [ 300.0, 92.0, 20.0, 20.0 ],
+					"id" : "obj-39",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"patching_rect" : [ 710.0, 401.0, 33.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-21",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "prefix /Users/andrew/Documents/work/MuseScore/RWC/Muller_warp",
+					"patching_rect" : [ 478.0, 12.0, 363.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 571.0, 7.0, 363.0, 17.0 ],
+					"id" : "obj-106",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend import",
+					"patching_rect" : [ 267.0, 45.0, 86.0, 20.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 11.595187,
+					"numinlets" : 1,
+					"id" : "obj-101",
+					"fontname" : "Arial",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"types" : [  ],
+					"patching_rect" : [ 267.0, 18.0, 164.0, 18.0 ],
+					"outlettype" : [ "int", "", "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"items" : [ "RM-C001_warped.mid", ",", "RM-C002_warped.mid", ",", "RM-C003_warped.mid", ",", "RM-C004_warped.mid", ",", "RM-C005_warped.mid", ",", "RM-C006_warped.mid", ",", "RM-C007_warped.mid", ",", "RM-C008_warped.mid", ",", "RM-C009_warped.mid", ",", "RM-C010_warped.mid", ",", "RM-C011_warped.mid", ",", "RM-C012_warped.mid", ",", "RM-C013_warped.mid", ",", "RM-C014_warped.mid", ",", "RM-C015_warped.mid", ",", "RM-C016_warped.mid", ",", "RM-C017_warped.mid", ",", "RM-C018_warped.mid", ",", "RM-C019_warped.mid", ",", "RM-C020_warped.mid", ",", "RM-C021_warped.mid", ",", "RM-C022_warped.mid", ",", "RM-C023A_warped.mid", ",", "RM-C023B_warped.mid", ",", "RM-C023C_warped.mid", ",", "RM-C023D_warped.mid", ",", "RM-C023E_warped.mid", ",", "RM-C024A_warped.mid", ",", "RM-C024B_warped.mid", ",", "RM-C024C_warped.mid", ",", "RM-C025A_warped.mid", ",", "RM-C025B_warped.mid", ",", "RM-C025C_warped.mid", ",", "RM-C025D_warped.mid", ",", "RM-C026_warped.mid", ",", "RM-C027_warped.mid", ",", "RM-C028_warped.mid", ",", "RM-C029_warped.mid", ",", "RM-C030_warped.mid", ",", "RM-C031_warped.mid", ",", "RM-C032_warped.mid", ",", "RM-C033_warped.mid", ",", "RM-C034_warped.mid", ",", "RM-C035A_warped.mid", ",", "RM-C035B_warped.mid", ",", "RM-C035C_warped.mid", ",", "RM-C036_warped.mid", ",", "RM-C037_warped.mid", ",", "RM-C038_warped.mid", ",", "RM-C039_warped.mid", ",", "RM-C040_warped.mid", ",", "RM-C041_warped.mid", ",", "RM-C042_warped.mid", ",", "RM-C043_warped.mid", ",", "RM-C044_warped.mid", ",", "RM-C045_warped.mid", ",", "RM-C046_warped.mid", ",", "RM-C047_warped.mid", ",", "RM-C048_warped.mid", ",", "RM-C049_warped.mid", ",", "RM-C050_warped.mid" ],
+					"autopopulate" : 1,
+					"prefix" : "Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Muller_warp/",
+					"numinlets" : 1,
+					"presentation_rect" : [ 267.0, 18.0, 164.0, 18.0 ],
+					"id" : "obj-102",
+					"fontname" : "Arial",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess prefix /Users/andrew/Documents/work/MuseScore/RWC/Muller_warp",
+					"patching_rect" : [ 267.0, -14.0, 426.0, 20.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 11.595187,
+					"numinlets" : 1,
+					"id" : "obj-103",
+					"fontname" : "Arial",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"types" : [  ],
+					"patching_rect" : [ 607.0, 32.0, 100.0, 19.0 ],
+					"outlettype" : [ "int", "", "" ],
+					"fontsize" : 10.0,
+					"items" : "<empty>",
+					"numinlets" : 1,
+					"id" : "obj-100",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p routingNoteons",
+					"patching_rect" : [ 143.0, 530.0, 97.0, 19.0 ],
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 4,
+					"id" : "obj-98",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"patcher" : 					{
+						"fileversion" : 1,
+						"rect" : [ 0.0, 0.0, 640.0, 480.0 ],
+						"bglocked" : 0,
+						"defrect" : [ 0.0, 0.0, 640.0, 480.0 ],
+						"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+						"openinpresentation" : 0,
+						"default_fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"gridonopen" : 0,
+						"gridsize" : [ 15.0, 15.0 ],
+						"gridsnaponopen" : 0,
+						"toolbarvisible" : 1,
+						"boxanimatetime" : 200,
+						"imprint" : 0,
+						"enablehscroll" : 1,
+						"enablevscroll" : 1,
+						"devicewidth" : 0.0,
+						"boxes" : [ 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "176 64 127",
+									"patching_rect" : [ 310.0, 160.0, 102.0, 17.0 ],
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"id" : "obj-93",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "74 74",
+									"patching_rect" : [ 120.0, 185.0, 50.0, 17.0 ],
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"id" : "obj-91",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "t l",
+									"patching_rect" : [ 73.0, 158.0, 21.0, 19.0 ],
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-89",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "route 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159",
+									"patching_rect" : [ 50.0, 100.0, 398.0, 19.0 ],
+									"outlettype" : [ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-88",
+									"fontname" : "Verdana",
+									"numoutlets" : 17
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p weirdStarter",
+									"patching_rect" : [ 144.0, 237.0, 83.0, 19.0 ],
+									"outlettype" : [ "bang" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"id" : "obj-48",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"patcher" : 									{
+										"fileversion" : 1,
+										"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"bglocked" : 0,
+										"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+										"openinpresentation" : 0,
+										"default_fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"gridonopen" : 0,
+										"gridsize" : [ 15.0, 15.0 ],
+										"gridsnaponopen" : 0,
+										"toolbarvisible" : 1,
+										"boxanimatetime" : 200,
+										"imprint" : 0,
+										"enablehscroll" : 1,
+										"enablevscroll" : 1,
+										"devicewidth" : 0.0,
+										"boxes" : [ 											{
+												"box" : 												{
+													"maxclass" : "toggle",
+													"patching_rect" : [ 94.0, 159.0, 20.0, 20.0 ],
+													"outlettype" : [ "int" ],
+													"numinlets" : 1,
+													"id" : "obj-132",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"patching_rect" : [ 95.0, 217.0, 20.0, 20.0 ],
+													"outlettype" : [ "bang" ],
+													"numinlets" : 1,
+													"id" : "obj-130",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "0",
+													"patching_rect" : [ 92.0, 239.0, 32.5, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-128",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "newobj",
+													"text" : "gate",
+													"patching_rect" : [ 92.0, 192.0, 33.0, 19.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-126",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "1",
+													"patching_rect" : [ 65.0, 136.0, 32.5, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-125",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "newobj",
+													"text" : "loadbang",
+													"patching_rect" : [ 50.0, 100.0, 56.0, 19.0 ],
+													"outlettype" : [ "bang" ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-123",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "inlet",
+													"patching_rect" : [ 65.0, 40.0, 25.0, 25.0 ],
+													"outlettype" : [ "bang" ],
+													"numinlets" : 0,
+													"id" : "obj-40",
+													"numoutlets" : 1,
+													"comment" : ""
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "inlet",
+													"patching_rect" : [ 106.0, 40.0, 25.0, 25.0 ],
+													"outlettype" : [ "" ],
+													"numinlets" : 0,
+													"id" : "obj-41",
+													"numoutlets" : 1,
+													"comment" : ""
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"patching_rect" : [ 95.0, 331.5, 25.0, 25.0 ],
+													"numinlets" : 1,
+													"id" : "obj-47",
+													"numoutlets" : 0,
+													"comment" : ""
+												}
+
+											}
+ ],
+										"lines" : [ 											{
+												"patchline" : 												{
+													"source" : [ "obj-125", 0 ],
+													"destination" : [ "obj-132", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-128", 0 ],
+													"destination" : [ "obj-132", 0 ],
+													"hidden" : 0,
+													"midpoints" : [ 101.5, 253.0, 101.5, 264.0, 83.0, 264.0, 83.0, 155.0, 103.5, 155.0 ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-130", 0 ],
+													"destination" : [ "obj-128", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-126", 0 ],
+													"destination" : [ "obj-130", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-132", 0 ],
+													"destination" : [ "obj-126", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-123", 0 ],
+													"destination" : [ "obj-125", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-40", 0 ],
+													"destination" : [ "obj-125", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-41", 0 ],
+													"destination" : [ "obj-126", 1 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-130", 0 ],
+													"destination" : [ "obj-47", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+ ]
+									}
+,
+									"saved_object_attributes" : 									{
+										"globalpatchername" : "",
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"fontname" : "Arial",
+										"default_fontsize" : 12.0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "gate",
+									"patching_rect" : [ 52.0, 456.0, 33.0, 19.0 ],
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"id" : "obj-30",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"patching_rect" : [ 169.0, 298.0, 20.0, 20.0 ],
+									"outlettype" : [ "bang" ],
+									"numinlets" : 1,
+									"id" : "obj-134",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "zl join",
+									"patching_rect" : [ 88.0, 388.0, 41.0, 19.0 ],
+									"outlettype" : [ "", "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"id" : "obj-83",
+									"fontname" : "Verdana",
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "- 0.",
+									"patching_rect" : [ 102.0, 357.0, 32.5, 19.0 ],
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"id" : "obj-80",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "t l b",
+									"patching_rect" : [ 88.0, 299.0, 32.5, 19.0 ],
+									"outlettype" : [ "", "bang" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-79",
+									"fontname" : "Verdana",
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "cpuclock",
+									"patching_rect" : [ 169.0, 328.0, 53.0, 19.0 ],
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-78",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "cpuclock",
+									"patching_rect" : [ 102.0, 327.0, 53.0, 19.0 ],
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-76",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 50.0, 40.0, 25.0, 25.0 ],
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"id" : "obj-21",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 52.0, 40.0, 25.0, 25.0 ],
+									"outlettype" : [ "int" ],
+									"numinlets" : 0,
+									"id" : "obj-39",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 144.0, 40.0, 25.0, 25.0 ],
+									"outlettype" : [ "bang" ],
+									"numinlets" : 0,
+									"id" : "obj-42",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 169.0, 40.0, 25.0, 25.0 ],
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"id" : "obj-47",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"patching_rect" : [ 52.0, 535.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"id" : "obj-86",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"patching_rect" : [ 73.0, 535.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"id" : "obj-96",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+ ],
+						"lines" : [ 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 15 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 16 ],
+									"destination" : [ "obj-93", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 0 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 1 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 2 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 3 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 4 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 5 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 6 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 7 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 8 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 9 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 10 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 12 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 13 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-88", 14 ],
+									"destination" : [ "obj-89", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-79", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-48", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-91", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-79", 0 ],
+									"destination" : [ "obj-83", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-79", 1 ],
+									"destination" : [ "obj-76", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-78", 0 ],
+									"destination" : [ "obj-80", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-76", 0 ],
+									"destination" : [ "obj-80", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-80", 0 ],
+									"destination" : [ "obj-83", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-134", 0 ],
+									"destination" : [ "obj-78", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-83", 0 ],
+									"destination" : [ "obj-30", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-21", 0 ],
+									"destination" : [ "obj-88", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-39", 0 ],
+									"destination" : [ "obj-30", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-42", 0 ],
+									"destination" : [ "obj-48", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-47", 0 ],
+									"destination" : [ "obj-134", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-30", 0 ],
+									"destination" : [ "obj-86", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-89", 0 ],
+									"destination" : [ "obj-96", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+ ]
+					}
+,
+					"saved_object_attributes" : 					{
+						"globalpatchername" : "",
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"fontname" : "Arial",
+						"default_fontsize" : 12.0
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /duration",
+					"patching_rect" : [ 769.0, 340.0, 101.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-97",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "print",
+					"patching_rect" : [ 33.0, 893.0, 34.0, 19.0 ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-92",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ 33.0, 827.0, 20.0, 20.0 ],
+					"outlettype" : [ "int" ],
+					"numinlets" : 1,
+					"id" : "obj-90",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"patching_rect" : [ 33.0, 862.0, 33.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-7",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 0.08",
+					"patching_rect" : [ 633.0, 513.0, 84.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-61",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /likelihoodToNoiseRatio",
+					"patching_rect" : [ 612.0, 579.0, 171.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 135.0, 522.0, 171.0, 19.0 ],
+					"id" : "obj-58",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"patching_rect" : [ 612.0, 552.0, 50.0, 19.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"maximum" : 0.6,
+					"numinlets" : 1,
+					"minimum" : 0.001,
+					"presentation_rect" : [ 138.0, 500.0, 50.0, 19.0 ],
+					"id" : "obj-59",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /maximumSpeedRatio",
+					"patching_rect" : [ 702.0, 728.0, 167.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 311.0, 464.0, 167.0, 19.0 ],
+					"id" : "obj-45",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"patching_rect" : [ 702.0, 701.0, 50.0, 19.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"maximum" : 2.0,
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"presentation_rect" : [ 311.0, 436.0, 50.0, 19.0 ],
+					"id" : "obj-51",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 713.0, 162.0, 20.0, 20.0 ],
+					"outlettype" : [ "bang" ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"presentation_rect" : [ 523.0, 109.0, 20.0, 20.0 ],
+					"id" : "obj-87",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 777.0, 284.0, 63.0, 19.0 ],
+					"outlettype" : [ "int", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"numinlets" : 1,
+					"presentation_rect" : [ 522.0, 136.0, 63.0, 19.0 ],
+					"id" : "obj-66",
+					"fontname" : "Verdana",
+					"triscale" : 0.9,
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"cantchange" : 1,
+					"patching_rect" : [ 777.0, 307.0, 64.0, 19.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"triangle" : 0,
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"numinlets" : 1,
+					"presentation_rect" : [ 522.0, 159.0, 64.0, 19.0 ],
+					"id" : "obj-75",
+					"fontname" : "Verdana",
+					"triscale" : 0.9,
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "number of events",
+					"patching_rect" : [ 840.0, 286.0, 97.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 587.0, 136.0, 97.0, 19.0 ],
+					"id" : "obj-77",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"#init" : "",
+					"patching_rect" : [ 718.0, 285.0, 51.93457, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"#untuple" : 0,
+					"#triggerall" : 0,
+					"text" : [ "_($1 size)" ],
+					"#loadbang" : 0,
+					"ftm_scope" : 1,
+					"numinlets" : 2,
+					"presentation_rect" : [ 718.0, 285.0, 51.93457, 17.0 ],
+					"id" : "obj-81",
+					"fontname" : "Verdana",
+					"ftm_objref_conv" : 0,
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"#init" : "",
+					"patching_rect" : [ 699.0, 308.0, 74.566406, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"#untuple" : 0,
+					"#triggerall" : 0,
+					"text" : [ "_($1 duration)" ],
+					"#loadbang" : 0,
+					"ftm_scope" : 0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 699.0, 308.0, 74.566406, 17.0 ],
+					"id" : "obj-84",
+					"fontname" : "Verdana",
+					"ftm_objref_conv" : 0,
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "duration in msec",
+					"patching_rect" : [ 840.0, 309.0, 93.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 587.0, 159.0, 93.0, 19.0 ],
+					"id" : "obj-85",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import /Users/andrew/hg/midi-score-follower/MIDIfiles/test.mid",
+					"patching_rect" : [ 663.0, 129.0, 335.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-53",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"patching_rect" : [ -28.0, 309.0, 68.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-28",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "176 64 127",
+					"patching_rect" : [ -131.0, 428.0, 95.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 10.0, 226.0, 95.0, 17.0 ],
+					"id" : "obj-50",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/MAPestimate",
+					"patching_rect" : [ 793.0, 807.0, 108.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 364.0, 375.0, 108.0, 17.0 ],
+					"id" : "obj-43",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/MAPestimate",
+					"patching_rect" : [ 768.0, 865.0, 80.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-40",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sel 0 1",
+					"patching_rect" : [ 698.0, 826.0, 46.0, 19.0 ],
+					"outlettype" : [ "bang", "bang", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-38",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/integratedEstimate",
+					"patching_rect" : [ 646.0, 865.0, 110.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-35",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ 698.0, 796.0, 20.0, 20.0 ],
+					"outlettype" : [ "int" ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"presentation_rect" : [ 364.0, 350.0, 20.0, 20.0 ],
+					"id" : "obj-22",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /minimumSpeedRatio",
+					"patching_rect" : [ 685.0, 657.0, 164.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 134.0, 463.0, 164.0, 19.0 ],
+					"id" : "obj-13",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"patching_rect" : [ 685.0, 630.0, 50.0, 19.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"maximum" : 2.0,
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"presentation_rect" : [ 134.0, 436.0, 50.0, 19.0 ],
+					"id" : "obj-12",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"patching_rect" : [ 86.0, 135.0, 32.5, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-41",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 250",
+					"patching_rect" : [ 141.0, 150.0, 80.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-37",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"patching_rect" : [ 141.0, 173.0, 50.0, 19.0 ],
+					"outlettype" : [ "int", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 583.0, 228.0, 50.0, 19.0 ],
+					"id" : "obj-36",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "iterate through notes when used offline",
+					"linecount" : 2,
+					"presentation_linecount" : 2,
+					"patching_rect" : [ 1247.0, 855.0, 150.0, 31.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 550.0, 197.0, 150.0, 31.0 ],
+					"id" : "obj-34",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ 89.0, 165.0, 20.0, 20.0 ],
+					"outlettype" : [ "int" ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"presentation_rect" : [ 523.0, 204.0, 20.0, 20.0 ],
+					"id" : "obj-11",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "metro 250",
+					"patching_rect" : [ 90.0, 201.0, 63.0, 19.0 ],
+					"outlettype" : [ "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 517.0, 230.0, 63.0, 19.0 ],
+					"id" : "obj-2",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"patching_rect" : [ 511.0, 249.0, 57.0, 21.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 12.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 282.0, 62.0, 57.0, 21.0 ],
+					"id" : "obj-99",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/offline",
+					"patching_rect" : [ 169.0, 893.0, 46.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-74",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/realtime",
+					"patching_rect" : [ 100.0, 890.0, 56.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-73",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sel 1 2",
+					"patching_rect" : [ 85.0, 860.0, 46.0, 19.0 ],
+					"outlettype" : [ "bang", "bang", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-64",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p ftmPlayer",
+					"patching_rect" : [ 45.0, 316.0, 476.0, 19.0 ],
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-60",
+					"fontname" : "Verdana",
+					"numoutlets" : 2,
+					"patcher" : 					{
+						"fileversion" : 1,
+						"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"bglocked" : 0,
+						"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+						"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+						"openinpresentation" : 0,
+						"default_fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"gridonopen" : 0,
+						"gridsize" : [ 15.0, 15.0 ],
+						"gridsnaponopen" : 0,
+						"toolbarvisible" : 1,
+						"boxanimatetime" : 200,
+						"imprint" : 0,
+						"enablehscroll" : 1,
+						"enablevscroll" : 1,
+						"devicewidth" : 0.0,
+						"boxes" : [ 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 336.0, 56.0, 25.0, 25.0 ],
+									"outlettype" : [ "float" ],
+									"numinlets" : 0,
+									"id" : "obj-1",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "midi",
+									"patching_rect" : [ 131.0, 214.0, 150.0, 19.0 ],
+									"presentation" : 1,
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"presentation_rect" : [ 52.0, 420.0, 150.0, 19.0 ],
+									"id" : "obj-11",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p otherFtmControls",
+									"patching_rect" : [ 50.0, 109.0, 108.0, 19.0 ],
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 0,
+									"id" : "obj-115",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"patcher" : 									{
+										"fileversion" : 1,
+										"rect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"bglocked" : 0,
+										"defrect" : [ 25.0, 69.0, 640.0, 480.0 ],
+										"openrect" : [ 0.0, 0.0, 0.0, 0.0 ],
+										"openinpresentation" : 0,
+										"default_fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"gridonopen" : 0,
+										"gridsize" : [ 15.0, 15.0 ],
+										"gridsnaponopen" : 0,
+										"toolbarvisible" : 1,
+										"boxanimatetime" : 200,
+										"imprint" : 0,
+										"enablehscroll" : 1,
+										"enablevscroll" : 1,
+										"devicewidth" : 0.0,
+										"boxes" : [ 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "ordinary file following (x) or else one shot test",
+													"linecount" : 2,
+													"presentation_linecount" : 2,
+													"patching_rect" : [ 98.0, 56.0, 153.0, 31.0 ],
+													"presentation" : 1,
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"presentation_rect" : [ 52.0, 186.0, 156.0, 31.0 ],
+													"id" : "obj-111",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed",
+													"patching_rect" : [ 362.0, 263.0, 57.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-3",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"#init" : "",
+													"patching_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"text" : [ "_loop 500 1500 1." ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"numinlets" : 2,
+													"presentation_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"id" : "obj-4",
+													"fontname" : "Verdana",
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (begin, end and speed) and loop",
+													"patching_rect" : [ 306.0, 167.0, 240.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-5",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"#init" : "",
+													"patching_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"text" : [ "_play $play.seq 500 1500 1." ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"numinlets" : 2,
+													"presentation_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"id" : "obj-6",
+													"fontname" : "Verdana",
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (track, begin, end and speed) and play",
+													"patching_rect" : [ 370.0, 147.0, 272.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-7",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to next time",
+													"patching_rect" : [ 88.0, 258.0, 115.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-8",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "slider",
+													"patching_rect" : [ 162.0, 238.0, 169.0, 15.0 ],
+													"outlettype" : [ "" ],
+													"orientation" : 1,
+													"size" : 1001.0,
+													"numinlets" : 1,
+													"id" : "obj-9",
+													"mult" : 10.0,
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate or jump at given time",
+													"patching_rect" : [ 114.0, 121.0, 151.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-10",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "next",
+													"patching_rect" : [ 50.0, 257.0, 33.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-11",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "jump 300.",
+													"patching_rect" : [ 50.0, 119.0, 62.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-12",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed by giving a duration for the current segment",
+													"patching_rect" : [ 336.0, 281.0, 285.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-23",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (only begin and end) and play straight",
+													"patching_rect" : [ 354.0, 120.0, 270.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-24",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment",
+													"patching_rect" : [ 86.0, 147.0, 116.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-25",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 0.5",
+													"patching_rect" : [ 299.0, 262.0, 58.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-26",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"#init" : "",
+													"patching_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"text" : [ "_set 0 9999999" ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"numinlets" : 2,
+													"presentation_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"id" : "obj-27",
+													"fontname" : "Verdana",
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "flonum",
+													"patching_rect" : [ 104.0, 238.0, 56.0, 19.0 ],
+													"outlettype" : [ "float", "bang" ],
+													"fontsize" : 10.0,
+													"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+													"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+													"numinlets" : 1,
+													"id" : "obj-28",
+													"fontname" : "Verdana",
+													"triscale" : 0.9,
+													"numoutlets" : 2
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "duration 1000",
+													"patching_rect" : [ 252.0, 281.0, 79.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-29",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 2.",
+													"patching_rect" : [ 252.0, 262.0, 52.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-30",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "pause",
+													"patching_rect" : [ 50.0, 192.0, 40.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-31",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "locate 300.",
+													"patching_rect" : [ 50.0, 100.0, 67.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-32",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "sync $1",
+													"patching_rect" : [ 50.0, 238.0, 49.0, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-33",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"#init" : "",
+													"patching_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"#triggerall" : 0,
+													"text" : [ "_set $play.seq 500 1500 1." ],
+													"#loadbang" : 0,
+													"ftm_scope" : 0,
+													"numinlets" : 2,
+													"presentation_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"id" : "obj-40",
+													"fontname" : "Verdana",
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "loop",
+													"patching_rect" : [ 50.0, 165.0, 32.5, 17.0 ],
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"id" : "obj-41",
+													"fontname" : "Verdana",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"patching_rect" : [ 50.0, 292.0, 15.0, 15.0 ],
+													"outlettype" : [ "bang" ],
+													"numinlets" : 1,
+													"id" : "obj-50",
+													"numoutlets" : 1
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to gven time (output all events on the way)",
+													"patching_rect" : [ 326.0, 238.0, 274.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-54",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate halted at given time",
+													"patching_rect" : [ 119.0, 101.0, 143.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-55",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "loop current segment",
+													"patching_rect" : [ 85.0, 166.0, 116.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-57",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "stop playing and reset",
+													"patching_rect" : [ 86.0, 212.0, 121.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-58",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "halt playing",
+													"patching_rect" : [ 93.0, 193.0, 67.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-59",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment straight",
+													"patching_rect" : [ 67.0, 292.0, 158.0, 19.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-60",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "note that setting a new track stops and resets the player (play and loop start from beginning)",
+													"linecount" : 2,
+													"patching_rect" : [ 277.0, 196.0, 266.0, 31.0 ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"id" : "obj-62",
+													"fontname" : "Verdana",
+													"numoutlets" : 0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"patching_rect" : [ 147.357147, 371.0, 25.0, 25.0 ],
+													"numinlets" : 1,
+													"id" : "obj-114",
+													"numoutlets" : 0,
+													"comment" : ""
+												}
+
+											}
+ ],
+										"lines" : [ 											{
+												"patchline" : 												{
+													"source" : [ "obj-26", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-27", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-40", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-29", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-30", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-4", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-6", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-50", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-11", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-33", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-31", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-41", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-12", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-32", 0 ],
+													"destination" : [ "obj-114", 0 ],
+													"hidden" : 0,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-28", 0 ],
+													"destination" : [ "obj-33", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+, 											{
+												"patchline" : 												{
+													"source" : [ "obj-9", 0 ],
+													"destination" : [ "obj-28", 0 ],
+													"hidden" : 1,
+													"midpoints" : [  ]
+												}
+
+											}
+ ]
+									}
+,
+									"saved_object_attributes" : 									{
+										"globalpatchername" : "",
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"fontname" : "Arial",
+										"default_fontsize" : 12.0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "syntax:",
+									"patching_rect" : [ 358.0, 168.0, 46.0, 19.0 ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-2",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "kill hanging notes when looping",
+									"hidden" : 1,
+									"patching_rect" : [ 291.0, 203.0, 168.0, 19.0 ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-13",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment end",
+									"patching_rect" : [ 433.0, 120.0, 93.0, 19.0 ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-21",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "change 0 -",
+									"hidden" : 1,
+									"patching_rect" : [ 128.0, 202.0, 62.0, 19.0 ],
+									"outlettype" : [ "", "int", "int" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-34",
+									"fontname" : "Verdana",
+									"numoutlets" : 3
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"patching_rect" : [ 262.0, 120.0, 169.0, 15.0 ],
+									"outlettype" : [ "" ],
+									"orientation" : 1,
+									"size" : 1001.0,
+									"numinlets" : 1,
+									"id" : "obj-35",
+									"mult" : 10.0,
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"patching_rect" : [ 187.0, 100.0, 169.0, 15.0 ],
+									"outlettype" : [ "" ],
+									"orientation" : 1,
+									"size" : 1001.0,
+									"numinlets" : 1,
+									"id" : "obj-36",
+									"mult" : 10.0,
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "GM",
+									"patching_rect" : [ 203.0, 228.0, 32.5, 17.0 ],
+									"outlettype" : [ "" ],
+									"presentation" : 1,
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"presentation_rect" : [ 127.0, 442.0, 32.5, 17.0 ],
+									"id" : "obj-37",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "panic",
+									"patching_rect" : [ 161.0, 228.0, 37.0, 17.0 ],
+									"outlettype" : [ "" ],
+									"presentation" : 1,
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"presentation_rect" : [ 85.0, 442.0, 37.0, 17.0 ],
+									"id" : "obj-38",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "off",
+									"patching_rect" : [ 124.0, 228.0, 32.5, 17.0 ],
+									"outlettype" : [ "" ],
+									"presentation" : 1,
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"presentation_rect" : [ 48.0, 442.0, 32.5, 17.0 ],
+									"id" : "obj-39",
+									"fontname" : "Verdana",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"patching_rect" : [ 262.0, 143.0, 55.0, 19.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"numinlets" : 1,
+									"id" : "obj-42",
+									"fontname" : "Verdana",
+									"triscale" : 0.9,
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"patching_rect" : [ 187.0, 143.0, 55.0, 19.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"numinlets" : 1,
+									"id" : "obj-43",
+									"fontname" : "Verdana",
+									"triscale" : 0.9,
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.midiunparse",
+									"patching_rect" : [ 112.0, 249.0, 93.0, 19.0 ],
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-45",
+									"fontname" : "Verdana",
+									"numoutlets" : 1,
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"patching_rect" : [ 337.0, 228.0, 15.0, 15.0 ],
+									"outlettype" : [ "bang" ],
+									"numinlets" : 1,
+									"id" : "obj-51",
+									"numoutlets" : 1
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"patching_rect" : [ 215.0, 201.0, 55.0, 19.0 ],
+									"outlettype" : [ "float", "bang" ],
+									"fontsize" : 10.0,
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"numinlets" : 1,
+									"id" : "obj-52",
+									"fontname" : "Verdana",
+									"triscale" : 0.9,
+									"numoutlets" : 2
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.play $play.seq",
+									"patching_rect" : [ 112.0, 166.0, 244.0, 28.0 ],
+									"outlettype" : [ "", "", "" ],
+									"fontsize" : 18.0,
+									"numinlets" : 4,
+									"id" : "obj-53",
+									"fontname" : "Verdana",
+									"numoutlets" : 3,
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment beginning",
+									"patching_rect" : [ 358.0, 100.0, 123.0, 19.0 ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"id" : "obj-61",
+									"fontname" : "Verdana",
+									"numoutlets" : 0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"patching_rect" : [ 112.0, 40.0, 25.0, 25.0 ],
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"id" : "obj-57",
+									"numoutlets" : 1,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"patching_rect" : [ 112.0, 328.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"id" : "obj-58",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"patching_rect" : [ 224.0, 328.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"id" : "obj-59",
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+ ],
+						"lines" : [ 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-59", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-45", 0 ],
+									"destination" : [ "obj-58", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-57", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 2 ],
+									"destination" : [ "obj-51", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-42", 0 ],
+									"destination" : [ "obj-53", 2 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-35", 0 ],
+									"destination" : [ "obj-42", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 1 ],
+									"destination" : [ "obj-52", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-43", 0 ],
+									"destination" : [ "obj-53", 1 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-36", 0 ],
+									"destination" : [ "obj-43", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-34", 0 ],
+									"destination" : [ "obj-39", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-52", 0 ],
+									"destination" : [ "obj-34", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-53", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-39", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-38", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-37", 0 ],
+									"destination" : [ "obj-45", 0 ],
+									"hidden" : 1,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-115", 0 ],
+									"destination" : [ "obj-53", 0 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+, 							{
+								"patchline" : 								{
+									"source" : [ "obj-1", 0 ],
+									"destination" : [ "obj-53", 3 ],
+									"hidden" : 0,
+									"midpoints" : [  ]
+								}
+
+							}
+ ]
+					}
+,
+					"saved_object_attributes" : 					{
+						"globalpatchername" : "",
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"fontname" : "Arial",
+						"default_fontsize" : 12.0
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "pause",
+					"patching_rect" : [ 226.0, 269.0, 40.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 62.0, 86.0, 51.0, 17.0 ],
+					"id" : "obj-55",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "hear MIDI playing",
+					"patching_rect" : [ -32.0, 255.0, 150.0, 19.0 ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-54",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"patching_rect" : [ 110.0, 692.0, 68.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-33",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"types" : [  ],
+					"patching_rect" : [ 113.0, 722.0, 100.0, 19.0 ],
+					"outlettype" : [ "int", "", "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"items" : [ "off", ",", "realtime", ",", "offline" ],
+					"numinlets" : 1,
+					"presentation_rect" : [ 232.0, 138.0, 100.0, 19.0 ],
+					"id" : "obj-32",
+					"fontname" : "Verdana",
+					"numoutlets" : 3
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "switch",
+					"patching_rect" : [ 121.0, 786.0, 46.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 3,
+					"id" : "obj-31",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "74 74 78305.585938",
+					"patching_rect" : [ 173.0, 787.0, 201.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 32.0, 199.0, 201.0, 17.0 ],
+					"id" : "obj-29",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend set",
+					"patching_rect" : [ 190.0, 627.0, 70.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-27",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "append",
+					"patching_rect" : [ 190.0, 655.0, 47.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-26",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "next",
+					"patching_rect" : [ 182.0, 268.0, 33.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 22.0, 86.0, 33.0, 17.0 ],
+					"id" : "obj-25",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "speed",
+					"patching_rect" : [ 571.0, 365.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 245.0, 62.0, 150.0, 19.0 ],
+					"id" : "obj-9",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "MIDI representation",
+					"patching_rect" : [ 1141.0, 862.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 16.0, -3.0, 150.0, 19.0 ],
+					"id" : "obj-24",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "audio",
+					"patching_rect" : [ 1126.0, 847.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 14.0, 119.0, 150.0, 19.0 ],
+					"id" : "obj-23",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "send notes",
+					"patching_rect" : [ 1243.0, 894.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 149.0, 169.0, 67.0, 19.0 ],
+					"id" : "obj-10",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"patching_rect" : [ 170.0, 442.0, 68.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-3",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "midi playing on/off",
+					"presentation_linecount" : 2,
+					"patching_rect" : [ 712.0, 190.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 215.0, 84.0, 73.0, 31.0 ],
+					"id" : "obj-8",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "plays midi and accompanying audio too",
+					"linecount" : 2,
+					"presentation_linecount" : 2,
+					"patching_rect" : [ 906.0, 904.0, 150.0, 31.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 294.0, 517.0, 150.0, 31.0 ],
+					"id" : "obj-6",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ -24.0, 341.0, 20.0, 20.0 ],
+					"outlettype" : [ "int" ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"presentation_rect" : [ 188.0, 84.0, 20.0, 20.0 ],
+					"id" : "obj-4",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"patching_rect" : [ -15.0, 373.0, 33.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-1",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"patching_rect" : [ -28.0, 861.0, 68.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-138",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /setSpeedPrior",
+					"patching_rect" : [ -29.0, 923.0, 129.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 128.0, 383.0, 129.0, 19.0 ],
+					"id" : "obj-137",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"patching_rect" : [ -29.0, 884.0, 50.0, 19.0 ],
+					"outlettype" : [ "float", "bang" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"presentation_rect" : [ 133.0, 351.0, 50.0, 19.0 ],
+					"id" : "obj-136",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "open",
+					"patching_rect" : [ 622.0, 320.0, 35.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 58.0, 170.0, 35.0, 17.0 ],
+					"id" : "obj-113",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"patching_rect" : [ 583.0, 320.0, 32.5, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-110",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"patching_rect" : [ 542.0, 320.0, 32.5, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 19.0, 172.0, 32.5, 17.0 ],
+					"id" : "obj-105",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sfplay~ 2",
+					"patching_rect" : [ 532.0, 343.0, 58.0, 19.0 ],
+					"outlettype" : [ "signal", "signal", "bang" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-65",
+					"fontname" : "Verdana",
+					"numoutlets" : 3,
+					"save" : [ "#N", "sfplay~", "", 2, 120960, 0, "", ";" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"patching_rect" : [ 170.0, 471.0, 20.0, 20.0 ],
+					"outlettype" : [ "int" ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"presentation_rect" : [ 126.0, 169.0, 20.0, 20.0 ],
+					"id" : "obj-109",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "zl slice 1",
+					"patching_rect" : [ -54.0, 200.0, 54.0, 19.0 ],
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-82",
+					"fontname" : "Verdana",
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ezdac~",
+					"varname" : "autohelp_dac",
+					"patching_rect" : [ 531.0, 388.0, 45.0, 45.0 ],
+					"presentation" : 1,
+					"local" : 1,
+					"numinlets" : 2,
+					"presentation_rect" : [ 186.0, 14.0, 45.0, 45.0 ],
+					"id" : "obj-94",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel",
+					"patching_rect" : [ 1093.0, 826.0, 100.0, 55.0 ],
+					"border" : 2,
+					"presentation" : 1,
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"numinlets" : 1,
+					"presentation_rect" : [ 12.0, 136.0, 205.0, 57.0 ],
+					"id" : "obj-95",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 306.0, 171.0, 20.0, 20.0 ],
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"id" : "obj-71",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/stopplaying",
+					"patching_rect" : [ 336.0, 492.0, 73.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-72",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"patching_rect" : [ 422.0, 174.0, 20.0, 20.0 ],
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"id" : "obj-70",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/startplaying",
+					"patching_rect" : [ 244.0, 490.0, 75.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"id" : "obj-63",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /midinoteon",
+					"patching_rect" : [ 122.0, 833.0, 116.0, 19.0 ],
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-69",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "udpsend 127.0.0.1 12121",
+					"patching_rect" : [ 229.0, 962.0, 141.0, 19.0 ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-68",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "64 127",
+					"patching_rect" : [ -47.0, 229.0, 50.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 30.0, 255.0, 50.0, 17.0 ],
+					"id" : "obj-67",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.object",
+					"text" : "sequence midi",
+					"description" : "sequence midi",
+					"patching_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"outlettype" : [ "", "" ],
+					"fontsize" : 12.0,
+					"name" : "play.seq",
+					"editor_interface" : "matrix",
+					"ftm_scope" : 2,
+					"scope" : 0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"id" : "obj-14",
+					"fontname" : "Verdana",
+					"ftm_objref_conv" : 0,
+					"persistence" : 0,
+					"numoutlets" : 2
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import",
+					"patching_rect" : [ 712.0, 222.0, 43.0, 17.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 19.0, 57.0, 43.0, 17.0 ],
+					"id" : "obj-15",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "import MIDI file",
+					"patching_rect" : [ 757.0, 221.0, 90.0, 19.0 ],
+					"presentation" : 1,
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"presentation_rect" : [ 60.0, 56.0, 90.0, 19.0 ],
+					"id" : "obj-16",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "play an FTM track",
+					"patching_rect" : [ 60.0, 23.0, 98.0, 19.0 ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-17",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "ftm.play",
+					"patching_rect" : [ 54.0, -10.0, 108.0, 36.0 ],
+					"fontsize" : 24.0,
+					"numinlets" : 1,
+					"id" : "obj-18",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "FTM basic objects",
+					"patching_rect" : [ 48.0, -22.0, 97.0, 19.0 ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-19",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "fpic",
+					"patching_rect" : [ 8.0, -25.0, 54.0, 74.0 ],
+					"pic" : "ftm.help.jpg",
+					"numinlets" : 1,
+					"id" : "obj-20",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "midiout",
+					"patching_rect" : [ -9.0, 401.0, 48.0, 19.0 ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"id" : "obj-44",
+					"fontname" : "Verdana",
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "play",
+					"patching_rect" : [ 409.0, 130.0, 52.0, 26.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 18.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 18.0, 22.0, 52.0, 26.0 ],
+					"id" : "obj-46",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "stop",
+					"patching_rect" : [ 306.0, 129.0, 51.0, 26.0 ],
+					"outlettype" : [ "" ],
+					"presentation" : 1,
+					"fontsize" : 18.0,
+					"numinlets" : 2,
+					"presentation_rect" : [ 86.0, 22.0, 51.0, 26.0 ],
+					"id" : "obj-49",
+					"fontname" : "Verdana",
+					"numoutlets" : 1
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel[1]",
+					"patching_rect" : [ 1093.0, 886.0, 100.0, 55.0 ],
+					"border" : 2,
+					"presentation" : 1,
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"numinlets" : 1,
+					"presentation_rect" : [ 12.0, 17.0, 167.0, 98.0 ],
+					"id" : "obj-5",
+					"numoutlets" : 0
+				}
+
+			}
+ ],
+		"lines" : [ 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-62", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-62", 0 ],
+					"destination" : [ "obj-57", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-78", 0 ],
+					"destination" : [ "obj-62", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 0 ],
+					"destination" : [ "obj-48", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-101", 0 ],
+					"destination" : [ "obj-42", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 1 ],
+					"destination" : [ "obj-101", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-106", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-98", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-109", 0 ],
+					"destination" : [ "obj-98", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-98", 2 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-63", 0 ],
+					"destination" : [ "obj-98", 3 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-98", 0 ],
+					"destination" : [ "obj-31", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-98", 1 ],
+					"destination" : [ "obj-26", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-87", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-63", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-7", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-7", 0 ],
+					"destination" : [ "obj-92", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-90", 0 ],
+					"destination" : [ "obj-7", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-53", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-28", 0 ],
+					"destination" : [ "obj-4", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-41", 0 ],
+					"destination" : [ "obj-11", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-41", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-37", 0 ],
+					"destination" : [ "obj-36", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-36", 0 ],
+					"destination" : [ "obj-2", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-2", 0 ],
+					"destination" : [ "obj-25", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-11", 0 ],
+					"destination" : [ "obj-2", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-3", 0 ],
+					"destination" : [ "obj-109", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-110", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-136", 0 ],
+					"destination" : [ "obj-137", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-137", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-138", 0 ],
+					"destination" : [ "obj-136", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-69", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-15", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-70", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-63", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-72", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-72", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-71", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-82", 1 ],
+					"destination" : [ "obj-67", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-105", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-113", 0 ],
+					"destination" : [ "obj-65", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-105", 0 ],
+					"destination" : [ "obj-65", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-110", 0 ],
+					"destination" : [ "obj-65", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-65", 0 ],
+					"destination" : [ "obj-94", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-65", 1 ],
+					"destination" : [ "obj-94", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-44", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-4", 0 ],
+					"destination" : [ "obj-1", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-27", 0 ],
+					"destination" : [ "obj-26", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-26", 0 ],
+					"destination" : [ "obj-31", 2 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-33", 0 ],
+					"destination" : [ "obj-32", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-32", 0 ],
+					"destination" : [ "obj-31", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-29", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 1 ],
+					"destination" : [ "obj-27", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-1", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-60", 0 ],
+					"destination" : [ "obj-82", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-55", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-25", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-46", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-49", 0 ],
+					"destination" : [ "obj-60", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-32", 0 ],
+					"destination" : [ "obj-64", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-64", 0 ],
+					"destination" : [ "obj-73", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-73", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-64", 1 ],
+					"destination" : [ "obj-74", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-74", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-31", 0 ],
+					"destination" : [ "obj-69", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-99", 0 ],
+					"destination" : [ "obj-60", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-22", 0 ],
+					"destination" : [ "obj-38", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-38", 0 ],
+					"destination" : [ "obj-35", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-38", 1 ],
+					"destination" : [ "obj-40", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-35", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-40", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-35", 0 ],
+					"destination" : [ "obj-43", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-40", 0 ],
+					"destination" : [ "obj-43", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-1", 0 ],
+					"destination" : [ "obj-50", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-81", 0 ],
+					"destination" : [ "obj-66", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-84", 0 ],
+					"destination" : [ "obj-75", 0 ],
+					"hidden" : 1,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-81", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-14", 0 ],
+					"destination" : [ "obj-84", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-87", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-13", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-12", 0 ],
+					"destination" : [ "obj-13", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-51", 0 ],
+					"destination" : [ "obj-45", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-45", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-59", 0 ],
+					"destination" : [ "obj-58", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-58", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-61", 0 ],
+					"destination" : [ "obj-59", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-75", 0 ],
+					"destination" : [ "obj-97", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-97", 0 ],
+					"destination" : [ "obj-21", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-21", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-39", 0 ],
+					"destination" : [ "obj-21", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-103", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-48", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 0 ],
+					"destination" : [ "obj-56", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-30", 0 ],
+					"destination" : [ "obj-22", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+ ]
+	}
+
+}
--- a/workingNotes.rtf	Sun Feb 05 22:07:55 2012 +0000
+++ b/workingNotes.rtf	Tue Mar 06 17:11:46 2012 +0000
@@ -63,4 +63,16 @@
 \f0\fs24 \cf0 \CocoaLigature1 \
 \
 \
+DiffFilre - the differences between annotations from Muller (ground truth) and our alignment. Ouput the beat position and the error\
+adding in the actual time the note occurs,,\
+\
+\
+//////////\
+\
+TO DO:"\
+\
+Why is some notes not coming up in PInk?\
+\
+Check that the output is smooth - i.e. a causal play position is implemented\'85\
+\
 }
\ No newline at end of file