From d3645f6c63e1ce1ededd6ca6a911e52b3472ed64 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Sun, 18 Sep 2022 22:42:30 +0200 Subject: [PATCH] fix tests --- packages/webaudio/feedbackdelay.mjs | 46 +- .../test/__snapshots__/tunes.test.mjs.snap | 2276 ++++++----------- 2 files changed, 795 insertions(+), 1527 deletions(-) diff --git a/packages/webaudio/feedbackdelay.mjs b/packages/webaudio/feedbackdelay.mjs index d742d9c5..1b9ae4e7 100644 --- a/packages/webaudio/feedbackdelay.mjs +++ b/packages/webaudio/feedbackdelay.mjs @@ -1,28 +1,30 @@ -class FeedbackDelayNode extends DelayNode { - constructor(ac, wet, time, feedback) { - super(ac); - wet = Math.abs(wet); - this.delayTime.value = time; +if (typeof DelayNode !== 'undefined') { + class FeedbackDelayNode extends DelayNode { + constructor(ac, wet, time, feedback) { + super(ac); + wet = Math.abs(wet); + this.delayTime.value = time; - const feedbackGain = ac.createGain(); - feedbackGain.gain.value = Math.min(Math.abs(feedback), 0.995); + const feedbackGain = ac.createGain(); + feedbackGain.gain.value = Math.min(Math.abs(feedback), 0.995); - const delayGain = ac.createGain(); - delayGain.gain.value = wet; - this.delayGain = delayGain; + const delayGain = ac.createGain(); + delayGain.gain.value = wet; + this.delayGain = delayGain; - this.connect(feedbackGain); - this.connect(delayGain); - feedbackGain.connect(this); + this.connect(feedbackGain); + this.connect(delayGain); + feedbackGain.connect(this); - this.connect = (target) => delayGain.connect(target); - return this; - } - start(t) { - this.delayGain.gain.setValueAtTime(this.delayGain.gain.value, t + this.delayTime.value); + this.connect = (target) => delayGain.connect(target); + return this; + } + start(t) { + this.delayGain.gain.setValueAtTime(this.delayGain.gain.value, t + this.delayTime.value); + } } + + AudioContext.prototype.createFeedbackDelay = function (wet, time, feedback) { + return new FeedbackDelayNode(this, wet, time, feedback); + }; } - -AudioContext.prototype.createFeedbackDelay = function (wet, time, feedback) { - return new FeedbackDelayNode(this, wet, time, feedback); -}; diff --git a/repl/src/test/__snapshots__/tunes.test.mjs.snap b/repl/src/test/__snapshots__/tunes.test.mjs.snap index 47a2b223..b32e8928 100644 --- a/repl/src/test/__snapshots__/tunes.test.mjs.snap +++ b/repl/src/test/__snapshots__/tunes.test.mjs.snap @@ -969,846 +969,777 @@ exports[`renders tunes > tune: callcenterhero 1`] = ` exports[`renders tunes > tune: caverave 1`] = ` [ - "0/1 -> 1/2: c1", - "1/2 -> 1/1: c1", - "1/2 -> 1/1: x", - "1/4 -> 1/2: c4", - "3/4 -> 1/1: c4", - "0/1 -> 1/2: B1", - "3/4 -> 1/1: B1", - "1/4 -> 13/44: A3", - "1/4 -> 13/44: C#4", - "1/4 -> 13/44: D4", - "1/4 -> 13/44: F#4", - "1/1 -> 3/2: c1", - "3/2 -> 2/1: c1", - "3/2 -> 2/1: x", - "5/4 -> 3/2: c4", - "7/4 -> 2/1: c4", - "7/4 -> 2/1: B1", - "5/4 -> 57/44: A3", - "5/4 -> 57/44: C#4", - "5/4 -> 57/44: D4", - "5/4 -> 57/44: F#4", - "2/1 -> 5/2: c1", - "5/2 -> 3/1: c1", - "5/2 -> 3/1: x", - "9/4 -> 5/2: c4", - "11/4 -> 3/1: c4", - "2/1 -> 5/2: B1", - "11/4 -> 3/1: B1", - "5/2 -> 28/11: A3", - "5/2 -> 28/11: C#4", - "5/2 -> 28/11: D4", - "5/2 -> 28/11: F#4", - "3/1 -> 7/2: c1", - "7/2 -> 4/1: c1", - "7/2 -> 4/1: x", - "13/4 -> 7/2: c4", - "15/4 -> 4/1: c4", - "15/4 -> 4/1: B1", - "7/2 -> 39/11: A3", - "7/2 -> 39/11: C#4", - "7/2 -> 39/11: D4", - "7/2 -> 39/11: F#4", - "4/1 -> 9/2: c1", - "9/2 -> 5/1: c1", - "9/2 -> 5/1: x", - "17/4 -> 9/2: c4", - "19/4 -> 5/1: c4", - "4/1 -> 9/2: A1", - "19/4 -> 5/1: A1", - "17/4 -> 189/44: G3", - "17/4 -> 189/44: B3", - "17/4 -> 189/44: C#4", - "17/4 -> 189/44: F#4", - "5/1 -> 11/2: c1", - "11/2 -> 6/1: c1", - "11/2 -> 6/1: x", - "21/4 -> 11/2: c4", - "23/4 -> 6/1: c4", - "23/4 -> 6/1: A1", - "21/4 -> 233/44: G3", - "21/4 -> 233/44: B3", - "21/4 -> 233/44: C#4", - "21/4 -> 233/44: F#4", - "6/1 -> 13/2: c1", - "13/2 -> 7/1: c1", - "13/2 -> 7/1: x", - "25/4 -> 13/2: c4", - "27/4 -> 7/1: c4", - "6/1 -> 13/2: A1", - "27/4 -> 7/1: A1", - "13/2 -> 72/11: G3", - "13/2 -> 72/11: B3", - "13/2 -> 72/11: C#4", - "13/2 -> 72/11: F#4", - "7/1 -> 15/2: c1", - "15/2 -> 8/1: c1", - "15/2 -> 63/8: x", - "63/8 -> 8/1: x", - "29/4 -> 15/2: c4", - "31/4 -> 8/1: c4", - "7/1 -> 15/2: A1", - "15/2 -> 8/1: A1", - "15/2 -> 83/11: G3", - "15/2 -> 83/11: B3", - "15/2 -> 83/11: C#4", - "15/2 -> 83/11: F#4", - "8/1 -> 17/2: c1", - "17/2 -> 9/1: c1", - "17/2 -> 9/1: x", - "33/4 -> 17/2: c4", - "35/4 -> 9/1: c4", - "8/1 -> 17/2: G1", - "35/4 -> 9/1: G1", - "33/4 -> 365/44: G3", - "33/4 -> 365/44: B3", - "33/4 -> 365/44: D4", - "33/4 -> 365/44: F#4", - "9/1 -> 19/2: c1", - "19/2 -> 10/1: c1", - "19/2 -> 10/1: x", - "37/4 -> 19/2: c4", - "39/4 -> 10/1: c4", - "39/4 -> 10/1: G1", - "37/4 -> 409/44: G3", - "37/4 -> 409/44: B3", - "37/4 -> 409/44: D4", - "37/4 -> 409/44: F#4", - "10/1 -> 21/2: c1", - "21/2 -> 11/1: c1", - "21/2 -> 11/1: x", - "41/4 -> 21/2: c4", - "43/4 -> 11/1: c4", - "10/1 -> 21/2: G1", - "43/4 -> 11/1: G1", - "21/2 -> 116/11: G3", - "21/2 -> 116/11: B3", - "21/2 -> 116/11: D4", - "21/2 -> 116/11: F#4", - "11/1 -> 23/2: c1", - "23/2 -> 12/1: c1", - "23/2 -> 12/1: x", - "45/4 -> 23/2: c4", - "47/4 -> 12/1: c4", - "47/4 -> 12/1: G1", - "23/2 -> 127/11: G3", - "23/2 -> 127/11: B3", - "23/2 -> 127/11: D4", - "23/2 -> 127/11: F#4", - "12/1 -> 25/2: c1", - "25/2 -> 13/1: c1", - "25/2 -> 13/1: x", - "49/4 -> 25/2: c4", - "51/4 -> 13/1: c4", - "12/1 -> 25/2: F#1", - "51/4 -> 13/1: F#1", - "49/4 -> 541/44: A#3", - "49/4 -> 541/44: D4", - "49/4 -> 541/44: E4", - "49/4 -> 541/44: G4", - "13/1 -> 27/2: c1", - "27/2 -> 14/1: c1", - "27/2 -> 14/1: x", - "53/4 -> 27/2: c4", - "55/4 -> 14/1: c4", - "55/4 -> 14/1: F#1", - "53/4 -> 585/44: A#3", - "53/4 -> 585/44: D4", - "53/4 -> 585/44: E4", - "53/4 -> 585/44: G4", - "14/1 -> 29/2: c1", - "29/2 -> 15/1: c1", - "29/2 -> 15/1: x", - "57/4 -> 29/2: c4", - "59/4 -> 15/1: c4", - "14/1 -> 29/2: F#2", - "59/4 -> 15/1: F#2", - "29/2 -> 160/11: A#3", - "29/2 -> 160/11: D4", - "29/2 -> 160/11: E4", - "29/2 -> 160/11: G4", - "15/1 -> 31/2: c1", - "31/2 -> 16/1: c1", - "31/2 -> 127/8: x", - "127/8 -> 16/1: x", - "61/4 -> 31/2: c4", - "63/4 -> 16/1: c4", - "15/1 -> 31/2: F#1", - "31/2 -> 16/1: F#1", - "31/2 -> 171/11: A#3", - "31/2 -> 171/11: D4", - "31/2 -> 171/11: E4", - "31/2 -> 171/11: G4", - "16/1 -> 33/2: c1", - "33/2 -> 17/1: c1", - "33/2 -> 17/1: x", - "65/4 -> 33/2: c4", - "67/4 -> 17/1: c4", - "16/1 -> 33/2: C2", - "67/4 -> 17/1: C2", - "65/4 -> 717/44: A#3", - "65/4 -> 717/44: D4", - "65/4 -> 717/44: D#4", - "65/4 -> 717/44: G4", - "17/1 -> 35/2: c1", - "35/2 -> 18/1: c1", - "35/2 -> 18/1: x", - "69/4 -> 35/2: c4", - "71/4 -> 18/1: c4", - "71/4 -> 18/1: C2", - "69/4 -> 761/44: A#3", - "69/4 -> 761/44: D4", - "69/4 -> 761/44: D#4", - "69/4 -> 761/44: G4", - "18/1 -> 37/2: c1", - "37/2 -> 19/1: c1", - "37/2 -> 19/1: x", - "73/4 -> 37/2: c4", - "75/4 -> 19/1: c4", - "18/1 -> 37/2: C2", - "75/4 -> 19/1: C2", - "37/2 -> 204/11: A#3", - "37/2 -> 204/11: D4", - "37/2 -> 204/11: D#4", - "37/2 -> 204/11: G4", - "19/1 -> 39/2: c1", - "39/2 -> 20/1: c1", - "39/2 -> 20/1: x", - "77/4 -> 39/2: c4", - "79/4 -> 20/1: c4", - "79/4 -> 20/1: C2", - "39/2 -> 215/11: A#3", - "39/2 -> 215/11: D4", - "39/2 -> 215/11: D#4", - "39/2 -> 215/11: G4", - "20/1 -> 41/2: c1", - "41/2 -> 21/1: c1", - "41/2 -> 21/1: x", - "81/4 -> 41/2: c4", - "83/4 -> 21/1: c4", - "20/1 -> 41/2: A#1", - "83/4 -> 21/1: A#1", - "81/4 -> 893/44: G#3", - "81/4 -> 893/44: C4", - "81/4 -> 893/44: D4", - "81/4 -> 893/44: G4", - "21/1 -> 43/2: c1", - "43/2 -> 22/1: c1", - "43/2 -> 22/1: x", - "85/4 -> 43/2: c4", - "87/4 -> 22/1: c4", - "87/4 -> 22/1: A#1", - "85/4 -> 937/44: G#3", - "85/4 -> 937/44: C4", - "85/4 -> 937/44: D4", - "85/4 -> 937/44: G4", - "22/1 -> 45/2: c1", - "45/2 -> 23/1: c1", - "45/2 -> 23/1: x", - "89/4 -> 45/2: c4", - "91/4 -> 23/1: c4", - "22/1 -> 45/2: A#1", - "91/4 -> 23/1: A#1", - "45/2 -> 248/11: G#3", - "45/2 -> 248/11: C4", - "45/2 -> 248/11: D4", - "45/2 -> 248/11: G4", - "23/1 -> 47/2: c1", - "47/2 -> 24/1: c1", - "47/2 -> 191/8: x", - "191/8 -> 24/1: x", - "93/4 -> 47/2: c4", - "95/4 -> 24/1: c4", - "23/1 -> 47/2: A#1", - "47/2 -> 24/1: A#1", - "47/2 -> 259/11: G#3", - "47/2 -> 259/11: C4", - "47/2 -> 259/11: D4", - "47/2 -> 259/11: G4", - "24/1 -> 49/2: c1", - "49/2 -> 25/1: c1", - "49/2 -> 25/1: x", - "97/4 -> 49/2: c4", - "99/4 -> 25/1: c4", - "24/1 -> 49/2: G#1", - "99/4 -> 25/1: G#1", - "97/4 -> 1069/44: G#3", - "97/4 -> 1069/44: C4", - "97/4 -> 1069/44: D#4", - "97/4 -> 1069/44: G4", - "25/1 -> 51/2: c1", - "51/2 -> 26/1: c1", - "51/2 -> 26/1: x", - "101/4 -> 51/2: c4", - "103/4 -> 26/1: c4", - "103/4 -> 26/1: G#1", - "101/4 -> 1113/44: G#3", - "101/4 -> 1113/44: C4", - "101/4 -> 1113/44: D#4", - "101/4 -> 1113/44: G4", - "26/1 -> 53/2: c1", - "53/2 -> 27/1: c1", - "53/2 -> 27/1: x", - "105/4 -> 53/2: c4", - "107/4 -> 27/1: c4", - "26/1 -> 53/2: G#1", - "107/4 -> 27/1: G#1", - "53/2 -> 292/11: G#3", - "53/2 -> 292/11: C4", - "53/2 -> 292/11: D#4", - "53/2 -> 292/11: G4", - "27/1 -> 55/2: c1", - "55/2 -> 28/1: c1", - "55/2 -> 28/1: x", - "109/4 -> 55/2: c4", - "111/4 -> 28/1: c4", - "111/4 -> 28/1: G#1", - "55/2 -> 303/11: G#3", - "55/2 -> 303/11: C4", - "55/2 -> 303/11: D#4", - "55/2 -> 303/11: G4", - "28/1 -> 57/2: c1", - "57/2 -> 29/1: c1", - "113/4 -> 57/2: c4", - "115/4 -> 29/1: c4", - "28/1 -> 57/2: G1", - "115/4 -> 29/1: G1", - "113/4 -> 1245/44: B3", - "113/4 -> 1245/44: D#4", - "113/4 -> 1245/44: F4", - "113/4 -> 1245/44: G#4", - "29/1 -> 59/2: c1", - "59/2 -> 30/1: c1", - "117/4 -> 59/2: c4", - "119/4 -> 30/1: c4", - "119/4 -> 30/1: G1", - "117/4 -> 1289/44: B3", - "117/4 -> 1289/44: D#4", - "117/4 -> 1289/44: F4", - "117/4 -> 1289/44: G#4", - "30/1 -> 61/2: c1", - "61/2 -> 31/1: c1", - "121/4 -> 61/2: c4", - "123/4 -> 31/1: c4", - "30/1 -> 61/2: G2", - "123/4 -> 31/1: G2", - "61/2 -> 336/11: B3", - "61/2 -> 336/11: D#4", - "61/2 -> 336/11: F4", - "61/2 -> 336/11: G#4", - "31/1 -> 63/2: c1", - "63/2 -> 32/1: c1", - "125/4 -> 63/2: c4", - "127/4 -> 32/1: c4", - "31/1 -> 63/2: G1", - "63/2 -> 32/1: G1", - "63/2 -> 347/11: B3", - "63/2 -> 347/11: D#4", - "63/2 -> 347/11: F4", - "63/2 -> 347/11: G#4", - "32/1 -> 65/2: c1", - "65/2 -> 33/1: c1", - "65/2 -> 33/1: x", - "129/4 -> 65/2: c4", - "131/4 -> 33/1: c4", - "65/2 -> 33/1: D4", - "129/4 -> 131/4: F#4", - "32/1 -> 65/2: D5", - "127/4 -> 129/4: E5", - "131/4 -> 133/4: E5", - "32/1 -> 65/2: B1", - "131/4 -> 33/1: B1", - "129/4 -> 1421/44: A3", - "129/4 -> 1421/44: C#4", - "129/4 -> 1421/44: D4", - "129/4 -> 1421/44: F#4", - "33/1 -> 67/2: c1", - "67/2 -> 34/1: c1", - "67/2 -> 34/1: x", - "133/4 -> 67/2: c4", - "135/4 -> 34/1: c4", - "67/2 -> 34/1: D4", - "133/4 -> 135/4: F#4", - "33/1 -> 67/2: D5", - "131/4 -> 133/4: E5", - "135/4 -> 137/4: E5", - "135/4 -> 34/1: B1", - "133/4 -> 1465/44: A3", - "133/4 -> 1465/44: C#4", - "133/4 -> 1465/44: D4", - "133/4 -> 1465/44: F#4", - "34/1 -> 69/2: c1", - "69/2 -> 35/1: c1", - "69/2 -> 35/1: x", - "137/4 -> 69/2: c4", - "139/4 -> 35/1: c4", - "69/2 -> 35/1: D4", - "137/4 -> 139/4: F#4", - "34/1 -> 69/2: D5", - "135/4 -> 137/4: E5", - "139/4 -> 141/4: E5", - "34/1 -> 69/2: B1", - "139/4 -> 35/1: B1", - "69/2 -> 380/11: A3", - "69/2 -> 380/11: C#4", - "69/2 -> 380/11: D4", - "69/2 -> 380/11: F#4", - "35/1 -> 71/2: c1", - "71/2 -> 36/1: c1", - "71/2 -> 36/1: x", - "141/4 -> 71/2: c4", - "143/4 -> 36/1: c4", - "71/2 -> 36/1: D4", - "141/4 -> 143/4: F#4", - "35/1 -> 71/2: D5", - "139/4 -> 141/4: E5", - "143/4 -> 145/4: D5", - "143/4 -> 36/1: B1", - "71/2 -> 391/11: A3", - "71/2 -> 391/11: C#4", - "71/2 -> 391/11: D4", - "71/2 -> 391/11: F#4", - "36/1 -> 73/2: c1", - "73/2 -> 37/1: c1", - "73/2 -> 37/1: x", - "145/4 -> 73/2: c4", - "147/4 -> 37/1: c4", - "73/2 -> 37/1: C#4", - "145/4 -> 147/4: E4", - "36/1 -> 73/2: C#5", - "143/4 -> 145/4: D5", - "147/4 -> 149/4: D5", - "36/1 -> 73/2: A1", - "147/4 -> 37/1: A1", - "145/4 -> 1597/44: G3", - "145/4 -> 1597/44: B3", - "145/4 -> 1597/44: C#4", - "145/4 -> 1597/44: F#4", - "37/1 -> 75/2: c1", - "75/2 -> 38/1: c1", - "75/2 -> 38/1: x", - "149/4 -> 75/2: c4", - "151/4 -> 38/1: c4", - "75/2 -> 38/1: C#4", - "149/4 -> 151/4: E4", - "37/1 -> 75/2: C#5", - "147/4 -> 149/4: D5", - "151/4 -> 153/4: D5", - "151/4 -> 38/1: A1", - "149/4 -> 1641/44: G3", - "149/4 -> 1641/44: B3", - "149/4 -> 1641/44: C#4", - "149/4 -> 1641/44: F#4", - "38/1 -> 77/2: c1", - "77/2 -> 39/1: c1", - "77/2 -> 39/1: x", - "153/4 -> 77/2: c4", - "155/4 -> 39/1: c4", - "77/2 -> 39/1: C#4", - "153/4 -> 155/4: E4", - "38/1 -> 77/2: C#5", - "151/4 -> 153/4: D5", - "155/4 -> 157/4: D5", - "38/1 -> 77/2: A1", - "155/4 -> 39/1: A1", - "77/2 -> 424/11: G3", - "77/2 -> 424/11: B3", - "77/2 -> 424/11: C#4", - "77/2 -> 424/11: F#4", - "39/1 -> 79/2: c1", - "79/2 -> 40/1: c1", - "79/2 -> 319/8: x", - "319/8 -> 40/1: x", - "157/4 -> 79/2: c4", - "159/4 -> 40/1: c4", - "79/2 -> 40/1: C#4", - "157/4 -> 159/4: E4", - "39/1 -> 79/2: C#5", - "155/4 -> 157/4: D5", - "159/4 -> 161/4: C#5", - "39/1 -> 79/2: A1", - "79/2 -> 40/1: A1", - "79/2 -> 435/11: G3", - "79/2 -> 435/11: B3", - "79/2 -> 435/11: C#4", - "79/2 -> 435/11: F#4", - "40/1 -> 81/2: c1", - "81/2 -> 41/1: c1", - "81/2 -> 41/1: x", - "161/4 -> 81/2: c4", - "163/4 -> 41/1: c4", - "81/2 -> 41/1: B3", - "161/4 -> 163/4: D4", - "40/1 -> 81/2: B4", - "159/4 -> 161/4: C#5", - "163/4 -> 165/4: C#5", - "40/1 -> 81/2: G1", - "163/4 -> 41/1: G1", - "161/4 -> 1773/44: G3", - "161/4 -> 1773/44: B3", - "161/4 -> 1773/44: D4", - "161/4 -> 1773/44: F#4", - "41/1 -> 83/2: c1", - "83/2 -> 42/1: c1", - "83/2 -> 42/1: x", - "165/4 -> 83/2: c4", - "167/4 -> 42/1: c4", - "83/2 -> 42/1: B3", - "165/4 -> 167/4: D4", - "41/1 -> 83/2: B4", - "163/4 -> 165/4: C#5", - "167/4 -> 169/4: C#5", - "167/4 -> 42/1: G1", - "165/4 -> 1817/44: G3", - "165/4 -> 1817/44: B3", - "165/4 -> 1817/44: D4", - "165/4 -> 1817/44: F#4", - "42/1 -> 85/2: c1", - "85/2 -> 43/1: c1", - "85/2 -> 43/1: x", - "169/4 -> 85/2: c4", - "171/4 -> 43/1: c4", - "85/2 -> 43/1: B3", - "169/4 -> 171/4: D4", - "42/1 -> 85/2: B4", - "167/4 -> 169/4: C#5", - "171/4 -> 173/4: C#5", - "42/1 -> 85/2: G1", - "171/4 -> 43/1: G1", - "85/2 -> 468/11: G3", - "85/2 -> 468/11: B3", - "85/2 -> 468/11: D4", - "85/2 -> 468/11: F#4", - "43/1 -> 87/2: c1", - "87/2 -> 44/1: c1", - "87/2 -> 44/1: x", - "173/4 -> 87/2: c4", - "175/4 -> 44/1: c4", - "87/2 -> 44/1: B3", - "173/4 -> 175/4: D4", - "43/1 -> 87/2: B4", - "171/4 -> 173/4: C#5", - "175/4 -> 177/4: B4", - "175/4 -> 44/1: G1", - "87/2 -> 479/11: G3", - "87/2 -> 479/11: B3", - "87/2 -> 479/11: D4", - "87/2 -> 479/11: F#4", - "44/1 -> 89/2: c1", - "89/2 -> 45/1: c1", - "89/2 -> 45/1: x", - "177/4 -> 89/2: c4", - "179/4 -> 45/1: c4", - "89/2 -> 45/1: A#3", - "177/4 -> 179/4: C#4", - "44/1 -> 89/2: A#4", - "175/4 -> 177/4: B4", - "179/4 -> 181/4: B4", - "44/1 -> 89/2: F#1", - "179/4 -> 45/1: F#1", - "177/4 -> 1949/44: A#3", - "177/4 -> 1949/44: D4", - "177/4 -> 1949/44: E4", - "177/4 -> 1949/44: G4", - "45/1 -> 91/2: c1", - "91/2 -> 46/1: c1", - "91/2 -> 46/1: x", - "181/4 -> 91/2: c4", - "183/4 -> 46/1: c4", - "91/2 -> 46/1: A#3", - "181/4 -> 183/4: C#4", - "45/1 -> 91/2: A#4", - "179/4 -> 181/4: B4", - "183/4 -> 185/4: B4", - "183/4 -> 46/1: F#1", - "181/4 -> 1993/44: A#3", - "181/4 -> 1993/44: D4", - "181/4 -> 1993/44: E4", - "181/4 -> 1993/44: G4", - "46/1 -> 93/2: c1", - "93/2 -> 47/1: c1", - "93/2 -> 47/1: x", - "185/4 -> 93/2: c4", - "187/4 -> 47/1: c4", - "93/2 -> 47/1: A#3", - "185/4 -> 187/4: C#4", - "46/1 -> 93/2: A#4", - "183/4 -> 185/4: B4", - "187/4 -> 189/4: B4", - "46/1 -> 93/2: F#2", - "187/4 -> 47/1: F#2", - "93/2 -> 512/11: A#3", - "93/2 -> 512/11: D4", - "93/2 -> 512/11: E4", - "93/2 -> 512/11: G4", - "47/1 -> 95/2: c1", - "95/2 -> 48/1: c1", - "95/2 -> 383/8: x", - "383/8 -> 48/1: x", - "189/4 -> 95/2: c4", - "191/4 -> 48/1: c4", - "95/2 -> 48/1: A#3", - "189/4 -> 191/4: C#4", - "47/1 -> 95/2: A#4", - "187/4 -> 189/4: B4", - "191/4 -> 193/4: E5", - "47/1 -> 95/2: F#1", - "95/2 -> 48/1: F#1", - "95/2 -> 523/11: A#3", - "95/2 -> 523/11: D4", - "95/2 -> 523/11: E4", - "95/2 -> 523/11: G4", - "48/1 -> 97/2: c1", - "97/2 -> 49/1: c1", - "97/2 -> 49/1: x", - "193/4 -> 97/2: c4", - "195/4 -> 49/1: c4", - "97/2 -> 49/1: D#4", - "193/4 -> 195/4: G4", - "48/1 -> 97/2: D#5", - "191/4 -> 193/4: F5", - "195/4 -> 197/4: F5", - "48/1 -> 97/2: C2", - "195/4 -> 49/1: C2", - "193/4 -> 2125/44: A#3", - "193/4 -> 2125/44: D4", - "193/4 -> 2125/44: D#4", - "193/4 -> 2125/44: G4", - "49/1 -> 99/2: c1", - "99/2 -> 50/1: c1", - "99/2 -> 50/1: x", - "197/4 -> 99/2: c4", - "199/4 -> 50/1: c4", - "99/2 -> 50/1: D#4", - "197/4 -> 199/4: G4", - "49/1 -> 99/2: D#5", - "195/4 -> 197/4: F5", - "199/4 -> 201/4: F5", - "199/4 -> 50/1: C2", - "197/4 -> 2169/44: A#3", - "197/4 -> 2169/44: D4", - "197/4 -> 2169/44: D#4", - "197/4 -> 2169/44: G4", - "50/1 -> 101/2: c1", - "101/2 -> 51/1: c1", - "101/2 -> 51/1: x", - "201/4 -> 101/2: c4", - "203/4 -> 51/1: c4", - "101/2 -> 51/1: D#4", - "201/4 -> 203/4: G4", - "50/1 -> 101/2: D#5", - "199/4 -> 201/4: F5", - "203/4 -> 205/4: F5", - "50/1 -> 101/2: C2", - "203/4 -> 51/1: C2", - "101/2 -> 556/11: A#3", - "101/2 -> 556/11: D4", - "101/2 -> 556/11: D#4", - "101/2 -> 556/11: G4", - "51/1 -> 103/2: c1", - "103/2 -> 52/1: c1", - "103/2 -> 52/1: x", - "205/4 -> 103/2: c4", - "207/4 -> 52/1: c4", - "103/2 -> 52/1: D#4", - "205/4 -> 207/4: G4", - "51/1 -> 103/2: D#5", - "203/4 -> 205/4: F5", - "207/4 -> 209/4: D#5", - "207/4 -> 52/1: C2", - "103/2 -> 567/11: A#3", - "103/2 -> 567/11: D4", - "103/2 -> 567/11: D#4", - "103/2 -> 567/11: G4", - "52/1 -> 105/2: c1", - "105/2 -> 53/1: c1", - "105/2 -> 53/1: x", - "209/4 -> 105/2: c4", - "211/4 -> 53/1: c4", - "105/2 -> 53/1: D4", - "209/4 -> 211/4: F4", - "52/1 -> 105/2: D5", - "207/4 -> 209/4: D#5", - "211/4 -> 213/4: D#5", - "52/1 -> 105/2: A#1", - "211/4 -> 53/1: A#1", - "209/4 -> 2301/44: G#3", - "209/4 -> 2301/44: C4", - "209/4 -> 2301/44: D4", - "209/4 -> 2301/44: G4", - "53/1 -> 107/2: c1", - "107/2 -> 54/1: c1", - "107/2 -> 54/1: x", - "213/4 -> 107/2: c4", - "215/4 -> 54/1: c4", - "107/2 -> 54/1: D4", - "213/4 -> 215/4: F4", - "53/1 -> 107/2: D5", - "211/4 -> 213/4: D#5", - "215/4 -> 217/4: D#5", - "215/4 -> 54/1: A#1", - "213/4 -> 2345/44: G#3", - "213/4 -> 2345/44: C4", - "213/4 -> 2345/44: D4", - "213/4 -> 2345/44: G4", - "54/1 -> 109/2: c1", - "109/2 -> 55/1: c1", - "109/2 -> 55/1: x", - "217/4 -> 109/2: c4", - "219/4 -> 55/1: c4", - "109/2 -> 55/1: D4", - "217/4 -> 219/4: F4", - "54/1 -> 109/2: D5", - "215/4 -> 217/4: D#5", - "219/4 -> 221/4: D#5", - "54/1 -> 109/2: A#1", - "219/4 -> 55/1: A#1", - "109/2 -> 600/11: G#3", - "109/2 -> 600/11: C4", - "109/2 -> 600/11: D4", - "109/2 -> 600/11: G4", - "55/1 -> 111/2: c1", - "111/2 -> 56/1: c1", - "111/2 -> 447/8: x", - "447/8 -> 56/1: x", - "221/4 -> 111/2: c4", - "223/4 -> 56/1: c4", - "111/2 -> 56/1: D4", - "221/4 -> 223/4: F4", - "55/1 -> 111/2: D5", - "219/4 -> 221/4: D#5", - "223/4 -> 225/4: D5", - "55/1 -> 111/2: A#1", - "111/2 -> 56/1: A#1", - "111/2 -> 611/11: G#3", - "111/2 -> 611/11: C4", - "111/2 -> 611/11: D4", - "111/2 -> 611/11: G4", - "113/2 -> 57/1: x", - "225/4 -> 113/2: c4", - "227/4 -> 57/1: c4", - "113/2 -> 57/1: C4", - "225/4 -> 227/4: D#4", - "56/1 -> 113/2: C5", - "223/4 -> 225/4: D5", - "227/4 -> 229/4: D5", - "56/1 -> 113/2: G#1", - "227/4 -> 57/1: G#1", - "225/4 -> 2477/44: G#3", - "225/4 -> 2477/44: C4", - "225/4 -> 2477/44: D#4", - "225/4 -> 2477/44: G4", - "115/2 -> 58/1: x", - "229/4 -> 115/2: c4", - "231/4 -> 58/1: c4", - "115/2 -> 58/1: C4", - "229/4 -> 231/4: D#4", - "57/1 -> 115/2: C5", - "227/4 -> 229/4: D5", - "231/4 -> 233/4: D5", - "231/4 -> 58/1: G#1", - "229/4 -> 2521/44: G#3", - "229/4 -> 2521/44: C4", - "229/4 -> 2521/44: D#4", - "229/4 -> 2521/44: G4", - "117/2 -> 59/1: x", - "233/4 -> 117/2: c4", - "235/4 -> 59/1: c4", - "117/2 -> 59/1: C4", - "233/4 -> 235/4: D#4", - "58/1 -> 117/2: C5", - "231/4 -> 233/4: D5", - "235/4 -> 237/4: D5", - "58/1 -> 117/2: G#1", - "235/4 -> 59/1: G#1", - "117/2 -> 644/11: G#3", - "117/2 -> 644/11: C4", - "117/2 -> 644/11: D#4", - "117/2 -> 644/11: G4", - "119/2 -> 60/1: x", - "237/4 -> 119/2: c4", - "239/4 -> 60/1: c4", - "119/2 -> 60/1: C4", - "237/4 -> 239/4: D#4", - "59/1 -> 119/2: C5", - "235/4 -> 237/4: D5", - "239/4 -> 241/4: C5", - "239/4 -> 60/1: G#1", - "119/2 -> 655/11: G#3", - "119/2 -> 655/11: C4", - "119/2 -> 655/11: D#4", - "119/2 -> 655/11: G4", -] -`; - -exports[`renders tunes > tune: confusedPhone 1`] = ` -[ - "0/1 -> 10/23: G2", - "0/1 -> 10/23: G1", - "1/5 -> 73/115: D3", - "2/5 -> 96/115: F3", - "-2/5 -> 4/115: C4", - "3/5 -> 119/115: G3", - "-1/5 -> 27/115: C5", - "4/5 -> 142/115: G4", - "1/1 -> 33/23: C3", - "1/1 -> 33/23: C2", - "6/5 -> 188/115: G3", - "7/5 -> 211/115: Bb3", - "3/5 -> 119/115: G3", - "8/5 -> 234/115: C4", - "4/5 -> 142/115: G4", - "9/5 -> 257/115: C5", - "2/1 -> 56/23: A2", - "2/1 -> 56/23: A1", - "11/5 -> 303/115: E3", - "12/5 -> 326/115: G3", - "8/5 -> 234/115: D4", - "13/5 -> 349/115: A3", - "9/5 -> 257/115: D5", - "14/5 -> 372/115: A4", - "3/1 -> 79/23: D3", - "3/1 -> 79/23: D2", - "16/5 -> 418/115: A3", - "17/5 -> 441/115: C4", - "13/5 -> 349/115: A3", - "18/5 -> 464/115: D4", - "14/5 -> 372/115: A4", - "19/5 -> 487/115: D5", - "4/1 -> 102/23: Bb2", - "4/1 -> 102/23: Bb1", - "21/5 -> 533/115: F3", - "22/5 -> 556/115: A3", - "18/5 -> 464/115: Eb4", - "23/5 -> 579/115: Bb3", - "19/5 -> 487/115: Eb5", - "24/5 -> 602/115: Bb4", - "5/1 -> 125/23: Eb3", - "5/1 -> 125/23: Eb2", - "26/5 -> 648/115: Bb3", - "27/5 -> 671/115: D4", - "23/5 -> 579/115: Bb3", - "28/5 -> 694/115: Eb4", - "24/5 -> 602/115: Bb4", - "29/5 -> 717/115: Eb5", - "6/1 -> 148/23: A2", - "6/1 -> 148/23: A1", - "31/5 -> 763/115: E3", - "32/5 -> 786/115: G3", - "28/5 -> 694/115: D4", - "33/5 -> 809/115: A3", - "29/5 -> 717/115: D5", - "34/5 -> 832/115: A4", - "7/1 -> 171/23: D3", - "7/1 -> 171/23: D2", - "36/5 -> 878/115: A3", - "37/5 -> 901/115: C4", - "33/5 -> 809/115: A3", - "38/5 -> 924/115: D4", - "34/5 -> 832/115: A4", - "39/5 -> 947/115: D5", + "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "1/2 -> 1/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "1/2 -> 1/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "1/4 -> 1/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "3/4 -> 1/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "0/1 -> 1/2: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "3/4 -> 1/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "1/4 -> 13/44: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "1/4 -> 13/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "1/4 -> 13/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "1/4 -> 13/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "1/1 -> 3/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "3/2 -> 2/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "3/2 -> 2/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "5/4 -> 3/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "7/4 -> 2/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "7/4 -> 2/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "5/4 -> 57/44: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "5/4 -> 57/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "5/4 -> 57/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "5/4 -> 57/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "2/1 -> 5/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "5/2 -> 3/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "5/2 -> 3/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "9/4 -> 5/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "11/4 -> 3/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "2/1 -> 5/2: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "11/4 -> 3/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "5/2 -> 28/11: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "5/2 -> 28/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "5/2 -> 28/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "5/2 -> 28/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "3/1 -> 7/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "7/2 -> 4/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "7/2 -> 4/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "13/4 -> 7/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "15/4 -> 4/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "15/4 -> 4/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "7/2 -> 39/11: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "7/2 -> 39/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "7/2 -> 39/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "7/2 -> 39/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "4/1 -> 9/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "9/2 -> 5/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "9/2 -> 5/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "17/4 -> 9/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "19/4 -> 5/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "4/1 -> 9/2: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "19/4 -> 5/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "17/4 -> 189/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "17/4 -> 189/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "17/4 -> 189/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "17/4 -> 189/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "5/1 -> 11/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "11/2 -> 6/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "11/2 -> 6/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "21/4 -> 11/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "23/4 -> 6/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "23/4 -> 6/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "21/4 -> 233/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "21/4 -> 233/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "21/4 -> 233/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "21/4 -> 233/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "6/1 -> 13/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "13/2 -> 7/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "13/2 -> 7/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "25/4 -> 13/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "27/4 -> 7/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "6/1 -> 13/2: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "27/4 -> 7/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "13/2 -> 72/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "13/2 -> 72/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "13/2 -> 72/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "13/2 -> 72/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "7/1 -> 15/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "15/2 -> 8/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "15/2 -> 63/8: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "63/8 -> 8/1: {\\"s\\":\\"x\\",\\"value\\":\\"x\\"}", + "29/4 -> 15/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "31/4 -> 8/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "7/1 -> 15/2: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "15/2 -> 8/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "15/2 -> 83/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "15/2 -> 83/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "15/2 -> 83/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "15/2 -> 83/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "8/1 -> 17/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "17/2 -> 9/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "17/2 -> 9/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "33/4 -> 17/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "35/4 -> 9/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "8/1 -> 17/2: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "35/4 -> 9/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "33/4 -> 365/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "33/4 -> 365/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "33/4 -> 365/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "33/4 -> 365/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "9/1 -> 19/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "19/2 -> 10/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "19/2 -> 10/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "37/4 -> 19/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "39/4 -> 10/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "39/4 -> 10/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "37/4 -> 409/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/4 -> 409/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/4 -> 409/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/4 -> 409/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "10/1 -> 21/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "21/2 -> 11/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "21/2 -> 11/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "41/4 -> 21/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "43/4 -> 11/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "10/1 -> 21/2: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "43/4 -> 11/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "21/2 -> 116/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "21/2 -> 116/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "21/2 -> 116/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "21/2 -> 116/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "11/1 -> 23/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "23/2 -> 12/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "23/2 -> 12/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "45/4 -> 23/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "47/4 -> 12/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "47/4 -> 12/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "23/2 -> 127/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "23/2 -> 127/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "23/2 -> 127/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "23/2 -> 127/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "12/1 -> 25/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "25/2 -> 13/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "25/2 -> 13/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "49/4 -> 25/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "51/4 -> 13/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "12/1 -> 25/2: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "51/4 -> 13/1: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "49/4 -> 541/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "49/4 -> 541/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "49/4 -> 541/44: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "49/4 -> 541/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "13/1 -> 27/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "27/2 -> 14/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "27/2 -> 14/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "53/4 -> 27/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "55/4 -> 14/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "55/4 -> 14/1: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "53/4 -> 585/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/4 -> 585/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/4 -> 585/44: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/4 -> 585/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "14/1 -> 29/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "29/2 -> 15/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "29/2 -> 15/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "57/4 -> 29/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "59/4 -> 15/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "14/1 -> 29/2: {\\"note\\":\\"F#2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "59/4 -> 15/1: {\\"note\\":\\"F#2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "29/2 -> 160/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "29/2 -> 160/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "29/2 -> 160/11: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "29/2 -> 160/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "15/1 -> 31/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "31/2 -> 16/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "31/2 -> 127/8: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "127/8 -> 16/1: {\\"s\\":\\"x\\",\\"value\\":\\"x\\"}", + "61/4 -> 31/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "63/4 -> 16/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "15/1 -> 31/2: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "31/2 -> 16/1: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "31/2 -> 171/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "31/2 -> 171/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "31/2 -> 171/11: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "31/2 -> 171/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "16/1 -> 33/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "33/2 -> 17/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "33/2 -> 17/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "65/4 -> 33/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "67/4 -> 17/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "16/1 -> 33/2: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "67/4 -> 17/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "65/4 -> 717/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "65/4 -> 717/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "65/4 -> 717/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "65/4 -> 717/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "17/1 -> 35/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "35/2 -> 18/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "35/2 -> 18/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "69/4 -> 35/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "71/4 -> 18/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "71/4 -> 18/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "69/4 -> 761/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "69/4 -> 761/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "69/4 -> 761/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "69/4 -> 761/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "18/1 -> 37/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "37/2 -> 19/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "37/2 -> 19/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "73/4 -> 37/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "75/4 -> 19/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "18/1 -> 37/2: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "75/4 -> 19/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "37/2 -> 204/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/2 -> 204/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/2 -> 204/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/2 -> 204/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "19/1 -> 39/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "39/2 -> 20/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "39/2 -> 20/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "77/4 -> 39/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "79/4 -> 20/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "79/4 -> 20/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "39/2 -> 215/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "39/2 -> 215/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "39/2 -> 215/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "39/2 -> 215/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "20/1 -> 41/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "41/2 -> 21/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "41/2 -> 21/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "81/4 -> 41/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "83/4 -> 21/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "20/1 -> 41/2: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "83/4 -> 21/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "81/4 -> 893/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "81/4 -> 893/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "81/4 -> 893/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "81/4 -> 893/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "21/1 -> 43/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "43/2 -> 22/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "43/2 -> 22/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "85/4 -> 43/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "87/4 -> 22/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "87/4 -> 22/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "85/4 -> 937/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "85/4 -> 937/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "85/4 -> 937/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "85/4 -> 937/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "22/1 -> 45/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "45/2 -> 23/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "45/2 -> 23/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "89/4 -> 45/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "91/4 -> 23/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "22/1 -> 45/2: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "91/4 -> 23/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "45/2 -> 248/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "45/2 -> 248/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "45/2 -> 248/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "45/2 -> 248/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "23/1 -> 47/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "47/2 -> 24/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "47/2 -> 191/8: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "191/8 -> 24/1: {\\"s\\":\\"x\\",\\"value\\":\\"x\\"}", + "93/4 -> 47/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "95/4 -> 24/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "23/1 -> 47/2: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "47/2 -> 24/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "47/2 -> 259/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "47/2 -> 259/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "47/2 -> 259/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "47/2 -> 259/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "24/1 -> 49/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "49/2 -> 25/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "49/2 -> 25/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "97/4 -> 49/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "99/4 -> 25/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "24/1 -> 49/2: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "99/4 -> 25/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "97/4 -> 1069/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "97/4 -> 1069/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "97/4 -> 1069/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "97/4 -> 1069/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "25/1 -> 51/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "51/2 -> 26/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "51/2 -> 26/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "101/4 -> 51/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "103/4 -> 26/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "103/4 -> 26/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "101/4 -> 1113/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "101/4 -> 1113/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "101/4 -> 1113/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "101/4 -> 1113/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "26/1 -> 53/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "53/2 -> 27/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "53/2 -> 27/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "105/4 -> 53/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "107/4 -> 27/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "26/1 -> 53/2: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "107/4 -> 27/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "53/2 -> 292/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/2 -> 292/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/2 -> 292/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/2 -> 292/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "27/1 -> 55/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "55/2 -> 28/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "55/2 -> 28/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "109/4 -> 55/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "111/4 -> 28/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "111/4 -> 28/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "55/2 -> 303/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "55/2 -> 303/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "55/2 -> 303/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "55/2 -> 303/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "28/1 -> 57/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "57/2 -> 29/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "113/4 -> 57/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "115/4 -> 29/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "28/1 -> 57/2: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "115/4 -> 29/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "113/4 -> 1245/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "113/4 -> 1245/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "113/4 -> 1245/44: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "113/4 -> 1245/44: {\\"note\\":\\"G#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "29/1 -> 59/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "59/2 -> 30/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "117/4 -> 59/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "119/4 -> 30/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "119/4 -> 30/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "117/4 -> 1289/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "117/4 -> 1289/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "117/4 -> 1289/44: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "117/4 -> 1289/44: {\\"note\\":\\"G#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "30/1 -> 61/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "61/2 -> 31/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "121/4 -> 61/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "123/4 -> 31/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "30/1 -> 61/2: {\\"note\\":\\"G2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "123/4 -> 31/1: {\\"note\\":\\"G2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "61/2 -> 336/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "61/2 -> 336/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "61/2 -> 336/11: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "61/2 -> 336/11: {\\"note\\":\\"G#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "31/1 -> 63/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "63/2 -> 32/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "125/4 -> 63/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "127/4 -> 32/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "31/1 -> 63/2: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "63/2 -> 32/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "63/2 -> 347/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "63/2 -> 347/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "63/2 -> 347/11: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "63/2 -> 347/11: {\\"note\\":\\"G#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "32/1 -> 65/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "65/2 -> 33/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "65/2 -> 33/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "129/4 -> 65/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "131/4 -> 33/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "65/2 -> 33/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "129/4 -> 131/4: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "32/1 -> 65/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "127/4 -> 129/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "131/4 -> 133/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "32/1 -> 65/2: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "131/4 -> 33/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "129/4 -> 1421/44: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "129/4 -> 1421/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "129/4 -> 1421/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "129/4 -> 1421/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "33/1 -> 67/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "67/2 -> 34/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "67/2 -> 34/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "133/4 -> 67/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "135/4 -> 34/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "67/2 -> 34/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "133/4 -> 135/4: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "33/1 -> 67/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "131/4 -> 133/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "135/4 -> 137/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "135/4 -> 34/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "133/4 -> 1465/44: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "133/4 -> 1465/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "133/4 -> 1465/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "133/4 -> 1465/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "34/1 -> 69/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "69/2 -> 35/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "69/2 -> 35/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "137/4 -> 69/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "139/4 -> 35/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "69/2 -> 35/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "137/4 -> 139/4: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "34/1 -> 69/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "135/4 -> 137/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "139/4 -> 141/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "34/1 -> 69/2: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "139/4 -> 35/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "69/2 -> 380/11: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "69/2 -> 380/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "69/2 -> 380/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "69/2 -> 380/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "35/1 -> 71/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "71/2 -> 36/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "71/2 -> 36/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "141/4 -> 71/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "143/4 -> 36/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "71/2 -> 36/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "141/4 -> 143/4: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "35/1 -> 71/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "139/4 -> 141/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "143/4 -> 145/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "143/4 -> 36/1: {\\"note\\":\\"B1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "71/2 -> 391/11: {\\"note\\":\\"A3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "71/2 -> 391/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "71/2 -> 391/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "71/2 -> 391/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "36/1 -> 73/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "73/2 -> 37/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "73/2 -> 37/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "145/4 -> 73/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "147/4 -> 37/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "73/2 -> 37/1: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "145/4 -> 147/4: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "36/1 -> 73/2: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "143/4 -> 145/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "147/4 -> 149/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "36/1 -> 73/2: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "147/4 -> 37/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "145/4 -> 1597/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "145/4 -> 1597/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "145/4 -> 1597/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "145/4 -> 1597/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/1 -> 75/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "75/2 -> 38/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "75/2 -> 38/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "149/4 -> 75/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "151/4 -> 38/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "75/2 -> 38/1: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "149/4 -> 151/4: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "37/1 -> 75/2: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "147/4 -> 149/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "151/4 -> 153/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "151/4 -> 38/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "149/4 -> 1641/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "149/4 -> 1641/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "149/4 -> 1641/44: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "149/4 -> 1641/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "38/1 -> 77/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "77/2 -> 39/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "77/2 -> 39/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "153/4 -> 77/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "155/4 -> 39/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "77/2 -> 39/1: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "153/4 -> 155/4: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "38/1 -> 77/2: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "151/4 -> 153/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "155/4 -> 157/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "38/1 -> 77/2: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "155/4 -> 39/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "77/2 -> 424/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "77/2 -> 424/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "77/2 -> 424/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "77/2 -> 424/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "39/1 -> 79/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "79/2 -> 40/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "79/2 -> 319/8: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "319/8 -> 40/1: {\\"s\\":\\"x\\",\\"value\\":\\"x\\"}", + "157/4 -> 79/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "159/4 -> 40/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "79/2 -> 40/1: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "157/4 -> 159/4: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "39/1 -> 79/2: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "155/4 -> 157/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "159/4 -> 161/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "39/1 -> 79/2: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "79/2 -> 40/1: {\\"note\\":\\"A1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "79/2 -> 435/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "79/2 -> 435/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "79/2 -> 435/11: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "79/2 -> 435/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "40/1 -> 81/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "81/2 -> 41/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "81/2 -> 41/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "161/4 -> 81/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "163/4 -> 41/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "81/2 -> 41/1: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "161/4 -> 163/4: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "40/1 -> 81/2: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "159/4 -> 161/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "163/4 -> 165/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "40/1 -> 81/2: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "163/4 -> 41/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "161/4 -> 1773/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "161/4 -> 1773/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "161/4 -> 1773/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "161/4 -> 1773/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "41/1 -> 83/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "83/2 -> 42/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "83/2 -> 42/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "165/4 -> 83/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "167/4 -> 42/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "83/2 -> 42/1: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "165/4 -> 167/4: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "41/1 -> 83/2: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "163/4 -> 165/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "167/4 -> 169/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "167/4 -> 42/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "165/4 -> 1817/44: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "165/4 -> 1817/44: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "165/4 -> 1817/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "165/4 -> 1817/44: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "42/1 -> 85/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "85/2 -> 43/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "85/2 -> 43/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "169/4 -> 85/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "171/4 -> 43/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "85/2 -> 43/1: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "169/4 -> 171/4: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "42/1 -> 85/2: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "167/4 -> 169/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "171/4 -> 173/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "42/1 -> 85/2: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "171/4 -> 43/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "85/2 -> 468/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "85/2 -> 468/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "85/2 -> 468/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "85/2 -> 468/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "43/1 -> 87/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "87/2 -> 44/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "87/2 -> 44/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "173/4 -> 87/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "175/4 -> 44/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "87/2 -> 44/1: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "173/4 -> 175/4: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "43/1 -> 87/2: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "171/4 -> 173/4: {\\"note\\":\\"C#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "175/4 -> 177/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "175/4 -> 44/1: {\\"note\\":\\"G1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "87/2 -> 479/11: {\\"note\\":\\"G3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "87/2 -> 479/11: {\\"note\\":\\"B3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "87/2 -> 479/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "87/2 -> 479/11: {\\"note\\":\\"F#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "44/1 -> 89/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "89/2 -> 45/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "89/2 -> 45/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "177/4 -> 89/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "179/4 -> 45/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "89/2 -> 45/1: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "177/4 -> 179/4: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "44/1 -> 89/2: {\\"note\\":\\"A#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "175/4 -> 177/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "179/4 -> 181/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "44/1 -> 89/2: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "179/4 -> 45/1: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "177/4 -> 1949/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "177/4 -> 1949/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "177/4 -> 1949/44: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "177/4 -> 1949/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "45/1 -> 91/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "91/2 -> 46/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "91/2 -> 46/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "181/4 -> 91/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "183/4 -> 46/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "91/2 -> 46/1: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "181/4 -> 183/4: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "45/1 -> 91/2: {\\"note\\":\\"A#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "179/4 -> 181/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "183/4 -> 185/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "183/4 -> 46/1: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "181/4 -> 1993/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "181/4 -> 1993/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "181/4 -> 1993/44: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "181/4 -> 1993/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "46/1 -> 93/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "93/2 -> 47/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "93/2 -> 47/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "185/4 -> 93/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "187/4 -> 47/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "93/2 -> 47/1: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "185/4 -> 187/4: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "46/1 -> 93/2: {\\"note\\":\\"A#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "183/4 -> 185/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "187/4 -> 189/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "46/1 -> 93/2: {\\"note\\":\\"F#2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "187/4 -> 47/1: {\\"note\\":\\"F#2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "93/2 -> 512/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "93/2 -> 512/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "93/2 -> 512/11: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "93/2 -> 512/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "47/1 -> 95/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "95/2 -> 48/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "95/2 -> 383/8: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "383/8 -> 48/1: {\\"s\\":\\"x\\",\\"value\\":\\"x\\"}", + "189/4 -> 95/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "191/4 -> 48/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "95/2 -> 48/1: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "189/4 -> 191/4: {\\"note\\":\\"C#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "47/1 -> 95/2: {\\"note\\":\\"A#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "187/4 -> 189/4: {\\"note\\":\\"B4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "191/4 -> 193/4: {\\"note\\":\\"E5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "47/1 -> 95/2: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "95/2 -> 48/1: {\\"note\\":\\"F#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "95/2 -> 523/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "95/2 -> 523/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "95/2 -> 523/11: {\\"note\\":\\"E4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "95/2 -> 523/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "48/1 -> 97/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "97/2 -> 49/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "97/2 -> 49/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "193/4 -> 97/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "195/4 -> 49/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "97/2 -> 49/1: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "193/4 -> 195/4: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "48/1 -> 97/2: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "191/4 -> 193/4: {\\"note\\":\\"F5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "195/4 -> 197/4: {\\"note\\":\\"F5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "48/1 -> 97/2: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "195/4 -> 49/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "193/4 -> 2125/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "193/4 -> 2125/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "193/4 -> 2125/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "193/4 -> 2125/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "49/1 -> 99/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "99/2 -> 50/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "99/2 -> 50/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "197/4 -> 99/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "199/4 -> 50/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "99/2 -> 50/1: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "197/4 -> 199/4: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "49/1 -> 99/2: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "195/4 -> 197/4: {\\"note\\":\\"F5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "199/4 -> 201/4: {\\"note\\":\\"F5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "199/4 -> 50/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "197/4 -> 2169/44: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "197/4 -> 2169/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "197/4 -> 2169/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "197/4 -> 2169/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "50/1 -> 101/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "101/2 -> 51/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "101/2 -> 51/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "201/4 -> 101/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "203/4 -> 51/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "101/2 -> 51/1: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "201/4 -> 203/4: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "50/1 -> 101/2: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "199/4 -> 201/4: {\\"note\\":\\"F5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "203/4 -> 205/4: {\\"note\\":\\"F5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "50/1 -> 101/2: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "203/4 -> 51/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "101/2 -> 556/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "101/2 -> 556/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "101/2 -> 556/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "101/2 -> 556/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "51/1 -> 103/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "103/2 -> 52/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "103/2 -> 52/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "205/4 -> 103/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "207/4 -> 52/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "103/2 -> 52/1: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "205/4 -> 207/4: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "51/1 -> 103/2: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "203/4 -> 205/4: {\\"note\\":\\"F5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "207/4 -> 209/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "207/4 -> 52/1: {\\"note\\":\\"C2\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "103/2 -> 567/11: {\\"note\\":\\"A#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "103/2 -> 567/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "103/2 -> 567/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "103/2 -> 567/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "52/1 -> 105/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "105/2 -> 53/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "105/2 -> 53/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "209/4 -> 105/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "211/4 -> 53/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "105/2 -> 53/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "209/4 -> 211/4: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "52/1 -> 105/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "207/4 -> 209/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "211/4 -> 213/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "52/1 -> 105/2: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "211/4 -> 53/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "209/4 -> 2301/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "209/4 -> 2301/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "209/4 -> 2301/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "209/4 -> 2301/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/1 -> 107/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "107/2 -> 54/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "107/2 -> 54/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "213/4 -> 107/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "215/4 -> 54/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "107/2 -> 54/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "213/4 -> 215/4: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "53/1 -> 107/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "211/4 -> 213/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "215/4 -> 217/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "215/4 -> 54/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "213/4 -> 2345/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "213/4 -> 2345/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "213/4 -> 2345/44: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "213/4 -> 2345/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "54/1 -> 109/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "109/2 -> 55/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "109/2 -> 55/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "217/4 -> 109/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "219/4 -> 55/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "109/2 -> 55/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "217/4 -> 219/4: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "54/1 -> 109/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "215/4 -> 217/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "219/4 -> 221/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "54/1 -> 109/2: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "219/4 -> 55/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "109/2 -> 600/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "109/2 -> 600/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "109/2 -> 600/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "109/2 -> 600/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "55/1 -> 111/2: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "111/2 -> 56/1: {\\"s\\":\\"bd\\",\\"value\\":\\"x\\"}", + "111/2 -> 447/8: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "447/8 -> 56/1: {\\"s\\":\\"x\\",\\"value\\":\\"x\\"}", + "221/4 -> 111/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "223/4 -> 56/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "111/2 -> 56/1: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "221/4 -> 223/4: {\\"note\\":\\"F4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "55/1 -> 111/2: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "219/4 -> 221/4: {\\"note\\":\\"D#5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "223/4 -> 225/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "55/1 -> 111/2: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "111/2 -> 56/1: {\\"note\\":\\"A#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "111/2 -> 611/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "111/2 -> 611/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "111/2 -> 611/11: {\\"note\\":\\"D4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "111/2 -> 611/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "113/2 -> 57/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "225/4 -> 113/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "227/4 -> 57/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "113/2 -> 57/1: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "225/4 -> 227/4: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "56/1 -> 113/2: {\\"note\\":\\"C5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "223/4 -> 225/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "227/4 -> 229/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "56/1 -> 113/2: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "227/4 -> 57/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "225/4 -> 2477/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "225/4 -> 2477/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "225/4 -> 2477/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "225/4 -> 2477/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "115/2 -> 58/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "229/4 -> 115/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "231/4 -> 58/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "115/2 -> 58/1: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "229/4 -> 231/4: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "57/1 -> 115/2: {\\"note\\":\\"C5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "227/4 -> 229/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "231/4 -> 233/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "231/4 -> 58/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "229/4 -> 2521/44: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "229/4 -> 2521/44: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "229/4 -> 2521/44: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "229/4 -> 2521/44: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "117/2 -> 59/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "233/4 -> 117/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "235/4 -> 59/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "117/2 -> 59/1: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "233/4 -> 235/4: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "58/1 -> 117/2: {\\"note\\":\\"C5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "231/4 -> 233/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "235/4 -> 237/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "58/1 -> 117/2: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "235/4 -> 59/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "117/2 -> 644/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "117/2 -> 644/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "117/2 -> 644/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "117/2 -> 644/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "119/2 -> 60/1: {\\"s\\":\\"sd\\",\\"value\\":\\"x\\"}", + "237/4 -> 119/2: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "239/4 -> 60/1: {\\"s\\":\\"hh\\",\\"delay\\":0.3,\\"delayfeedback\\":0.5,\\"delaytime\\":0.125}", + "119/2 -> 60/1: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "237/4 -> 239/4: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "59/1 -> 119/2: {\\"note\\":\\"C5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "235/4 -> 237/4: {\\"note\\":\\"D5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "239/4 -> 241/4: {\\"note\\":\\"C5\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "239/4 -> 60/1: {\\"note\\":\\"G#1\\",\\"value\\":\\"x\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.001,\\"decay\\":0.2,\\"sustain\\":1,\\"cutoff\\":500}", + "119/2 -> 655/11: {\\"note\\":\\"G#3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "119/2 -> 655/11: {\\"note\\":\\"C4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "119/2 -> 655/11: {\\"note\\":\\"D#4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", + "119/2 -> 655/11: {\\"note\\":\\"G4\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1200,\\"gain\\":0.5,\\"attack\\":0,\\"decay\\":0.5,\\"sustain\\":0.16,\\"release\\":0.8,\\"value\\":\\"x\\"}", ] `; @@ -13392,103 +13323,6 @@ exports[`renders tunes > tune: jemblung 1`] = ` ] `; -exports[`renders tunes > tune: magicSofa 1`] = ` -[ - "0/1 -> 1/4: B3", - "0/1 -> 1/4: D4", - "0/1 -> 1/4: E4", - "0/1 -> 1/4: G4", - "1/4 -> 1/2: C4", - "1/4 -> 1/2: E4", - "1/4 -> 1/2: F4", - "1/4 -> 1/2: A4", - "1/2 -> 3/4: A3", - "1/2 -> 3/4: C4", - "1/2 -> 3/4: E4", - "1/2 -> 3/4: G4", - "3/4 -> 1/1: B3", - "3/4 -> 1/1: E4", - "3/4 -> 1/1: F4", - "3/4 -> 1/1: A4", - "0/1 -> 1/2: C2", - "1/2 -> 1/1: D2", - "1/1 -> 3/2: B3", - "1/1 -> 3/2: D4", - "1/1 -> 3/2: F#4", - "1/1 -> 3/2: A4", - "3/2 -> 2/1: C#4", - "3/2 -> 2/1: F#4", - "3/2 -> 2/1: G4", - "3/2 -> 2/1: B4", - "1/1 -> 3/2: G2", - "3/2 -> 2/1: A2", - "2/1 -> 9/4: C4", - "2/1 -> 9/4: Eb4", - "2/1 -> 9/4: G4", - "2/1 -> 9/4: Bb4", - "9/4 -> 5/2: Eb4", - "9/4 -> 5/2: G4", - "9/4 -> 5/2: Ab4", - "9/4 -> 5/2: C5", - "11/4 -> 3/1: D4", - "11/4 -> 3/1: G4", - "11/4 -> 3/1: Ab4", - "11/4 -> 3/1: C5", - "2/1 -> 5/2: Bb2", - "5/2 -> 3/1: C3", - "3/1 -> 7/2: D#4", - "3/1 -> 7/2: F#4", - "3/1 -> 7/2: G#4", - "3/1 -> 7/2: B4", - "3/1 -> 7/2: E2", - "7/2 -> 4/1: G#2", - "17/4 -> 9/2: C4", - "17/4 -> 9/2: E4", - "17/4 -> 9/2: F4", - "17/4 -> 9/2: A4", - "9/2 -> 19/4: B3", - "9/2 -> 19/4: D4", - "9/2 -> 19/4: E4", - "9/2 -> 19/4: G4", - "19/4 -> 5/1: B3", - "19/4 -> 5/1: E4", - "19/4 -> 5/1: F4", - "19/4 -> 5/1: A4", - "4/1 -> 9/2: F2", - "9/2 -> 5/1: D2", - "11/2 -> 6/1: C#4", - "11/2 -> 6/1: F#4", - "11/2 -> 6/1: G4", - "11/2 -> 6/1: B4", - "5/1 -> 11/2: A2", - "11/2 -> 6/1: A2", - "6/1 -> 25/4: D4", - "6/1 -> 25/4: F4", - "6/1 -> 25/4: G4", - "6/1 -> 25/4: Bb4", - "25/4 -> 13/2: Eb4", - "25/4 -> 13/2: G4", - "25/4 -> 13/2: Ab4", - "25/4 -> 13/2: C5", - "13/2 -> 27/4: C4", - "13/2 -> 27/4: Eb4", - "13/2 -> 27/4: G4", - "13/2 -> 27/4: Bb4", - "27/4 -> 7/1: D4", - "27/4 -> 7/1: G4", - "27/4 -> 7/1: Ab4", - "27/4 -> 7/1: C5", - "6/1 -> 13/2: Eb2", - "13/2 -> 7/1: C3", - "7/1 -> 15/2: C#4", - "7/1 -> 15/2: E4", - "7/1 -> 15/2: G#4", - "7/1 -> 15/2: B4", - "7/1 -> 15/2: A2", - "15/2 -> 8/1: G#2", -] -`; - exports[`renders tunes > tune: meltingsubmarine 1`] = ` [ "0/1 -> 3/2: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}", @@ -14237,181 +14071,6 @@ exports[`renders tunes > tune: sampleDrums 1`] = ` ] `; -exports[`renders tunes > tune: scaleTranspose 1`] = ` -[ - "0/1 -> 1/1: F2", - "0/1 -> 1/1: F3", - "0/1 -> 1/1: C4", - "0/1 -> 1/1: Ab4", - "1/1 -> 2/1: Eb2", - "1/1 -> 2/1: Eb3", - "1/1 -> 2/1: Bb3", - "1/1 -> 2/1: G4", - "2/1 -> 3/1: Db2", - "2/1 -> 3/1: Db3", - "2/1 -> 3/1: Ab3", - "2/1 -> 3/1: F4", - "3/1 -> 4/1: C2", - "3/1 -> 4/1: C3", - "3/1 -> 4/1: G3", - "3/1 -> 4/1: E4", - "4/1 -> 5/1: F2", - "4/1 -> 5/1: F3", - "4/1 -> 5/1: C4", - "4/1 -> 5/1: Ab4", - "5/1 -> 6/1: Eb2", - "5/1 -> 6/1: Eb3", - "5/1 -> 6/1: Bb3", - "5/1 -> 6/1: G4", - "6/1 -> 7/1: Db2", - "6/1 -> 7/1: Db3", - "6/1 -> 7/1: Ab3", - "6/1 -> 7/1: F4", - "7/1 -> 8/1: C2", - "7/1 -> 8/1: C3", - "7/1 -> 8/1: G3", - "7/1 -> 8/1: E4", - "8/1 -> 9/1: Gb2", - "8/1 -> 9/1: Gb3", - "8/1 -> 9/1: Db4", - "8/1 -> 9/1: A4", - "9/1 -> 10/1: E2", - "9/1 -> 10/1: E3", - "9/1 -> 10/1: B3", - "9/1 -> 10/1: Ab4", - "10/1 -> 11/1: D2", - "10/1 -> 11/1: D3", - "10/1 -> 11/1: A3", - "10/1 -> 11/1: Gb4", - "11/1 -> 12/1: Db2", - "11/1 -> 12/1: Db3", - "11/1 -> 12/1: Ab3", - "11/1 -> 12/1: F4", - "12/1 -> 13/1: Gb2", - "12/1 -> 13/1: Gb3", - "12/1 -> 13/1: Db4", - "12/1 -> 13/1: A4", - "13/1 -> 14/1: E2", - "13/1 -> 14/1: E3", - "13/1 -> 14/1: B3", - "13/1 -> 14/1: Ab4", - "14/1 -> 15/1: D2", - "14/1 -> 15/1: D3", - "14/1 -> 15/1: A3", - "14/1 -> 15/1: Gb4", - "15/1 -> 16/1: Db2", - "15/1 -> 16/1: Db3", - "15/1 -> 16/1: Ab3", - "15/1 -> 16/1: F4", -] -`; - -exports[`renders tunes > tune: shapeShifted 1`] = ` -[ - "1/2 -> 1/1: a4", - "3/4 -> 1/1: a1", - "1/2 -> 3/4: a2", - "1/4 -> 1/2: a1", - "0/1 -> 1/4: a2", - "3/2 -> 2/1: c5", - "1/1 -> 3/2: a4", - "7/4 -> 2/1: a1", - "3/2 -> 7/4: a2", - "5/4 -> 3/2: a1", - "1/1 -> 5/4: a2", - "5/2 -> 3/1: d5", - "2/1 -> 5/2: e5", - "11/4 -> 3/1: e2", - "5/2 -> 11/4: e3", - "9/4 -> 5/2: e2", - "2/1 -> 9/4: e3", - "7/2 -> 4/1: b4", - "13/4 -> 7/2: b4", - "3/1 -> 13/4: c5", - "15/4 -> 4/1: b1", - "7/2 -> 15/4: b2", - "13/4 -> 7/2: b1", - "3/1 -> 13/4: b2", - "9/2 -> 5/1: e5", - "17/4 -> 9/2: d5", - "4/1 -> 17/4: c5", - "19/4 -> 5/1: c2", - "9/2 -> 19/4: c3", - "17/4 -> 9/2: c2", - "4/1 -> 17/4: c3", - "11/2 -> 6/1: e5", - "5/1 -> 21/4: c5", - "23/4 -> 6/1: c2", - "11/2 -> 23/4: c3", - "21/4 -> 11/2: c2", - "5/1 -> 21/4: c3", - "13/2 -> 7/1: a5", - "25/4 -> 13/2: g5", - "6/1 -> 25/4: f5", - "27/4 -> 7/1: d2", - "13/2 -> 27/4: d3", - "25/4 -> 13/2: d2", - "6/1 -> 25/4: d3", - "15/2 -> 31/4: d5", - "7/1 -> 29/4: f5", - "31/4 -> 8/1: d2", - "15/2 -> 31/4: d3", - "29/4 -> 15/2: d2", - "7/1 -> 29/4: d3", - "17/2 -> 9/1: a4", - "35/4 -> 9/1: a2", - "17/2 -> 35/4: a3", - "33/4 -> 17/2: b1", - "8/1 -> 33/4: c2", - "19/2 -> 10/1: c5", - "9/1 -> 19/2: a4", - "39/4 -> 10/1: a2", - "19/2 -> 39/4: a3", - "37/4 -> 19/2: a2", - "9/1 -> 37/4: a3", - "21/2 -> 11/1: d5", - "10/1 -> 21/2: e5", - "43/4 -> 11/1: e2", - "21/2 -> 43/4: e3", - "41/4 -> 21/2: e2", - "10/1 -> 41/4: e3", - "23/2 -> 12/1: b4", - "11/1 -> 45/4: c5", - "47/4 -> 12/1: g#2", - "23/2 -> 47/4: g#3", - "45/4 -> 23/2: g#2", - "11/1 -> 45/4: g#3", - "25/2 -> 13/1: e5", - "49/4 -> 25/2: d5", - "12/1 -> 49/4: c5", - "51/4 -> 13/1: a2", - "25/2 -> 51/4: a3", - "49/4 -> 25/2: a2", - "12/1 -> 49/4: a3", - "27/2 -> 14/1: a4", - "53/4 -> 27/2: a4", - "13/1 -> 53/4: c5", - "55/4 -> 14/1: a2", - "27/2 -> 55/4: a3", - "53/4 -> 27/2: a2", - "13/1 -> 53/4: a3", - "29/2 -> 15/1: d5", - "57/4 -> 29/2: c5", - "14/1 -> 57/4: b4", - "59/4 -> 15/1: e2", - "29/2 -> 59/4: e3", - "57/4 -> 29/2: e2", - "14/1 -> 57/4: e3", - "31/2 -> 16/1: e5", - "61/4 -> 31/2: b4", - "15/1 -> 61/4: c5", - "63/4 -> 16/1: e2", - "31/2 -> 63/4: e3", - "61/4 -> 31/2: e2", - "15/1 -> 61/4: e3", -] -`; - exports[`renders tunes > tune: sml1 1`] = ` [ "0/1 -> 19/80: e5", @@ -16273,45 +15932,6 @@ exports[`renders tunes > tune: speakerman 1`] = ` ] `; -exports[`renders tunes > tune: struct 1`] = ` -[ - "0/1 -> 1/2: c2", - "1/2 -> 1/1: g2", - "0/1 -> 1/3: B3", - "0/1 -> 1/3: D4", - "0/1 -> 1/3: E4", - "0/1 -> 1/3: G4", - "1/3 -> 1/2: B3", - "1/3 -> 1/2: D4", - "1/3 -> 1/2: E4", - "1/3 -> 1/2: G4", - "5/6 -> 1/1: B3", - "5/6 -> 1/1: D4", - "5/6 -> 1/1: E4", - "5/6 -> 1/1: G4", - "1/1 -> 3/2: a2", - "3/2 -> 11/6: e2", - "11/6 -> 2/1: eb2", - "4/3 -> 2/1: G3", - "4/3 -> 2/1: B3", - "4/3 -> 2/1: C#4", - "4/3 -> 2/1: F#4", - "2/1 -> 5/2: d2", - "5/2 -> 3/1: a2", - "2/1 -> 13/6: C4", - "2/1 -> 13/6: E4", - "2/1 -> 13/6: F4", - "2/1 -> 13/6: A4", - "3/1 -> 7/2: g2", - "7/2 -> 11/3: d2", - "23/6 -> 4/1: db2", - "10/3 -> 4/1: B3", - "10/3 -> 4/1: E4", - "10/3 -> 4/1: F4", - "10/3 -> 4/1: A4", -] -`; - exports[`renders tunes > tune: swimming 1`] = ` [ "0/1 -> 3/4: F4", @@ -16973,31 +16593,6 @@ exports[`renders tunes > tune: synthDrums 1`] = ` ] `; -exports[`renders tunes > tune: technoDrums 1`] = ` -[ - "0/1 -> 1/2: c1", - "1/2 -> 1/1: c1", - "1/1 -> 3/2: c1", - "3/2 -> 2/1: c1", - "2/1 -> 5/2: c1", - "5/2 -> 3/1: c1", - "3/1 -> 7/2: c1", - "7/2 -> 4/1: c1", - "1/2 -> 1/1: x", - "3/2 -> 2/1: x", - "5/2 -> 3/1: x", - "7/2 -> 4/1: x", - "1/4 -> 1/2: c4", - "3/4 -> 1/1: c4", - "5/4 -> 3/2: c4", - "7/4 -> 2/1: c4", - "9/4 -> 5/2: c4", - "11/4 -> 3/1: c4", - "13/4 -> 7/2: c4", - "15/4 -> 4/1: c4", -] -`; - exports[`renders tunes > tune: tetrisMini 1`] = ` [ "0/1 -> 1/2: e5", @@ -17104,255 +16699,6 @@ exports[`renders tunes > tune: tetrisMini 1`] = ` ] `; -exports[`renders tunes > tune: timeCat 1`] = ` -[ - "0/1 -> 3/4: c3", - "1/1 -> 7/4: c3", - "2/1 -> 11/4: c3", - "3/1 -> 15/4: c3", - "4/1 -> 19/4: c3", - "5/1 -> 23/4: c3", - "6/1 -> 27/4: c3", - "7/1 -> 31/4: c3", - "3/4 -> 1/1: eb3", - "3/4 -> 1/1: g3", - "3/4 -> 1/1: c4", - "7/4 -> 2/1: eb3", - "7/4 -> 2/1: g3", - "7/4 -> 2/1: d4", - "11/4 -> 3/1: eb3", - "11/4 -> 3/1: g3", - "11/4 -> 3/1: c4", - "15/4 -> 4/1: eb3", - "15/4 -> 4/1: g3", - "15/4 -> 4/1: d4", - "19/4 -> 5/1: eb3", - "19/4 -> 5/1: g3", - "19/4 -> 5/1: c4", - "23/4 -> 6/1: eb3", - "23/4 -> 6/1: g3", - "23/4 -> 6/1: d4", - "27/4 -> 7/1: eb3", - "27/4 -> 7/1: g3", - "27/4 -> 7/1: c4", - "31/4 -> 8/1: eb3", - "31/4 -> 8/1: g3", - "31/4 -> 8/1: d4", - "0/1 -> 1/2: c2", - "1/2 -> 1/1: g2", - "1/1 -> 3/2: c2", - "3/2 -> 2/1: g2", - "2/1 -> 5/2: c2", - "5/2 -> 3/1: g2", - "3/1 -> 7/2: c2", - "7/2 -> 4/1: g2", - "4/1 -> 9/2: c2", - "9/2 -> 5/1: g2", - "5/1 -> 11/2: c2", - "11/2 -> 6/1: g2", - "6/1 -> 13/2: c2", - "13/2 -> 7/1: g2", - "7/1 -> 15/2: c2", - "15/2 -> 8/1: g2", - "0/1 -> 5/4: eb4", - "0/1 -> 5/4: eb4", - "5/4 -> 3/2: f4", - "3/2 -> 7/4: eb4", - "7/4 -> 2/1: d4", - "2/1 -> 4/1: eb4", - "2/1 -> 4/1: eb4", - "4/1 -> 21/4: eb4", - "4/1 -> 21/4: eb4", - "21/4 -> 11/2: f4", - "11/2 -> 23/4: eb4", - "23/4 -> 6/1: d4", - "6/1 -> 8/1: c4", - "6/1 -> 8/1: c4", -] -`; - -exports[`renders tunes > tune: timeCatMini 1`] = ` -[ - "0/1 -> 3/4: c3", - "3/4 -> 1/1: eb3", - "3/4 -> 1/1: g3", - "3/4 -> 1/1: c4", - "1/1 -> 7/4: c3", - "7/4 -> 2/1: eb3", - "7/4 -> 2/1: g3", - "7/4 -> 2/1: d4", - "2/1 -> 11/4: c3", - "11/4 -> 3/1: eb3", - "11/4 -> 3/1: g3", - "11/4 -> 3/1: c4", - "3/1 -> 15/4: c3", - "15/4 -> 4/1: eb3", - "15/4 -> 4/1: g3", - "15/4 -> 4/1: d4", - "4/1 -> 19/4: c3", - "19/4 -> 5/1: eb3", - "19/4 -> 5/1: g3", - "19/4 -> 5/1: c4", - "5/1 -> 23/4: c3", - "23/4 -> 6/1: eb3", - "23/4 -> 6/1: g3", - "23/4 -> 6/1: d4", - "6/1 -> 27/4: c3", - "27/4 -> 7/1: eb3", - "27/4 -> 7/1: g3", - "27/4 -> 7/1: c4", - "7/1 -> 31/4: c3", - "31/4 -> 8/1: eb3", - "31/4 -> 8/1: g3", - "31/4 -> 8/1: d4", - "8/1 -> 35/4: c3", - "35/4 -> 9/1: eb3", - "35/4 -> 9/1: g3", - "35/4 -> 9/1: c4", - "9/1 -> 39/4: c3", - "39/4 -> 10/1: eb3", - "39/4 -> 10/1: g3", - "39/4 -> 10/1: d4", - "10/1 -> 43/4: c3", - "43/4 -> 11/1: eb3", - "43/4 -> 11/1: g3", - "43/4 -> 11/1: c4", - "11/1 -> 47/4: c3", - "47/4 -> 12/1: eb3", - "47/4 -> 12/1: g3", - "47/4 -> 12/1: d4", - "12/1 -> 51/4: c3", - "51/4 -> 13/1: eb3", - "51/4 -> 13/1: g3", - "51/4 -> 13/1: c4", - "13/1 -> 55/4: c3", - "55/4 -> 14/1: eb3", - "55/4 -> 14/1: g3", - "55/4 -> 14/1: d4", - "14/1 -> 59/4: c3", - "59/4 -> 15/1: eb3", - "59/4 -> 15/1: g3", - "59/4 -> 15/1: c4", - "15/1 -> 63/4: c3", - "63/4 -> 16/1: eb3", - "63/4 -> 16/1: g3", - "63/4 -> 16/1: d4", - "0/1 -> 1/2: c2", - "1/2 -> 1/1: g2", - "1/1 -> 3/2: c2", - "3/2 -> 2/1: g2", - "2/1 -> 5/2: c2", - "5/2 -> 3/1: g2", - "3/1 -> 7/2: c2", - "7/2 -> 4/1: g2", - "4/1 -> 9/2: c2", - "9/2 -> 5/1: g2", - "5/1 -> 11/2: c2", - "11/2 -> 6/1: g2", - "6/1 -> 13/2: c2", - "13/2 -> 7/1: g2", - "7/1 -> 15/2: c2", - "15/2 -> 8/1: g2", - "8/1 -> 17/2: c2", - "17/2 -> 9/1: g2", - "9/1 -> 19/2: c2", - "19/2 -> 10/1: g2", - "10/1 -> 21/2: c2", - "21/2 -> 11/1: g2", - "11/1 -> 23/2: c2", - "23/2 -> 12/1: g2", - "12/1 -> 25/2: c2", - "25/2 -> 13/1: g2", - "13/1 -> 27/2: c2", - "27/2 -> 14/1: g2", - "14/1 -> 29/2: c2", - "29/2 -> 15/1: g2", - "15/1 -> 31/2: c2", - "31/2 -> 16/1: g2", - "0/1 -> 5/2: eb4", - "0/1 -> 5/2: eb4", - "0/1 -> 5/2: eb4", - "5/2 -> 3/1: f4", - "3/1 -> 7/2: eb4", - "7/2 -> 4/1: d4", - "4/1 -> 8/1: eb4", - "4/1 -> 8/1: eb4", - "4/1 -> 8/1: eb4", - "4/1 -> 8/1: eb4", - "8/1 -> 21/2: eb4", - "8/1 -> 21/2: eb4", - "8/1 -> 21/2: eb4", - "21/2 -> 11/1: f4", - "11/1 -> 23/2: eb4", - "23/2 -> 12/1: d4", - "12/1 -> 16/1: c4", - "12/1 -> 16/1: c4", - "12/1 -> 16/1: c4", - "12/1 -> 16/1: c4", -] -`; - -exports[`renders tunes > tune: transposedChordsHacked 1`] = ` -[ - "0/1 -> 1/3: Gb2", - "1/3 -> 2/3: A2", - "2/3 -> 1/1: Db3", - "0/1 -> 2/1: E3", - "0/1 -> 2/1: Ab3", - "0/1 -> 2/1: A3", - "0/1 -> 2/1: Db4", - "1/1 -> 4/3: Gb2", - "4/3 -> 5/3: A2", - "5/3 -> 2/1: Db3", - "0/1 -> 2/1: E3", - "0/1 -> 2/1: Ab3", - "0/1 -> 2/1: A3", - "0/1 -> 2/1: Db4", - "2/1 -> 7/3: G2", - "7/3 -> 8/3: Bb2", - "8/3 -> 3/1: D3", - "2/1 -> 4/1: F3", - "2/1 -> 4/1: A3", - "2/1 -> 4/1: Bb3", - "2/1 -> 4/1: D4", - "3/1 -> 10/3: G2", - "10/3 -> 11/3: Bb2", - "11/3 -> 4/1: D3", - "2/1 -> 4/1: F3", - "2/1 -> 4/1: A3", - "2/1 -> 4/1: Bb3", - "2/1 -> 4/1: D4", - "4/1 -> 13/3: Ab2", - "13/3 -> 14/3: B2", - "14/3 -> 5/1: Eb3", - "4/1 -> 6/1: Gb3", - "4/1 -> 6/1: Bb3", - "4/1 -> 6/1: B3", - "4/1 -> 6/1: Eb4", - "5/1 -> 16/3: Ab2", - "16/3 -> 17/3: B2", - "17/3 -> 6/1: Eb3", - "4/1 -> 6/1: Gb3", - "4/1 -> 6/1: Bb3", - "4/1 -> 6/1: B3", - "4/1 -> 6/1: Eb4", - "6/1 -> 19/3: G2", - "19/3 -> 20/3: Bb2", - "20/3 -> 7/1: D3", - "6/1 -> 8/1: F3", - "6/1 -> 8/1: A3", - "6/1 -> 8/1: Bb3", - "6/1 -> 8/1: D4", - "7/1 -> 22/3: G2", - "22/3 -> 23/3: Bb2", - "23/3 -> 8/1: D3", - "6/1 -> 8/1: F3", - "6/1 -> 8/1: A3", - "6/1 -> 8/1: Bb3", - "6/1 -> 8/1: D4", -] -`; - exports[`renders tunes > tune: undergroundPlumber 1`] = ` [ "0/1 -> 3/16: {\\"s\\":\\"bd\\",\\"gain\\":0.7}", @@ -18982,86 +18328,6 @@ exports[`renders tunes > tune: wavyKalimba 1`] = ` ] `; -exports[`renders tunes > tune: whirlyStrudel 1`] = ` -[ - "0/1 -> 1/5: e4", - "2/5 -> 3/5: e3", - "3/5 -> 4/5: d4", - "1/1 -> 4/3: e4", - "4/3 -> 3/2: b2", - "3/2 -> 5/3: b3", - "5/3 -> 2/1: c4", - "2/1 -> 11/5: e4", - "12/5 -> 13/5: e3", - "13/5 -> 14/5: d4", - "3/1 -> 16/5: b3", - "16/5 -> 10/3: e4", - "10/3 -> 17/5: b2", - "17/5 -> 52/15: b3", - "52/15 -> 18/5: c4", - "18/5 -> 56/15: e4", - "56/15 -> 19/5: b2", - "19/5 -> 58/15: b3", - "58/15 -> 4/1: c4", - "4/1 -> 21/5: e4", - "22/5 -> 23/5: e3", - "23/5 -> 24/5: d4", - "5/1 -> 46/9: b3", - "46/9 -> 16/3: c4", - "16/3 -> 49/9: e4", - "49/9 -> 11/2: b2", - "11/2 -> 50/9: b3", - "50/9 -> 17/3: c4", - "17/3 -> 52/9: e4", - "52/9 -> 35/6: b2", - "35/6 -> 53/9: b3", - "53/9 -> 6/1: c4", - "6/1 -> 31/5: e4", - "32/5 -> 33/5: e3", - "33/5 -> 34/5: d4", - "7/1 -> 22/3: e4", - "22/3 -> 15/2: b2", - "15/2 -> 23/3: b3", - "23/3 -> 8/1: c4", - "8/1 -> 41/5: e4", - "42/5 -> 43/5: e3", - "43/5 -> 44/5: d4", - "44/5 -> 136/15: e4", - "136/15 -> 46/5: b2", - "46/5 -> 28/3: b3", - "28/3 -> 48/5: c4", - "48/5 -> 49/5: e4", - "49/5 -> 99/10: b2", - "99/10 -> 10/1: b3", - "10/1 -> 51/5: e4", - "52/5 -> 53/5: e3", - "53/5 -> 54/5: d4", - "11/1 -> 100/9: e4", - "100/9 -> 67/6: b2", - "67/6 -> 101/9: b3", - "101/9 -> 34/3: c4", - "34/3 -> 104/9: e4", - "104/9 -> 35/3: b2", - "35/3 -> 106/9: b3", - "106/9 -> 12/1: c4", - "12/1 -> 61/5: e4", - "62/5 -> 63/5: e3", - "63/5 -> 64/5: d4", - "13/1 -> 40/3: e4", - "40/3 -> 27/2: b2", - "27/2 -> 41/3: b3", - "41/3 -> 14/1: c4", - "14/1 -> 71/5: e4", - "72/5 -> 73/5: e3", - "73/5 -> 74/5: d4", - "15/1 -> 76/5: e4", - "76/5 -> 232/15: e4", - "232/15 -> 78/5: b2", - "78/5 -> 236/15: b3", - "236/15 -> 16/1: c4", -] -`; - exports[`renders tunes > tune: xylophoneCalling 1`] = ` [ "0/1 -> 1/2: Bb2",