Interactive Object – Talking Tree

The Talking Tree is an installation which allows you to listen to the average growth rate of Ponderosa Pine trees in Colorado. The pine tree we used as the physical interface lived for seventeen years. We lined five of the stump’s seventeen tree rings with Bare Conductive conductive paint. Users then touch the rings which sends serial data to Arduino and, in return, data represented as nature and tree sounds will play back differently depending on which ring has been touched. Also attached to the Arduino is a NeoPixel strip which visually indicates which ring or rings are currently being touched.

IMG_9123

Our project aims to sonify the average growth rate of Colorado Ponderosa Pines over a single tree’s life. We want this object to give users a new perspective on the lifespan and growth of a single tree and we want this to be a more fun and engaging way of sharing information about Ponderosa Pines.

When brainstorming for this project Alan and I considered creating our own artificial log with the laser cutter, so we would have more control over the rings’ geometry. However, we were able to obtain a small stump that we sliced into smaller pieces with a rented chainsaw from Home Depot.

IMG_6920

We hollowed out the center of the bottom slice so that the Arduino and wiring could be concealed beneath the top slice. The two slices are attached via a dowel rod which would allow for rotation if not for the friction between the slices. In the end, the two slices fit neatly and firmly onto each other.

Before settling on conductive paint we contemplated other ways that the users could interact with the tree rings. We considered placing nails in the rings, replacing the rings with metal inlays, embedding capacitive touch sensors, using photocells. We also thought to use a nature-themed conductive stylus, such as a leaf or a twig, to detect which ring was being touched. In the end we decided to use conductive paint so users could interact by simply touching the rings on the stump with their fingers. We originally painted over the rings free hand and this method worked, however it was less pleasing to the eye.

IMG_7691

We then used a wood burning tool to carve shallow grooves along each ring. We then filled the grooves with the conductive paint to create a cleaner look.

IMG_2425

We created our first prototype out of a small piece of cardboard which we then painted on “tree rings”. We poked wires through the cardboard to each individual ring and used jumper cables to connect those to the Arduino. We were initially able to get the neopixel to coordinate with the rings (although out of order).

Screen Shot 2019-04-15 at 10.26.18 PM

After seeing success with the prototype, we moved to the final enclosure.

TalkingTreeSketch_bb

IMG_9610IMG_9292

IMG_9009

13

121114

The serial data collected from the user touching the tree rings is sent to a Max/MSP patch that maps the data to the corresponding Ponderosa Pine growth rate index. Each ring corresponds to a different year in the CO Ponderosa Pine growth rate data. For example, the outermost ring gives the user sounds representing 2007, when Ponderosa Pines were evidently not growing as quickly as previous years.

In Fall 2018, Alan took a course in Max/MSP in which his final project was an early prototype of this project’s final Max patch. Instead of having the tree ring interface, an XY pad made from conductive paper was the main source of user input serial data. So for this project, just over a third of the original Max patch was redone to accommodate the new tree stump interface.

Basically, the Max patch takes short snippets of longer recordings from FreeSound.org of people rustling leaves and splitting logs into firewood, and replays them at a speed which corresponds one-to-one with the Ponderosa Pines’ growth rate. For example, the snippet of leaf sounds are played at 0.55x speed if the Ponderosa Pines’ growth rate for that year was 0.55. To enhance the difference between the yearly growth rates, a peak filter is applied to the playback whose center frequency is mapped indirectly to the growth rate data. And to allow the tree’s voice to flow between gaps in the user-triggered playback, there is some feedback delay that keeps the sound going for a few seconds before the next ring is touched.

There are some user-controllable parameters for the Max patch arranged in a GUI such as sample rate, sample duration, and choice of sample—from 3 log rumbling recordings and 3 leaf rustling recordings; however, these controls are there for us to find the right voice for the tree rather than for the user to create their own tree voice. The GUI gives the user too much control and overcomplicates our intended interaction. User testing revealed strong preferences towards the leaf sounds since the user can easily recognize the differences between years due to the similarities between leaves rustling and white noise. Though, some users did enjoy the log sounds more because the creaking and snapping sounded most like what they imagine to be the voice of a tree.

Below is the final Arduino and Max/MSP code.


//Alan Tett and Abby Rinerson
//ATLS 3300 Object, Spring 2019
//Final project
#include <CapacitiveSensor.h>
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h>
#endif
#define PIN 11
Adafruit_NeoPixel strip = Adafruit_NeoPixel(10, PIN, NEO_GRB + NEO_KHZ800);
//https://playground.arduino.cc/Main/CapacitiveSensor/
//Define the send and receive pins
CapacitiveSensor ring1 = CapacitiveSensor(4, 2);
CapacitiveSensor ring2 = CapacitiveSensor(4, 3);
CapacitiveSensor ring3 = CapacitiveSensor(4, 5);
CapacitiveSensor ring4 = CapacitiveSensor(4, 6);
CapacitiveSensor ring5 = CapacitiveSensor(4, 8);
void setup() {
Serial.begin(9600);
//Set the timeout interval of the capacitiveSensor function
//TBH I don't know what this does but the code works better with it
ring1.set_CS_AutocaL_Millis(0xFFFFFFFF);
ring2.set_CS_AutocaL_Millis(0xFFFFFFFF);
ring3.set_CS_AutocaL_Millis(0xFFFFFFFF);
ring4.set_CS_AutocaL_Millis(0xFFFFFFFF);
ring5.set_CS_AutocaL_Millis(0xFFFFFFFF);
// pinMode(9, OUTPUT);
// pinMode(10, OUTPUT);
//initialize neopixel strip
strip.begin();
strip.show();
}
void loop() {
//define a sensor threshold for capacitance, determined by inspection, with arbitrary units
int threshold = 500;
//determine lag between when first sensor read and last sensor read
long start = millis();
//read the sensors with an offset
long total1 = ring1.capacitiveSensor(80);
long total2 = ring2.capacitiveSensor(80);
long total3 = ring3.capacitiveSensor(80);
long total4 = ring4.capacitiveSensor(80);
long total5 = ring5.capacitiveSensor(80);
//print results to serial
Serial.print(millis() – start);
Serial.print("\t");
Serial.print(total1);
Serial.print("\t");
Serial.print(total2);
Serial.print("\t");
Serial.print(total3);
Serial.print("\t");
Serial.print(total4);
Serial.print("\t");
Serial.println(total5);
delay(50);
//allow neopixel strip to react to the capacitive touch
if (total1 > threshold) {
//map the capacitance onto brightness values for the neopixel lights
total1 = map(total1, 0, 2000, 0, 150);
//give the neopixel the correct light to show
strip.setPixelColor(4, total1, 0, total1);
}
else {
strip.setPixelColor(4, 0, 0, 0);
}
if (total2 > threshold) {
total2 = map(total2, 0, 2000, 0, 150);
strip.setPixelColor(3, total2, 0, total2);
}
else {
strip.setPixelColor(3, 0, 0, 0);
}
if (total3 > threshold) {
total3 = map(total3, 0, 2000, 0, 150);
strip.setPixelColor(2, total3, 0, total3);
}
else {
strip.setPixelColor(2, 0, 0, 0);
}
if (total4 > threshold) {
total4 = map(total4, 0, 2000, 0, 150);
strip.setPixelColor(1, total4, 0, total4);
}
else {
strip.setPixelColor(1, 0, 0, 0);
}
if (total5 > threshold) {
total5 = map(total5, 0, 2000, 0, 150);
strip.setPixelColor(0, total5, 0, total5);
}
else {
strip.setPixelColor(0, 0, 0, 0);
}
//show the changes to the neopixel
strip.show();
delay(10);
}

