←Previous | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | Next→
              kenKeyOff (ki);  //キーオフする
            }
            kenUp (ki);  //離す
          }
        }
      }
    }
  }
  consumeEvent (e);
}



//========================================================================
//マウスイベント、タッチイベント

//result = onMouseDown (e)
//  boolean result
//  Error e
function onMouseDown (e) {
  e = e || window.event;
  let button = ((typeof (e.which) == "number" && e.which == 2) ||
                (typeof (e.button) == "number" && e.button == 4) ? 1 :
                (typeof (e.which) == "number" && e.which == 3) ||
                (typeof (e.button) == "number" && e.button == 2) ? 2 : 0);
  mouseElement = e.target || e.srcElement;
  mousePressed = true;
  if (mouseMoved || button != mouseButton) {  //マウスが動いたか前回と違うボタンが押された
    mouseMoved = false;
    mouseClickCount = 1;
  } else {
    mouseClickCount++;
  }
  mouseShiftKey = e.shiftKey;
  mouseCtrlKey = e.ctrlKey;
  mouseAltKey = e.altKey;
  mouseButton = button;
  let rect = this.getBoundingClientRect ();
  let screen = globalScreenArray[screenMode == 0 ? 0 : 1];
  mouseX = ((e.clientX - rect.left) / rect.width - 0.5) * screen.sc$width / screen.sc$focalLengthPx;  //位置
  mouseY = ((e.clientY - rect.top) / rect.height - 0.5) * screen.sc$height / screen.sc$focalLengthPx;
  mouseDx = 0;  //移動量の合計
  mouseDy = 0;
  mouseDw = 0;
  consumeEvent (e);
}

//result = onMouseWheel (e)
//  boolean result
//  Error e
function onMouseWheel (e) {
  e = e || window.event;
  let dw = 0;
  if (e.detail) {
    dw = e.detail / 3;
  } else if (e.wheelDelta) {
    dw = -e.wheelDelta / 120;
  }
  if (dw) {
    mouseMoved = true;
    mouseDw += dw;
  }
  consumeEvent (e);
}

//result = onMouseMove (e)
//  boolean result
//  Error e
function onMouseMove (e) {
  e = e || window.event;
  let rect = this.getBoundingClientRect ();
  let screen = globalScreenArray[screenMode == 0 ? 0 : 1];
  let x = ((e.clientX - rect.left) / rect.width - 0.5) * screen.sc$width / screen.sc$focalLengthPx;  //位置
  let y = ((e.clientY - rect.top) / rect.height - 0.5) * screen.sc$height / screen.sc$focalLengthPx;
  let dx = x - mouseX;  //移動量
  let dy = y - mouseY;
  if (dx || dy) {  //onmousemoveはマウスが動いていなくても呼び出されることがある
    mouseMoved = true;
    if (mousePressed) {  //ドラッグ中
      mouseX += dx;  //位置
      mouseY += dy;
      mouseDx += dx;  //移動量の合計
      mouseDy += dy;
      mouseRolling = true;  //回転中
    }
  }
  consumeEvent (e);
}

//result = onMouseUp (e)
//  boolean result
//  Error e
function onMouseUp (e) {
  e = e || window.event;
  mousePressed = false;
  if (mouseMoved) {  //ドラッグが終了した
    mouseMoved = false;
    mouseClickCount = 0;
  } else {  //ボタンがクリックされた
    mouseClickCount++;
    if (mouseButton == 0) {  //左ボタン
      if (mouseDownElementType == "fumendai") {
        fumendaiOpenClose ();  //譜面台を開閉する
      } else if (mouseDownElementType == "kenbanfuta") {
        kenbanfutaOpenClose ();  //鍵盤蓋を開閉する
      } else if (mouseDownElementType == "yane") {
        yaneOpenClose ();  //屋根を開閉する
      } else if (mouseDownElementType == "pedal_0") {
        moveSoftPedal ();  //ソフトペダルを動かす
      } else if (mouseDownElementType == "pedal_1") {
        moveSostenutoPedal ();  //ソステヌートペダルを動かす
      } else if (mouseDownElementType == "pedal_2") {
        moveLoudPedal ();  //ラウドペダルを動かす
      }
      //if (mouseClickCount == 2) {  //クリック
      //} else {  //ダブルクリック
      //}
    }
  }
  mouseRolling = false;  //回転終了
  mouseDownElementType = "";
  consumeEvent (e);
}

function onTouchStart (e) {
  let touch = e.changedTouches[0];
  mouseElement = e.target || e.srcElement;
  mousePressed = true;
  if (mouseMoved) {  //マウスが動いた
    mouseMoved = false;
    mouseClickCount = 1;
  } else {
    mouseClickCount++;
  }
  mouseShiftKey = false;
  mouseCtrlKey = false;
  mouseAltKey = false;
  mouseButton = 0;
  let rect = this.getBoundingClientRect ();
  let screen = globalScreenArray[screenMode == 0 ? 0 : 1];
  mouseX = ((touch.clientX - rect.left) / rect.width - 0.5) * screen.sc$width / screen.sc$focalLengthPx;  //位置
  mouseY = ((touch.clientY - rect.top) / rect.height - 0.5) * screen.sc$height / screen.sc$focalLengthPx;
  mouseDx = 0;  //移動量の合計
  mouseDy = 0;
  consumeEvent (e);
}

function onTouchMove (e) {
  let touch = e.changedTouches[0];
  let rect = this.getBoundingClientRect ();
  let screen = globalScreenArray[screenMode == 0 ? 0 : 1];
  let x = ((touch.clientX - rect.left) / rect.width - 0.5) * screen.sc$width / screen.sc$focalLengthPx;  //位置
  let y = ((touch.clientY - rect.top) / rect.height - 0.5) * screen.sc$height / screen.sc$focalLengthPx;
  let dx = x - mouseX;  //移動量
  let dy = y - mouseY;
  if (dx || dy) {  //onmousemoveはマウスが動いていなくても呼び出されることがある
    mouseMoved = true;
    if (mousePressed) {  //ドラッグ中
      mouseX += dx;  //位置
      mouseY += dy;
      mouseDx += dx;  //移動量の合計
      mouseDy += dy;
      mouseRolling = true;  //回転中
    }
  }
  consumeEvent (e);
}

function onTouchEnd (e) {
  mousePressed = false;
  if (mouseMoved) {  //ドラッグが終了した
    mouseMoved = false;
    mouseClickCount = 0;
  } else {  //ボタンがクリックされた
    mouseClickCount++;
    if (mouseButton == 0) {  //左ボタン
      if (mouseDownElementType == "fumendai") {
        fumendaiOpenClose ();  //譜面台を開閉する
      } else if (mouseDownElementType == "kenbanfuta") {
        kenbanfutaOpenClose ();  //鍵盤蓋を開閉する
      } else if (mouseDownElementType == "yane") {
        yaneOpenClose ();  //屋根を開閉する
      } else if (mouseDownElementType == "pedal_0") {
        moveSoftPedal ();  //ソフトペダルを動かす
      } else if (mouseDownElementType == "pedal_1") {
        moveSostenutoPedal ();  //ソステヌートペダルを動かす
      } else if (mouseDownElementType == "pedal_2") {
        moveLoudPedal ();  //ラウドペダルを動かす
      }
      //if (mouseClickCount == 2) {  //クリック
      //} else {  //ダブルクリック
      //}
    }
  }
  mouseRolling = false;  //回転終了
  mouseDownElementType = "";
  consumeEvent (e);
}



