changeset 37:795a99987875

Added new patcher to test RWC database, automatically loads the file in both Max and the score follower, then stores data to a given text file. Need to fix the annotation checker next
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Thu, 15 Dec 2011 13:02:52 +0000
parents 5a1b0c6fa1fb
children c3d32207565f
files .DS_Store jnmr/Annotations.cpp jnmr/midiEventHolder.cpp jnmr/midiEventHolder.h jnmr/testApp.cpp jnmr/testApp.h maxPatchToPlayFiles/playMidiTranscription4.maxpat maxPatchToPlayFiles/playMidiTranscription6.maxpat
diffstat 8 files changed, 7487 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
Binary file .DS_Store has changed
--- a/jnmr/Annotations.cpp	Thu Dec 15 02:28:49 2011 +0000
+++ b/jnmr/Annotations.cpp	Thu Dec 15 13:02:52 2011 +0000
@@ -71,7 +71,7 @@
 		count++;
 	}
 	
-	printAnnotations();
+	//printAnnotations();
 	
 }
 
--- a/jnmr/midiEventHolder.cpp	Thu Dec 15 02:28:49 2011 +0000
+++ b/jnmr/midiEventHolder.cpp	Thu Dec 15 13:02:52 2011 +0000
@@ -12,8 +12,8 @@
 
 #include "midiEventHolder.h"
 
-//#include <iostream>
-//#include <fstream>
+#include <iostream>
+#include <fstream>
 
 midiEventHolder::midiEventHolder(){
 	
@@ -817,11 +817,12 @@
 			annotationNote = myNotation.rwcAnnotations[smoothIndex].midiNote;
 		}
 		
+		float difference = playingTime - (annotationTime*1000.0);
 		
 		if ((*fileOutput).is_open()){
 			(*fileOutput) << fixed << beatPositions[smoothIndex] <<",\t" <<  recordedNoteOnMatrix[smoothIndex][1] << ",\t";
 			(*fileOutput) << playingTime ;
-			float difference = playingTime - (annotationTime*1000.0);
+			
 				if ( recordedNoteOnMatrix[smoothIndex][1] == annotationNote){
 					(*fileOutput) << " corresponds to " << annotationTime;
 				}
@@ -829,6 +830,11 @@
 			
 			printf("midi %i beat pos %f now at %f :: annotaion %i time %f diff \t%f ms\n",  recordedNoteOnMatrix[smoothIndex][1], 
 				   beatPositions[smoothIndex], playingTime, annotationNote, annotationTime, difference);
+	
+		}
+	
+		if ((*differenceOutput).is_open()){
+			(*differenceOutput) << beatPositions[smoothIndex] << "," << difference << "\n";
 		}
 		
 		smoothIndex++;
--- a/jnmr/midiEventHolder.h	Thu Dec 15 02:28:49 2011 +0000
+++ b/jnmr/midiEventHolder.h	Thu Dec 15 13:02:52 2011 +0000
@@ -183,5 +183,6 @@
 
 	ofstream *fileOutput;
 	Annotations myNotation;
+	ofstream *differenceOutput;
 };
 #endif
\ No newline at end of file
--- a/jnmr/testApp.cpp	Thu Dec 15 02:28:49 2011 +0000
+++ b/jnmr/testApp.cpp	Thu Dec 15 13:02:52 2011 +0000
@@ -10,9 +10,14 @@
 
 	
 	midiEvents.fileOutput = &myfile;
+	midiEvents.differenceOutput = &diffFile;
 	
-	string root = "../../../data/FilesOut/exampletest.txt";
-	myfile.open("../../../data/FilesOut/exampletest.txt");
+	root = "/Users/andrew/Documents/work/MuseScore/RWC/Classical_RWC_Groundtruth/RM-C0";
+	outputFileRoot = "../../../data/FilesOut/rwcOutputData_RM-C0";
+	
+	myfile.open("../../../data/FilesOut/exampletest2.txt");
+	diffFile.open("../../../data/FilesOut/diffTest.txt");
+	
 	if (myfile.is_open())
 	{
 	//	myfile << "This is a line.\n";
@@ -20,19 +25,21 @@
 //		myfile.close();
 		printf("WRITING TO TEXT FILE\n");
 	}
-	else cout << "Unable to open file";
+	else cout << "Unable to open example file";
 	
 	
- this->args->printArgs();
+	this->args->printArgs();
 	this->args->printOpts();
-	midiFileName = "../../../data/frerejacques.mid";
-	
-	if (this->args->getCount() > 0){
+
+	loadRWCfileNumber(2);
+
+/*	if (this->args->getCount() > 0){
 		museScoreFilename = this->args->getString(1);
 	//printf("MUSESCORE FILENAME IS %s\n", museScoreFilename);
 	cout << "running!! " << museScoreFilename << endl;
 	midiFileName = museScoreFilename;
 	}
+*/	
 
 	int retVal = cannamMainFunction();
 	
@@ -137,7 +144,6 @@
 		if ( m.getAddress() == "/stopplaying" )
 		{
 			stopPlaying();
-			myfile.close();
 		}
 		
 		
@@ -208,6 +214,11 @@
 			
 		}
 		
+		if ( m.getAddress() == "/RWCfile" ){
+			openOutputFile(m.getArgAsInt32(0));
+			loadRWCfileNumber(m.getArgAsInt32(0));
+		}
+		
 		
 	}//end while osc
 	if (midiEvents.recordedEventTimes.size() > 0)
@@ -562,6 +573,9 @@
 	midiEvents.bestMatchIndex = 0;
 	sendNoteToMuseScore();
 	
+	diffFile.close();
+	myfile.close();
+	
 }
 
 bool testApp::getFilenameFromDialogBox(string* fileNameToSave){
@@ -588,7 +602,32 @@
 	
 }
 
+void testApp::openOutputFile(const int& i){
+	if (diffFile.is_open())
+		diffFile.close();
+	
+	string outputFileName;
+	
+	if (i >= 10)
+		outputFileName = outputFileRoot + ofToString(i)+".txt";
+	else
+		outputFileName = outputFileRoot + "0"+ofToString(i)+".txt";
+	
+	diffFile.open(outputFileName.c_str());
+}
 