view raw

objectFinal.ino

hosted with ❤ by GitHub


{
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 3,
"revision" : 5,
"architecture" : "x64",
"modernui" : 1
}
,
"rect" : [ 295.0, 85.0, 1199.0, 704.0 ],
"bgcolor" : [ 0.875, 0.875, 0.875, 1.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 12.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 15.0, 15.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 1,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 200,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"id" : "obj-62",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 767.5, 173.0, 30.0, 22.0 ],
"style" : "",
"text" : "115"
}
}
, {
"box" : {
"id" : "obj-60",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 679.5, 103.0, 29.5, 22.0 ],
"style" : "",
"text" : "30"
}
}
, {
"box" : {
"id" : "obj-55",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 720.5, 135.0, 30.0, 22.0 ],
"style" : "",
"text" : "112"
}
}
, {
"box" : {
"id" : "obj-52",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 641.0, 74.0, 31.0, 22.0 ],
"style" : "",
"text" : "100"
}
}
, {
"box" : {
"id" : "obj-44",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 610.0, 48.0, 29.5, 22.0 ],
"style" : "",
"text" : "16"
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-47",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 1343.494263, 481.575073, 64.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 796.494263, 34.575073, 63.0, 22.0 ],
"style" : "",
"text" : "readagain"
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-20",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 1339.494263, 441.575073, 37.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 807.005737, 69.160492, 37.0, 22.0 ],
"style" : "",
"text" : "clear"
}
}
, {
"box" : {
"id" : "obj-13",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 1231.0, 326.0, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-10",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 702.0, 42.575073, 60.0, 22.0 ],
"style" : "",
"text" : "loadbang"
}
}
, {
"box" : {
"id" : "obj-30",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 319.0, 15.287537, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-175",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 129.25, 16.287537, 29.5, 22.0 ],
"style" : "",
"text" : "0"
}
}
, {
"box" : {
"id" : "obj-158",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 249.5, 15.287537, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-34",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 26.0, 88.640228, 51.0, 22.0 ],
"style" : "",
"text" : "metro 5"
}
}
, {
"box" : {
"id" : "obj-183",
"linecount" : 4,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 256.0, 820.307495, 150.0, 62.0 ],
"style" : "",
"text" : "tree ring data\n(growth rate index for CO Ponderosa Pine from 1990-2007)"
}
}
, {
"box" : {
"id" : "obj-181",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 521.0, 460.732422, 62.0, 20.0 ],
"style" : "",
"text" : "each ring"
}
}
, {
"box" : {
"id" : "obj-172",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 3,
"outlettype" : [ "", "int", "int" ],
"patching_rect" : [ 225.5, 530.756531, 50.0, 22.0 ],
"style" : "",
"text" : "change"
}
}
, {
"box" : {
"id" : "obj-173",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 225.5, 492.0, 48.0, 22.0 ],
"style" : "",
"text" : ">= 500"
}
}
, {
"box" : {
"id" : "obj-166",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 3,
"outlettype" : [ "", "int", "int" ],
"patching_rect" : [ 172.5, 530.756531, 50.0, 22.0 ],
"style" : "",
"text" : "change"
}
}
, {
"box" : {
"id" : "obj-171",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 172.5, 492.0, 48.0, 22.0 ],
"style" : "",
"text" : ">= 500"
}
}
, {
"box" : {
"id" : "obj-164",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 3,
"outlettype" : [ "", "int", "int" ],
"patching_rect" : [ 120.0, 530.756531, 50.0, 22.0 ],
"style" : "",
"text" : "change"
}
}
, {
"box" : {
"id" : "obj-165",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 120.0, 492.0, 48.0, 22.0 ],
"style" : "",
"text" : ">= 500"
}
}
, {
"box" : {
"id" : "obj-162",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 3,
"outlettype" : [ "", "int", "int" ],
"patching_rect" : [ 66.0, 530.756531, 50.0, 22.0 ],
"style" : "",
"text" : "change"
}
}
, {
"box" : {
"id" : "obj-163",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 66.0, 492.0, 48.0, 22.0 ],
"style" : "",
"text" : ">= 500"
}
}
, {
"box" : {
"id" : "obj-160",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 225.5, 569.333313, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-156",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 172.5, 569.333313, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-151",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 120.0, 569.333313, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-143",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 66.0, 569.333313, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-141",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 14.0, 569.333313, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-138",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 3,
"outlettype" : [ "", "int", "int" ],
"patching_rect" : [ 14.0, 530.756531, 50.0, 22.0 ],
"style" : "",
"text" : "change"
}
}
, {
"box" : {
"id" : "obj-132",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 14.0, 492.0, 48.0, 22.0 ],
"style" : "",
"text" : ">= 500"
}
}
, {
"box" : {
"id" : "obj-3",
"linecount" : 3,
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 14.0, 652.575073, 59.0, 50.0 ],
"style" : "",
"text" : "if $i1 >= 500 then 1 else 0"
}
}
, {
"box" : {
"id" : "obj-222",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 641.0, 732.732422, 56.0, 22.0 ],
"style" : "",
"text" : "delay 10"
}
}
, {
"box" : {
"id" : "obj-221",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 564.0, 732.732422, 56.0, 22.0 ],
"style" : "",
"text" : "delay 10"
}
}
, {
"box" : {
"id" : "obj-220",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 486.0, 732.732422, 56.0, 22.0 ],
"style" : "",
"text" : "delay 10"
}
}
, {
"box" : {
"id" : "obj-219",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 408.0, 732.732422, 56.0, 22.0 ],
"style" : "",
"text" : "delay 10"
}
}
, {
"box" : {
"id" : "obj-218",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 328.0, 732.732422, 56.0, 22.0 ],
"style" : "",
"text" : "delay 10"
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-216",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 81.0, 951.0, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-214",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 81.0, 851.0, 123.0, 22.0 ],
"style" : "",
"text" : "if $i1 >= 500 then $i1"
}
}
, {
"box" : {
"id" : "obj-209",
"maxclass" : "newobj",
"numinlets" : 5,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 81.0, 901.575073, 147.0, 22.0 ],
"style" : "",
"text" : "zmap 500 2000 100 1000"
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-208",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 486.0, 930.732422, 175.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-206",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 641.0, 766.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-205",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 564.0, 766.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-204",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 486.0, 766.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-203",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 408.0, 766.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-202",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 328.0, 766.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-200",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 2,
"outlettype" : [ "", "" ],
"patching_rect" : [ 486.0, 889.732422, 49.0, 22.0 ],
"style" : "",
"text" : "zl.nth 0"
}
}
, {
"box" : {
"id" : "obj-199",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 641.0, 676.732422, 29.5, 22.0 ],
"style" : "",
"text" : "5"
}
}
, {
"box" : {
"id" : "obj-198",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 564.0, 676.732422, 29.5, 22.0 ],
"style" : "",
"text" : "4"
}
}
, {
"box" : {
"id" : "obj-197",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 486.0, 676.732422, 29.5, 22.0 ],
"style" : "",
"text" : "3"
}
}
, {
"box" : {
"id" : "obj-196",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 408.0, 676.732422, 29.5, 22.0 ],
"style" : "",
"text" : "2"
}
}
, {
"box" : {
"id" : "obj-195",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 328.0, 676.732422, 29.5, 22.0 ],
"style" : "",
"text" : "1"
}
}
, {
"box" : {
"id" : "obj-193",
"linecount" : 3,
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 408.0, 820.307495, 310.0, 50.0 ],
"style" : "",
"text" : "1.1104 1.02235 1.10635 0.9457 0.8577 1.2973 1.12795 1.1182 1.4446 1.3316 0.8136 0.9554 0.3703 1.2072 1.0647 0.9692 0.4131 1.1486"
}
}
, {
"box" : {
"id" : "obj-78",
"linecount" : 3,
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 641.0, 581.732422, 59.0, 50.0 ],
"style" : "",
"text" : "if $i1 >= 500 then bang"
}
}
, {
"box" : {
"id" : "obj-71",
"linecount" : 3,
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 564.0, 581.732422, 59.0, 50.0 ],
"style" : "",
"text" : "if $i1 >= 500 then bang"
}
}
, {
"box" : {
"id" : "obj-69",
"linecount" : 3,
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 486.0, 581.732422, 59.0, 50.0 ],
"style" : "",
"text" : "if $i1 >= 500 then bang"
}
}
, {
"box" : {
"id" : "obj-68",
"linecount" : 3,
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 408.0, 581.732422, 59.0, 50.0 ],
"style" : "",
"text" : "if $i1 >= 500 then bang"
}
}
, {
"box" : {
"id" : "obj-46",
"linecount" : 3,
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 328.0, 581.732422, 59.0, 50.0 ],
"style" : "",
"text" : "if $i1 >= 500 then bang"
}
}
, {
"box" : {
"id" : "obj-45",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 641.0, 644.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-36",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 564.0, 644.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-32",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 486.0, 644.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-26",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 408.0, 644.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-12",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 328.0, 644.732422, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-43",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 641.0, 540.732422, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-35",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 564.0, 540.732422, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-33",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 486.0, 540.732422, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-31",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 408.0, 540.732422, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-28",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 328.0, 540.732422, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-18",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 5,
"outlettype" : [ "int", "int", "int", "int", "int" ],
"patching_rect" : [ 495.0, 482.732422, 99.0, 22.0 ],
"style" : "",
"text" : "unpack 0 0 0 0 0"
}
}
, {
"box" : {
"id" : "obj-16",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 137.0, 381.0, 91.0, 22.0 ],
"style" : "",
"text" : "$2 $3 $4 $5 $6"
}
}
, {
"box" : {
"id" : "obj-42",
"maxclass" : "gain~",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "signal", "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 835.0, 794.0, 22.0, 140.0 ],
"presentation" : 1,
"presentation_rect" : [ 852.0, 149.448029, 28.0, 181.712463 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-39",
"maxclass" : "newobj",
"numinlets" : 5,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 435.0, 210.0, 111.0, 22.0 ],
"style" : "",
"text" : "zmap 0. 127. -5. 5."
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-38",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 435.0, 255.575073, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-37",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 330.0, 255.575073, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-29",
"maxclass" : "slider",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"parameter_enable" : 0,
"patching_rect" : [ 443.0, 55.0, 20.0, 140.0 ],
"presentation" : 1,
"presentation_rect" : [ 400.0, 134.745911, 20.0, 140.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-27",
"maxclass" : "newobj",
"numinlets" : 5,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 319.0, 219.0, 111.0, 22.0 ],
"style" : "",
"text" : "zmap 0. 127. -5. 5."
}
}
, {
"box" : {
"id" : "obj-14",
"maxclass" : "slider",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"parameter_enable" : 0,
"patching_rect" : [ 319.0, 55.0, 20.0, 140.0 ],
"presentation" : 1,
"presentation_rect" : [ 268.0, 134.745911, 20.0, 140.0 ],
"style" : ""
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-170",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 952.0, 933.45752, 227.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 356.0, 407.150146, 102.0, 34.0 ],
"style" : "",
"text" : "Display",
"textcolor" : [ 1.0, 1.0, 1.0, 1.0 ]
}
}
, {
"box" : {
"id" : "obj-168",
"maxclass" : "newobj",
"numinlets" : 6,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 154.0, 1069.45752, 109.0, 22.0 ],
"style" : "",
"text" : "scale 0 127 0 0.99"
}
}
, {
"box" : {
"id" : "obj-167",
"maxclass" : "dial",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "float" ],
"parameter_enable" : 0,
"patching_rect" : [ 154.0, 1021.0, 40.0, 40.0 ],
"presentation" : 1,
"presentation_rect" : [ 53.0, 465.150146, 60.0, 60.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-154",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 970.0, 452.0, 67.0, 22.0 ],
"style" : "",
"text" : "replace $1"
}
}
, {
"box" : {
"bgcolor" : [ 0.358573, 0.333383, 0.3663, 1.0 ],
"blinkcolor" : [ 0.439216, 0.74902, 0.254902, 1.0 ],
"id" : "obj-144",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 748.0, 629.0, 24.0, 24.0 ],
"presentation" : 1,
"presentation_rect" : [ 601.5, 127.787537, 58.5, 58.5 ],
"style" : ""
}
}
, {
"box" : {
"bgcolor" : [ 0.358573, 0.333383, 0.3663, 1.0 ],
"blinkcolor" : [ 0.439216, 0.74902, 0.254902, 1.0 ],
"id" : "obj-128",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 795.5, 553.363464, 24.0, 24.0 ],
"presentation" : 1,
"presentation_rect" : [ 689.0, 127.787537, 58.5, 58.5 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-146",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1227.994263, 537.575073, 71.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-130",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1305.744263, 537.575073, 62.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-149",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 848.0, 489.423218, 29.5, 22.0 ],
"style" : "",
"text" : "+ 0"
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-148",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 776.0, 306.211609, 90.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-136",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 776.0, 258.848145, 75.0, 22.0 ],
"style" : "",
"text" : "random 100"
}
}
, {
"box" : {
"id" : "obj-134",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 776.0, 361.848145, 53.0, 22.0 ],
"style" : "",
"text" : "seed $1"
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-120",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 910.0, 366.423218, 77.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-115",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "float" ],
"patching_rect" : [ 910.0, 326.423218, 35.0, 22.0 ],
"style" : "",
"text" : "* 0.1"
}
}
, {
"box" : {
"id" : "obj-124",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 970.0, 232.211609, 150.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 601.5, 218.448029, 146.0, 20.0 ],
"style" : "",
"text" : "Choose sound file below."
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-81",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1756.0, 111.5, 227.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 604.5, 870.575073, 186.0, 34.0 ],
"style" : "",
"text" : "Administration"
}
}
, {
"box" : {
"id" : "obj-119",
"maxclass" : "newobj",
"numinlets" : 3,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 848.0, 410.423218, 81.0, 22.0 ],
"style" : "",
"text" : "drunk 100 10"
}
}
, {
"box" : {
"id" : "obj-74",
"linecount" : 2,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 902.0, 635.0, 76.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 709.0, 568.575073, 196.0, 20.0 ],
"style" : "",
"text" : "Playback speed",
"textcolor" : [ 1.0, 1.0, 1.0, 1.0 ]
}
}
, {
"box" : {
"id" : "obj-9",
"maxclass" : "newobj",
"numinlets" : 5,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 584.0, 1103.45752, 140.0, 22.0 ],
"style" : "",
"text" : "zmap 0.85 1.2 50 10000"
}
}
, {
"box" : {
"id" : "obj-161",
"linecount" : 5,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 986.0, 798.0, 150.0, 75.0 ],
"style" : "",
"text" : "lfo/lpf\npitch\nspeed\n\nfind good ranges"
}
}
, {
"box" : {
"id" : "obj-159",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 991.5, 590.575073, 63.0, 22.0 ],
"style" : "",
"text" : "delay 200"
}
}
, {
"box" : {
"id" : "obj-157",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 991.5, 627.575073, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-152",
"maxclass" : "button",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 991.5, 549.0, 24.0, 24.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-150",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1309.0, 191.5, 150.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 807.005737, 119.363464, 104.0, 20.0 ],
"style" : "",
"text" : "Sound file volume"
}
}
, {
"box" : {
"id" : "obj-147",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1600.0, 121.0, 150.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 356.0, 467.448029, 150.0, 20.0 ],
"style" : "",
"text" : "Sound file waveform",
"textcolor" : [ 1.0, 1.0, 1.0, 1.0 ]
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-137",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1383.494263, 747.307495, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-135",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1321.294312, 776.0, 87.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-133",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1259.094238, 820.307495, 150.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-131",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1196.894287, 747.307495, 102.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-129",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1134.694214, 776.0, 134.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-127",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 1072.494263, 747.307495, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-123",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 1084.5, 423.575073, 63.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 721.5, 309.160492, 66.0, 22.0 ],
"style" : "",
"text" : "leaf3.mp3"
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-122",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 1056.5, 394.0, 61.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 721.5, 274.160492, 64.0, 22.0 ],
"style" : "",
"text" : "leaf2.wav"
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-110",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 1026.5, 361.0, 61.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 721.5, 240.448029, 64.0, 22.0 ],
"style" : "",
"text" : "leaf1.wav"
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-109",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 1002.0, 331.0, 58.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 601.5, 309.160492, 61.0, 22.0 ],
"style" : "",
"text" : "log3.wav"
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-106",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 986.0, 300.0, 58.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 601.5, 274.160492, 61.0, 22.0 ],
"style" : "",
"text" : "log2.wav"
}
}
, {
"box" : {
"fontname" : "Arial",
"fontsize" : 13.0,
"id" : "obj-87",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 1072.494263, 553.363464, 86.0, 23.0 ],
"style" : "",
"text" : "set skoBuffer"
}
}
, {
"box" : {
"bgcolor" : [ 0.760784, 0.878431, 0.796078, 1.0 ],
"buffername" : "skoBuffer",
"gridcolor" : [ 0.185512, 0.263736, 0.260626, 1.0 ],
"id" : "obj-91",
"maxclass" : "waveform~",
"numinlets" : 5,
"numoutlets" : 6,
"outlettype" : [ "float", "float", "float", "float", "list", "" ],
"patching_rect" : [ 1072.494263, 586.863464, 330.0, 135.594055 ],
"presentation" : 1,
"presentation_rect" : [ 356.0, 489.448029, 330.0, 135.594055 ],
"selectioncolor" : [ 0.372549, 0.196078, 0.486275, 0.44 ],
"setunit" : 1,
"style" : "",
"waveformcolor" : [ 0.165741, 0.364658, 0.14032, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-82",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 970.0, 264.0, 58.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 601.5, 240.448029, 61.0, 22.0 ],
"style" : "",
"text" : "log1.wav"
}
}
, {
"box" : {
"id" : "obj-8",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "float", "bang" ],
"patching_rect" : [ 970.0, 489.423218, 125.0, 22.0 ],
"style" : "",
"text" : "buffer~ skoBuffer 100"
}
}
, {
"box" : {
"id" : "obj-125",
"maxclass" : "newobj",
"numinlets" : 5,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 835.0, 550.0, 127.0, 22.0 ],
"style" : "",
"text" : "zmap 0.85 1.2 0.5 1.5"
}
}
, {
"box" : {
"id" : "obj-98",
"linecount" : 2,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 740.5, 660.575073, 58.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 601.5, 103.787537, 65.0, 20.0 ],
"style" : "",
"text" : "Start loop"
}
}
, {
"box" : {
"id" : "obj-70",
"linecount" : 2,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 779.0, 578.575073, 46.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 689.0, 103.787537, 70.0, 20.0 ],
"style" : "chiba",
"text" : "Stop loop"
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-96",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 795.5, 597.575073, 30.0, 22.0 ],
"style" : "chiba",
"text" : "0"
}
}
, {
"box" : {
"id" : "obj-108",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 626.0, 361.0, 62.0, 22.0 ],
"style" : "chiba"
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-111",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 689.0, 361.0, 66.0, 22.0 ],
"style" : "chiba"
}
}
, {
"box" : {
"id" : "obj-112",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 641.0, 306.211609, 30.0, 22.0 ],
"style" : "chiba",
"text" : "+ 0"
}
}
, {
"box" : {
"id" : "obj-113",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 626.0, 231.211609, 88.0, 22.0 ],
"style" : "chiba",
"text" : "random 41000"
}
}
, {
"box" : {
"bgcolor" : [ 0.65098, 0.666667, 0.662745, 1.0 ],
"format" : 6,
"id" : "obj-114",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 902.0, 610.307495, 64.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 709.0, 590.575073, 147.0, 22.0 ],
"style" : "chiba",
"textcolor" : [ 0.0, 0.0, 0.0, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgcolor2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.0, 0.533333, 0.168627, 1.0 ],
"bgfillcolor_color2" : [ 0.239216, 0.254902, 0.278431, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-116",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 748.0, 682.575073, 50.0, 22.0 ],
"style" : "chiba",
"text" : "loop $1"
}
}
, {
"box" : {
"id" : "obj-118",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "signal" ],
"patching_rect" : [ 835.0, 671.575073, 33.0, 22.0 ],
"style" : "chiba",
"text" : "sig~"
}
}
, {
"box" : {
"id" : "obj-121",
"maxclass" : "newobj",
"numinlets" : 3,
"numoutlets" : 2,
"outlettype" : [ "signal", "signal" ],
"patching_rect" : [ 835.0, 760.575073, 108.0, 22.0 ],
"saved_object_attributes" : {
"basictuning" : 440,
"followglobaltempo" : 0,
"formantcorrection" : 0,
"loopend" : [ 45933.992519, "ms" ],
"loopstart" : [ 43561.996972, "ms" ],
"mode" : "basic",
"originallength" : [ 0.000001, "ticks" ],
"originaltempo" : 0.0,
"phase" : [ 0.0, "ticks" ],
"pitchcorrection" : 0,
"quality" : "basic",
"timestretch" : [ 0 ]
}
,
"style" : "chiba",
"text" : "groove~ skoBuffer"
}
}
, {
"box" : {
"id" : "obj-107",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 209.0, 1085.45752, 95.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 53.0, 442.0, 60.0, 20.0 ],
"style" : "",
"text" : "Intensity"
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-105",
"linecount" : 2,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1617.0, 106.5, 153.0, 62.0 ],
"presentation" : 1,
"presentation_rect" : [ 601.5, 49.5, 170.0, 34.0 ],
"style" : "",
"text" : "Nature Sounds"
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.439216, 0.74902, 0.254902, 0.6 ],
"grad2" : [ 0.0, 0.533333, 0.168627, 0.63 ],
"id" : "obj-104",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1612.0, 92.0, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 564.0, 29.0, 370.0, 322.0 ],
"proportion" : 0.39,
"style" : ""
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-103",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1337.0, 125.0, 459.0, 34.0 ],
"presentation" : 1,
"presentation_linecount" : 2,
"presentation_rect" : [ 51.0, 29.0, 94.0, 62.0 ],
"style" : "",
"text" : "Start & Mute"
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-102",
"linecount" : 2,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1467.0, 111.5, 287.0, 62.0 ],
"presentation" : 1,
"presentation_linecount" : 2,
"presentation_rect" : [ 839.0, 870.575073, 253.0, 62.0 ],
"style" : "",
"text" : "MIDI Configuration (defunct)"
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-101",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 928.5, 106.5, 281.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 266.0, 89.872955, 155.0, 34.0 ],
"style" : "",
"text" : "Rhythm"
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-100",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1056.0, 111.5, 227.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 51.0, 390.575073, 77.0, 34.0 ],
"style" : "",
"text" : "Delay"
}
}
, {
"box" : {
"fontsize" : 24.0,
"id" : "obj-97",
"linecount" : 2,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1176.0, 111.5, 153.0, 62.0 ],
"presentation" : 1,
"presentation_rect" : [ 1408.0, 892.016296, 190.0, 34.0 ],
"style" : "",
"text" : "MIDI Arpeggiator"
}
}
, {
"box" : {
"id" : "obj-85",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 178.75, 1461.0, 150.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 51.0, 244.0, 94.0, 20.0 ],
"style" : "",
"text" : "Mute/Unmute"
}
}
, {
"box" : {
"id" : "obj-77",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 408.0, 1219.45752, 69.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 704.0, 410.575073, 176.0, 20.0 ],
"style" : "",
"text" : "Filter",
"textcolor" : [ 1.0, 1.0, 1.0, 1.0 ]
}
}
, {
"box" : {
"id" : "obj-72",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 178.75, 1239.45752, 80.5, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 189.5, 397.575073, 61.5, 20.0 ],
"style" : "",
"text" : "Feedback"
}
}
, {
"box" : {
"id" : "obj-57",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 43.0, 65.0, 62.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 51.0, 119.5, 94.0, 20.0 ],
"style" : "",
"text" : "Start/Stop"
}
}
, {
"box" : {
"id" : "obj-65",
"linecount" : 2,
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 495.0, 177.5, 79.0, 34.0 ],
"presentation" : 1,
"presentation_rect" : [ 457.0, 246.872955, 83.0, 20.0 ],
"style" : "",
"text" : "Note duration"
}
}
, {
"box" : {
"id" : "obj-63",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 347.0, 197.0, 75.0, 20.0 ],
"presentation" : 1,
"presentation_rect" : [ 192.5, 246.872955, 75.0, 20.0 ],
"style" : "",
"text" : "Sample rate"
}
}
, {
"box" : {
"format" : 6,
"id" : "obj-59",
"maxclass" : "flonum",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 183.0, 16.287537, 50.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 266.0, 280.160492, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-49",
"maxclass" : "newobj",
"numinlets" : 5,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 215.0, 287.575073, 124.0, 22.0 ],
"style" : "",
"text" : "zmap -5. 5. 100 1000"
}
}
, {
"box" : {
"id" : "obj-15",
"maxclass" : "newobj",
"numinlets" : 5,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 382.0, 306.0, 117.0, 22.0 ],
"style" : "",
"text" : "zmap -5. 5. 50 3000"
}
}
, {
"box" : {
"id" : "obj-41",
"maxclass" : "newobj",
"numinlets" : 6,
"numoutlets" : 1,
"outlettype" : [ "signal" ],
"patching_rect" : [ 266.5, 1385.45752, 206.5, 22.0 ],
"style" : "",
"text" : "biquad~"
}
}
, {
"box" : {
"bgcolor" : [ 0.326117, 0.358336, 0.307924, 1.0 ],
"curvecolor" : [ 0.760784, 0.878431, 0.796078, 1.0 ],
"fontface" : 0,
"hcurvecolor" : [ 0.701961, 0.415686, 0.886275, 1.0 ],
"id" : "obj-40",
"maxclass" : "filtergraph~",
"nfilters" : 1,
"numinlets" : 8,
"numoutlets" : 7,
"outlettype" : [ "list", "float", "float", "float", "float", "list", "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 362.0, 1207.45752, 256.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 704.0, 427.575073, 256.0, 128.0 ],
"setfilter" : [ 0, 5, 1, 0, 0, 2770.613525, 6.334376, 0.805578, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-25",
"maxclass" : "gain~",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "signal", "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 266.5, 1195.45752, 22.0, 140.0 ],
"presentation" : 1,
"presentation_rect" : [ 189.5, 421.150146, 22.0, 140.0 ],
"style" : ""
}
}
, {
"box" : {
"bgcolor" : [ 0.279696, 0.304029, 0.26257, 0.490196 ],
"elementcolor" : [ 0.603922, 0.631373, 0.576471, 1.0 ],
"id" : "obj-24",
"maxclass" : "ezdac~",
"numinlets" : 2,
"numoutlets" : 0,
"patching_rect" : [ 266.5, 1440.45752, 45.0, 45.0 ],
"presentation" : 1,
"presentation_rect" : [ 51.0, 266.0, 62.0, 62.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-23",
"maxclass" : "meter~",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "float" ],
"patching_rect" : [ 300.0, 1195.45752, 20.0, 140.0 ],
"presentation" : 1,
"presentation_rect" : [ 223.0, 421.150146, 20.0, 140.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-22",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "signal" ],
"patching_rect" : [ 192.0, 1151.45752, 36.0, 22.0 ],
"style" : "",
"text" : "*~ 0."
}
}
, {
"box" : {
"fontsize" : 20.0,
"format" : 6,
"id" : "obj-21",
"maxclass" : "flonum",
"maximum" : 0.99,
"minimum" : 0.0,
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 209.0, 1103.45752, 69.0, 31.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-19",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "signal" ],
"patching_rect" : [ 300.0, 1151.45752, 74.0, 22.0 ],
"style" : "",
"text" : "tapout~ 500"
}
}
, {
"box" : {
"id" : "obj-17",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "tapconnect" ],
"patching_rect" : [ 300.0, 1110.45752, 74.0, 22.0 ],
"style" : "",
"text" : "tapin~ 5000"
}
}
, {
"box" : {
"id" : "obj-92",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 382.0, 373.0, 50.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 400.0, 280.160492, 50.0, 22.0 ],
"style" : ""
}
}
, {
"box" : {
"id" : "obj-75",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 95.0, 321.54248, 34.0, 22.0 ],
"style" : "",
"text" : "print"
}
}
, {
"box" : {
"id" : "obj-58",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 137.0, 321.54248, 72.0, 22.0 ],
"style" : "newobjGreen-1",
"text" : "fromsymbol"
}
}
, {
"box" : {
"id" : "obj-54",
"maxclass" : "newobj",
"numinlets" : 3,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 137.0, 271.575073, 46.0, 22.0 ],
"style" : "newobjBlue-1",
"text" : "itoa"
}
}
, {
"box" : {
"id" : "obj-7",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 2,
"outlettype" : [ "", "" ],
"patching_rect" : [ 137.0, 224.607635, 81.0, 22.0 ],
"style" : "",
"text" : "zl group 1000"
}
}
, {
"box" : {
"id" : "obj-4",
"maxclass" : "newobj",
"numinlets" : 3,
"numoutlets" : 3,
"outlettype" : [ "bang", "bang", "" ],
"patching_rect" : [ 137.0, 160.640228, 59.0, 22.0 ],
"style" : "",
"text" : "sel 13 10"
}
}
, {
"box" : {
"bgcolor" : [ 0.279696, 0.304029, 0.26257, 0.490196 ],
"elementcolor" : [ 0.603922, 0.631373, 0.576471, 1.0 ],
"id" : "obj-6",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 26.0, 38.333332, 24.0, 24.0 ],
"presentation" : 1,
"presentation_rect" : [ 51.0, 143.212463, 62.0, 62.0 ],
"style" : "toggleGreen",
"uncheckedcolor" : [ 0.603922, 0.631373, 0.576471, 1.0 ]
}
}
, {
"box" : {
"id" : "obj-5",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 219.000015, 65.0, 65.0, 22.0 ],
"style" : "",
"text" : "metro 400"
}
}
, {
"box" : {
"bgcolor" : [ 0.454902, 0.462745, 0.482353, 1.0 ],
"bgcolor2" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_angle" : 270.0,
"bgfillcolor_autogradient" : 0.0,
"bgfillcolor_color" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_color1" : [ 0.454902, 0.462745, 0.482353, 1.0 ],
"bgfillcolor_color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ],
"bgfillcolor_proportion" : 0.39,
"bgfillcolor_type" : "gradient",
"gradient" : 1,
"id" : "obj-2",
"maxclass" : "message",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 137.0, 65.0, 33.0, 22.0 ],
"presentation" : 1,
"presentation_rect" : [ 723.5, 928.712463, 33.0, 22.0 ],
"style" : "",
"text" : "print"
}
}
, {
"box" : {
"id" : "obj-1",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "int", "" ],
"patching_rect" : [ 137.0, 126.0, 80.0, 22.0 ],
"style" : "newobjYellow-1",
"text" : "serial h 9600"
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.92549, 0.364706, 0.341176, 1.0 ],
"grad2" : [ 0.92549, 0.364706, 0.341176, 1.0 ],
"id" : "obj-88",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1188.0, 92.0, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 1134.0, 856.516296, 504.0, 684.0 ],
"proportion" : 0.39,
"style" : ""
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.701961, 0.415686, 0.886275, 1.0 ],
"grad2" : [ 0.466667, 0.254902, 0.607843, 1.0 ],
"id" : "obj-89",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1325.0, 92.0, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 36.0, 15.356232, 128.0, 347.643768 ],
"proportion" : 0.39,
"style" : ""
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.317647, 0.654902, 0.976471, 1.0 ],
"grad2" : [ 0.011765, 0.396078, 0.752941, 1.0 ],
"id" : "obj-90",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1463.5, 92.0, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 36.0, 374.0, 249.0, 202.0 ],
"proportion" : 0.39,
"style" : ""
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.701961, 0.415686, 0.886275, 1.0 ],
"grad2" : [ 0.701961, 0.415686, 0.886275, 1.0 ],
"id" : "obj-93",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1052.0, 92.0, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 824.0, 856.516296, 300.0, 266.967407 ],
"proportion" : 0.39,
"style" : ""
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.952941, 0.564706, 0.098039, 1.0 ],
"grad2" : [ 0.870588, 0.415686, 0.062745, 1.0 ],
"id" : "obj-95",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 914.0, 92.0, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 185.0, 73.585419, 364.0, 241.287537 ],
"proportion" : 0.39,
"style" : ""
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.960784, 0.827451, 0.156863, 1.0 ],
"grad2" : [ 0.960784, 0.827451, 0.156863, 1.0 ],
"id" : "obj-64",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1756.0, 92.0, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 582.0, 807.457581, 222.0, 570.558777 ],
"proportion" : 0.39,
"style" : ""
}
}
, {
"box" : {
"angle" : 270.0,
"grad1" : [ 0.32549, 0.345098, 0.372549, 0.6 ],
"grad2" : [ 0.0, 0.0, 0.0, 0.63 ],
"id" : "obj-169",
"maxclass" : "panel",
"mode" : 1,
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 1384.0, 32.712463, 128.0, 128.0 ],
"presentation" : 1,
"presentation_rect" : [ 341.0, 390.575073, 634.0, 252.0 ],
"proportion" : 0.39,
"rounded" : 90,
"style" : ""
}
}
],
"lines" : [ {
"patchline" : {
"destination" : [ "obj-4", 0 ],
"source" : [ "obj-1", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-122", 0 ],
"order" : 0,
"source" : [ "obj-10", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-44", 0 ],
"order" : 5,
"source" : [ "obj-10", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-52", 0 ],
"order" : 4,
"source" : [ "obj-10", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-55", 0 ],
"order" : 2,
"source" : [ "obj-10", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-60", 0 ],
"order" : 3,
"source" : [ "obj-10", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-62", 0 ],
"order" : 1,
"source" : [ "obj-10", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-13", 0 ],
"order" : 0,
"source" : [ "obj-106", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-152", 0 ],
"order" : 1,
"source" : [ "obj-106", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-154", 0 ],
"order" : 2,
"source" : [ "obj-106", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-13", 0 ],
"order" : 0,
"source" : [ "obj-109", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-152", 0 ],
"order" : 1,
"source" : [ "obj-109", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-154", 0 ],
"order" : 2,
"source" : [ "obj-109", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-13", 0 ],
"order" : 0,
"source" : [ "obj-110", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-152", 0 ],
"order" : 1,
"source" : [ "obj-110", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-154", 0 ],
"order" : 2,
"source" : [ "obj-110", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-111", 0 ],
"midpoints" : [ 650.5, 345.636536, 698.5, 345.636536 ],
"source" : [ "obj-112", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-108", 0 ],
"midpoints" : [ 635.5, 350.711609, 635.5, 350.711609 ],
"order" : 1,
"source" : [ "obj-113", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-112", 0 ],
"midpoints" : [ 635.5, 256.211609, 650.5, 256.211609 ],
"order" : 0,
"source" : [ "obj-113", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-120", 0 ],
"source" : [ "obj-115", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-121", 0 ],
"midpoints" : [ 757.5, 714.575073, 844.5, 714.575073 ],
"source" : [ "obj-116", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-121", 0 ],
"source" : [ "obj-118", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-146", 0 ],
"order" : 0,
"source" : [ "obj-119", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-149", 0 ],
"order" : 1,
"source" : [ "obj-119", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-195", 0 ],
"source" : [ "obj-12", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-119", 2 ],
"source" : [ "obj-120", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-42", 0 ],
"source" : [ "obj-121", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-13", 0 ],
"order" : 0,
"source" : [ "obj-122", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-152", 0 ],
"order" : 1,
"source" : [ "obj-122", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-154", 0 ],
"order" : 2,
"source" : [ "obj-122", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-13", 0 ],
"order" : 0,
"source" : [ "obj-123", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-152", 0 ],
"order" : 1,
"source" : [ "obj-123", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-154", 0 ],
"order" : 2,
"source" : [ "obj-123", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-114", 0 ],
"order" : 0,
"source" : [ "obj-125", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-118", 0 ],
"order" : 1,
"source" : [ "obj-125", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-96", 0 ],
"source" : [ "obj-128", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-87", 0 ],
"source" : [ "obj-13", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-91", 3 ],
"source" : [ "obj-130", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-138", 0 ],
"source" : [ "obj-132", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-119", 0 ],
"source" : [ "obj-134", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-148", 0 ],
"source" : [ "obj-136", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-116", 0 ],
"order" : 1,
"source" : [ "obj-138", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-128", 0 ],
"order" : 0,
"source" : [ "obj-138", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-141", 0 ],
"source" : [ "obj-138", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-175", 0 ],
"order" : 2,
"source" : [ "obj-138", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-30", 0 ],
"source" : [ "obj-138", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-27", 0 ],
"source" : [ "obj-14", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-158", 0 ],
"source" : [ "obj-141", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-158", 0 ],
"source" : [ "obj-143", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-116", 0 ],
"source" : [ "obj-144", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-91", 2 ],
"source" : [ "obj-146", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-134", 0 ],
"source" : [ "obj-148", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-130", 0 ],
"source" : [ "obj-149", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-112", 1 ],
"midpoints" : [ 391.5, 433.0, 581.0, 433.0, 581.0, 372.0, 581.0, 372.0, 581.0, 268.0, 661.5, 268.0 ],
"order" : 1,
"source" : [ "obj-15", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-149", 1 ],
"order" : 0,
"source" : [ "obj-15", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-92", 0 ],
"order" : 2,
"source" : [ "obj-15", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-158", 0 ],
"source" : [ "obj-151", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-159", 0 ],
"source" : [ "obj-152", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-8", 0 ],
"source" : [ "obj-154", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-158", 0 ],
"source" : [ "obj-156", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-136", 0 ],
"order" : 1,
"source" : [ "obj-157", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-91", 1 ],
"midpoints" : [ 1001.0, 661.575073, 1061.372131, 661.575073, 1061.372131, 544.863464, 1159.744263, 544.863464 ],
"order" : 0,
"source" : [ "obj-157", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-5", 0 ],
"source" : [ "obj-158", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-157", 0 ],
"source" : [ "obj-159", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-18", 0 ],
"source" : [ "obj-16", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-158", 0 ],
"source" : [ "obj-160", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-116", 0 ],
"order" : 1,
"source" : [ "obj-162", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-128", 0 ],
"order" : 0,
"source" : [ "obj-162", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-143", 0 ],
"source" : [ "obj-162", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-175", 0 ],
"order" : 2,
"source" : [ "obj-162", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-30", 0 ],
"source" : [ "obj-162", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-162", 0 ],
"source" : [ "obj-163", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-116", 0 ],
"order" : 1,
"source" : [ "obj-164", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-128", 0 ],
"order" : 0,
"source" : [ "obj-164", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-151", 0 ],
"source" : [ "obj-164", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-175", 0 ],
"order" : 2,
"source" : [ "obj-164", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-30", 0 ],
"source" : [ "obj-164", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-164", 0 ],
"source" : [ "obj-165", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-116", 0 ],
"order" : 1,
"source" : [ "obj-166", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-128", 0 ],
"order" : 0,
"source" : [ "obj-166", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-156", 0 ],
"source" : [ "obj-166", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-175", 0 ],
"order" : 2,
"source" : [ "obj-166", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-30", 0 ],
"source" : [ "obj-166", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-168", 0 ],
"source" : [ "obj-167", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-21", 0 ],
"source" : [ "obj-168", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-19", 0 ],
"source" : [ "obj-17", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-166", 0 ],
"source" : [ "obj-171", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-116", 0 ],
"order" : 1,
"source" : [ "obj-172", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-128", 0 ],
"order" : 0,
"source" : [ "obj-172", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-160", 0 ],
"source" : [ "obj-172", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-175", 0 ],
"order" : 2,
"source" : [ "obj-172", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-30", 0 ],
"source" : [ "obj-172", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-172", 0 ],
"source" : [ "obj-173", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-59", 0 ],
"source" : [ "obj-175", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-28", 0 ],
"source" : [ "obj-18", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-31", 0 ],
"source" : [ "obj-18", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-33", 0 ],
"source" : [ "obj-18", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-35", 0 ],
"source" : [ "obj-18", 3 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-43", 0 ],
"source" : [ "obj-18", 4 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-22", 0 ],
"midpoints" : [ 309.5, 1176.45752, 240.0, 1176.45752, 240.0, 1136.45752, 201.5, 1136.45752 ],
"order" : 1,
"source" : [ "obj-19", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-25", 0 ],
"midpoints" : [ 309.5, 1186.45752, 276.0, 1186.45752 ],
"order" : 0,
"source" : [ "obj-19", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-200", 0 ],
"source" : [ "obj-193", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-200", 1 ],
"order" : 0,
"source" : [ "obj-195", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-218", 0 ],
"order" : 1,
"source" : [ "obj-195", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-200", 1 ],
"order" : 0,
"source" : [ "obj-196", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-219", 0 ],
"order" : 1,
"source" : [ "obj-196", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-200", 1 ],
"order" : 0,
"source" : [ "obj-197", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-220", 0 ],
"order" : 1,
"source" : [ "obj-197", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-200", 1 ],
"order" : 1,
"source" : [ "obj-198", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-221", 0 ],
"order" : 0,
"source" : [ "obj-198", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-200", 1 ],
"order" : 1,
"source" : [ "obj-199", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-222", 0 ],
"order" : 0,
"source" : [ "obj-199", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-1", 0 ],
"source" : [ "obj-2", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-8", 0 ],
"source" : [ "obj-20", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-208", 0 ],
"source" : [ "obj-200", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-193", 0 ],
"source" : [ "obj-202", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-193", 0 ],
"source" : [ "obj-203", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-193", 0 ],
"source" : [ "obj-204", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-193", 0 ],
"source" : [ "obj-205", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-193", 0 ],
"source" : [ "obj-206", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-125", 0 ],
"order" : 0,
"source" : [ "obj-208", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-9", 0 ],
"order" : 1,
"source" : [ "obj-208", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-216", 0 ],
"source" : [ "obj-209", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-22", 1 ],
"source" : [ "obj-21", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-209", 0 ],
"source" : [ "obj-214", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-19", 0 ],
"midpoints" : [ 90.5, 1137.0, 240.0, 1137.0, 240.0, 1146.0, 309.5, 1146.0 ],
"source" : [ "obj-216", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-202", 0 ],
"source" : [ "obj-218", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-203", 0 ],
"source" : [ "obj-219", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-17", 0 ],
"midpoints" : [ 201.5, 1182.45752, 285.0, 1182.45752, 285.0, 1106.45752, 309.5, 1106.45752 ],
"source" : [ "obj-22", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-204", 0 ],
"source" : [ "obj-220", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-205", 0 ],
"source" : [ "obj-221", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-206", 0 ],
"source" : [ "obj-222", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-23", 0 ],
"order" : 0,
"source" : [ "obj-25", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-41", 0 ],
"order" : 1,
"source" : [ "obj-25", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-196", 0 ],
"source" : [ "obj-26", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-37", 0 ],
"order" : 0,
"source" : [ "obj-27", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-49", 0 ],
"order" : 1,
"source" : [ "obj-27", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-132", 0 ],
"order" : 2,
"source" : [ "obj-28", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-214", 0 ],
"order" : 1,
"source" : [ "obj-28", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-46", 0 ],
"order" : 0,
"source" : [ "obj-28", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-39", 0 ],
"source" : [ "obj-29", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-14", 0 ],
"source" : [ "obj-30", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-163", 0 ],
"order" : 2,
"source" : [ "obj-31", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-214", 0 ],
"order" : 1,
"source" : [ "obj-31", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-68", 0 ],
"order" : 0,
"source" : [ "obj-31", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-197", 0 ],
"source" : [ "obj-32", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-165", 0 ],
"order" : 1,
"source" : [ "obj-33", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-214", 0 ],
"order" : 2,
"source" : [ "obj-33", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-69", 0 ],
"order" : 0,
"source" : [ "obj-33", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-1", 0 ],
"source" : [ "obj-34", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-171", 0 ],
"order" : 1,
"source" : [ "obj-35", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-214", 0 ],
"order" : 2,
"source" : [ "obj-35", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-71", 0 ],
"order" : 0,
"source" : [ "obj-35", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-198", 0 ],
"source" : [ "obj-36", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-15", 0 ],
"order" : 1,
"source" : [ "obj-39", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-38", 0 ],
"order" : 0,
"source" : [ "obj-39", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-7", 0 ],
"midpoints" : [ 186.5, 209.0, 146.5, 209.0 ],
"source" : [ "obj-4", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-7", 0 ],
"source" : [ "obj-4", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-41", 1 ],
"midpoints" : [ 371.5, 1362.0, 313.5, 1362.0 ],
"source" : [ "obj-40", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-24", 1 ],
"order" : 0,
"source" : [ "obj-41", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-24", 0 ],
"order" : 1,
"source" : [ "obj-41", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-17", 0 ],
"midpoints" : [ 844.5, 1089.0, 315.0, 1089.0, 315.0, 1101.0, 309.5, 1101.0 ],
"order" : 0,
"source" : [ "obj-42", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-24", 1 ],
"midpoints" : [ 844.5, 1164.0, 302.0, 1164.0 ],
"order" : 1,
"source" : [ "obj-42", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-24", 0 ],
"midpoints" : [ 844.5, 1157.0, 276.0, 1157.0 ],
"order" : 2,
"source" : [ "obj-42", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-173", 0 ],
"order" : 1,
"source" : [ "obj-43", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-214", 0 ],
"order" : 2,
"source" : [ "obj-43", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-78", 0 ],
"order" : 0,
"source" : [ "obj-43", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-14", 0 ],
"source" : [ "obj-44", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-199", 0 ],
"source" : [ "obj-45", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-12", 0 ],
"source" : [ "obj-46", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-8", 0 ],
"source" : [ "obj-47", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-59", 0 ],
"midpoints" : [ 224.5, 312.0, 201.0, 312.0, 201.0, 258.0, 105.0, 258.0, 105.0, 3.0, 192.5, 3.0 ],
"source" : [ "obj-49", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-113", 0 ],
"midpoints" : [ 228.500015, 105.287537, 635.5, 105.287537 ],
"order" : 1,
"source" : [ "obj-5", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-119", 0 ],
"midpoints" : [ 228.500015, 115.787537, 857.5, 115.787537 ],
"order" : 0,
"source" : [ "obj-5", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-29", 0 ],
"source" : [ "obj-52", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-58", 0 ],
"order" : 0,
"source" : [ "obj-54", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-75", 0 ],
"midpoints" : [ 146.5, 308.0, 104.5, 308.0 ],
"order" : 1,
"source" : [ "obj-54", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-25", 0 ],
"source" : [ "obj-55", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-16", 0 ],
"source" : [ "obj-58", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-5", 1 ],
"source" : [ "obj-59", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-34", 0 ],
"source" : [ "obj-6", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-167", 0 ],
"source" : [ "obj-60", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-42", 0 ],
"source" : [ "obj-62", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-26", 0 ],
"source" : [ "obj-68", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-32", 0 ],
"source" : [ "obj-69", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-54", 0 ],
"source" : [ "obj-7", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-36", 0 ],
"source" : [ "obj-71", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-45", 0 ],
"source" : [ "obj-78", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-13", 0 ],
"order" : 0,
"source" : [ "obj-82", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-152", 0 ],
"order" : 1,
"source" : [ "obj-82", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-154", 0 ],
"order" : 2,
"source" : [ "obj-82", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-91", 0 ],
"source" : [ "obj-87", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-40", 5 ],
"source" : [ "obj-9", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-115", 0 ],
"order" : 1,
"source" : [ "obj-91", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-119", 1 ],
"midpoints" : [ 1144.194263, 732.457519, 967.347132, 732.457519, 967.347132, 460.575073, 888.5, 460.575073 ],
"order" : 2,
"source" : [ "obj-91", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-121", 2 ],
"order" : 1,
"source" : [ "obj-91", 3 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-121", 1 ],
"order" : 1,
"source" : [ "obj-91", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-127", 0 ],
"source" : [ "obj-91", 0 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-129", 0 ],
"order" : 0,
"source" : [ "obj-91", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-131", 0 ],
"order" : 0,
"source" : [ "obj-91", 2 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-133", 0 ],
"order" : 0,
"source" : [ "obj-91", 3 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-135", 0 ],
"source" : [ "obj-91", 4 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-136", 1 ],
"order" : 3,
"source" : [ "obj-91", 1 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-137", 0 ],
"source" : [ "obj-91", 5 ]
}
}
, {
"patchline" : {
"destination" : [ "obj-118", 0 ],
"midpoints" : [ 805.0, 645.075073, 844.5, 645.075073 ],
"source" : [ "obj-96", 0 ]
}
}
],
"dependency_cache" : [ ],
"autosave" : 0,
"styles" : [ {
"name" : "newobjBlue-1",
"default" : {
"accentcolor" : [ 0.317647, 0.654902, 0.976471, 1.0 ]
}
,
"parentstyle" : "",
"multi" : 0
}
, {
"name" : "newobjGreen-1",
"default" : {
"accentcolor" : [ 0.0, 0.533333, 0.168627, 1.0 ]
}
,
"parentstyle" : "",
"multi" : 0
}
, {
"name" : "newobjYellow-1",
"default" : {
"fontsize" : [ 12.059008 ],
"accentcolor" : [ 0.82517, 0.78181, 0.059545, 1.0 ]
}
,
"parentstyle" : "",
"multi" : 0
}
, {
"name" : "numberGold-1",
"default" : {
"accentcolor" : [ 0.764706, 0.592157, 0.101961, 1.0 ]
}
,
"parentstyle" : "",
"multi" : 0
}
]
}
}

Leave a comment