//------------------------------------------------------------------------
//音色データ
//  数値は68SND.ZMS,VIP.ZMSより
//  X68000の音色が68個、X1の音色が200個、合計268個
//  名前は適当に書いた
const NEIRO_DATA = [
  [58, 15, 2, 0, 220, 0, 0, 0, 0, 3, 0,
   28, 4, 0, 5, 1, 37, 2, 1, 7, 0, 0,
   22, 9, 1, 2, 1, 47, 2, 12, 0, 0, 0,
   29, 4, 3, 6, 1, 37, 1, 3, 3, 0, 0,
   15, 7, 0, 5, 10, 0, 2, 1, 0, 0, 1,
   "Acoustic Piano", "アコースティックピアノ"],  //1
  [28, 15, 2, 0, 222, 30, 10, 0, 0, 3, 0,
   31, 10, 1, 3, 15, 29, 0, 7, 3, 0, 0,
   29, 12, 9, 7, 10, 0, 0, 7, 7, 0, 1,
   31, 5, 1, 3, 15, 39, 2, 5, 3, 1, 0,
   28, 12, 9, 7, 10, 0, 0, 7, 3, 0, 1,
   "Honky Tonk Piano", "ホンキートンクピアノ"],  //2
  [28, 15, 2, 0, 180, 0, 0, 0, 0, 3, 0,
   31, 15, 0, 6, 7, 53, 2, 15, 5, 1, 0,
   31, 7, 5, 8, 2, 13, 3, 1, 0, 0, 1,
   31, 6, 0, 6, 4, 37, 2, 1, 2, 0, 0,
   31, 7, 0, 7, 0, 0, 1, 1, 7, 0, 1,
   "Electric Piano", "エレクトリックピアノ"],  //3
  [58, 15, 2, 0, 130, 0, 0, 0, 0, 3, 0,
   28, 4, 3, 7, 1, 35, 2, 1, 3, 0, 0,
   27, 8, 1, 2, 0, 37, 3, 15, 7, 0, 0,
   28, 3, 0, 0, 15, 27, 2, 1, 6, 0, 0,
   26, 9, 0, 10, 15, 0, 2, 10, 0, 0, 1,
   "Clavinet", "クラビネット"],  //4
  [13, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 10, 12, 5, 15, 72, 1, 14, 2, 0, 1,
   31, 10, 12, 5, 15, 7, 1, 4, 7, 0, 1,
   31, 10, 12, 7, 15, 7, 1, 12, 7, 0, 1,
   31, 10, 12, 6, 15, 7, 1, 9, 3, 0, 1,
   "Celesta", "セレスタ"],  //5
  [50, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 0, 0, 15, 0, 25, 1, 3, 0, 0, 0,
   31, 0, 0, 15, 0, 35, 3, 12, 4, 0, 1,
   31, 0, 0, 2, 0, 36, 1, 1, 0, 0, 0,
   31, 6, 4, 5, 15, 0, 2, 1, 4, 0, 1,
   "Cembalo", "チェンバロ"],  //6
  [33, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   28, 5, 4, 3, 15, 42, 3, 2, 1, 0, 0,
   31, 7, 4, 1, 2, 37, 1, 3, 7, 0, 0,
   31, 3, 4, 1, 2, 35, 3, 3, 4, 0, 0,
   31, 2, 1, 4, 1, 0, 2, 1, 2, 0, 0,
   "Acoustic Guitar", "アコースティックギター"],  //7
  [58, 15, 2, 0, 210, 0, 0, 0, 0, 3, 0,
   31, 13, 1, 4, 15, 41, 2, 15, 3, 0, 0,
   31, 20, 5, 15, 14, 57, 1, 13, 7, 2, 0,
   20, 10, 1, 7, 8, 35, 1, 3, 7, 0, 0,
   23, 5, 1, 7, 15, 0, 0, 1, 3, 0, 1,
   "Electric Guitar", "エレキギター"],  //8
  [58, 15, 2, 0, 150, 0, 0, 0, 0, 3, 0,
   31, 13, 1, 4, 15, 32, 1, 0, 7, 0, 0,
   31, 11, 1, 10, 15, 55, 1, 4, 5, 0, 0,
   31, 11, 1, 10, 15, 29, 0, 0, 2, 0, 0,
   31, 11, 1, 8, 15, 0, 1, 0, 3, 0, 1,
   "Wood Bass", "ウッドベース"],  //9
  [3, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 14, 1, 10, 10, 42, 0, 6, 6, 0, 0,
   31, 5, 0, 10, 6, 26, 0, 0, 4, 0, 0,
   31, 2, 4, 6, 1, 32, 0, 0, 4, 0, 0,
   28, 1, 6, 8, 1, 0, 0, 1, 3, 0, 1,
   "Electric Bass", "エレキベース"],  //10
  [58, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   24, 10, 0, 2, 5, 27, 1, 5, 7, 0, 0,
   26, 16, 0, 8, 11, 30, 0, 15, 0, 0, 0,
   28, 16, 0, 4, 3, 32, 0, 1, 6, 0, 0,
   24, 11, 0, 6, 15, 0, 2, 1, 3, 0, 0,
   "Banjo", "バンジョー"],  //11
  [1, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 31, 8, 2, 12, 52, 0, 3, 7, 0, 0,
   31, 11, 1, 3, 1, 35, 1, 9, 3, 0, 0,
   28, 7, 9, 4, 15, 17, 0, 1, 1, 0, 0,
   18, 1, 1, 4, 15, 0, 1, 1, 0, 0, 1,
   "Sitar", "シタール"],  //12
  [58, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 25, 1, 2, 2, 76, 0, 6, 0, 0, 0,
   31, 16, 1, 2, 13, 26, 1, 3, 7, 0, 0,
   31, 4, 2, 2, 12, 37, 1, 1, 0, 0, 0,
   31, 10, 0, 3, 15, 0, 1, 1, 0, 0, 1,
   "Harp", "ハープ"],  //13
  [56, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   26, 8, 5, 7, 2, 28, 3, 3, 7, 0, 0,
   29, 4, 5, 5, 1, 31, 3, 4, 1, 0, 0,
   28, 4, 2, 6, 2, 32, 3, 1, 7, 0, 0,
   29, 9, 3, 3, 1, 0, 3, 1, 3, 0, 1,
   "Koto", "琴"],  //14
  [62, 15, 2, 0, 2, 8, 1, 3, 2, 3, 0,
   31, 20, 0, 10, 0, 36, 0, 8, 3, 0, 0,
   20, 2, 1, 10, 3, 0, 0, 2, 7, 0, 1,
   20, 2, 1, 10, 3, 0, 0, 1, 1, 0, 1,
   20, 2, 1, 10, 3, 0, 0, 6, 2, 0, 1,
   "Pipe Organ 1", "パイプオルガン 1"],  //15
  [63, 15, 2, 0, 190, 0, 0, 0, 0, 3, 0,
   31, 1, 1, 10, 0, 29, 0, 8, 3, 0, 1,
   19, 2, 1, 10, 1, 2, 0, 3, 7, 0, 1,
   19, 2, 1, 10, 1, 2, 0, 1, 0, 0, 1,
   19, 2, 1, 10, 1, 2, 0, 2, 6, 0, 1,
   "Pipe Organ 2", "パイプオルガン 2"],  //16
  [31, 15, 2, 0, 200, 3, 2, 2, 1, 3, 0,
   31, 20, 0, 15, 15, 12, 0, 7, 0, 0, 1,
   31, 2, 1, 15, 0, 5, 0, 3, 2, 0, 1,
   31, 2, 1, 15, 0, 7, 0, 3, 0, 0, 1,
   31, 2, 1, 15, 0, 5, 0, 2, 6, 0, 1,
   "Electric Organ", "エレクトリックオルガン"],  //17
  [56, 15, 2, 0, 180, 30, 0, 2, 0, 3, 0,
   31, 0, 0, 0, 0, 39, 1, 6, 3, 0, 0,
   31, 3, 1, 1, 1, 38, 1, 7, 3, 0, 1,
   19, 2, 1, 6, 1, 38, 1, 1, 7, 0, 0,
   16, 0, 0, 9, 0, 0, 1, 2, 7, 0, 1,
   "Accordion", "アコーディオン"],  //18
  [58, 15, 2, 0, 202, 56, 3, 3, 0, 3, 0,
   20, 2, 0, 5, 1, 33, 1, 1, 0, 0, 0,
   25, 6, 0, 8, 3, 30, 1, 5, 7, 0, 0,
   28, 3, 0, 6, 1, 48, 1, 1, 0, 0, 0,
   12, 4, 0, 6, 0, 0, 1, 1, 4, 0, 1,
   "Violin", "バイオリン"],  //19
  [56, 15, 2, 0, 200, 80, 0, 2, 0, 3, 0,
   18, 31, 20, 10, 0, 10, 1, 15, 7, 3, 0,
   31, 17, 12, 10, 0, 35, 1, 6, 7, 0, 0,
   13, 18, 1, 3, 0, 27, 2, 1, 7, 0, 0,
   12, 2, 1, 10, 1, 0, 1, 1, 3, 0, 1,
   "Cello", "チェロ"],  //20
  [58, 15, 2, 0, 205, 80, 0, 2, 0, 3, 0,
   30, 1, 0, 1, 1, 30, 3, 0, 2, 0, 0,
   31, 1, 0, 2, 1, 38, 3, 2, 3, 0, 0,
   30, 1, 0, 1, 1, 48, 1, 1, 3, 0, 0,
   8, 2, 0, 6, 0, 0, 0, 1, 4, 0, 1,
   "Strings 1", "ストリングス 1"],  //21
  [61, 15, 2, 0, 200, 90, 0, 2, 0, 3, 0,
   31, 1, 1, 2, 0, 31, 3, 0, 0, 0, 0,
   9, 1, 0, 6, 0, 0, 0, 1, 1, 0, 0,
   10, 1, 0, 7, 0, 0, 0, 1, 1, 0, 0,
   9, 2, 0, 7, 0, 0, 0, 1, 1, 0, 1,
   "Strings 2", "ストリングス 2"],  //22
  [60, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 22, 1, 3, 15, 24, 0, 1, 3, 0, 0,
   18, 15, 1, 5, 14, 0, 1, 1, 7, 0, 1,
   31, 15, 0, 3, 15, 32, 1, 1, 3, 0, 0,
   31, 15, 1, 5, 14, 0, 1, 1, 3, 0, 1,
   "Pizzicato", "ピチカート"],  //23
  [6, 15, 2, 0, 200, 90, 0, 4, 0, 3, 0,
   10, 0, 1, 3, 0, 77, 0, 1, 0, 0, 0,
   12, 0, 0, 5, 0, 7, 2, 3, 3, 0, 1,
   12, 0, 1, 6, 2, 0, 1, 2, 7, 0, 1,
   18, 0, 0, 6, 0, 17, 1, 1, 3, 0, 1,
   "Voice", "ボイス"],  //24
  [41, 15, 2, 0, 206, 40, 0, 4, 0, 3, 0,
   19, 18, 4, 4, 5, 66, 0, 6, 3, 3, 0,
   21, 14, 6, 10, 6, 52, 0, 4, 7, 3, 0,
   11, 31, 3, 10, 0, 45, 0, 1, 7, 0, 0,
   14, 31, 1, 8, 0, 0, 0, 1, 3, 0, 1,
   "Chorus", "コーラス"],  //25
  [36, 15, 0, 0, 80, 1, 2, 1, 1, 3, 0,
   20, 2, 1, 5, 3, 36, 1, 4, 0, 0, 1,
   6, 7, 7, 6, 0, 0, 0, 0, 0, 1, 1,
   20, 2, 1, 5, 3, 37, 3, 4, 6, 0, 0,
   7, 7, 7, 7, 0, 0, 0, 0, 2, 1, 1,
   "Glassharp", "グラスハープ"],  //26
  [7, 15, 2, 0, 200, 70, 0, 4, 0, 3, 0,
   0, 0, 0, 0, 0, 127, 0, 0, 4, 0, 0,
   0, 0, 0, 0, 0, 127, 0, 0, 4, 0, 0,
   15, 12, 0, 9, 0, 0, 0, 5, 7, 2, 0,
   13, 12, 0, 9, 0, 0, 0, 8, 7, 0, 1,
   "Whistle", "ホイッスル"],  //27
  [4, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   18, 10, 1, 10, 3, 47, 1, 2, 4, 0, 0,
   19, 11, 3, 9, 2, 0, 0, 2, 4, 0, 0,
   18, 10, 1, 10, 5, 77, 1, 6, 4, 3, 0,
   19, 11, 3, 9, 2, 0, 0, 2, 4, 0, 0,
   "Piccolo", "ピッコロ"],  //28
  [59, 15, 2, 0, 196, 16, 0, 5, 0, 3, 0,
   28, 5, 3, 5, 14, 42, 3, 2, 7, 1, 0,
   11, 7, 0, 5, 15, 51, 1, 2, 0, 0, 0,
   14, 2, 0, 4, 2, 48, 3, 1, 3, 0, 0,
   12, 16, 0, 6, 1, 0, 2, 1, 0, 0, 1,
   "Flute", "フルート"],  //29
  [58, 15, 2, 0, 198, 30, 8, 4, 1, 3, 0,
   25, 11, 0, 3, 1, 37, 3, 1, 3, 0, 0,
   28, 12, 12, 11, 5, 37, 3, 9, 3, 0, 0,
   25, 16, 0, 11, 1, 47, 1, 2, 3, 0, 0,
   17, 10, 0, 11, 1, 0, 1, 4, 3, 0, 1,
   "Oboe", "オーボエ"],  //30
  [58, 15, 2, 0, 198, 11, 0, 4, 0, 3, 0,
   19, 2, 2, 0, 1, 36, 1, 2, 0, 0, 0,
   28, 18, 3, 11, 4, 32, 0, 9, 0, 0, 0,
   29, 20, 1, 9, 1, 55, 1, 1, 0, 0, 0,
   17, 15, 0, 9, 0, 0, 0, 1, 0, 0, 1,
   "Clarinet", "クラリネット"],  //31
  [44, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   18, 0, 0, 10, 0, 47, 0, 1, 4, 0, 0,
   20, 0, 0, 10, 0, 0, 1, 2, 4, 0, 0,
   19, 14, 0, 10, 1, 39, 0, 1, 4, 0, 0,
   20, 0, 0, 10, 0, 0, 0, 5, 4, 0, 0,
   "Bassoon", "バスーン"],  //32
  [58, 15, 2, 0, 200, 40, 0, 3, 0, 3, 0,
   18, 0, 0, 6, 0, 36, 0, 0, 0, 0, 0,
   18, 0, 0, 6, 3, 47, 0, 4, 0, 1, 0,
   18, 0, 0, 6, 0, 42, 0, 0, 0, 0, 0,
   14, 8, 0, 8, 1, 0, 0, 1, 7, 0, 1,
   "Saxophone", "サクソフォン"],  //33
  [58, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   14, 14, 0, 3, 1, 27, 2, 1, 3, 0, 0,
   14, 14, 0, 3, 15, 37, 2, 7, 2, 0, 0,
   13, 14, 0, 3, 1, 37, 2, 1, 4, 0, 0,
   19, 3, 0, 10, 0, 0, 1, 1, 6, 0, 1,
   "Trumpet", "トランペット"],  //34
  [58, 15, 2, 0, 205, 0, 0, 0, 0, 3, 0,
   13, 9, 0, 9, 3, 34, 0, 1, 4, 0, 0,
   31, 17, 0, 15, 12, 45, 1, 5, 4, 2, 0,
   12, 11, 0, 8, 1, 50, 0, 1, 4, 0, 0,
   14, 31, 0, 10, 0, 1, 0, 1, 4, 0, 1,
   "Horn", "ホルン"],  //35
  [58, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   16, 12, 0, 8, 0, 28, 0, 1, 0, 0, 0,
   14, 14, 0, 10, 15, 40, 0, 2, 0, 2, 0,
   20, 14, 0, 10, 7, 49, 0, 1, 0, 0, 0,
   16, 14, 0, 8, 1, 0, 0, 1, 0, 0, 1,
   "Trombone", "トロンボーン"],  //36
  [54, 15, 2, 0, 203, 2, 2, 1, 1, 3, 0,
   15, 10, 1, 5, 6, 21, 1, 0, 1, 0, 0,
   17, 2, 1, 8, 3, 0, 0, 1, 3, 0, 1,
   30, 2, 18, 10, 5, 0, 2, 1, 7, 0, 1,
   15, 2, 1, 10, 5, 0, 2, 0, 3, 0, 1,
   "Tuba", "チューバ"],  //37
  [60, 15, 0, 0, 200, 0, 0, 0, 0, 3, 0,
   18, 12, 1, 10, 2, 32, 1, 1, 0, 0, 0,
   18, 10, 1, 10, 3, 0, 0, 1, 1, 0, 1,
   15, 10, 1, 10, 5, 19, 1, 1, 2, 0, 0,
   20, 2, 1, 10, 3, 7, 0, 1, 6, 0, 1,
   "Brass 1", "ブラス 1"],  //38
  [58, 15, 2, 0, 206, 40, 0, 3, 0, 3, 0,
   16, 15, 0, 8, 1, 24, 0, 1, 7, 0, 0,
   16, 12, 0, 4, 1, 59, 0, 8, 0, 2, 0,
   18, 0, 0, 4, 0, 51, 0, 1, 0, 0, 0,
   16, 0, 0, 10, 0, 0, 0, 2, 0, 0, 1,
   "Brass 2", "ブラス 2"],  //39
  [56, 15, 2, 0, 210, 1, 5, 3, 1, 3, 0,
   18, 0, 0, 3, 0, 38, 0, 9, 3, 0, 0,
   18, 0, 0, 3, 0, 38, 0, 7, 7, 0, 0,
   15, 5, 0, 3, 1, 37, 0, 1, 3, 0, 0,
   15, 8, 0, 9, 2, 0, 0, 3, 7, 0, 1,
   "Harmonica", "ハーモニカ"],  //40
  [59, 15, 2, 0, 204, 20, 0, 5, 0, 3, 0,
   31, 16, 0, 10, 15, 12, 0, 4, 0, 0, 0,
   24, 10, 0, 10, 0, 77, 0, 2, 0, 0, 0,
   20, 20, 0, 10, 3, 77, 0, 3, 7, 1, 0,
   16, 5, 0, 10, 7, 0, 0, 4, 0, 0, 1,
   "Ocarina", "オカリナ"],  //41
  [59, 15, 2, 0, 196, 18, 0, 5, 0, 3, 0,
   17, 17, 16, 6, 3, 55, 0, 4, 4, 1, 0,
   15, 18, 1, 0, 2, 47, 0, 2, 4, 0, 0,
   13, 20, 0, 7, 2, 47, 0, 2, 7, 0, 0,
   16, 31, 0, 9, 0, 0, 0, 1, 4, 0, 1,
   "Recorder", "リコーダー"],  //42
  [2, 15, 2, 0, 244, 47, 0, 7, 0, 3, 0,
   31, 0, 0, 10, 0, 47, 0, 6, 0, 0, 0,
   0, 0, 0, 0, 15, 127, 0, 1, 0, 0, 0,
   31, 0, 0, 10, 0, 43, 0, 10, 0, 0, 0,
   20, 8, 0, 10, 1, 0, 0, 2, 0, 0, 1,
   "Apito", "サンバホイッスル"],  //43
  [59, 15, 2, 0, 200, 80, 0, 3, 0, 3, 0,
   20, 0, 0, 10, 0, 0, 0, 4, 0, 0, 0,
   14, 16, 0, 10, 5, 62, 0, 2, 3, 0, 0,
   18, 18, 0, 10, 9, 38, 0, 3, 0, 1, 0,
   14, 12, 0, 10, 2, 0, 1, 1, 0, 0, 1,
   "Pan Flute", "パンフルート"],  //44
  [60, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 25, 5, 2, 0, 0, 0, 15, 0, 0, 0,
   31, 18, 18, 12, 7, 0, 0, 1, 0, 0, 1,
   31, 25, 0, 0, 15, 0, 0, 3, 0, 1, 0,
   31, 17, 15, 10, 15, 0, 0, 1, 0, 0, 1,
   "Snare Drum", "スネアドラム"],  //45
  [2, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   30, 16, 1, 10, 15, 43, 0, 2, 0, 3, 0,
   30, 10, 0, 10, 15, 47, 0, 0, 7, 1, 0,
   30, 20, 0, 10, 15, 15, 0, 0, 3, 3, 0,
   30, 19, 0, 10, 15, 0, 0, 1, 0, 0, 1,
   "Rim Shot", "リムショット"],  //46
  [0, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   30, 26, 0, 13, 15, 26, 0, 1, 0, 1, 0,
   30, 28, 0, 14, 15, 37, 0, 14, 0, 3, 0,
   30, 16, 0, 8, 15, 5, 0, 0, 0, 1, 0,
   29, 16, 0, 8, 15, 0, 0, 0, 0, 0, 1,
   "Bass Drum", "バスドラム"],  //47
  [59, 15, 2, 0, 110, 0, 0, 0, 0, 3, 0,
   28, 20, 12, 15, 10, 22, 0, 3, 0, 2, 0,
   28, 19, 5, 2, 10, 17, 3, 1, 0, 1, 0,
   28, 15, 10, 10, 5, 17, 3, 0, 3, 0, 0,
   30, 12, 7, 5, 6, 0, 1, 1, 0, 0, 1,
   "Tam-Tam", "タムタム"],  //48
  [2, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   28, 12, 0, 4, 15, 36, 1, 0, 0, 1, 0,
   20, 8, 0, 4, 15, 27, 1, 0, 0, 2, 0,
   28, 10, 0, 5, 15, 34, 0, 0, 0, 0, 0,
   16, 5, 0, 2, 15, 0, 3, 0, 0, 0, 1,
   "Timpani", "ティンパニ"],  //49
  [59, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   24, 23, 0, 11, 15, 0, 0, 3, 0, 3, 0,
   26, 14, 0, 7, 15, 40, 0, 2, 0, 2, 0,
   26, 10, 0, 5, 15, 57, 0, 2, 0, 3, 0,
   22, 16, 0, 8, 15, 0, 2, 6, 0, 0, 1,
   "Bongo", "ボンゴ"],  //50
  [50, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   28, 15, 0, 6, 15, 26, 1, 2, 3, 3, 0,
   24, 16, 0, 7, 15, 32, 0, 8, 7, 2, 0,
   26, 11, 0, 7, 15, 29, 1, 5, 3, 0, 0,
   24, 7, 0, 4, 15, 0, 2, 2, 7, 3, 1,
   "Timbales", "ティンバレス"],  //51
  [3, 15, 0, 0, 100, 0, 0, 0, 0, 3, 0,
   31, 6, 0, 4, 15, 51, 0, 1, 0, 3, 0,
   31, 0, 0, 2, 0, 27, 0, 8, 7, 2, 0,
   31, 8, 0, 6, 5, 67, 0, 9, 3, 1, 0,
   31, 10, 0, 5, 15, 0, 0, 10, 3, 2, 1,
   "Triangle", "トライアングル"],  //52
  [59, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   30, 20, 0, 10, 15, 27, 0, 15, 2, 0, 0,
   30, 17, 0, 8, 15, 27, 1, 4, 0, 1, 0,
   28, 12, 0, 6, 15, 43, 1, 2, 3, 2, 0,
   26, 16, 0, 8, 15, 0, 1, 2, 0, 3, 1,
   "Cow Bell", "カウベル"],  //53
  [4, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 7, 0, 1, 1, 35, 0, 7, 3, 0, 0,
   31, 10, 0, 6, 0, 0, 0, 2, 7, 0, 1,
   31, 7, 0, 1, 1, 35, 0, 7, 7, 0, 0,
   31, 13, 0, 6, 0, 0, 0, 2, 3, 0, 1,
   "Tubular Bells", "チューブラーベル"],  //54
  [4, 15, 2, 0, 208, 0, 0, 0, 0, 3, 0,
   13, 10, 4, 4, 15, 29, 1, 3, 7, 0, 0,
   17, 7, 0, 4, 15, 0, 2, 1, 0, 0, 1,
   14, 8, 5, 3, 15, 35, 2, 1, 7, 0, 0,
   15, 8, 0, 4, 15, 7, 2, 4, 3, 0, 1,
   "Steel Drum", "スチールドラム"],  //55
  [28, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 24, 0, 12, 15, 32, 0, 14, 2, 0, 0,
   31, 15, 0, 8, 15, 0, 0, 2, 0, 0, 0,
   31, 20, 0, 4, 15, 27, 0, 15, 0, 0, 0,
   31, 14, 0, 5, 15, 0, 0, 2, 0, 0, 1,
   "Glockenspiel", "グロッケンシュピール"],  //56
  [44, 15, 2, 0, 197, 40, 13, 2, 3, 3, 0,
   24, 14, 0, 7, 15, 50, 1, 12, 3, 0, 0,
   24, 10, 0, 7, 15, 0, 1, 4, 0, 0, 1,
   26, 14, 0, 6, 15, 57, 1, 4, 0, 0, 0,
   26, 8, 0, 6, 15, 0, 2, 1, 0, 0, 1,
   "Vibraphone", "ビブラフォン"],  //57
  [44, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   24, 17, 0, 7, 15, 42, 1, 4, 3, 0, 0,
   24, 4, 0, 2, 15, 0, 3, 0, 3, 0, 1,
   24, 20, 0, 10, 15, 32, 1, 6, 7, 0, 0,
   24, 12, 0, 6, 15, 0, 2, 2, 7, 0, 1,
   "Marimba", "マリンバ"],  //58
  [59, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   29, 4, 3, 2, 3, 0, 0, 14, 0, 1, 0,
   29, 15, 3, 2, 7, 27, 0, 6, 0, 1, 0,
   29, 23, 0, 10, 15, 27, 0, 7, 0, 2, 0,
   30, 20, 21, 15, 15, 0, 0, 1, 0, 0, 1,
   "Closed Hi-Hat", "クローズハイハット"],  //59
  [52, 15, 2, 0, 111, 0, 0, 0, 0, 3, 0,
   31, 1, 0, 5, 12, 7, 0, 0, 0, 3, 0,
   31, 13, 15, 10, 15, 14, 0, 14, 0, 1, 0,
   31, 22, 7, 8, 6, 19, 0, 0, 7, 0, 0,
   31, 20, 20, 8, 15, 2, 0, 0, 0, 1, 0,
   "Open Hi-Hat", "オープンハイハット"],  //60
  [44, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 4, 0, 0, 1, 4, 0, 3, 7, 1, 0,
   31, 31, 3, 2, 1, 29, 1, 5, 0, 2, 0,
   25, 28, 5, 3, 3, 7, 0, 1, 7, 2, 0,
   31, 31, 5, 3, 7, 0, 2, 7, 0, 3, 1,
   "Cymbal", "シンバル"],  //61
  [26, 15, 2, 0, 200, 20, 3, 3, 2, 3, 0,
   18, 1, 1, 10, 3, 17, 1, 2, 1, 0, 0,
   20, 2, 1, 10, 0, 12, 0, 3, 0, 1, 0,
   31, 19, 1, 0, 15, 25, 0, 0, 0, 0, 0,
   20, 2, 1, 10, 3, 0, 2, 1, 3, 0, 1,
   "Synthesizer 1", "シンセサイザ 1"],  //62
  [28, 3, 2, 0, 210, 40, 0, 3, 0, 3, 0,
   31, 16, 0, 0, 15, 7, 1, 2, 3, 0, 0,
   31, 0, 0, 8, 0, 7, 1, 1, 6, 0, 1,
   31, 0, 0, 8, 0, 12, 1, 2, 7, 0, 0,
   31, 0, 0, 8, 0, 0, 1, 1, 3, 0, 1,
   "Synthesizer 2", "シンセサイザ 2"],  //63
  [4, 15, 1, 0, 158, 68, 0, 6, 0, 3, 0,
   0, 0, 0, 0, 15, 127, 0, 1, 0, 0, 0,
   0, 0, 0, 0, 15, 127, 0, 1, 0, 0, 1,
   31, 0, 0, 1, 0, 37, 0, 14, 0, 0, 0,
   16, 0, 0, 4, 0, 0, 0, 5, 7, 1, 1,
   "Ambulance", "救急車"],  //64
  [58, 15, 2, 0, 120, 120, 30, 7, 2, 3, 0,
   31, 0, 0, 0, 0, 17, 0, 2, 0, 2, 0,
   31, 0, 0, 0, 0, 10, 0, 1, 0, 1, 0,
   31, 0, 0, 0, 0, 29, 0, 1, 0, 2, 0,
   12, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1,
   "Storm", "嵐"],  //65
  [4, 15, 0, 0, 220, 120, 0, 7, 0, 3, 0,
   31, 0, 0, 5, 0, 15, 0, 0, 0, 3, 0,
   20, 0, 0, 10, 0, 7, 0, 7, 0, 1, 1,
   12, 0, 0, 5, 0, 47, 0, 3, 0, 3, 0,
   16, 0, 0, 8, 0, 0, 0, 1, 0, 0, 1,
   "Laser Gun", "レーザーガン"],  //66
  [6, 15, 3, 0, 209, 70, 0, 6, 0, 3, 0,
   31, 0, 0, 0, 0, 25, 0, 12, 0, 0, 0,
   20, 14, 0, 7, 15, 7, 0, 4, 0, 0, 0,
   20, 14, 0, 7, 15, 0, 0, 2, 4, 3, 0,
   20, 14, 0, 7, 15, 0, 0, 2, 4, 0, 0,
   "Game Sound Effect 1", "ゲーム効果音 1"],  //67
  [32, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0,
   31, 8, 0, 4, 15, 13, 0, 3, 0, 2, 0,
   10, 7, 0, 4, 15, 17, 3, 1, 0, 1, 0,
   31, 0, 0, 0, 0, 3, 0, 1, 0, 2, 0,
   16, 9, 0, 4, 15, 0, 3, 0, 0, 0, 1,
   "Game Sound Effect 2", "ゲーム効果音 2"],  //68
  [58, 15, 2, 1, 220, 0, 4, 1, 1, 3, 0,
   31, 5, 7, 4, 9, 37, 1, 1, 5, 0, 0,
   22, 0, 4, 5, 4, 62, 1, 5, 2, 0, 0,
   29, 0, 4, 5, 4, 77, 1, 1, 7, 0, 0,
   31, 7, 6, 5, 4, 0, 2, 1, 1, 0, 1,
   "Acoustic Piano 1", "アコースティックピアノ 1"],  //1
  [28, 15, 2, 0, 180, 0, 1, 0, 1, 3, 0,
   31, 20, 8, 10, 0, 24, 0, 1, 3, 0, 0,
   31, 10, 5, 10, 0, 0, 0, 1, 7, 0, 1,
   31, 20, 8, 10, 0, 45, 0, 3, 7, 0, 0,
   25, 10, 5, 10, 0, 0, 3, 1, 3, 0, 1,
   "Acoustic Piano 2", "アコースティックピアノ 2"],  //2
  [58, 15, 2, 0, 205, 0, 0, 0, 0, 2, 0,
   19, 2, 1, 4, 3, 33, 3, 5, 4, 0, 0,
   19, 2, 1, 4, 3, 25, 3, 5, 2, 0, 0,
   19, 2, 1, 4, 3, 31, 2, 1, 7, 0, 0,
   19, 2, 1, 4, 3, 0, 3, 1, 4, 0, 1,
   "Acoustic Piano 3", "アコースティックピアノ 3"],  //3
  [28, 15, 2, 0, 220, 0, 10, 0, 0, 3, 0,
   31, 10, 1, 3, 15, 24, 2, 7, 3, 0, 0,
   29, 12, 9, 7, 10, 0, 0, 7, 7, 0, 1,
   31, 5, 1, 3, 15, 35, 2, 5, 7, 1, 0,
   28, 12, 9, 7, 10, 0, 0, 7, 3, 0, 1,
   "Honky Tonk Piano", "ホンキートンクピアノ"],  //4
  [44, 15, 2, 0, 180, 10, 2, 5, 3, 3, 0,
   25, 20, 0, 6, 7, 67, 2, 10, 3, 1, 0,
   24, 10, 5, 8, 2, 0, 2, 1, 2, 0, 1,
   26, 7, 3, 6, 4, 47, 3, 10, 0, 0, 0,
   24, 12, 5, 8, 2, 0, 1, 1, 0, 0, 1,
   "Electric Piano 1", "エレクトリックピアノ 1"],  //5
  [28, 15, 2, 0, 200, 2, 2, 2, 1, 3, 0,
   31, 10, 0, 10, 5, 47, 0, 15, 3, 3, 0,
   27, 8, 4, 6, 11, 57, 2, 5, 0, 0, 1,
   30, 6, 11, 6, 15, 33, 2, 1, 3, 0, 0,
   30, 6, 11, 6, 15, 0, 1, 1, 3, 0, 1,
   "Electric Piano 2", "エレクトリックピアノ 2"],  //6
  [60, 15, 2, 1, 190, 0, 2, 0, 3, 3, 0,
   31, 10, 0, 2, 15, 57, 2, 7, 3, 1, 0,
   31, 10, 5, 5, 2, 27, 2, 1, 2, 0, 1,
   31, 7, 3, 4, 4, 47, 3, 10, 7, 0, 0,
   31, 12, 5, 6, 1, 0, 1, 1, 3, 0, 1,
   "Electric Piano 3", "エレクトリックピアノ 3"],  //7
  [58, 15, 2, 0, 189, 5, 5, 4, 1, 3, 0,
   28, 4, 3, 7, 1, 38, 2, 1, 3, 0, 0,
   27, 9, 1, 2, 0, 57, 3, 7, 7, 3, 0,
   28, 4, 3, 6, 0, 45, 2, 5, 6, 0, 0,
   26, 2, 0, 5, 15, 0, 3, 2, 3, 0, 1,
   "Electric Piano 4", "エレクトリックピアノ 4"],  //8
  [60, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 2, 20, 10, 0, 17, 1, 0, 7, 0, 0,
   31, 10, 2, 3, 0, 27, 2, 2, 3, 0, 1,
   31, 2, 15, 10, 0, 32, 1, 12, 7, 0, 0,
   31, 10, 13, 5, 5, 0, 1, 2, 3, 0, 1,
   "Toy Piano", "トイピアノ"],  //9
  [58, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   28, 4, 3, 7, 1, 35, 2, 1, 3, 0, 0,
   27, 9, 1, 2, 0, 37, 3, 15, 7, 0, 0,
   28, 3, 0, 0, 15, 27, 2, 1, 6, 0, 0,
   26, 6, 0, 10, 15, 0, 3, 10, 0, 0, 1,
   "Clavinet 1", "クラビネット 1"],  //10
  [58, 15, 2, 0, 130, 10, 0, 3, 3, 3, 0,
   28, 4, 3, 7, 1, 47, 2, 8, 3, 0, 0,
   27, 5, 5, 2, 3, 47, 3, 15, 7, 0, 0,
   31, 5, 5, 0, 15, 17, 2, 2, 6, 0, 0,
   26, 7, 2, 10, 15, 0, 3, 10, 0, 0, 1,
   "Clavinet 2", "クラビネット 2"],  //11
  [60, 15, 2, 0, 130, 10, 0, 3, 3, 3, 0,
   28, 4, 3, 7, 1, 32, 2, 2, 3, 0, 0,
   27, 5, 5, 10, 3, 0, 3, 15, 7, 0, 1,
   31, 2, 0, 0, 15, 17, 2, 1, 6, 0, 0,
   26, 5, 5, 10, 15, 0, 3, 10, 3, 0, 1,
   "Clavinet 3", "クラビネット 3"],  //12
  [13, 15, 2, 0, 200, 0, 0, 0, 0, 1, 0,
   31, 10, 12, 7, 15, 110, 1, 14, 6, 0, 0,
   31, 10, 12, 7, 15, 32, 1, 4, 6, 0, 0,
   31, 10, 12, 7, 15, 32, 1, 12, 6, 0, 0,
   31, 10, 12, 7, 15, 32, 1, 9, 6, 0, 0,
   "Celesta 1", "セレスタ 1"],  //13
  [63, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 10, 12, 6, 15, 52, 1, 1, 0, 0, 1,
   31, 8, 12, 6, 15, 37, 1, 0, 0, 0, 1,
   31, 10, 12, 6, 15, 27, 1, 4, 0, 0, 1,
   31, 10, 12, 6, 15, 47, 1, 2, 0, 0, 1,
   "Celesta 2", "セレスタ 2"],  //14
  [4, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 4, 0, 2, 0, 7, 3, 4, 5, 0, 0,
   31, 8, 1, 8, 15, 0, 1, 2, 0, 0, 1,
   31, 4, 0, 2, 0, 6, 0, 3, 5, 0, 0,
   31, 8, 1, 8, 15, 0, 0, 1, 0, 0, 1,
   "Cembalo 1", "チェンバロ 1"],  //15
  [36, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   0, 0, 0, 0, 0, 127, 0, 0, 4, 0, 0,
   0, 0, 0, 0, 0, 127, 0, 0, 0, 0, 0,
   31, 4, 0, 2, 0, 3, 3, 3, 7, 0, 0,
   31, 13, 12, 8, 15, 0, 0, 1, 0, 0, 0,
   "Cembalo 2", "チェンバロ 2"],  //16
  [2, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   24, 10, 0, 5, 15, 57, 1, 12, 1, 0, 0,
   20, 12, 8, 4, 1, 37, 1, 6, 7, 0, 0,
   29, 10, 4, 4, 1, 37, 1, 3, 4, 0, 0,
   18, 18, 6, 7, 1, 0, 2, 1, 2, 0, 0,
   "Acoustic Guitar 1", "アコースティックギター 1"],  //17
  [58, 15, 2, 1, 180, 3, 0, 5, 0, 3, 0,
   31, 10, 1, 2, 3, 37, 1, 1, 2, 0, 0,
   31, 10, 31, 3, 10, 32, 1, 14, 1, 1, 0,
   31, 10, 10, 3, 5, 87, 0, 3, 1, 0, 0,
   31, 18, 12, 7, 6, 0, 0, 1, 7, 0, 1,
   "Acoustic Guitar 2", "アコースティックギター 2"],  //18
  [57, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 22, 8, 6, 7, 11, 2, 12, 6, 0, 0,
   31, 6, 0, 6, 3, 33, 1, 3, 3, 0, 0,
   28, 6, 0, 6, 15, 32, 0, 3, 4, 0, 0,
   31, 8, 0, 8, 15, 0, 0, 1, 4, 0, 0,
   "Flamenco Guitar", "フラメンコギター"],  //19
  [60, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   29, 8, 0, 6, 15, 27, 1, 3, 7, 0, 0,
   22, 8, 0, 6, 15, 7, 1, 1, 0, 0, 0,
   26, 8, 0, 4, 15, 15, 1, 6, 3, 0, 0,
   24, 10, 0, 7, 15, 0, 1, 8, 2, 0, 0,
   "Twelve-String Guitar", "12 弦ギター"],  //20
  [58, 15, 2, 0, 210, 6, 2, 6, 1, 3, 0,
   31, 13, 1, 4, 15, 37, 2, 1, 3, 0, 0,
   31, 20, 1, 10, 15, 57, 1, 13, 7, 2, 0,
   20, 10, 1, 7, 15, 37, 1, 3, 7, 0, 0,
   23, 5, 1, 7, 15, 0, 0, 1, 3, 0, 1,
   "Electric Guitar 1", "エレキギター 1"],  //21
  [61, 15, 2, 0, 207, 6, 0, 5, 0, 3, 0,
   28, 2, 1, 10, 15, 23, 2, 2, 0, 0, 0,
   31, 0, 1, 10, 0, 0, 0, 1, 0, 0, 1,
   31, 0, 1, 10, 0, 0, 0, 1, 0, 0, 1,
   6, 0, 1, 10, 0, 0, 0, 8, 0, 0, 1,
   "Electric Guitar 2", "エレキギター 2"],  //22
  [2, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   30, 20, 0, 10, 15, 45, 0, 6, 0, 0, 0,
   18, 20, 0, 10, 7, 33, 1, 4, 0, 0, 0,
   31, 14, 0, 10, 15, 39, 1, 0, 0, 0, 0,
   28, 14, 0, 7, 15, 0, 2, 1, 4, 0, 0,
   "Electric Guitar 3", "エレキギター 3"],  //23
  [2, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   28, 0, 0, 10, 0, 57, 0, 2, 7, 0, 0,
   31, 18, 0, 10, 2, 33, 1, 8, 7, 0, 0,
   26, 16, 6, 10, 2, 29, 1, 0, 4, 0, 0,
   28, 6, 0, 8, 15, 0, 1, 1, 4, 0, 0,
   "Electric Guitar 4", "エレキギター 4"],  //24
  [17, 15, 2, 0, 210, 7, 0, 5, 0, 3, 0,
   31, 0, 4, 2, 0, 3, 0, 3, 3, 0, 0,
   31, 0, 0, 2, 0, 9, 0, 0, 2, 0, 0,
   26, 0, 0, 2, 0, 31, 0, 8, 4, 0, 0,
   20, 0, 4, 6, 0, 0, 1, 0, 4, 0, 1,
   "Electric Guitar 5", "エレキギター 5"],  //25
  [58, 15, 2, 0, 150, 0, 10, 0, 1, 3, 0,
   31, 12, 1, 4, 15, 33, 1, 0, 7, 0, 0,
   31, 10, 1, 10, 15, 57, 1, 4, 5, 0, 0,
   31, 10, 1, 10, 15, 27, 0, 0, 2, 0, 0,
   31, 10, 1, 8, 15, 9, 1, 0, 3, 0, 1,
   "Wood Bass 1", "ウッドベース 1"],  //26
  [58, 15, 2, 0, 150, 0, 10, 0, 1, 3, 0,
   27, 18, 1, 4, 15, 29, 1, 0, 7, 0, 0,
   31, 10, 1, 3, 15, 42, 1, 3, 5, 0, 0,
   31, 10, 1, 3, 15, 32, 0, 0, 2, 0, 0,
   29, 12, 1, 6, 15, 0, 1, 0, 3, 0, 1,
   "Wood Bass 2", "ウッドベース 2"],  //27
  [3, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 12, 0, 10, 15, 47, 0, 5, 6, 0, 0,
   31, 0, 0, 10, 0, 23, 0, 0, 4, 0, 0,
   31, 0, 4, 6, 0, 33, 0, 0, 4, 0, 0,
   28, 0, 6, 8, 0, 0, 0, 0, 3, 0, 1,
   "Electric Bass 1", "エレキベース 1"],  //28
  [60, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 2, 20, 0, 0, 23, 1, 1, 0, 0, 0,
   31, 2, 10, 6, 0, 0, 1, 1, 3, 0, 1,
   31, 2, 10, 4, 0, 15, 2, 0, 0, 0, 0,
   20, 2, 10, 5, 0, 0, 1, 0, 0, 0, 1,
   "Electric Bass 2", "エレキベース 2"],  //29
  [32, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 7, 7, 9, 2, 29, 3, 6, 4, 0, 0,
   31, 6, 6, 9, 1, 47, 3, 5, 4, 0, 0,
   26, 9, 6, 9, 1, 29, 2, 0, 4, 0, 0,
   31, 8, 4, 9, 3, 0, 2, 1, 4, 0, 1,
   "Electric Bass 3", "エレキベース 3"],  //30
  [27, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 21, 0, 8, 15, 0, 0, 6, 4, 0, 0,
   31, 15, 0, 8, 15, 35, 0, 9, 7, 0, 0,
   31, 0, 0, 6, 0, 37, 0, 0, 4, 0, 0,
   31, 8, 0, 10, 15, 0, 0, 1, 0, 0, 0,
   "Electric Bass 4", "エレキベース 4"],  //31
  [17, 15, 2, 0, 220, 5, 0, 5, 0, 3, 0,
   31, 0, 0, 4, 0, 17, 0, 3, 3, 0, 0,
   31, 0, 0, 4, 0, 13, 0, 0, 5, 0, 0,
   26, 0, 0, 4, 0, 31, 0, 2, 4, 0, 0,
   20, 0, 3, 6, 0, 0, 0, 0, 4, 0, 0,
   "Electric Bass 5", "エレキベース 5"],  //32
  [3, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   28, 22, 0, 10, 15, 27, 0, 8, 0, 0, 0,
   31, 6, 0, 3, 3, 19, 0, 4, 4, 0, 0,
   31, 8, 0, 4, 3, 23, 0, 5, 6, 0, 0,
   24, 12, 0, 6, 15, 0, 1, 1, 3, 0, 0,
   "Mandolin", "マンドリン"],  //33
  [1, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   26, 16, 0, 6, 15, 51, 1, 9, 4, 0, 0,
   31, 10, 0, 4, 15, 41, 1, 3, 3, 0, 0,
   31, 10, 0, 6, 15, 37, 1, 3, 7, 0, 0,
   24, 12, 0, 7, 15, 0, 1, 1, 6, 0, 0,
   "Ukulele", "	ウクレレ"],  //34
  [58, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   24, 10, 0, 2, 5, 25, 1, 5, 7, 0, 0,
   26, 16, 0, 8, 11, 29, 0, 15, 0, 0, 0,
   28, 16, 0, 4, 3, 31, 0, 1, 6, 0, 0,
   24, 11, 0, 6, 15, 0, 2, 1, 3, 0, 0,
   "Banjo", "バンジョー"],  //35
  [2, 15, 2, 0, 100, 10, 10, 1, 2, 3, 0,
   31, 31, 13, 3, 1, 17, 0, 7, 2, 0, 0,
   31, 15, 1, 10, 3, 27, 1, 9, 3, 0, 0,
   31, 15, 10, 3, 3, 27, 0, 1, 7, 0, 0,
   20, 2, 1, 4, 3, 7, 1, 1, 3, 0, 1,
   "Sitar", "シタール"],  //36
  [57, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   20, 30, 1, 5, 15, 47, 1, 6, 0, 0, 0,
   20, 10, 1, 5, 15, 47, 2, 4, 0, 0, 0,
   20, 5, 1, 5, 15, 57, 1, 2, 7, 0, 0,
   29, 10, 1, 5, 15, 0, 1, 2, 0, 0, 1,
   "Lute", "リュート"],  //37
  [0, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   0, 0, 0, 0, 15, 127, 0, 1, 0, 0, 0,
   31, 12, 1, 5, 15, 27, 1, 1, 7, 0, 0,
   31, 5, 0, 3, 15, 35, 1, 1, 0, 0, 0,
   31, 10, 0, 4, 15, 7, 1, 1, 0, 0, 1,
   "Harp 1", "ハープ 1"],  //38
  [57, 15, 2, 0, 200, 0, 0, 0, 0, 3, 0,
   31, 12, 0, 4, 15, 22, 0, 2, 0, 0, 0,
   31, 13, 0, 6, 1, 38, 0, 1, 4, 0, 0,
   31, 6, 5, 5, 1, 44, 0, 2, 0, 0, 0,
   31, 12, 7, 5, 1, 0, 0, 1, 0, 0, 1,
   "Harp 2", "ハープ 2"],  //39
  [0, 15, 2, 1, 200, 5, 0, 5, 0, 3, 0,
   31, 10, 2, 5, 13, 27, 0, 3, 7, 0, 0,
   31, 10, 2, 5, 10, 37, 2, 4, 1, 0, 0,
   29, 8, 0, 4, 13, 27, 1, 1, 7, 0, 0,
   29, 9, 10, 5, 10, 0, 0, 1, 3, 0, 1,
   "Koto", "琴"],  //40
  [62, 15, 2, 0, 200, 8, 1, 3, 2, 3, 0,
   31, 20, 0, 10, 0, 24, 0, 6, 3, 0, 0,
   20, 2, 1, 10, 3, 0, 0, 2, 7, 0, 1,
   20, 2, 1, 10, 3, 0, 0, 1, 1, 0, 1,
   20, 2, 1, 10, 3, 0, 0, 6, 2, 0, 1,
   "Pipe Organ 1", "パイプオルガン 1"],  //41
  [63, 15, 2, 0, 190, 0, 3, 0, 1, 3, 0,
   31, 1, 1, 10, 0, 117, 0, 8, 3, 0, 1,
   20, 2, 1, 10, 0, 0, 0, 3, 7, 0, 1,
   20, 2, 1, 10, 0, 0, 0, 1, 0, 0, 1,
   20, 2, 1, 10, 0, 0, 0, 2, 6, 0, 1,
   "Pipe Organ 2", "パイプオルガン 2"],  //42
  [54, 15, 2, 0, 250, 5, 10, 1, 1, 3, 0,
   31, 21, 0, 15, 0, 42, 3, 3, 7, 0, 0,
   29, 31, 0, 10, 0, 27, 1, 8, 1, 0, 1,
   31, 31, 0, 10, 0, 0, 1, 1, 6, 0, 1,
   18, 31, 0, 10, 0, 0, 2, 4, 3, 0, 1,
   "Pipe Organ 3", "パイプオルガン 3"],  //43
  [23, 15, 2, 0, 195, 5, 0, 4, 0, 3, 0,
   16, 0, 0, 10, 0, 0, 0, 2, 7, 0, 1,
   18, 2, 1, 10, 3, 37, 0, 5, 3, 0, 1,
   18, 2, 1, 10, 3, 27, 0, 2, 6, 0, 1,
   18, 2, 1, 10, 3, 27, 0, 3, 1, 0, 1,
   "Pipe Organ 4", "パイプオルガン 4"],  //44
  [62, 15, 2, 0, 200, 8, 1, 3, 2, 3, 0,
   31, 20, 0, 10, 0, 27, 0, 12, 3, 0, 1,
   20, 2, 1, 10, 3, 0, 0, 8, 7, 0, 1,
   20, 2, 1, 10, 3, 0, 0, 0, 1, 0, 1,
   20, 2, 1, 10, 3, 0, 0, 2, 2, 0, 1,
   "Pipe Organ 5", "パイプオルガン 5"],  //45
  [63, 15, 2, 0, 200, 3, 2, 2, 1, 3, 0,
   31, 14, 0, 15, 15, 107, 0, 6, 0, 0, 1,
   31, 2, 1, 15, 0, 0, 0, 1, 2, 0, 1,
   31, 2, 1, 15, 0, 0, 0, 3, 0, 0, 1,
   31, 2, 1, 15, 0, 0, 0, 2, 6, 0, 1,
   "Electric Organ 1", "エレクトリックオルガン 1"],  //46
  [62, 15, 2, 1, 195, 5, 5, 1, 1, 3, 0,
   31, 19, 0, 10, 15, 47, 0, 3, 7, 0, 0,
   31, 2, 1, 10, 3, 0, 1, 12, 3, 0, 1,
   31, 0, 0, 10, 0, 0, 1, 1, 7, 0, 1,
   31, 0, 0, 10, 0, 0, 1, 3, 3, 0, 1,
   "Electric Organ 2", "エレクトリックオルガン 2"],  //47
  [7, 15, 2, 0, 190, 10, 2, 2, 1, 3, 0,
   31, 18, 0, 15, 15, 7, 0, 6, 0, 0, 1,
   31, 2, 1, 15, 3, 0, 0, 2, 2, 0, 1,
   31, 2, 1, 15, 3, 0, 0, 3, 0, 0, 1,
   31, 2, 1, 15, 3, 0, 0, 1, 6, 0, 1,
   "Electric Organ 3", "エレクトリックオルガン 3"],  //48
  [52, 15, 2, 0, 200, 6, 2, 4, 1, 3, 0,
   15, 2, 0, 3, 0, 15, 2, 3, 7, 0, 0,
   16, 2, 0, 6, 0, 8, 2, 5, 7, 0, 1,
   15, 2, 0, 3, 0, 12, 2, 0, 6, 0, 0,
   15, 2, 0, 7, 0, 0, 2, 1, 1, 0, 1,
   "Electric Organ 4", "エレクトリックオルガン 4"],  //49
  [6, 15, 2, 0, 200, 10, 10, 1, 1, 3, 0,
   31, 0, 0, 15, 0, 17, 0, 3, 2, 0, 1,
   31, 0, 0, 15, 0, 7, 0, 3, 6, 0, 1,
   31, 0, 0, 15, 3, 0, 0, 0, 3, 0, 1,
   31, 0, 0, 15, 0, 7, 0, 2, 7, 0, 1,
   "Electric Organ 5", "エレクトリックオルガン 5"],  //50
  [62, 15, 2, 1, 190, 10, 0, 1, 1, 3, 0,
   31, 0, 0, 15, 0, 30, 0, 0, 3, 0, 0,
   31, 0, 0, 15, 0, 0, 0, 0, 7, 0, 1,
   31, 0, 0, 15, 0, 0, 0, 3, 2, 0, 1,
   31, 0, 0, 15, 0, 0, 0, 2, 3, 0, 1,
   "Electric Organ 6", "エレクトリックオルガン 6"],  //51
  [60, 15, 2, 1, 200, 6, 0, 4, 1, 3, 0,
   31, 0, 0, 15, 0, 37, 0, 0, 3, 0, 0,
   31, 0, 0, 15, 0, 0, 0, 0, 7, 0, 1,
   31, 0, 0, 15, 0, 24, 0, 3, 1, 0, 0,
   31, 0, 0, 15, 0, 0, 0, 2, 3, 0, 1,
   "Electric Organ 7", "エレクトリックオルガン 7"],  //52
  [60, 15, 2, 0, 200, 6, 1, 3, 1, 3, 0,
   20, 2, 0, 6, 0, 32, 3, 2, 3, 0, 0,
   9, 2, 1, 10, 3, 0, 3, 2, 3, 0, 1,
   18, 10, 0, 6, 0, 22, 3, 2, 3, 0, 0,
   9, 0, 0, 8, 0, 0, 3, 2, 0, 0, 1,
   "School Organ", "スクールオルガン"],  //53
  [60, 15, 2, 0, 180, 6, 0, 5, 0, 3, 0,
   18, 0, 0, 2, 0, 25, 1, 1, 3, 0, 0,
   15, 2, 0, 10, 0, 0, 1, 1, 7, 0, 1,
   31, 2, 0, 6, 0, 27, 1, 3, 7, 0, 0,
   15, 2, 0, 10, 0, 0, 1, 3, 2, 0, 1,
   "Street Organ", "手回しオルガン"],  //54
  [60, 15, 2, 0, 180, 5, 0, 5, 0, 3, 0,
   18, 2, 1, 2, 0, 32, 1, 1, 3, 0, 0,
   15, 2, 1, 10, 0, 0, 1, 1, 7, 0, 1,
   31, 2, 1, 6, 0, 17, 1, 1, 7, 0, 0,
   20, 2, 1, 10, 0, 17, 1, 1, 2, 0, 1,
   "Accordion 1", "アコーディオン 1"],  //55
  [1, 15, 2, 0, 210, 6, 0, 5, 0, 3, 0,
   31, 0, 0, 6, 0, 57, 0, 3, 7, 0, 0,
   31, 0, 0, 6, 0, 49, 0, 4, 6, 0, 0,
   31, 0, 0, 6, 0, 19, 0, 0, 2, 0, 0,
   14, 0, 0, 10, 0, 0, 0, 1, 0, 0, 0,
   "Accordion 2", "アコーディオン 2"],  //56
  [58, 15, 2, 0, 202, 10, 3, 5, 0, 3, 0,
   20, 2, 0, 5, 1, 35, 1, 1, 0, 0, 0,
   25, 6, 0, 8, 3, 32, 1, 5, 7, 0, 0,
   28, 3, 0, 6, 1, 47, 1, 1, 0, 0, 0,
   12, 4, 0, 6, 0, 12, 1, 1, 4, 0, 1,
   "Violin 1", "バイオリン 1"],  //57
  [24, 15, 2, 0, 200, 6, 0, 6, 0, 3, 0,
   17, 10, 18, 10, 0, 42, 1, 15, 7, 3, 0,
   18, 2, 9, 10, 0, 37, 1, 6, 7, 0, 0,
   18, 5, 1, 3, 0, 17, 2, 1, 7, 0, 0,
   12, 2, 1, 7, 1, 0, 1, 1, 3, 0, 1,
   "Violin 2", "バイオリン 2"],  //58
  [58, 15, 2, 0, 204, 5, 0, 6, 0, 3, 0,
   20, 10, 0, 8, 1, 29, 0, 2, 4, 0, 0,
   30, 17, 0, 10, 10, 29, 0, 10, 7, 1, 0,
   18, 9, 0, 6, 2, 21, 0, 3, 3, 0, 0,
   13, 12, 0, 8, 1, 0, 0, 1, 1, 0, 0,
   "Violin 3", "バイオリン 3"],  //59
  [56, 15, 2, 0, 200, 5, 0, 7, 0, 3, 0,
   18, 31, 20, 10, 0, 17, 1, 15, 7, 3, 0,
   31, 17, 12, 10, 0, 37, 1, 6, 7, 0, 0,
   13, 18, 1, 3, 0, 17, 2, 1, 7, 0, 0,
   12, 2, 1, 10, 1, 0, 1, 1, 3, 0, 1,
   "Cello 1", "チェロ 1"],  //60
  [56, 15, 2, 0, 190, 5, 0, 6, 0, 3, 0,
   15, 31, 31, 10, 2, 22, 1, 15, 7, 3, 0,
   21, 28, 12, 10, 2, 22, 1, 6, 4, 0, 0,
   15, 18, 0, 3, 0, 22, 2, 1, 7, 0, 0,
   10, 2, 1, 8, 0, 0, 0, 1, 3, 0, 0,
   "Cello 2", "チェロ 2"],  //61
  [56, 15, 2, 0, 200, 6, 0, 6, 0, 3, 0,
   18, 31, 20, 10, 0, 27, 1, 15, 7, 3, 0,
   15, 17, 12, 10, 0, 47, 1, 6, 7, 0, 0,
   15, 18, 1, 3, 0, 17, 2, 1, 7, 0, 0,
   12, 2, 1, 9, 1, 0, 1, 1, 3, 0, 1,
   "Contrabass", "コントラバス"],  //62
  [58, 15, 2, 0, 205, 10, 0, 5, 0, 3, 0,
   30, 1, 0, 1, 1, 22, 3, 0, 2, 0, 0,
   31, 1, 0, 5, 1, 47, 3, 2, 3, 0, 0,
   30, 1, 0, 5, 1, 57, 1, 1, 3, 0, 0,
   13, 2, 0, 6, 0, 0, 1, 1, 7, 0, 1,
   "Strings 1", "ストリングス 1"],  //63
  [58, 15, 2, 0, 200, 6, 0, 6, 0, 3, 0,
   30, 1, 0, 1, 1, 29, 3, 0, 2, 0, 0,
   31, 1, 0, 5, 1, 107, 3, 2, 3, 0, 0,
   30, 1, 0, 5, 1, 97, 1, 1, 3, 0, 0,
   13, 2, 0, 6, 0, 0, 1, 1, 7, 0, 1,
   "Strings 2", "ストリングス 2"],  //64
  [60, 15, 2, 0, 200, 3, 0, 7, 0, 3, 0,
←Previous | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | Next→