+void testApp::loadRWCfileNumber(const int& i){
+	if (i >= 1 && i <= 64){
+		midiFileNumber = i;
+			if (i >= 10)
+				midiFileName = root + ofToString(midiFileNumber)+".MID";
+			else
+				midiFileName = root + "0"+ofToString(midiFileNumber)+".MID";
+		
+		printf("FILE:%s\n", midiFileName.c_str());
+		cannamMainFunction();
+	}
+}
 
 
 int testApp::cannamMainFunction(){
@@ -604,7 +643,7 @@
 	//	}
 		
 	std::string filename = midiFileName;//argv[1];
-	
+	printf("Loading'%s'\n", midiFileName.c_str());
 //	fileLoader.chopBeginning = true;
 	fileLoader.loadFile(filename, midiEvents);
 	
--- a/jnmr/testApp.h	Thu Dec 15 02:28:49 2011 +0000
+++ b/jnmr/testApp.h	Thu Dec 15 13:02:52 2011 +0000
@@ -13,9 +13,10 @@
 //check the widening function - adding decay noise
 //ticksperscreen could be better as millis per screen
 
+//uses ftmMidiPlay in max5 via osc to communicate notes in
 
 
-//uses ftmMidiPlay in max5 via osc to communicate notes in
+//other users would need to change root in testApp setup to point to their director for the RWC files
 
 #include "ofMain.h"
 
@@ -41,8 +42,6 @@
 #define SEND_PORT 5282
 #define HOST "localhost"
 
-
-using namespace std;
 using namespace MIDIConstants;
 
 class testApp : public ofBaseApp{
@@ -136,6 +135,11 @@
 	
 	//file output
 	ofstream myfile;
+	ofstream diffFile;
+	string root, outputFileRoot;
+	int  midiFileNumber;
+	void loadRWCfileNumber(const int& i);
+	void openOutputFile(const int& i);
 	
 };
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/maxPatchToPlayFiles/playMidiTranscription4.maxpat	Thu Dec 15 13:02:52 2011 +0000
@@ -0,0 +1,3361 @@
+{
+	"patcher" : 	{
+		"fileversion" : 1,
+		"rect" : [ 591.0, 81.0, 1089.0, 872.0 ],
+		"bglocked" : 0,
+		"defrect" : [ 591.0, 81.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" : "message",
+					"text" : "import /Users/andrew/hg/midi-score-follower/MIDIfiles/test.mid",
+					"id" : "obj-53",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 597.0, 51.0, 335.0, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t b b b",
+					"id" : "obj-51",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 391.0, 61.0, 46.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang", "bang", "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"presentation_rect" : [ 394.0, 30.0, 20.0, 20.0 ],
+					"id" : "obj-45",
+					"patching_rect" : [ 394.0, 30.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"id" : "obj-28",
+					"fontname" : "Verdana",
+					"patching_rect" : [ -28.0, 309.0, 68.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "144 72 80",
+					"presentation_rect" : [ 10.0, 226.0, 95.0, 17.0 ],
+					"id" : "obj-50",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 7.0, 452.0, 95.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "MIDI FLUSH",
+					"presentation_rect" : [ 272.0, 304.0, 150.0, 19.0 ],
+					"id" : "obj-57",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 969.0, 247.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"id" : "obj-47",
+					"patching_rect" : [ 261.0, 352.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "delay 60",
+					"id" : "obj-42",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 261.0, 386.0, 54.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"id" : "obj-39",
+					"patching_rect" : [ 261.0, 410.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"id" : "obj-21",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 261.0, 438.0, 33.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/integratedEstimate",
+					"presentation_rect" : [ 364.0, 375.0, 108.0, 17.0 ],
+					"id" : "obj-43",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 793.0, 807.0, 108.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/MAPestimate",
+					"id" : "obj-40",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 768.0, 865.0, 80.0, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sel 0 1",
+					"id" : "obj-38",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 698.0, 826.0, 46.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang", "bang", "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/integratedEstimate",
+					"id" : "obj-35",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 646.0, 865.0, 110.0, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"presentation_rect" : [ 364.0, 350.0, 20.0, 20.0 ],
+					"id" : "obj-22",
+					"patching_rect" : [ 698.0, 796.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /minimumSpeedRatio",
+					"presentation_rect" : [ 134.0, 463.0, 164.0, 19.0 ],
+					"id" : "obj-13",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 685.0, 657.0, 164.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"presentation_rect" : [ 134.0, 436.0, 50.0, 19.0 ],
+					"id" : "obj-12",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 685.0, 630.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"maximum" : 2.0,
+					"outlettype" : [ "float", "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"id" : "obj-41",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 86.0, 135.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 250",
+					"id" : "obj-37",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 141.0, 150.0, 80.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"presentation_rect" : [ 583.0, 228.0, 50.0, 19.0 ],
+					"id" : "obj-36",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 141.0, 173.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "int", "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "iterate through notes when used offline",
+					"linecount" : 2,
+					"presentation_linecount" : 2,
+					"presentation_rect" : [ 550.0, 197.0, 150.0, 31.0 ],
+					"id" : "obj-34",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 550.0, 207.0, 150.0, 31.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"presentation_rect" : [ 523.0, 204.0, 20.0, 20.0 ],
+					"id" : "obj-11",
+					"patching_rect" : [ 89.0, 165.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "metro 250",
+					"presentation_rect" : [ 517.0, 230.0, 63.0, 19.0 ],
+					"id" : "obj-2",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 90.0, 201.0, 63.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"presentation_rect" : [ 282.0, 62.0, 57.0, 21.0 ],
+					"id" : "obj-99",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 511.0, 249.0, 57.0, 21.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 2,
+					"fontsize" : 12.0,
+					"outlettype" : [ "float", "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/offline",
+					"id" : "obj-74",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 783.0, 954.0, 46.0, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/realtime",
+					"id" : "obj-73",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 714.0, 951.0, 56.0, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sel 1 2",
+					"id" : "obj-64",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 699.0, 921.0, 46.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang", "bang", "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "for offline",
+					"presentation_rect" : [ 120.0, 86.0, 58.0, 19.0 ],
+					"id" : "obj-62",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 932.0, 231.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p ftmPlayer",
+					"id" : "obj-60",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 45.0, 316.0, 476.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "", "" ],
+					"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",
+									"id" : "obj-1",
+									"patching_rect" : [ 336.0, 56.0, 25.0, 25.0 ],
+									"numinlets" : 0,
+									"numoutlets" : 1,
+									"outlettype" : [ "float" ],
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "midi",
+									"presentation_rect" : [ 52.0, 420.0, 150.0, 19.0 ],
+									"id" : "obj-11",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 131.0, 214.0, 150.0, 19.0 ],
+									"presentation" : 1,
+									"numinlets" : 1,
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p otherFtmControls",
+									"id" : "obj-115",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 50.0, 109.0, 108.0, 19.0 ],
+									"numinlets" : 0,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ],
+									"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 ],
+													"id" : "obj-111",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 98.0, 56.0, 153.0, 31.0 ],
+													"presentation" : 1,
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed",
+													"id" : "obj-3",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 362.0, 263.0, 57.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"ftm_scope" : 1,
+													"presentation_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"#init" : "",
+													"ftm_objref_conv" : 0,
+													"id" : "obj-4",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"text" : [ "_loop 500 1500 1." ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"#loadbang" : 0,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (begin, end and speed) and loop",
+													"id" : "obj-5",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 306.0, 167.0, 240.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"ftm_scope" : 0,
+													"presentation_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"#init" : "",
+													"ftm_objref_conv" : 0,
+													"id" : "obj-6",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"text" : [ "_play $play.seq 500 1500 1." ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"#loadbang" : 0,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (track, begin, end and speed) and play",
+													"id" : "obj-7",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 370.0, 147.0, 272.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to next time",
+													"id" : "obj-8",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 88.0, 258.0, 115.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "slider",
+													"id" : "obj-9",
+													"patching_rect" : [ 162.0, 238.0, 169.0, 15.0 ],
+													"numinlets" : 1,
+													"size" : 1001.0,
+													"orientation" : 1,
+													"numoutlets" : 1,
+													"outlettype" : [ "" ],
+													"mult" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate or jump at given time",
+													"id" : "obj-10",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 114.0, 121.0, 151.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "next",
+													"id" : "obj-11",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 50.0, 257.0, 33.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "jump 300.",
+													"id" : "obj-12",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 50.0, 119.0, 62.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed by giving a duration for the current segment",
+													"id" : "obj-23",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 336.0, 281.0, 285.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set segment (only begin and end) and play straight",
+													"id" : "obj-24",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 354.0, 120.0, 270.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment",
+													"id" : "obj-25",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 86.0, 147.0, 116.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 0.5",
+													"id" : "obj-26",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 299.0, 262.0, 58.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"ftm_scope" : 0,
+													"presentation_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"#init" : "",
+													"ftm_objref_conv" : 0,
+													"id" : "obj-27",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"text" : [ "_set 0 9999999" ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"#loadbang" : 0,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "flonum",
+													"id" : "obj-28",
+													"fontname" : "Verdana",
+													"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+													"triscale" : 0.9,
+													"patching_rect" : [ 104.0, 238.0, 56.0, 19.0 ],
+													"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 2,
+													"fontsize" : 10.0,
+													"outlettype" : [ "float", "bang" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "duration 1000",
+													"id" : "obj-29",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 252.0, 281.0, 79.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 2.",
+													"id" : "obj-30",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 252.0, 262.0, 52.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "pause",
+													"id" : "obj-31",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 50.0, 192.0, 40.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "locate 300.",
+													"id" : "obj-32",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 50.0, 100.0, 67.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "sync $1",
+													"id" : "obj-33",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 50.0, 238.0, 49.0, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"ftm_scope" : 0,
+													"presentation_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"#init" : "",
+													"ftm_objref_conv" : 0,
+													"id" : "obj-40",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"text" : [ "_set $play.seq 500 1500 1." ],
+													"#triggerall" : 0,
+													"numinlets" : 2,
+													"#loadbang" : 0,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"#untuple" : 0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "loop",
+													"id" : "obj-41",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 50.0, 165.0, 32.5, 17.0 ],
+													"numinlets" : 2,
+													"numoutlets" : 1,
+													"fontsize" : 10.0,
+													"outlettype" : [ "" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"id" : "obj-50",
+													"patching_rect" : [ 50.0, 292.0, 15.0, 15.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 1,
+													"outlettype" : [ "bang" ]
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to gven time (output all events on the way)",
+													"id" : "obj-54",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 326.0, 238.0, 274.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate halted at given time",
+													"id" : "obj-55",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 119.0, 101.0, 143.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "loop current segment",
+													"id" : "obj-57",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 85.0, 166.0, 116.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "stop playing and reset",
+													"id" : "obj-58",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 86.0, 212.0, 121.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "halt playing",
+													"id" : "obj-59",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 93.0, 193.0, 67.0, 19.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment straight",
+													"id" : "obj-60",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 67.0, 292.0, 158.0, 19.0 ],
+													"numinlets" : 1,
+													"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,
+													"id" : "obj-62",
+													"fontname" : "Verdana",
+													"patching_rect" : [ 277.0, 196.0, 266.0, 31.0 ],
+													"numinlets" : 1,
+													"numoutlets" : 0,
+													"fontsize" : 10.0
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"id" : "obj-114",
+													"patching_rect" : [ 147.357147, 371.0, 25.0, 25.0 ],
+													"numinlets" : 1,
+													"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" : 									{
+										"fontname" : "Arial",
+										"default_fontface" : 0,
+										"globalpatchername" : "",
+										"default_fontname" : "Arial",
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontsize" : 12.0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "syntax:",
+									"id" : "obj-2",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 358.0, 168.0, 46.0, 19.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "kill hanging notes when looping",
+									"hidden" : 1,
+									"id" : "obj-13",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 291.0, 203.0, 168.0, 19.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment end",
+									"id" : "obj-21",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 433.0, 120.0, 93.0, 19.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "change 0 -",
+									"hidden" : 1,
+									"id" : "obj-34",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 128.0, 202.0, 62.0, 19.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 3,
+									"fontsize" : 10.0,
+									"outlettype" : [ "", "int", "int" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"id" : "obj-35",
+									"patching_rect" : [ 262.0, 120.0, 169.0, 15.0 ],
+									"numinlets" : 1,
+									"size" : 1001.0,
+									"orientation" : 1,
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"id" : "obj-36",
+									"patching_rect" : [ 187.0, 100.0, 169.0, 15.0 ],
+									"numinlets" : 1,
+									"size" : 1001.0,
+									"orientation" : 1,
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "GM",
+									"presentation_rect" : [ 127.0, 442.0, 32.5, 17.0 ],
+									"id" : "obj-37",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 203.0, 228.0, 32.5, 17.0 ],
+									"presentation" : 1,
+									"numinlets" : 2,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "panic",
+									"presentation_rect" : [ 85.0, 442.0, 37.0, 17.0 ],
+									"id" : "obj-38",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 161.0, 228.0, 37.0, 17.0 ],
+									"presentation" : 1,
+									"numinlets" : 2,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "off",
+									"presentation_rect" : [ 48.0, 442.0, 32.5, 17.0 ],
+									"id" : "obj-39",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 124.0, 228.0, 32.5, 17.0 ],
+									"presentation" : 1,
+									"numinlets" : 2,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"id" : "obj-42",
+									"fontname" : "Verdana",
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"triscale" : 0.9,
+									"patching_rect" : [ 262.0, 143.0, 55.0, 19.0 ],
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 2,
+									"fontsize" : 10.0,
+									"outlettype" : [ "float", "bang" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"id" : "obj-43",
+									"fontname" : "Verdana",
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"triscale" : 0.9,
+									"patching_rect" : [ 187.0, 143.0, 55.0, 19.0 ],
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 2,
+									"fontsize" : 10.0,
+									"outlettype" : [ "float", "bang" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.midiunparse",
+									"id" : "obj-45",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 112.0, 249.0, 93.0, 19.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ],
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"id" : "obj-51",
+									"patching_rect" : [ 337.0, 228.0, 15.0, 15.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 1,
+									"outlettype" : [ "bang" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"id" : "obj-52",
+									"fontname" : "Verdana",
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"triscale" : 0.9,
+									"patching_rect" : [ 215.0, 201.0, 55.0, 19.0 ],
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 2,
+									"fontsize" : 10.0,
+									"outlettype" : [ "float", "bang" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.play $play.seq",
+									"id" : "obj-53",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 112.0, 166.0, 244.0, 28.0 ],
+									"numinlets" : 4,
+									"numoutlets" : 3,
+									"fontsize" : 18.0,
+									"outlettype" : [ "", "", "" ],
+									"saved_object_attributes" : 									{
+										"ftm_scope" : 0,
+										"ftm_objref_conv" : 0
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment beginning",
+									"id" : "obj-61",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 358.0, 100.0, 123.0, 19.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 0,
+									"fontsize" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"id" : "obj-57",
+									"patching_rect" : [ 112.0, 40.0, 25.0, 25.0 ],
+									"numinlets" : 0,
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"id" : "obj-58",
+									"patching_rect" : [ 112.0, 328.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 0,
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"id" : "obj-59",
+									"patching_rect" : [ 224.0, 328.0, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"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" : 					{
+						"fontname" : "Arial",
+						"default_fontface" : 0,
+						"globalpatchername" : "",
+						"default_fontname" : "Arial",
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontsize" : 12.0
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "pause",
+					"presentation_rect" : [ 62.0, 86.0, 51.0, 17.0 ],
+					"id" : "obj-55",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 226.0, 269.0, 40.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "hear MIDI playing",
+					"id" : "obj-54",
+					"fontname" : "Verdana",
+					"patching_rect" : [ -32.0, 255.0, 150.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p weirdStarter",
+					"id" : "obj-48",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 240.0, 618.0, 83.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "bang" ],
+					"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",
+									"id" : "obj-132",
+									"patching_rect" : [ 94.0, 159.0, 20.0, 20.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 1,
+									"outlettype" : [ "int" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"id" : "obj-130",
+									"patching_rect" : [ 95.0, 217.0, 20.0, 20.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 1,
+									"outlettype" : [ "bang" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "0",
+									"id" : "obj-128",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 92.0, 239.0, 32.5, 17.0 ],
+									"numinlets" : 2,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "gate",
+									"id" : "obj-126",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 92.0, 192.0, 33.0, 19.0 ],
+									"numinlets" : 2,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "1",
+									"id" : "obj-125",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 65.0, 136.0, 32.5, 17.0 ],
+									"numinlets" : 2,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "loadbang",
+									"id" : "obj-123",
+									"fontname" : "Verdana",
+									"patching_rect" : [ 50.0, 100.0, 56.0, 19.0 ],
+									"numinlets" : 1,
+									"numoutlets" : 1,
+									"fontsize" : 10.0,
+									"outlettype" : [ "bang" ]
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"id" : "obj-40",
+									"patching_rect" : [ 65.0, 40.0, 25.0, 25.0 ],
+									"numinlets" : 0,
+									"numoutlets" : 1,
+									"outlettype" : [ "bang" ],
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"id" : "obj-41",
+									"patching_rect" : [ 106.0, 40.0, 25.0, 25.0 ],
+									"numinlets" : 0,
+									"numoutlets" : 1,
+									"outlettype" : [ "" ],
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"id" : "obj-47",
+									"patching_rect" : [ 95.0, 331.5, 25.0, 25.0 ],
+									"numinlets" : 1,
+									"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" : 					{
+						"fontname" : "Arial",
+						"default_fontface" : 0,
+						"globalpatchername" : "",
+						"default_fontname" : "Arial",
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontsize" : 12.0
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"id" : "obj-33",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 415.0, 762.0, 68.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"presentation_rect" : [ 232.0, 138.0, 100.0, 19.0 ],
+					"id" : "obj-32",
+					"fontname" : "Verdana",
+					"types" : [  ],
+					"patching_rect" : [ 418.0, 792.0, 100.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"items" : [ "off", ",", "realtime", ",", "offline" ],
+					"outlettype" : [ "int", "", "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "switch",
+					"id" : "obj-31",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 426.0, 856.0, 46.0, 19.0 ],
+					"numinlets" : 3,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"id" : "obj-30",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 87.0, 845.0, 33.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "72 80 8399.051758",
+					"presentation_rect" : [ 32.0, 199.0, 201.0, 17.0 ],
+					"id" : "obj-29",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 422.0, 937.0, 201.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend set",
+					"id" : "obj-27",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 495.0, 697.0, 70.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "append",
+					"id" : "obj-26",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 495.0, 725.0, 47.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "next",
+					"presentation_rect" : [ 22.0, 86.0, 33.0, 17.0 ],
+					"id" : "obj-25",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 182.0, 268.0, 33.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "speed",
+					"presentation_rect" : [ 245.0, 62.0, 150.0, 19.0 ],
+					"id" : "obj-9",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 837.0, 516.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "MIDI representation",
+					"presentation_rect" : [ 16.0, -3.0, 150.0, 19.0 ],
+					"id" : "obj-24",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 1141.0, 862.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "audio",
+					"presentation_rect" : [ 14.0, 119.0, 150.0, 19.0 ],
+					"id" : "obj-23",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 1126.0, 847.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "send notes",
+					"presentation_rect" : [ 149.0, 169.0, 67.0, 19.0 ],
+					"id" : "obj-10",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 1243.0, 894.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"id" : "obj-3",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 21.0, 762.0, 68.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "midi playing on/off",
+					"presentation_linecount" : 2,
+					"presentation_rect" : [ 215.0, 84.0, 73.0, 31.0 ],
+					"id" : "obj-8",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 712.0, 190.0, 150.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "plays midi and accompanying audio too",
+					"linecount" : 2,
+					"presentation_linecount" : 2,
+					"presentation_rect" : [ 337.0, 464.0, 150.0, 31.0 ],
+					"id" : "obj-6",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 906.0, 904.0, 150.0, 31.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"presentation_rect" : [ 188.0, 84.0, 20.0, 20.0 ],
+					"id" : "obj-4",
+					"patching_rect" : [ -24.0, 341.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"id" : "obj-1",
+					"fontname" : "Verdana",
+					"patching_rect" : [ -15.0, 373.0, 33.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"id" : "obj-138",
+					"fontname" : "Verdana",
+					"patching_rect" : [ -28.0, 861.0, 68.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /setSpeedPrior",
+					"presentation_rect" : [ 128.0, 383.0, 129.0, 19.0 ],
+					"id" : "obj-137",
+					"fontname" : "Verdana",
+					"patching_rect" : [ -29.0, 923.0, 129.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"presentation_rect" : [ 133.0, 351.0, 50.0, 19.0 ],
+					"id" : "obj-136",
+					"fontname" : "Verdana",
+					"patching_rect" : [ -29.0, 884.0, 50.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "float", "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"id" : "obj-134",
+					"patching_rect" : [ 204.0, 687.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "open",
+					"presentation_rect" : [ 58.0, 170.0, 35.0, 17.0 ],
+					"id" : "obj-113",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 888.0, 471.0, 35.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"id" : "obj-110",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 849.0, 471.0, 32.5, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "1",
+					"presentation_rect" : [ 19.0, 172.0, 32.5, 17.0 ],
+					"id" : "obj-105",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 808.0, 471.0, 32.5, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "sfplay~ 2",
+					"id" : "obj-65",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 798.0, 494.0, 58.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 3,
+					"fontsize" : 10.0,
+					"outlettype" : [ "signal", "signal", "bang" ],
+					"save" : [ "#N", "sfplay~", "", 2, 120960, 0, "", ";" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"presentation_rect" : [ 126.0, 169.0, 20.0, 20.0 ],
+					"id" : "obj-109",
+					"patching_rect" : [ 74.0, 790.0, 20.0, 20.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "int" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "zl slice 1",
+					"id" : "obj-82",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 51.0, 608.0, 54.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "", "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ezdac~",
+					"varname" : "autohelp_dac",
+					"presentation_rect" : [ 186.0, 14.0, 45.0, 45.0 ],
+					"id" : "obj-94",
+					"patching_rect" : [ 797.0, 539.0, 45.0, 45.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"local" : 1,
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel",
+					"presentation_rect" : [ 12.0, 136.0, 205.0, 57.0 ],
+					"border" : 2,
+					"id" : "obj-95",
+					"patching_rect" : [ 1093.0, 826.0, 100.0, 55.0 ],
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "zl join",
+					"id" : "obj-83",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 123.0, 777.0, 41.0, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "", "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "- 0.",
+					"id" : "obj-80",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 137.0, 746.0, 32.5, 19.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "float" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "t l b",
+					"id" : "obj-79",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 123.0, 688.0, 32.5, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 2,
+					"fontsize" : 10.0,
+					"outlettype" : [ "", "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "cpuclock",
+					"id" : "obj-78",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 204.0, 717.0, 53.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "float" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "cpuclock",
+					"id" : "obj-76",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 137.0, 716.0, 53.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "float" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"id" : "obj-71",
+					"patching_rect" : [ 307.0, 525.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/stopplaying",
+					"id" : "obj-72",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 334.0, 576.0, 73.0, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"id" : "obj-70",
+					"patching_rect" : [ 422.0, 174.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"outlettype" : [ "bang" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/startplaying",
+					"id" : "obj-63",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 241.0, 653.0, 75.0, 17.0 ],
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /midinoteon",
+					"id" : "obj-69",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 262.0, 939.0, 116.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "udpsend 127.0.0.1 12121",
+					"id" : "obj-68",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 229.0, 962.0, 141.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "72 80",
+					"presentation_rect" : [ 30.0, 255.0, 50.0, 17.0 ],
+					"id" : "obj-67",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 58.0, 637.0, 50.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.object",
+					"text" : "sequence midi",
+					"ftm_scope" : 2,
+					"presentation_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"ftm_objref_conv" : 0,
+					"id" : "obj-14",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"numinlets" : 1,
+					"editor_interface" : "matrix",
+					"name" : "play.seq",
+					"numoutlets" : 2,
+					"scope" : 0,
+					"fontsize" : 12.0,
+					"description" : "sequence midi",
+					"outlettype" : [ "", "" ],
+					"persistence" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "import",
+					"presentation_rect" : [ 19.0, 57.0, 43.0, 17.0 ],
+					"id" : "obj-15",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 712.0, 222.0, 43.0, 17.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 10.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "import MIDI file",
+					"presentation_rect" : [ 60.0, 56.0, 90.0, 19.0 ],
+					"id" : "obj-16",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 757.0, 221.0, 90.0, 19.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "play an FTM track",
+					"id" : "obj-17",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 60.0, 23.0, 98.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "ftm.play",
+					"id" : "obj-18",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 54.0, -10.0, 108.0, 36.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 24.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "FTM basic objects",
+					"id" : "obj-19",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 48.0, -22.0, 97.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "fpic",
+					"id" : "obj-20",
+					"patching_rect" : [ 8.0, -25.0, 54.0, 74.0 ],
+					"pic" : "ftm.help.jpg",
+					"numinlets" : 1,
+					"numoutlets" : 0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "midiout",
+					"id" : "obj-44",
+					"fontname" : "Verdana",
+					"patching_rect" : [ -9.0, 401.0, 48.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "play",
+					"presentation_rect" : [ 18.0, 22.0, 52.0, 26.0 ],
+					"id" : "obj-46",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 409.0, 130.0, 52.0, 26.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 18.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "stop",
+					"presentation_rect" : [ 86.0, 22.0, 51.0, 26.0 ],
+					"id" : "obj-49",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 306.0, 129.0, 51.0, 26.0 ],
+					"presentation" : 1,
+					"numinlets" : 2,
+					"numoutlets" : 1,
+					"fontsize" : 18.0,
+					"outlettype" : [ "" ]
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "set segment (track, begin, end and speed)",
+					"id" : "obj-56",
+					"fontname" : "Verdana",
+					"patching_rect" : [ 809.0, 151.0, 226.0, 19.0 ],
+					"numinlets" : 1,
+					"numoutlets" : 0,
+					"fontsize" : 10.0
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel[1]",
+					"presentation_rect" : [ 12.0, 17.0, 167.0, 98.0 ],
+					"border" : 2,
+					"id" : "obj-5",
+					"patching_rect" : [ 1093.0, 886.0, 100.0, 55.0 ],
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"presentation" : 1,
+					"numinlets" : 1,
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"numoutlets" : 0
+				}
+
+			}
+ ],
+		"lines" : [ 			{
+				"patchline" : 				{
+					"source" : [ "obj-53", 0 ],
+					"destination" : [ "obj-14", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-51", 0 ],
+					"destination" : [ "obj-49", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-51", 1 ],
+					"destination" : [ "obj-46", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-51", 2 ],
+					"destination" : [ "obj-49", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-45", 0 ],
+					"destination" : [ "obj-51", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-70", 0 ],
+					"destination" : [ "obj-47", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-28", 0 ],
+					"destination" : [ "obj-4", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-42", 0 ],
+					"destination" : [ "obj-39", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-47", 0 ],
+					"destination" : [ "obj-42", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-39", 0 ],
+					"destination" : [ "obj-21", 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-82", 1 ],
+					"destination" : [ "obj-79", 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-134", 0 ],
+					"destination" : [ "obj-78", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-63", 0 ],
+					"destination" : [ "obj-134", 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-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-79", 0 ],
+					"destination" : [ "obj-83", 0 ],
+					"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-82", 1 ],
+					"destination" : [ "obj-26", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-109", 0 ],
+					"destination" : [ "obj-30", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-83", 0 ],
+					"destination" : [ "obj-30", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-26", 0 ],
+					"destination" : [ "obj-31", 2 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-30", 0 ],
+					"destination" : [ "obj-31", 1 ],
+					"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-48", 0 ],
+					"destination" : [ "obj-63", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-71", 0 ],
+					"destination" : [ "obj-48", 0 ],
+					"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-12", 0 ],
+					"destination" : [ "obj-13", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-13", 0 ],
+					"destination" : [ "obj-68", 0 ],
+					"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-82", 1 ],
+					"destination" : [ "obj-48", 1 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+ ]
+	}
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/maxPatchToPlayFiles/playMidiTranscription6.maxpat	Thu Dec 15 13:02:52 2011 +0000
@@ -0,0 +1,4060 @@
+{
+	"patcher" : 	{
+		"fileversion" : 1,
+		"rect" : [ 412.0, 44.0, 1089.0, 872.0 ],
+		"bglocked" : 0,
+		"defrect" : [ 412.0, 44.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" : "message",
+					"text" : "prefix /Users/andrew/Documents/work/MuseScore/RWC/Muller_warp",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 516.0, 41.0, 363.0, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-106",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend open",
+					"outlettype" : [ "" ],
+					"fontsize" : 11.595187,
+					"numinlets" : 1,
+					"patching_rect" : [ 267.0, 45.0, 82.0, 20.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-101",
+					"fontname" : "Arial"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"outlettype" : [ "int", "", "" ],
+					"autopopulate" : 1,
+					"fontsize" : 10.0,
+					"items" : [ "playMidiTranscription6.maxpat", ",", "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" ],
+					"numinlets" : 1,
+					"prefix" : "Macintosh HD:/Users/andrew/Documents/work/MuseScore/RWC/Muller_warp/",
+					"types" : [  ],
+					"patching_rect" : [ 267.0, 18.0, 100.0, 18.0 ],
+					"numoutlets" : 3,
+					"id" : "obj-102",
+					"fontname" : "Arial"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"id" : "obj-103",
+					"fontname" : "Arial"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"outlettype" : [ "int", "", "" ],
+					"fontsize" : 10.0,
+					"items" : "<empty>",
+					"numinlets" : 1,
+					"types" : [  ],
+					"patching_rect" : [ 607.0, 32.0, 100.0, 19.0 ],
+					"numoutlets" : 3,
+					"id" : "obj-100",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p routingNoteons",
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 4,
+					"patching_rect" : [ 143.0, 530.0, 97.0, 19.0 ],
+					"numoutlets" : 2,
+					"id" : "obj-98",
+					"fontname" : "Verdana",
+					"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" : "191 100 127",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 310.0, 160.0, 102.0, 17.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-93",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "message",
+									"text" : "43 87",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 120.0, 185.0, 50.0, 17.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-91",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "t l",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 73.0, 158.0, 21.0, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-89",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"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 ],
+									"numoutlets" : 17,
+									"id" : "obj-88",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p weirdStarter",
+									"outlettype" : [ "bang" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 144.0, 237.0, 83.0, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-48",
+									"fontname" : "Verdana",
+									"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 ],
+													"numoutlets" : 1,
+													"id" : "obj-132"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"outlettype" : [ "bang" ],
+													"numinlets" : 1,
+													"patching_rect" : [ 95.0, 217.0, 20.0, 20.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-130"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "0",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 92.0, 239.0, 32.5, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-128",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "newobj",
+													"text" : "gate",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 92.0, 192.0, 33.0, 19.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-126",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "1",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 65.0, 136.0, 32.5, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-125",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "newobj",
+													"text" : "loadbang",
+													"outlettype" : [ "bang" ],
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 50.0, 100.0, 56.0, 19.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-123",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "inlet",
+													"outlettype" : [ "bang" ],
+													"numinlets" : 0,
+													"patching_rect" : [ 65.0, 40.0, 25.0, 25.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-40",
+													"comment" : ""
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "inlet",
+													"outlettype" : [ "" ],
+													"numinlets" : 0,
+													"patching_rect" : [ 106.0, 40.0, 25.0, 25.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-41",
+													"comment" : ""
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"numinlets" : 1,
+													"patching_rect" : [ 95.0, 331.5, 25.0, 25.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-47",
+													"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" : 									{
+										"default_fontsize" : 12.0,
+										"globalpatchername" : "",
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"fontname" : "Arial"
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "gate",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 52.0, 456.0, 33.0, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-30",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "button",
+									"outlettype" : [ "bang" ],
+									"numinlets" : 1,
+									"patching_rect" : [ 169.0, 298.0, 20.0, 20.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-134"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "zl join",
+									"outlettype" : [ "", "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 88.0, 388.0, 41.0, 19.0 ],
+									"numoutlets" : 2,
+									"id" : "obj-83",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "- 0.",
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 2,
+									"patching_rect" : [ 102.0, 357.0, 32.5, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-80",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "t l b",
+									"outlettype" : [ "", "bang" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 88.0, 299.0, 32.5, 19.0 ],
+									"numoutlets" : 2,
+									"id" : "obj-79",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "cpuclock",
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 169.0, 328.0, 53.0, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-78",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "cpuclock",
+									"outlettype" : [ "float" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 102.0, 327.0, 53.0, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-76",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 50.0, 40.0, 25.0, 25.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-21",
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "int" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 52.0, 40.0, 25.0, 25.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-39",
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "bang" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 144.0, 40.0, 25.0, 25.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-42",
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 169.0, 40.0, 25.0, 25.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-47",
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 52.0, 535.0, 25.0, 25.0 ],
+									"numoutlets" : 0,
+									"id" : "obj-86",
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 73.0, 535.0, 25.0, 25.0 ],
+									"numoutlets" : 0,
+									"id" : "obj-96",
+									"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" : 					{
+						"default_fontsize" : 12.0,
+						"globalpatchername" : "",
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"fontname" : "Arial"
+					}
+
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /duration",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 769.0, 340.0, 101.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-97",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "print",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 33.0, 893.0, 34.0, 19.0 ],
+					"numoutlets" : 0,
+					"id" : "obj-92",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "toggle",
+					"outlettype" : [ "int" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 33.0, 827.0, 20.0, 20.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-90"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 33.0, 862.0, 33.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-7",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 0.08",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 633.0, 513.0, 84.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-61",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-58",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0,
+					"maximum" : 0.6,
+					"presentation_rect" : [ 138.0, 500.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"minimum" : 0.001,
+					"patching_rect" : [ 612.0, 552.0, 50.0, 19.0 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-59",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-45",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0,
+					"maximum" : 2.0,
+					"presentation_rect" : [ 311.0, 436.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"patching_rect" : [ 702.0, 701.0, 50.0, 19.0 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-51",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"presentation_rect" : [ 522.0, 40.0, 20.0, 20.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 713.0, 162.0, 20.0, 20.0 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-87"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "number",
+					"outlettype" : [ "int", "bang" ],
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"fontsize" : 10.0,
+					"triscale" : 0.9,
+					"presentation_rect" : [ 521.0, 67.0, 63.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 777.0, 284.0, 63.0, 19.0 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-66",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"triangle" : 0,
+					"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+					"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+					"cantchange" : 1,
+					"fontsize" : 10.0,
+					"triscale" : 0.9,
+					"presentation_rect" : [ 521.0, 90.0, 64.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 777.0, 307.0, 64.0, 19.0 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-75",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "number of events",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 584.0, 69.0, 97.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 840.0, 286.0, 97.0, 19.0 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-77",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"outlettype" : [ "" ],
+					"#loadbang" : 0,
+					"#init" : "",
+					"ftm_scope" : 1,
+					"text" : [ "_($1 size)" ],
+					"fontsize" : 10.0,
+					"#triggerall" : 0,
+					"presentation_rect" : [ 718.0, 285.0, 51.93457, 17.0 ],
+					"numinlets" : 2,
+					"#untuple" : 0,
+					"patching_rect" : [ 718.0, 285.0, 51.93457, 17.0 ],
+					"ftm_objref_conv" : 0,
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-81",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.mess",
+					"outlettype" : [ "" ],
+					"#loadbang" : 0,
+					"#init" : "",
+					"ftm_scope" : 0,
+					"text" : [ "_($1 duration)" ],
+					"fontsize" : 10.0,
+					"#triggerall" : 0,
+					"presentation_rect" : [ 699.0, 308.0, 74.566406, 17.0 ],
+					"numinlets" : 2,
+					"#untuple" : 0,
+					"patching_rect" : [ 699.0, 308.0, 74.566406, 17.0 ],
+					"ftm_objref_conv" : 0,
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-84",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "duration in msec",
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 584.0, 92.0, 93.0, 19.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 840.0, 309.0, 93.0, 19.0 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-85",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"id" : "obj-53",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -28.0, 309.0, 68.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-28",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "159 43 87",
+					"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-50",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/integratedEstimate",
+					"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-43",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/MAPestimate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 768.0, 865.0, 80.0, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-40",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 3,
+					"id" : "obj-38",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/integratedEstimate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 646.0, 865.0, 110.0, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-35",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-22"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-13",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0,
+					"maximum" : 2.0,
+					"presentation_rect" : [ 134.0, 436.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"patching_rect" : [ 685.0, 630.0, 50.0, 19.0 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-12",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 86.0, 135.0, 32.5, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-41",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 250",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 141.0, 150.0, 80.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-37",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-36",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-34",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-11"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-2",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-99",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/offline",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 169.0, 893.0, 46.0, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-74",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/realtime",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 100.0, 890.0, 56.0, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-73",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 3,
+					"id" : "obj-64",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "p ftmPlayer",
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 45.0, 316.0, 476.0, 19.0 ],
+					"numoutlets" : 2,
+					"id" : "obj-60",
+					"fontname" : "Verdana",
+					"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 ],
+									"numoutlets" : 1,
+									"id" : "obj-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 ],
+									"numoutlets" : 0,
+									"presentation" : 1,
+									"id" : "obj-11",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "p otherFtmControls",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 0,
+									"patching_rect" : [ 50.0, 109.0, 108.0, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-115",
+									"fontname" : "Verdana",
+									"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 ],
+													"numoutlets" : 0,
+													"presentation" : 1,
+													"id" : "obj-111",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "set speed",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 362.0, 263.0, 57.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-3",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#loadbang" : 0,
+													"#init" : "",
+													"ftm_scope" : 0,
+													"text" : [ "_loop 500 1500 1." ],
+													"fontsize" : 10.0,
+													"#triggerall" : 0,
+													"presentation_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"numinlets" : 2,
+													"#untuple" : 0,
+													"patching_rect" : [ 216.0, 166.0, 92.157234, 17.0 ],
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1,
+													"id" : "obj-4",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"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 ],
+													"numoutlets" : 0,
+													"id" : "obj-5",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#loadbang" : 0,
+													"#init" : "",
+													"ftm_scope" : 0,
+													"text" : [ "_play $play.seq 500 1500 1." ],
+													"fontsize" : 10.0,
+													"#triggerall" : 0,
+													"presentation_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"numinlets" : 2,
+													"#untuple" : 0,
+													"patching_rect" : [ 216.0, 146.0, 142.66507, 17.0 ],
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1,
+													"id" : "obj-6",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"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 ],
+													"numoutlets" : 0,
+													"id" : "obj-7",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "advance to next time",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 88.0, 258.0, 115.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-8",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "slider",
+													"outlettype" : [ "" ],
+													"orientation" : 1,
+													"size" : 1001.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 162.0, 238.0, 169.0, 15.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-9",
+													"mult" : 10.0
+												}
+
+											}
+, 											{
+												"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 ],
+													"numoutlets" : 0,
+													"id" : "obj-10",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "next",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 257.0, 33.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-11",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "jump 300.",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 119.0, 62.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-12",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"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 ],
+													"numoutlets" : 0,
+													"id" : "obj-23",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"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 ],
+													"numoutlets" : 0,
+													"id" : "obj-24",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 86.0, 147.0, 116.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-25",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 0.5",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 299.0, 262.0, 58.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-26",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#loadbang" : 0,
+													"#init" : "",
+													"ftm_scope" : 0,
+													"text" : [ "_set 0 9999999" ],
+													"fontsize" : 10.0,
+													"#triggerall" : 0,
+													"presentation_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"numinlets" : 2,
+													"#untuple" : 0,
+													"patching_rect" : [ 274.0, 119.0, 78.998055, 17.0 ],
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1,
+													"id" : "obj-27",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "flonum",
+													"outlettype" : [ "float", "bang" ],
+													"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+													"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+													"fontsize" : 10.0,
+													"triscale" : 0.9,
+													"numinlets" : 1,
+													"patching_rect" : [ 104.0, 238.0, 56.0, 19.0 ],
+													"numoutlets" : 2,
+													"id" : "obj-28",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "duration 1000",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 252.0, 281.0, 79.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-29",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "speed 2.",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 252.0, 262.0, 52.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-30",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "pause",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 192.0, 40.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-31",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "locate 300.",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 100.0, 67.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-32",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "sync $1",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 238.0, 49.0, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-33",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "ftm.mess",
+													"outlettype" : [ "" ],
+													"#loadbang" : 0,
+													"#init" : "",
+													"ftm_scope" : 0,
+													"text" : [ "_set $play.seq 500 1500 1." ],
+													"fontsize" : 10.0,
+													"#triggerall" : 0,
+													"presentation_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"numinlets" : 2,
+													"#untuple" : 0,
+													"patching_rect" : [ 274.0, 100.0, 136.952179, 17.0 ],
+													"ftm_objref_conv" : 0,
+													"numoutlets" : 1,
+													"id" : "obj-40",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "message",
+													"text" : "loop",
+													"outlettype" : [ "" ],
+													"fontsize" : 10.0,
+													"numinlets" : 2,
+													"patching_rect" : [ 50.0, 165.0, 32.5, 17.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-41",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "button",
+													"outlettype" : [ "bang" ],
+													"numinlets" : 1,
+													"patching_rect" : [ 50.0, 292.0, 15.0, 15.0 ],
+													"numoutlets" : 1,
+													"id" : "obj-50"
+												}
+
+											}
+, 											{
+												"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 ],
+													"numoutlets" : 0,
+													"id" : "obj-54",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "locate halted at given time",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 119.0, 101.0, 143.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-55",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "loop current segment",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 85.0, 166.0, 116.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-57",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "stop playing and reset",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 86.0, 212.0, 121.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-58",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "halt playing",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 93.0, 193.0, 67.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-59",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "comment",
+													"text" : "play current segment straight",
+													"fontsize" : 10.0,
+													"numinlets" : 1,
+													"patching_rect" : [ 67.0, 292.0, 158.0, 19.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-60",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"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 ],
+													"numoutlets" : 0,
+													"id" : "obj-62",
+													"fontname" : "Verdana"
+												}
+
+											}
+, 											{
+												"box" : 												{
+													"maxclass" : "outlet",
+													"numinlets" : 1,
+													"patching_rect" : [ 147.357147, 371.0, 25.0, 25.0 ],
+													"numoutlets" : 0,
+													"id" : "obj-114",
+													"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_fontsize" : 12.0,
+										"globalpatchername" : "",
+										"fontface" : 0,
+										"fontsize" : 12.0,
+										"default_fontface" : 0,
+										"default_fontname" : "Arial",
+										"fontname" : "Arial"
+									}
+
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "syntax:",
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 358.0, 168.0, 46.0, 19.0 ],
+									"numoutlets" : 0,
+									"id" : "obj-2",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"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 ],
+									"numoutlets" : 0,
+									"id" : "obj-13",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "comment",
+									"text" : "set segment end",
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 433.0, 120.0, 93.0, 19.0 ],
+									"numoutlets" : 0,
+									"id" : "obj-21",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"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 ],
+									"numoutlets" : 3,
+									"id" : "obj-34",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"outlettype" : [ "" ],
+									"orientation" : 1,
+									"size" : 1001.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 262.0, 120.0, 169.0, 15.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-35",
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "slider",
+									"outlettype" : [ "" ],
+									"orientation" : 1,
+									"size" : 1001.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 187.0, 100.0, 169.0, 15.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-36",
+									"mult" : 10.0
+								}
+
+							}
+, 							{
+								"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 ],
+									"numoutlets" : 1,
+									"presentation" : 1,
+									"id" : "obj-37",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"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 ],
+									"numoutlets" : 1,
+									"presentation" : 1,
+									"id" : "obj-38",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"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 ],
+									"numoutlets" : 1,
+									"presentation" : 1,
+									"id" : "obj-39",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"outlettype" : [ "float", "bang" ],
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"fontsize" : 10.0,
+									"triscale" : 0.9,
+									"numinlets" : 1,
+									"patching_rect" : [ 262.0, 143.0, 55.0, 19.0 ],
+									"numoutlets" : 2,
+									"id" : "obj-42",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"outlettype" : [ "float", "bang" ],
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"fontsize" : 10.0,
+									"triscale" : 0.9,
+									"numinlets" : 1,
+									"patching_rect" : [ 187.0, 143.0, 55.0, 19.0 ],
+									"numoutlets" : 2,
+									"id" : "obj-43",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.midiunparse",
+									"outlettype" : [ "" ],
+									"fontsize" : 10.0,
+									"numinlets" : 1,
+									"patching_rect" : [ 112.0, 249.0, 93.0, 19.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-45",
+									"fontname" : "Verdana",
+									"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 ],
+									"numoutlets" : 1,
+									"id" : "obj-51"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "flonum",
+									"outlettype" : [ "float", "bang" ],
+									"bgcolor" : [ 0.866667, 0.866667, 0.866667, 1.0 ],
+									"htextcolor" : [ 0.870588, 0.870588, 0.870588, 1.0 ],
+									"fontsize" : 10.0,
+									"triscale" : 0.9,
+									"numinlets" : 1,
+									"patching_rect" : [ 215.0, 201.0, 55.0, 19.0 ],
+									"numoutlets" : 2,
+									"id" : "obj-52",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "newobj",
+									"text" : "ftm.play $play.seq",
+									"outlettype" : [ "", "", "" ],
+									"fontsize" : 18.0,
+									"numinlets" : 4,
+									"patching_rect" : [ 112.0, 166.0, 244.0, 28.0 ],
+									"numoutlets" : 3,
+									"id" : "obj-53",
+									"fontname" : "Verdana",
+									"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 ],
+									"numoutlets" : 0,
+									"id" : "obj-61",
+									"fontname" : "Verdana"
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "inlet",
+									"outlettype" : [ "" ],
+									"numinlets" : 0,
+									"patching_rect" : [ 112.0, 40.0, 25.0, 25.0 ],
+									"numoutlets" : 1,
+									"id" : "obj-57",
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 112.0, 328.0, 25.0, 25.0 ],
+									"numoutlets" : 0,
+									"id" : "obj-58",
+									"comment" : ""
+								}
+
+							}
+, 							{
+								"box" : 								{
+									"maxclass" : "outlet",
+									"numinlets" : 1,
+									"patching_rect" : [ 224.0, 328.0, 25.0, 25.0 ],
+									"numoutlets" : 0,
+									"id" : "obj-59",
+									"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" : 					{
+						"default_fontsize" : 12.0,
+						"globalpatchername" : "",
+						"fontface" : 0,
+						"fontsize" : 12.0,
+						"default_fontface" : 0,
+						"default_fontname" : "Arial",
+						"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-55",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "hear MIDI playing",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -32.0, 255.0, 150.0, 19.0 ],
+					"numoutlets" : 0,
+					"id" : "obj-54",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 110.0, 692.0, 68.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-33",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "umenu",
+					"outlettype" : [ "int", "", "" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 232.0, 138.0, 100.0, 19.0 ],
+					"items" : [ "off", ",", "realtime", ",", "offline" ],
+					"numinlets" : 1,
+					"types" : [  ],
+					"patching_rect" : [ 113.0, 722.0, 100.0, 19.0 ],
+					"numoutlets" : 3,
+					"presentation" : 1,
+					"id" : "obj-32",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "switch",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 3,
+					"patching_rect" : [ 121.0, 786.0, 46.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-31",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "43 87 1662.464478",
+					"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-29",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend set",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 190.0, 627.0, 70.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-27",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "append",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 190.0, 655.0, 47.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-26",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-25",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-9",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-24",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-23",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-10",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 170.0, 442.0, 68.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-3",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-8",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-6",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-4"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "gate",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ -15.0, 373.0, 33.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-1",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "loadmess 1",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -28.0, 861.0, 68.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-138",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-137",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "flonum",
+					"outlettype" : [ "float", "bang" ],
+					"fontsize" : 10.0,
+					"presentation_rect" : [ 133.0, 351.0, 50.0, 19.0 ],
+					"numinlets" : 1,
+					"minimum" : 0.0,
+					"patching_rect" : [ -29.0, 884.0, 50.0, 19.0 ],
+					"numoutlets" : 2,
+					"presentation" : 1,
+					"id" : "obj-136",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-113",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "0",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 583.0, 320.0, 32.5, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-110",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-105",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 3,
+					"id" : "obj-65",
+					"fontname" : "Verdana",
+					"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-109"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "zl slice 1",
+					"outlettype" : [ "", "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ -54.0, 200.0, 54.0, 19.0 ],
+					"numoutlets" : 2,
+					"id" : "obj-82",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ezdac~",
+					"varname" : "autohelp_dac",
+					"local" : 1,
+					"presentation_rect" : [ 186.0, 14.0, 45.0, 45.0 ],
+					"numinlets" : 2,
+					"patching_rect" : [ 531.0, 388.0, 45.0, 45.0 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-94"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel",
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"border" : 2,
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"presentation_rect" : [ 12.0, 136.0, 205.0, 57.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1093.0, 826.0, 100.0, 55.0 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-95"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 306.0, 171.0, 20.0, 20.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-71"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/stopplaying",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 336.0, 492.0, 73.0, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-72",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "button",
+					"outlettype" : [ "bang" ],
+					"numinlets" : 1,
+					"patching_rect" : [ 422.0, 174.0, 20.0, 20.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-70"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "/startplaying",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 2,
+					"patching_rect" : [ 244.0, 490.0, 75.0, 17.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-63",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "prepend /midinoteon",
+					"outlettype" : [ "" ],
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 122.0, 833.0, 116.0, 19.0 ],
+					"numoutlets" : 1,
+					"id" : "obj-69",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"id" : "obj-68",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "message",
+					"text" : "43 87",
+					"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-67",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "ftm.object",
+					"text" : "sequence midi",
+					"name" : "play.seq",
+					"outlettype" : [ "", "" ],
+					"scope" : 0,
+					"description" : "sequence midi",
+					"ftm_scope" : 2,
+					"fontsize" : 12.0,
+					"presentation_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"numinlets" : 1,
+					"persistence" : 0,
+					"patching_rect" : [ 712.0, 250.0, 165.820312, 20.0 ],
+					"ftm_objref_conv" : 0,
+					"numoutlets" : 2,
+					"editor_interface" : "matrix",
+					"id" : "obj-14",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-15",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-16",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "play an FTM track",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 60.0, 23.0, 98.0, 19.0 ],
+					"numoutlets" : 0,
+					"id" : "obj-17",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "ftm.play",
+					"fontsize" : 24.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 54.0, -10.0, 108.0, 36.0 ],
+					"numoutlets" : 0,
+					"id" : "obj-18",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "comment",
+					"text" : "FTM basic objects",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ 48.0, -22.0, 97.0, 19.0 ],
+					"numoutlets" : 0,
+					"id" : "obj-19",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "fpic",
+					"numinlets" : 1,
+					"patching_rect" : [ 8.0, -25.0, 54.0, 74.0 ],
+					"numoutlets" : 0,
+					"pic" : "ftm.help.jpg",
+					"id" : "obj-20"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "newobj",
+					"text" : "midiout",
+					"fontsize" : 10.0,
+					"numinlets" : 1,
+					"patching_rect" : [ -9.0, 401.0, 48.0, 19.0 ],
+					"numoutlets" : 0,
+					"id" : "obj-44",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-46",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"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 ],
+					"numoutlets" : 1,
+					"presentation" : 1,
+					"id" : "obj-49",
+					"fontname" : "Verdana"
+				}
+
+			}
+, 			{
+				"box" : 				{
+					"maxclass" : "panel",
+					"varname" : "startwinwdow_panel[1]",
+					"bordercolor" : [ 0.392157, 0.792157, 0.117647, 1.0 ],
+					"border" : 2,
+					"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
+					"presentation_rect" : [ 12.0, 17.0, 167.0, 98.0 ],
+					"numinlets" : 1,
+					"patching_rect" : [ 1093.0, 886.0, 100.0, 55.0 ],
+					"numoutlets" : 0,
+					"presentation" : 1,
+					"id" : "obj-5"
+				}
+
+			}
+ ],
+		"lines" : [ 			{
+				"patchline" : 				{
+					"source" : [ "obj-106", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-103", 0 ],
+					"destination" : [ "obj-102", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+, 			{
+				"patchline" : 				{
+					"source" : [ "obj-102", 1 ],
+					"destination" : [ "obj-101", 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-68", 0 ],
+					"hidden" : 0,
+					"midpoints" : [  ]
+				}
+
+			}
+ ]
+	}
+
+}