From 91d37f5dfcf7750b6800e40cbbf48ee7d3f81ab2 Mon Sep 17 00:00:00 2001 From: Keith Rocheck <749812+krocheck@users.noreply.github.com> Date: Sun, 29 Sep 2024 21:49:28 -0500 Subject: [PATCH] wip: update tests --- companion/lib/Data/StoreBase.ts | 13 + companion/lib/Data/Upgrade.ts | 2 +- companion/lib/Data/Upgrades/v1tov2.ts | 29 +- companion/lib/Data/Upgrades/v2tov3.ts | 4 + .../Upgrade/v1tov2-upgradeStartup.test.ts | 44 + companion/test/Upgrade/v1tov2/db.v1.json | 1286 ++ companion/test/Upgrade/v1tov2/db.v2.json | 11855 +++++++++++++++ .../Upgrade/v2tov3-upgradeStartup.test.ts | 44 + companion/test/Upgrade/v2tov3/db.v2.json | 12428 ++++++++++++++++ companion/test/Upgrade/v2tov3/db.v3.json | 8010 ++++++++++ companion/test/v2tov3-upgradeStartup.test.ts | 51 - 11 files changed, 33707 insertions(+), 59 deletions(-) create mode 100644 companion/test/Upgrade/v1tov2-upgradeStartup.test.ts create mode 100644 companion/test/Upgrade/v1tov2/db.v1.json create mode 100644 companion/test/Upgrade/v1tov2/db.v2.json create mode 100644 companion/test/Upgrade/v2tov3-upgradeStartup.test.ts create mode 100644 companion/test/Upgrade/v2tov3/db.v2.json create mode 100644 companion/test/Upgrade/v2tov3/db.v3.json delete mode 100644 companion/test/v2tov3-upgradeStartup.test.ts diff --git a/companion/lib/Data/StoreBase.ts b/companion/lib/Data/StoreBase.ts index 68a1b1e99..7e9e26f2c 100644 --- a/companion/lib/Data/StoreBase.ts +++ b/companion/lib/Data/StoreBase.ts @@ -280,6 +280,19 @@ export abstract class DataStoreBase { return !!row } + /** + * Import raw data into a table + * @param table - the table to import to + * @param data - the data + */ + public importTable(table: string, data: any) { + if (typeof data === 'object') { + for (const [key, value] of Object.entries(data)) { + this.setTableKey(table, key, value) + } + } + } + /** * Save the defaults since a file could not be found/loaded/parsed */ diff --git a/companion/lib/Data/Upgrade.ts b/companion/lib/Data/Upgrade.ts index e2fe112e8..39b9418d3 100644 --- a/companion/lib/Data/Upgrade.ts +++ b/companion/lib/Data/Upgrade.ts @@ -43,7 +43,7 @@ export function upgradeStartup(db: DataDatabase): void { allUpgrades[i - 1].upgradeStartup(db, logger) } - db.setKey('page_config_version', targetVersion) + //db.setKey('page_config_version', targetVersion) } } diff --git a/companion/lib/Data/Upgrades/v1tov2.ts b/companion/lib/Data/Upgrades/v1tov2.ts index 05a50a0b7..0964b4a93 100644 --- a/companion/lib/Data/Upgrades/v1tov2.ts +++ b/companion/lib/Data/Upgrades/v1tov2.ts @@ -26,6 +26,13 @@ function convertDatabase15To32(db: DataStoreBase, _logger: Logger): void { oldReleaseActions[page] = res.release_actions oldFeedbacks[page] = res.feedbacks } + + db.setKey('bank', oldBankConfig) + db.setKey('bank_actions', oldActions) + db.setKey('bank_release_actions', oldReleaseActions) + db.setKey('feedbacks', oldFeedbacks) + + db.setKey("page_config_version", 2) } function convertPage15To32(oldObj: any): any { @@ -48,19 +55,27 @@ function convertPage15To32(oldObj: any): any { result.config[bank] = {} result.actions[bank] = [] result.release_actions[bank] = [] - result.feedbacks[bank] = [] + //result.feedbacks[bank] = [] } // copy across the old buttons for (let oldBank = 1; oldBank <= 12; oldBank++) { const newBank = from12to32(oldBank) - result.config[newBank] = oldPageConfig[oldBank] - upgradeBankStyle(result.config[newBank]) + if (oldPageConfig[oldBank]) { + result.config[newBank] = oldPageConfig[oldBank] + upgradeBankStyle(result.config[newBank]) + } - result.actions[newBank] = oldPageActions[oldBank] - result.release_actions[newBank] = oldPageReleaseActions[oldBank] - result.feedbacks[newBank] = oldPageFeedbacks[oldBank] + if (oldPageActions[oldBank]) { + result.actions[newBank] = oldPageActions[oldBank] + } + if (oldPageReleaseActions[oldBank]) { + result.release_actions[newBank] = oldPageReleaseActions[oldBank] + } + if (oldPageFeedbacks[oldBank]) { + result.feedbacks[newBank] = oldPageFeedbacks[oldBank] + } } // Add navigation keys @@ -144,7 +159,7 @@ function from12to32(key: number): number { if (res >= 32) { console.debug('assert: old config had bigger pages than expected') - return 31 + return 32 } return res } diff --git a/companion/lib/Data/Upgrades/v2tov3.ts b/companion/lib/Data/Upgrades/v2tov3.ts index 5c093f5e8..8352797c5 100644 --- a/companion/lib/Data/Upgrades/v2tov3.ts +++ b/companion/lib/Data/Upgrades/v2tov3.ts @@ -98,7 +98,11 @@ function convertToControls(db: DataStoreBase): void { db.deleteKey('bank') db.deleteKey('feedbacks') db.deleteKey('bank_action_sets') + db.deleteKey('bank_rotate_left_actions') + db.deleteKey('bank_rotate_right_actions') db.setKey('controls', newControls) + + db.setKey("page_config_version", 3) } // patch v3 pre https://github.com/bitfocus/companion/pull/2187 diff --git a/companion/test/Upgrade/v1tov2-upgradeStartup.test.ts b/companion/test/Upgrade/v1tov2-upgradeStartup.test.ts new file mode 100644 index 000000000..3f70b0c36 --- /dev/null +++ b/companion/test/Upgrade/v1tov2-upgradeStartup.test.ts @@ -0,0 +1,44 @@ +import { describe, it, expect } from 'vitest' +import { DataStoreBase, DatabaseDefault } from '../../lib/Data/StoreBase.js' +import LogController from '../../lib/Log/Controller.js' +import v1tov2 from '../../lib/Data/Upgrades/v1tov2.js' +import { createTables } from '../../lib/Data/Schema/v1.js' +import fs from 'fs-extra' + +function CreateDataDatabase() { + const db = new DataDatabase() + + let data = fs.readFileSync('./companion/test/Upgrade/v1tov2/db.v1.json', 'utf8') + data = JSON.parse(data) + + db.importTable('main', data) + + return db +} + +class DataDatabase extends DataStoreBase { + static Defaults: DatabaseDefault = { + main: { + page_config_version: 3, + }, + } + constructor() { + super(':memory:', '', 'main', 'Data/Database') + this.startSQLite() + } + protected create(): void { + createTables(this.store, this.defaultTable, this.logger) + } + protected loadDefaults(): void {} + protected migrateFileToSqlite(): void {} +} + +describe('upgrade', () => { + it('empty', () => { + const db = CreateDataDatabase() + v1tov2.upgradeStartup(db, LogController.createLogger('test-logger')) + let data = fs.readFileSync('./companion/test/Upgrade/v1tov2/db.v2.json', 'utf8') + data = JSON.parse(data) + expect(db.getTable('main')).toEqual(data) + }) +}) diff --git a/companion/test/Upgrade/v1tov2/db.v1.json b/companion/test/Upgrade/v1tov2/db.v1.json new file mode 100644 index 000000000..314109de9 --- /dev/null +++ b/companion/test/Upgrade/v1tov2/db.v1.json @@ -0,0 +1,1286 @@ +{ + "deviceconfig": { + "emulator": { + "page": 1 + } + }, + "bank": { + "1": { + "1": { + "style": "text", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "2": { + "style": "text", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "3": { + "style": "text", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "4": { + "style": "text", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "5": { + "style": "text", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "6": { + "style": "text", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "7": { + "style": "text", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "8": { + "style": "text", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "9": { + "style": "text", + "text": "TO 7", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "10": {}, + "11": { + "style": "text", + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "12": { + "style": "text", + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + } + }, + "2": { + "1": { + "style": "text", + "text": "BLACK", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "2": { + "style": "text", + "text": "TIMER", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "3": { + "style": "text", + "text": "CLOCK", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "4": { + "style": "text", + "text": "TEST", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "5": { + "style": "text", + "text": "GO", + "size": "24", + "color": "16777215", + "bgcolor": 65280 + }, + "6": { + "style": "text", + "text": "PAUSE", + "size": "18", + "color": 0, + "bgcolor": 16776960 + }, + "7": { + "style": "text", + "text": "RESET", + "size": "18", + "color": 16777215, + "bgcolor": 255 + }, + "8": {}, + "9": { + "style": "text", + "text": "SET\\n5 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "10": { + "style": "text", + "text": "SET\\n10 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "11": { + "style": "text", + "text": "SET\\n15 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "12": {} + }, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": { + "1": { + "style": "text", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "2": { + "style": "text", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "3": { + "style": "text", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "4": { + "style": "text", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "5": { + "style": "text", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "6": { + "style": "text", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "7": { + "style": "text", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "8": { + "style": "text", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "9": { + "style": "text", + "text": "TO 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "10": {}, + "11": { + "style": "text", + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "12": { + "style": "text", + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + } + }, + "8": {}, + "9": {}, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": {}, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {}, + "33": {}, + "34": {}, + "35": {}, + "36": {}, + "37": {}, + "38": {}, + "39": {}, + "40": {}, + "41": {}, + "42": {}, + "43": {}, + "44": {}, + "45": {}, + "46": {}, + "47": {}, + "48": {}, + "49": {}, + "50": {}, + "51": {}, + "52": {}, + "53": {}, + "54": {}, + "55": {}, + "56": {}, + "57": {}, + "58": {}, + "59": {}, + "60": {}, + "61": {}, + "62": {}, + "63": {}, + "64": {}, + "65": {}, + "66": {}, + "67": {}, + "68": {}, + "69": {}, + "70": {}, + "71": {}, + "72": {}, + "73": {}, + "74": {}, + "75": {}, + "76": {}, + "77": {}, + "78": {}, + "79": {}, + "80": {}, + "81": {}, + "82": {}, + "83": {}, + "84": {}, + "85": {}, + "86": {}, + "87": {}, + "88": {}, + "89": {}, + "90": {}, + "91": {}, + "92": {}, + "93": {}, + "94": {}, + "95": {}, + "96": {}, + "97": {}, + "98": {}, + "99": {} + }, + "instance": { + "bitfocus-companion": { + "instance_type": "bitfocus-companion", + "label": "internal", + "id": "bitfocus-companion" + }, + "rJDPWbmC0": { + "instance_type": "atem", + "label": "atem", + "host": "127.0.0.1", + "enabled": true + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "host": "127.0.0.1", + "enabled": true + } + }, + "bank_actions": { + "1": { + "1": [ + { + "id": "SyCJfW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "2": [ + { + "id": "ryPYfWQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "BJQcfWQRA", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "BJZsG-7CR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "H1EhG-70C", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "6": [ + { + "id": "SJp3z-QAA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "7": [ + { + "id": "SJ7CzbQCA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "8": [ + { + "id": "ryqAMbQC0", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "9": [ + { + "id": "H15rmb7RC", + "label": "bitfocus-companion:set_page", + "instance": "bitfocus-companion", + "action": "set_page", + "options": { + "controller": "self", + "page": "7" + } + } + ], + "10": [], + "11": [ + { + "id": "B1U17ZX00", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "12": [ + { + "id": "ryYx7bQAR", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ] + }, + "2": { + "1": [ + { + "action": "displayM", + "options": { + "mode": "BLACK" + }, + "id": "B1Z4VdDDR0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "2": [ + { + "action": "displayM", + "options": { + "mode": "TIMER" + }, + "id": "BkZL4OvDAA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "3": [ + { + "action": "displayM", + "options": { + "mode": "CLOCK" + }, + "id": "SyZ_V_wP00", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "4": [ + { + "action": "displayM", + "options": { + "mode": "TEST" + }, + "id": "rkbYVOvwRR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "5": [ + { + "action": "go", + "id": "rye-HuPw0R", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:go" + } + ], + "6": [ + { + "action": "pause", + "id": "Hyx7SdwPA0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:pause" + } + ], + "7": [ + { + "action": "reset", + "id": "SyxEHdDPCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:reset" + } + ], + "8": [], + "9": [ + { + "action": "resetT", + "options": { + "time": "5" + }, + "id": "r1xLrdvwCA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "10": [ + { + "action": "resetT", + "options": { + "time": "10" + }, + "id": "rye_SuDv0C", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "11": [ + { + "action": "resetT", + "options": { + "time": "15" + }, + "id": "rJetr_vwCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "12": [] + }, + "7": { + "1": [ + { + "id": "H1tV7bQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "2": [ + { + "id": "HkZt4mW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "SJmFV7Z7R0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "BJrY4XZX00", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "rywt47-QAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "6": [ + { + "id": "rJOtVQZXRC", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "7": [ + { + "id": "SkKYNXZmAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "8": [ + { + "id": "rJ5KEQ-70R", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "9": [ + { + "id": "r1W_7ZXRR", + "label": "bitfocus-companion:set_page", + "instance": "bitfocus-companion", + "action": "set_page", + "options": { + "controller": "self", + "page": "1" + } + } + ], + "10": [], + "11": [ + { + "id": "SJjFEQb70R", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "12": [ + { + "id": "Hk3F4XWQ00", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ] + } + }, + "bank_release_actions": { + "1": { + "1": [ + { + "id": "HkN_f-7AC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "2": [ + { + "id": "ByePFMWQA0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "BkxQ9GZ7RR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "BJgbiGWmCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [] + }, + "2": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [] + }, + "7": { + "1": [ + { + "id": "rylYNmbQ0R", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "2": [ + { + "id": "BJzKE7-XCR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "r1EY47bmAC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "ByIYVQ-mCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [] + } + }, + "userconfig": { + "page_direction_flipped": false, + "artnet_enabled": false, + "artnet_universe": "1", + "artnet_channel": "1" + }, + "page": { + "1": { + "name": "ATEM 1" + }, + "2": { + "name": "TIMER" + }, + "3": { + "name": "PAGE" + }, + "4": { + "name": "PAGE" + }, + "5": { + "name": "PAGE" + }, + "6": { + "name": "PAGE" + }, + "7": { + "name": "ATEM 2" + }, + "8": { + "name": "PAGE" + }, + "9": { + "name": "PAGE" + }, + "10": { + "name": "PAGE" + }, + "11": { + "name": "PAGE" + }, + "12": { + "name": "PAGE" + }, + "13": { + "name": "PAGE" + }, + "14": { + "name": "PAGE" + }, + "15": { + "name": "PAGE" + }, + "16": { + "name": "PAGE" + }, + "17": { + "name": "PAGE" + }, + "18": { + "name": "PAGE" + }, + "19": { + "name": "PAGE" + }, + "20": { + "name": "PAGE" + }, + "21": { + "name": "PAGE" + }, + "22": { + "name": "PAGE" + }, + "23": { + "name": "PAGE" + }, + "24": { + "name": "PAGE" + }, + "25": { + "name": "PAGE" + }, + "26": { + "name": "PAGE" + }, + "27": { + "name": "PAGE" + }, + "28": { + "name": "PAGE" + }, + "29": { + "name": "PAGE" + }, + "30": { + "name": "PAGE" + }, + "31": { + "name": "PAGE" + }, + "32": { + "name": "PAGE" + }, + "33": { + "name": "PAGE" + }, + "34": { + "name": "PAGE" + }, + "35": { + "name": "PAGE" + }, + "36": { + "name": "PAGE" + }, + "37": { + "name": "PAGE" + }, + "38": { + "name": "PAGE" + }, + "39": { + "name": "PAGE" + }, + "40": { + "name": "PAGE" + }, + "41": { + "name": "PAGE" + }, + "42": { + "name": "PAGE" + }, + "43": { + "name": "PAGE" + }, + "44": { + "name": "PAGE" + }, + "45": { + "name": "PAGE" + }, + "46": { + "name": "PAGE" + }, + "47": { + "name": "PAGE" + }, + "48": { + "name": "PAGE" + }, + "49": { + "name": "PAGE" + }, + "50": { + "name": "PAGE" + }, + "51": { + "name": "PAGE" + }, + "52": { + "name": "PAGE" + }, + "53": { + "name": "PAGE" + }, + "54": { + "name": "PAGE" + }, + "55": { + "name": "PAGE" + }, + "56": { + "name": "PAGE" + }, + "57": { + "name": "PAGE" + }, + "58": { + "name": "PAGE" + }, + "59": { + "name": "PAGE" + }, + "60": { + "name": "PAGE" + }, + "61": { + "name": "PAGE" + }, + "62": { + "name": "PAGE" + }, + "63": { + "name": "PAGE" + }, + "64": { + "name": "PAGE" + }, + "65": { + "name": "PAGE" + }, + "66": { + "name": "PAGE" + }, + "67": { + "name": "PAGE" + }, + "68": { + "name": "PAGE" + }, + "69": { + "name": "PAGE" + }, + "70": { + "name": "PAGE" + }, + "71": { + "name": "PAGE" + }, + "72": { + "name": "PAGE" + }, + "73": { + "name": "PAGE" + }, + "74": { + "name": "PAGE" + }, + "75": { + "name": "PAGE" + }, + "76": { + "name": "PAGE" + }, + "77": { + "name": "PAGE" + }, + "78": { + "name": "PAGE" + }, + "79": { + "name": "PAGE" + }, + "80": { + "name": "PAGE" + }, + "81": { + "name": "PAGE" + }, + "82": { + "name": "PAGE" + }, + "83": { + "name": "PAGE" + }, + "84": { + "name": "PAGE" + }, + "85": { + "name": "PAGE" + }, + "86": { + "name": "PAGE" + }, + "87": { + "name": "PAGE" + }, + "88": { + "name": "PAGE" + }, + "89": { + "name": "PAGE" + }, + "90": { + "name": "PAGE" + }, + "91": { + "name": "PAGE" + }, + "92": { + "name": "PAGE" + }, + "93": { + "name": "PAGE" + }, + "94": { + "name": "PAGE" + }, + "95": { + "name": "PAGE" + }, + "96": { + "name": "PAGE" + }, + "97": { + "name": "PAGE" + }, + "98": { + "name": "PAGE" + }, + "99": { + "name": "PAGE" + } + }, + "feedbacks": { + "2": { + "1": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "BLACK" + }, + "id": "SJGEVuwv0C", + "instance_id": "SkQQuDPAA" + } + ], + "2": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TIMER" + }, + "id": "SyM84_PwCC", + "instance_id": "SkQQuDPAA" + } + ], + "3": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "CLOCK" + }, + "id": "rkf_NuPP00", + "instance_id": "SkQQuDPAA" + } + ], + "4": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TEST" + }, + "id": "SJMKEdDwAR", + "instance_id": "SkQQuDPAA" + } + ] + } + } +} \ No newline at end of file diff --git a/companion/test/Upgrade/v1tov2/db.v2.json b/companion/test/Upgrade/v1tov2/db.v2.json new file mode 100644 index 000000000..31bf61632 --- /dev/null +++ b/companion/test/Upgrade/v1tov2/db.v2.json @@ -0,0 +1,11855 @@ +{ + "bank": { + "1": { + "1": { + "style": "pageup" + }, + "2": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "3": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "4": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "5": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "11": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "12": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "13": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": { + "style": "png", + "text": "TO 7", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "19": {}, + "20": { + "style": "png", + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "21": { + "style": "png", + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "2": { + "1": { + "style": "pageup" + }, + "2": { + "style": "png", + "text": "BLACK", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "3": { + "style": "png", + "text": "TIMER", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "4": { + "style": "png", + "text": "CLOCK", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "5": { + "style": "png", + "text": "TEST", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": { + "style": "png", + "text": "GO", + "size": "24", + "color": "16777215", + "bgcolor": 65280 + }, + "11": { + "style": "png", + "text": "PAUSE", + "size": "18", + "color": 0, + "bgcolor": 16776960 + }, + "12": { + "style": "png", + "text": "RESET", + "size": "18", + "color": 16777215, + "bgcolor": 255 + }, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": { + "style": "png", + "text": "SET\\n5 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "19": { + "style": "png", + "text": "SET\\n10 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "20": { + "style": "png", + "text": "SET\\n15 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "3": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "4": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "5": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "6": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "7": { + "1": { + "style": "pageup" + }, + "2": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "3": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "4": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "5": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "11": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "12": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "13": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": { + "style": "png", + "text": "TO 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "19": {}, + "20": { + "style": "png", + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "21": { + "style": "png", + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "8": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "9": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "10": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "11": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "12": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "13": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "14": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "15": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "16": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "17": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "18": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "19": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "20": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "21": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "22": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "23": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "24": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "25": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "26": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "27": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "28": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "29": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "30": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "31": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "32": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "33": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "34": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "35": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "36": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "37": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "38": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "39": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "40": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "41": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "42": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "43": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "44": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "45": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "46": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "47": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "48": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "49": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "50": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "51": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "52": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "53": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "54": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "55": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "56": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "57": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "58": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "59": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "60": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "61": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "62": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "63": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "64": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "65": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "66": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "67": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "68": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "69": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "70": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "71": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "72": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "73": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "74": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "75": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "76": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "77": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "78": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "79": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "80": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "81": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "82": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "83": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "84": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "85": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "86": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "87": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "88": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "89": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "90": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "91": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "92": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "93": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "94": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "95": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "96": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "97": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "98": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "99": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + } + }, + "bank_actions": { + "1": { + "1": [], + "2": [ + { + "id": "SyCJfW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "ryPYfWQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "BJQcfWQRA", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "BJZsG-7CR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [ + { + "id": "H1EhG-70C", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "11": [ + { + "id": "SJp3z-QAA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "12": [ + { + "id": "SJ7CzbQCA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "13": [ + { + "id": "ryqAMbQC0", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [ + { + "id": "H15rmb7RC", + "label": "bitfocus-companion:set_page", + "instance": "bitfocus-companion", + "action": "set_page", + "options": { + "controller": "self", + "page": "7" + } + } + ], + "19": [], + "20": [ + { + "id": "B1U17ZX00", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "21": [ + { + "id": "ryYx7bQAR", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "2": { + "1": [], + "2": [ + { + "action": "displayM", + "options": { + "mode": "BLACK" + }, + "id": "B1Z4VdDDR0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "3": [ + { + "action": "displayM", + "options": { + "mode": "TIMER" + }, + "id": "BkZL4OvDAA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "4": [ + { + "action": "displayM", + "options": { + "mode": "CLOCK" + }, + "id": "SyZ_V_wP00", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "5": [ + { + "action": "displayM", + "options": { + "mode": "TEST" + }, + "id": "rkbYVOvwRR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [ + { + "action": "go", + "id": "rye-HuPw0R", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:go" + } + ], + "11": [ + { + "action": "pause", + "id": "Hyx7SdwPA0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:pause" + } + ], + "12": [ + { + "action": "reset", + "id": "SyxEHdDPCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:reset" + } + ], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [ + { + "action": "resetT", + "options": { + "time": "5" + }, + "id": "r1xLrdvwCA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "19": [ + { + "action": "resetT", + "options": { + "time": "10" + }, + "id": "rye_SuDv0C", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "20": [ + { + "action": "resetT", + "options": { + "time": "15" + }, + "id": "rJetr_vwCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "3": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "4": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "5": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "6": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "7": { + "1": [], + "2": [ + { + "id": "H1tV7bQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "HkZt4mW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "SJmFV7Z7R0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "BJrY4XZX00", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [ + { + "id": "rywt47-QAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "11": [ + { + "id": "rJOtVQZXRC", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "12": [ + { + "id": "SkKYNXZmAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "13": [ + { + "id": "rJ5KEQ-70R", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [ + { + "id": "r1W_7ZXRR", + "label": "bitfocus-companion:set_page", + "instance": "bitfocus-companion", + "action": "set_page", + "options": { + "controller": "self", + "page": "1" + } + } + ], + "19": [], + "20": [ + { + "id": "SJjFEQb70R", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "21": [ + { + "id": "Hk3F4XWQ00", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "8": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "9": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "10": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "11": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "12": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "13": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "14": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "15": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "16": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "17": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "18": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "19": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "20": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "21": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "22": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "23": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "24": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "25": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "26": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "27": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "28": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "29": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "30": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "31": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "32": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "33": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "34": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "35": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "36": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "37": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "38": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "39": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "40": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "41": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "42": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "43": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "44": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "45": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "46": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "47": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "48": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "49": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "50": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "51": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "52": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "53": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "54": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "55": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "56": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "57": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "58": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "59": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "60": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "61": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "62": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "63": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "64": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "65": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "66": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "67": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "68": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "69": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "70": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "71": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "72": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "73": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "74": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "75": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "76": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "77": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "78": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "79": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "80": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "81": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "82": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "83": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "84": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "85": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "86": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "87": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "88": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "89": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "90": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "91": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "92": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "93": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "94": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "95": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "96": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "97": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "98": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "99": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + } + }, + "bank_release_actions": { + "1": { + "1": [], + "2": [ + { + "id": "HkN_f-7AC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "ByePFMWQA0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "BkxQ9GZ7RR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "BJgbiGWmCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "2": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "3": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "4": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "5": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "6": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "7": { + "1": [], + "2": [ + { + "id": "rylYNmbQ0R", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "BJzKE7-XCR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "r1EY47bmAC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "ByIYVQ-mCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "8": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "9": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "10": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "11": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "12": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "13": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "14": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "15": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "16": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "17": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "18": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "19": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "20": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "21": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "22": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "23": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "24": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "25": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "26": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "27": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "28": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "29": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "30": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "31": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "32": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "33": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "34": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "35": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "36": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "37": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "38": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "39": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "40": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "41": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "42": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "43": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "44": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "45": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "46": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "47": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "48": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "49": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "50": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "51": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "52": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "53": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "54": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "55": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "56": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "57": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "58": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "59": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "60": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "61": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "62": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "63": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "64": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "65": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "66": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "67": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "68": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "69": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "70": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "71": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "72": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "73": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "74": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "75": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "76": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "77": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "78": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "79": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "80": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "81": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "82": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "83": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "84": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "85": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "86": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "87": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "88": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "89": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "90": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "91": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "92": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "93": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "94": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "95": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "96": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "97": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "98": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "99": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + } + }, + "deviceconfig": { + "emulator": { + "page": 1 + } + }, + "feedbacks": { + "1": {}, + "2": { + "2": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "BLACK" + }, + "id": "SJGEVuwv0C", + "instance_id": "SkQQuDPAA" + } + ], + "3": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TIMER" + }, + "id": "SyM84_PwCC", + "instance_id": "SkQQuDPAA" + } + ], + "4": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "CLOCK" + }, + "id": "rkf_NuPP00", + "instance_id": "SkQQuDPAA" + } + ], + "5": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TEST" + }, + "id": "SJMKEdDwAR", + "instance_id": "SkQQuDPAA" + } + ] + }, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": {}, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": {}, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {}, + "33": {}, + "34": {}, + "35": {}, + "36": {}, + "37": {}, + "38": {}, + "39": {}, + "40": {}, + "41": {}, + "42": {}, + "43": {}, + "44": {}, + "45": {}, + "46": {}, + "47": {}, + "48": {}, + "49": {}, + "50": {}, + "51": {}, + "52": {}, + "53": {}, + "54": {}, + "55": {}, + "56": {}, + "57": {}, + "58": {}, + "59": {}, + "60": {}, + "61": {}, + "62": {}, + "63": {}, + "64": {}, + "65": {}, + "66": {}, + "67": {}, + "68": {}, + "69": {}, + "70": {}, + "71": {}, + "72": {}, + "73": {}, + "74": {}, + "75": {}, + "76": {}, + "77": {}, + "78": {}, + "79": {}, + "80": {}, + "81": {}, + "82": {}, + "83": {}, + "84": {}, + "85": {}, + "86": {}, + "87": {}, + "88": {}, + "89": {}, + "90": {}, + "91": {}, + "92": {}, + "93": {}, + "94": {}, + "95": {}, + "96": {}, + "97": {}, + "98": {}, + "99": {} + }, + "instance": { + "bitfocus-companion": { + "instance_type": "bitfocus-companion", + "label": "internal", + "id": "bitfocus-companion" + }, + "rJDPWbmC0": { + "instance_type": "atem", + "label": "atem", + "host": "127.0.0.1", + "enabled": true + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "host": "127.0.0.1", + "enabled": true + } + }, + "page": { + "1": { + "name": "ATEM 1" + }, + "2": { + "name": "TIMER" + }, + "3": { + "name": "PAGE" + }, + "4": { + "name": "PAGE" + }, + "5": { + "name": "PAGE" + }, + "6": { + "name": "PAGE" + }, + "7": { + "name": "ATEM 2" + }, + "8": { + "name": "PAGE" + }, + "9": { + "name": "PAGE" + }, + "10": { + "name": "PAGE" + }, + "11": { + "name": "PAGE" + }, + "12": { + "name": "PAGE" + }, + "13": { + "name": "PAGE" + }, + "14": { + "name": "PAGE" + }, + "15": { + "name": "PAGE" + }, + "16": { + "name": "PAGE" + }, + "17": { + "name": "PAGE" + }, + "18": { + "name": "PAGE" + }, + "19": { + "name": "PAGE" + }, + "20": { + "name": "PAGE" + }, + "21": { + "name": "PAGE" + }, + "22": { + "name": "PAGE" + }, + "23": { + "name": "PAGE" + }, + "24": { + "name": "PAGE" + }, + "25": { + "name": "PAGE" + }, + "26": { + "name": "PAGE" + }, + "27": { + "name": "PAGE" + }, + "28": { + "name": "PAGE" + }, + "29": { + "name": "PAGE" + }, + "30": { + "name": "PAGE" + }, + "31": { + "name": "PAGE" + }, + "32": { + "name": "PAGE" + }, + "33": { + "name": "PAGE" + }, + "34": { + "name": "PAGE" + }, + "35": { + "name": "PAGE" + }, + "36": { + "name": "PAGE" + }, + "37": { + "name": "PAGE" + }, + "38": { + "name": "PAGE" + }, + "39": { + "name": "PAGE" + }, + "40": { + "name": "PAGE" + }, + "41": { + "name": "PAGE" + }, + "42": { + "name": "PAGE" + }, + "43": { + "name": "PAGE" + }, + "44": { + "name": "PAGE" + }, + "45": { + "name": "PAGE" + }, + "46": { + "name": "PAGE" + }, + "47": { + "name": "PAGE" + }, + "48": { + "name": "PAGE" + }, + "49": { + "name": "PAGE" + }, + "50": { + "name": "PAGE" + }, + "51": { + "name": "PAGE" + }, + "52": { + "name": "PAGE" + }, + "53": { + "name": "PAGE" + }, + "54": { + "name": "PAGE" + }, + "55": { + "name": "PAGE" + }, + "56": { + "name": "PAGE" + }, + "57": { + "name": "PAGE" + }, + "58": { + "name": "PAGE" + }, + "59": { + "name": "PAGE" + }, + "60": { + "name": "PAGE" + }, + "61": { + "name": "PAGE" + }, + "62": { + "name": "PAGE" + }, + "63": { + "name": "PAGE" + }, + "64": { + "name": "PAGE" + }, + "65": { + "name": "PAGE" + }, + "66": { + "name": "PAGE" + }, + "67": { + "name": "PAGE" + }, + "68": { + "name": "PAGE" + }, + "69": { + "name": "PAGE" + }, + "70": { + "name": "PAGE" + }, + "71": { + "name": "PAGE" + }, + "72": { + "name": "PAGE" + }, + "73": { + "name": "PAGE" + }, + "74": { + "name": "PAGE" + }, + "75": { + "name": "PAGE" + }, + "76": { + "name": "PAGE" + }, + "77": { + "name": "PAGE" + }, + "78": { + "name": "PAGE" + }, + "79": { + "name": "PAGE" + }, + "80": { + "name": "PAGE" + }, + "81": { + "name": "PAGE" + }, + "82": { + "name": "PAGE" + }, + "83": { + "name": "PAGE" + }, + "84": { + "name": "PAGE" + }, + "85": { + "name": "PAGE" + }, + "86": { + "name": "PAGE" + }, + "87": { + "name": "PAGE" + }, + "88": { + "name": "PAGE" + }, + "89": { + "name": "PAGE" + }, + "90": { + "name": "PAGE" + }, + "91": { + "name": "PAGE" + }, + "92": { + "name": "PAGE" + }, + "93": { + "name": "PAGE" + }, + "94": { + "name": "PAGE" + }, + "95": { + "name": "PAGE" + }, + "96": { + "name": "PAGE" + }, + "97": { + "name": "PAGE" + }, + "98": { + "name": "PAGE" + }, + "99": { + "name": "PAGE" + } + }, + "page_config_version": 2, + "userconfig": { + "page_direction_flipped": false, + "artnet_enabled": false, + "artnet_universe": "1", + "artnet_channel": "1" + } +} \ No newline at end of file diff --git a/companion/test/Upgrade/v2tov3-upgradeStartup.test.ts b/companion/test/Upgrade/v2tov3-upgradeStartup.test.ts new file mode 100644 index 000000000..5c8591bb0 --- /dev/null +++ b/companion/test/Upgrade/v2tov3-upgradeStartup.test.ts @@ -0,0 +1,44 @@ +import { describe, it, expect } from 'vitest' +import { DataStoreBase, DatabaseDefault } from '../../lib/Data/StoreBase.js' +import LogController from '../../lib/Log/Controller.js' +import v2tov3 from '../../lib/Data/Upgrades/v2tov3.js' +import { createTables } from '../../lib/Data/Schema/v1.js' +import fs from 'fs-extra' + +function CreateDataDatabase() { + const db = new DataDatabase() + + let data = fs.readFileSync('./companion/test/Upgrade/v2tov3/db.v2.json', 'utf8') + data = JSON.parse(data) + + db.importTable('main', data) + + return db +} + +class DataDatabase extends DataStoreBase { + static Defaults: DatabaseDefault = { + main: { + page_config_version: 3, + }, + } + constructor() { + super(':memory:', '', 'main', 'Data/Database') + this.startSQLite() + } + protected create(): void { + createTables(this.store, this.defaultTable, this.logger) + } + protected loadDefaults(): void {} + protected migrateFileToSqlite(): void {} +} + +describe('upgrade', () => { + it('empty', () => { + const db = CreateDataDatabase() + v2tov3.upgradeStartup(db, LogController.createLogger('test-logger')) + let data = fs.readFileSync('./companion/test/Upgrade/v2tov3/db.v3.json', 'utf8') + data = JSON.parse(data) + expect(db.getTable('main')).toEqual(data) + }) +}) diff --git a/companion/test/Upgrade/v2tov3/db.v2.json b/companion/test/Upgrade/v2tov3/db.v2.json new file mode 100644 index 000000000..b66a52b2c --- /dev/null +++ b/companion/test/Upgrade/v2tov3/db.v2.json @@ -0,0 +1,12428 @@ +{ + "bank": { + "1": { + "1": { + "style": "pageup" + }, + "2": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "3": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "4": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "5": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "11": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "12": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "13": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": { + "style": "png", + "text": "TO 7", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "19": {}, + "20": { + "style": "png", + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "21": { + "style": "png", + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "2": { + "1": { + "style": "pageup" + }, + "2": { + "style": "png", + "text": "BLACK", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "3": { + "style": "png", + "text": "TIMER", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "4": { + "style": "png", + "text": "CLOCK", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "5": { + "style": "png", + "text": "TEST", + "size": "18", + "color": 16777215, + "bgcolor": 0 + }, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": { + "style": "png", + "text": "GO", + "size": "24", + "color": "16777215", + "bgcolor": 65280 + }, + "11": { + "style": "png", + "text": "PAUSE", + "size": "18", + "color": 0, + "bgcolor": 16776960 + }, + "12": { + "style": "png", + "text": "RESET", + "size": "18", + "color": 16777215, + "bgcolor": 255 + }, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": { + "style": "png", + "text": "SET\\n5 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "19": { + "style": "png", + "text": "SET\\n10 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "20": { + "style": "png", + "text": "SET\\n15 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255 + }, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "3": { + "1": { + "style": "pageup" + }, + "2": { + "style": "png", + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": false + }, + "3": { + "style": "png", + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": false + }, + "4": { + "style": "png", + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": false + }, + "5": { + "style": "png", + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": false + }, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": { + "style": "png", + "text": "$(shure-wx:ch_1_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": true + }, + "11": { + "style": "png", + "text": "$(shure-wx:ch_2_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": true + }, + "12": { + "style": "png", + "text": "$(shure-wx:ch_3_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": true + }, + "13": { + "style": "png", + "text": "$(shure-wx:ch_4_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false, + "show_topbar": "default", + "rotary_actions": true + }, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "4": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "5": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "6": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "7": { + "1": { + "style": "pageup" + }, + "2": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "3": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "4": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "5": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "relative_delay": false + }, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": { + "style": "png", + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "11": { + "style": "png", + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "12": { + "style": "png", + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "13": { + "style": "png", + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": { + "style": "png", + "text": "TO 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "relative_delay": false + }, + "19": {}, + "20": { + "style": "png", + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "21": { + "style": "png", + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "relative_delay": false + }, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "8": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "9": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "10": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "11": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "12": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "13": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "14": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "15": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "16": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "17": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "18": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "19": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "20": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "21": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "22": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "23": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "24": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "25": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "26": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "27": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "28": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "29": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "30": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "31": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "32": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "33": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "34": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "35": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "36": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "37": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "38": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "39": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "40": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "41": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "42": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "43": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "44": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "45": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "46": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "47": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "48": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "49": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "50": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "51": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "52": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "53": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "54": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "55": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "56": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "57": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "58": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "59": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "60": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "61": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "62": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "63": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "64": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "65": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "66": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "67": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "68": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "69": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "70": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "71": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "72": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "73": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "74": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "75": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "76": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "77": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "78": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "79": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "80": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "81": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "82": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "83": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "84": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "85": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "86": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "87": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "88": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "89": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "90": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "91": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "92": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "93": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "94": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "95": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "96": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "97": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "98": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + }, + "99": { + "1": { + "style": "pageup" + }, + "2": {}, + "3": {}, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": { + "style": "pagenum" + }, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": { + "style": "pagedown" + }, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {} + } + }, + "bank_actions": { + "1": { + "1": [], + "2": [ + { + "id": "SyCJfW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "ryPYfWQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "BJQcfWQRA", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "BJZsG-7CR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [ + { + "id": "H1EhG-70C", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "11": [ + { + "id": "SJp3z-QAA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "12": [ + { + "id": "SJ7CzbQCA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "13": [ + { + "id": "ryqAMbQC0", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [ + { + "id": "H15rmb7RC", + "label": "bitfocus-companion:set_page", + "instance": "bitfocus-companion", + "action": "set_page", + "options": { + "controller": "self", + "page": "7" + } + } + ], + "19": [], + "20": [ + { + "id": "B1U17ZX00", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "21": [ + { + "id": "ryYx7bQAR", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "2": { + "1": [], + "2": [ + { + "action": "displayM", + "options": { + "mode": "BLACK" + }, + "id": "B1Z4VdDDR0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "3": [ + { + "action": "displayM", + "options": { + "mode": "TIMER" + }, + "id": "BkZL4OvDAA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "4": [ + { + "action": "displayM", + "options": { + "mode": "CLOCK" + }, + "id": "SyZ_V_wP00", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "5": [ + { + "action": "displayM", + "options": { + "mode": "TEST" + }, + "id": "rkbYVOvwRR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [ + { + "action": "go", + "id": "rye-HuPw0R", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:go" + } + ], + "11": [ + { + "action": "pause", + "id": "Hyx7SdwPA0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:pause" + } + ], + "12": [ + { + "action": "reset", + "id": "SyxEHdDPCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:reset" + } + ], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [ + { + "action": "resetT", + "options": { + "time": "5" + }, + "id": "r1xLrdvwCA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "19": [ + { + "action": "resetT", + "options": { + "time": "10" + }, + "id": "rye_SuDv0C", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "20": [ + { + "action": "resetT", + "options": { + "time": "15" + }, + "id": "rJetr_vwCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "3": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "4": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "5": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "6": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "7": { + "1": [], + "2": [ + { + "id": "H1tV7bQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "HkZt4mW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "SJmFV7Z7R0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "BJrY4XZX00", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [ + { + "id": "rywt47-QAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "11": [ + { + "id": "rJOtVQZXRC", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "12": [ + { + "id": "SkKYNXZmAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "13": [ + { + "id": "rJ5KEQ-70R", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [ + { + "id": "r1W_7ZXRR", + "label": "bitfocus-companion:set_page", + "instance": "bitfocus-companion", + "action": "set_page", + "options": { + "controller": "self", + "page": "1" + } + } + ], + "19": [], + "20": [ + { + "id": "SJjFEQb70R", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "21": [ + { + "id": "Hk3F4XWQ00", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "8": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "9": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "10": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "11": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "12": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "13": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "14": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "15": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "16": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "17": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "18": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "19": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "20": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "21": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "22": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "23": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "24": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "25": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "26": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "27": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "28": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "29": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "30": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "31": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "32": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "33": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "34": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "35": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "36": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "37": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "38": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "39": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "40": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "41": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "42": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "43": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "44": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "45": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "46": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "47": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "48": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "49": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "50": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "51": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "52": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "53": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "54": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "55": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "56": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "57": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "58": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "59": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "60": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "61": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "62": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "63": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "64": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "65": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "66": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "67": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "68": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "69": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "70": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "71": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "72": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "73": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "74": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "75": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "76": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "77": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "78": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "79": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "80": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "81": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "82": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "83": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "84": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "85": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "86": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "87": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "88": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "89": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "90": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "91": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "92": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "93": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "94": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "95": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "96": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "97": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "98": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "99": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + } + }, + "bank_release_actions": { + "1": { + "1": [], + "2": [ + { + "id": "HkN_f-7AC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "ByePFMWQA0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "BkxQ9GZ7RR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "BJgbiGWmCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "2": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "3": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "4": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "5": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "6": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "7": { + "1": [], + "2": [ + { + "id": "rylYNmbQ0R", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "3": [ + { + "id": "BJzKE7-XCR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "4": [ + { + "id": "r1EY47bmAC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "5": [ + { + "id": "ByIYVQ-mCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "8": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "9": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "10": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "11": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "12": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "13": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "14": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "15": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "16": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "17": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "18": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "19": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "20": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "21": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "22": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "23": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "24": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "25": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "26": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "27": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "28": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "29": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "30": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "31": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "32": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "33": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "34": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "35": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "36": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "37": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "38": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "39": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "40": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "41": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "42": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "43": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "44": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "45": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "46": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "47": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "48": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "49": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "50": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "51": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "52": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "53": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "54": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "55": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "56": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "57": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "58": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "59": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "60": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "61": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "62": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "63": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "64": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "65": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "66": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "67": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "68": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "69": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "70": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "71": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "72": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "73": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "74": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "75": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "76": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "77": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "78": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "79": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "80": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "81": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "82": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "83": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "84": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "85": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "86": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "87": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "88": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "89": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "90": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "91": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "92": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "93": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "94": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "95": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "96": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "97": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "98": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + }, + "99": { + "1": [], + "2": [], + "3": [], + "4": [], + "5": [], + "6": [], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [], + "17": [], + "18": [], + "19": [], + "20": [], + "21": [], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "28": [], + "29": [], + "30": [], + "31": [], + "32": [] + } + }, + "deviceconfig": { + "emulator": { + "page": 1, + "config": { + "brightness": 100, + "rotation": 0, + "use_last_page": true, + "page": 1, + "xOffset": 0, + "yOffset": 0 + } + } + }, + "feedbacks": { + "1": { + "19": [] + }, + "2": { + "2": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "BLACK" + }, + "id": "SJGEVuwv0C", + "instance_id": "SkQQuDPAA" + } + ], + "3": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TIMER" + }, + "id": "SyM84_PwCC", + "instance_id": "SkQQuDPAA" + } + ], + "4": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "CLOCK" + }, + "id": "rkf_NuPP00", + "instance_id": "SkQQuDPAA" + } + ], + "5": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TEST" + }, + "id": "SJMKEdDwAR", + "instance_id": "SkQQuDPAA" + } + ] + }, + "3": { + "2": [ + { + "id": "2mrnQVNQV", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": "1", + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ], + "3": [ + { + "id": "LZSNnLfl2", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 2, + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ], + "4": [ + { + "id": "sTGxRCfgw", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 3, + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ], + "5": [ + { + "id": "G4EQHsB2T", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 4, + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ], + "10": [], + "11": [], + "12": [], + "13": [] + }, + "4": {}, + "5": {}, + "6": {}, + "7": {}, + "8": {}, + "9": {}, + "10": {}, + "11": {}, + "12": {}, + "13": {}, + "14": {}, + "15": {}, + "16": {}, + "17": {}, + "18": {}, + "19": {}, + "20": {}, + "21": {}, + "22": {}, + "23": {}, + "24": {}, + "25": {}, + "26": {}, + "27": {}, + "28": {}, + "29": {}, + "30": {}, + "31": {}, + "32": {}, + "33": {}, + "34": {}, + "35": {}, + "36": {}, + "37": {}, + "38": {}, + "39": {}, + "40": {}, + "41": {}, + "42": {}, + "43": {}, + "44": {}, + "45": {}, + "46": {}, + "47": {}, + "48": {}, + "49": {}, + "50": {}, + "51": {}, + "52": {}, + "53": {}, + "54": {}, + "55": {}, + "56": {}, + "57": {}, + "58": {}, + "59": {}, + "60": {}, + "61": {}, + "62": {}, + "63": {}, + "64": {}, + "65": {}, + "66": {}, + "67": {}, + "68": {}, + "69": {}, + "70": {}, + "71": {}, + "72": {}, + "73": {}, + "74": {}, + "75": {}, + "76": {}, + "77": {}, + "78": {}, + "79": {}, + "80": {}, + "81": {}, + "82": {}, + "83": {}, + "84": {}, + "85": {}, + "86": {}, + "87": {}, + "88": {}, + "89": {}, + "90": {}, + "91": {}, + "92": {}, + "93": {}, + "94": {}, + "95": {}, + "96": {}, + "97": {}, + "98": {}, + "99": {} + }, + "instance": { + "bitfocus-companion": { + "instance_type": "bitfocus-companion", + "label": "internal", + "id": "bitfocus-companion", + "_configIdx": 2 + }, + "rJDPWbmC0": { + "instance_type": "bmd-atem", + "label": "atem", + "host": "127.0.0.1", + "enabled": true, + "modelID": "0", + "_configIdx": 3 + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "host": "127.0.0.1", + "enabled": true + }, + "CUBzwfGYP": { + "instance_type": "shure-wireless", + "product": "Axient Digital (AD)", + "label": "shure-wx", + "_configIdx": 0, + "port": 2202, + "modelID": "ad4q", + "meteringOn": true, + "meteringInterval": 5000, + "host": "127.0.0.1" + } + }, + "page": { + "1": { + "name": "ATEM 1" + }, + "2": { + "name": "TIMER" + }, + "3": { + "name": "AXIENT" + }, + "4": { + "name": "PAGE" + }, + "5": { + "name": "PAGE" + }, + "6": { + "name": "PAGE" + }, + "7": { + "name": "ATEM 2" + }, + "8": { + "name": "PAGE" + }, + "9": { + "name": "PAGE" + }, + "10": { + "name": "PAGE" + }, + "11": { + "name": "PAGE" + }, + "12": { + "name": "PAGE" + }, + "13": { + "name": "PAGE" + }, + "14": { + "name": "PAGE" + }, + "15": { + "name": "PAGE" + }, + "16": { + "name": "PAGE" + }, + "17": { + "name": "PAGE" + }, + "18": { + "name": "PAGE" + }, + "19": { + "name": "PAGE" + }, + "20": { + "name": "PAGE" + }, + "21": { + "name": "PAGE" + }, + "22": { + "name": "PAGE" + }, + "23": { + "name": "PAGE" + }, + "24": { + "name": "PAGE" + }, + "25": { + "name": "PAGE" + }, + "26": { + "name": "PAGE" + }, + "27": { + "name": "PAGE" + }, + "28": { + "name": "PAGE" + }, + "29": { + "name": "PAGE" + }, + "30": { + "name": "PAGE" + }, + "31": { + "name": "PAGE" + }, + "32": { + "name": "PAGE" + }, + "33": { + "name": "PAGE" + }, + "34": { + "name": "PAGE" + }, + "35": { + "name": "PAGE" + }, + "36": { + "name": "PAGE" + }, + "37": { + "name": "PAGE" + }, + "38": { + "name": "PAGE" + }, + "39": { + "name": "PAGE" + }, + "40": { + "name": "PAGE" + }, + "41": { + "name": "PAGE" + }, + "42": { + "name": "PAGE" + }, + "43": { + "name": "PAGE" + }, + "44": { + "name": "PAGE" + }, + "45": { + "name": "PAGE" + }, + "46": { + "name": "PAGE" + }, + "47": { + "name": "PAGE" + }, + "48": { + "name": "PAGE" + }, + "49": { + "name": "PAGE" + }, + "50": { + "name": "PAGE" + }, + "51": { + "name": "PAGE" + }, + "52": { + "name": "PAGE" + }, + "53": { + "name": "PAGE" + }, + "54": { + "name": "PAGE" + }, + "55": { + "name": "PAGE" + }, + "56": { + "name": "PAGE" + }, + "57": { + "name": "PAGE" + }, + "58": { + "name": "PAGE" + }, + "59": { + "name": "PAGE" + }, + "60": { + "name": "PAGE" + }, + "61": { + "name": "PAGE" + }, + "62": { + "name": "PAGE" + }, + "63": { + "name": "PAGE" + }, + "64": { + "name": "PAGE" + }, + "65": { + "name": "PAGE" + }, + "66": { + "name": "PAGE" + }, + "67": { + "name": "PAGE" + }, + "68": { + "name": "PAGE" + }, + "69": { + "name": "PAGE" + }, + "70": { + "name": "PAGE" + }, + "71": { + "name": "PAGE" + }, + "72": { + "name": "PAGE" + }, + "73": { + "name": "PAGE" + }, + "74": { + "name": "PAGE" + }, + "75": { + "name": "PAGE" + }, + "76": { + "name": "PAGE" + }, + "77": { + "name": "PAGE" + }, + "78": { + "name": "PAGE" + }, + "79": { + "name": "PAGE" + }, + "80": { + "name": "PAGE" + }, + "81": { + "name": "PAGE" + }, + "82": { + "name": "PAGE" + }, + "83": { + "name": "PAGE" + }, + "84": { + "name": "PAGE" + }, + "85": { + "name": "PAGE" + }, + "86": { + "name": "PAGE" + }, + "87": { + "name": "PAGE" + }, + "88": { + "name": "PAGE" + }, + "89": { + "name": "PAGE" + }, + "90": { + "name": "PAGE" + }, + "91": { + "name": "PAGE" + }, + "92": { + "name": "PAGE" + }, + "93": { + "name": "PAGE" + }, + "94": { + "name": "PAGE" + }, + "95": { + "name": "PAGE" + }, + "96": { + "name": "PAGE" + }, + "97": { + "name": "PAGE" + }, + "98": { + "name": "PAGE" + }, + "99": { + "name": "PAGE" + } + }, + "page_config_version": 2, + "userconfig": { + "page_direction_flipped": false, + "artnet_enabled": false, + "artnet_universe": "1", + "artnet_channel": "1", + "emulator_control_enable": false, + "rosstalk_enabled": false, + "tcp_enabled": true, + "tcp_listen_port": 51234, + "udp_enabled": true, + "udp_listen_port": 51235, + "osc_enabled": true, + "osc_listen_port": 12321, + "emberplus_enabled": true, + "xkeys_enable": false, + "setup_wizard": 22, + "page_plusminus": false, + "remove_topbar": false, + "elgato_plugin_enable": false, + "loupedeck_enable": false, + "pin_enable": false, + "link_lockouts": false, + "pin": "", + "pin_timeout": 0, + "https_enabled": false, + "https_port": 8443, + "https_cert_type": "self", + "https_self_cn": "127.0.0.1", + "https_self_expiry": 365, + "https_self_cert": "", + "https_self_cert_created": "", + "https_self_cert_cn": "", + "https_self_cert_expiry": "", + "https_self_cert_private": "", + "https_self_cert_public": "", + "https_ext_private_key": "", + "https_ext_certificate": "", + "https_ext_chain": "", + "admin_lockout": false, + "admin_timeout": 5, + "admin_password": "" + }, + "scheduler": [ + { + "title": "ch1 off", + "type": "feedback", + "config": [ + { + "id": "aue_2DMsn", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": "1" + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "last_run": 1727662199315, + "disabled": false, + "actions": [ + { + "id": "ygG48-DI2", + "label": "bitfocus-companion:button_pressrelease", + "instance": "bitfocus-companion", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 18 + }, + "delay": 0 + } + ], + "id": 1, + "config_desc": "Runs on feedbacks shure-wx: Transmitter Turned Off." + }, + { + "title": "ch2 off", + "type": "feedback", + "config": [ + { + "id": "6MqZzuLiF7", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 2 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "last_run": 1727662209694, + "disabled": false, + "actions": [ + { + "id": "viJx8eXsz", + "label": "bitfocus-companion:button_pressrelease", + "instance": "bitfocus-companion", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 19 + }, + "delay": 0 + } + ], + "id": 2, + "config_desc": "Runs on feedbacks shure-wx: Transmitter Turned Off." + }, + { + "title": "ch3 off", + "type": "feedback", + "config": [ + { + "id": "dmEr4_iWKY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 3 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "last_run": 1727662220426, + "disabled": false, + "actions": [ + { + "id": "snrIRJa57", + "label": "bitfocus-companion:button_pressrelease", + "instance": "bitfocus-companion", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 20 + }, + "delay": 0 + } + ], + "id": 3, + "config_desc": "Runs on feedbacks shure-wx: Transmitter Turned Off." + }, + { + "title": "ch4 off", + "type": "feedback", + "config": [ + { + "id": "XFGSRo6TaY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 4 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "last_run": 1727662232343, + "disabled": false, + "actions": [ + { + "id": "6-R51HKMl", + "label": "bitfocus-companion:button_pressrelease", + "instance": "bitfocus-companion", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 21 + }, + "delay": 0 + } + ], + "id": 4, + "config_desc": "Runs on feedbacks shure-wx: Transmitter Turned Off." + }, + { + "title": "instances OK", + "type": "feedback", + "config": [ + { + "id": "02M4Y1Npt", + "type": "variable_value", + "instance_id": "bitfocus-companion", + "options": { + "variable": "internal:instance_oks", + "op": "eq", + "value": "3" + } + } + ], + "last_run": null, + "disabled": true, + "actions": [ + { + "id": "V996dYQmN", + "label": "bitfocus-companion:exec", + "instance": "bitfocus-companion", + "action": "exec", + "options": { + "timeout": 5000, + "targetVariable": "", + "path": "/test/path.sh" + }, + "delay": 0 + } + ], + "id": 5, + "config_desc": "Runs on feedbacks internal: Check variable value." + } + ], + "bank_rotate_left_actions": { + "3": { + "2": [], + "3": [], + "4": [], + "5": [], + "10": [ + { + "id": "WMuuQK_TA", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": "1", + "gain": 1 + }, + "delay": 0 + } + ], + "11": [ + { + "id": "UWo3wr55G", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": 2, + "gain": 1 + }, + "delay": 0 + } + ], + "12": [ + { + "id": "T4pz3FGF0", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": 3, + "gain": 1 + }, + "delay": 0 + } + ], + "13": [ + { + "id": "G9c2ffMcO", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": 4, + "gain": 1 + }, + "delay": 0 + } + ] + } + }, + "bank_rotate_right_actions": { + "3": { + "2": [], + "3": [], + "4": [], + "5": [], + "10": [ + { + "id": "Aa323-NLE", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": "1", + "gain": 1 + }, + "delay": 0 + } + ], + "11": [ + { + "id": "gIYFjwqgEQ", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": 2, + "gain": 1 + }, + "delay": 0 + } + ], + "12": [ + { + "id": "iBAa7LmIly", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": 3, + "gain": 1 + }, + "delay": 0 + } + ], + "13": [ + { + "id": "KDSZaWjN-O", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": 4, + "gain": 1 + }, + "delay": 0 + } + ] + } + }, + "custom_variables": { + "test1": { + "description": "A custom variable", + "defaultValue": "5", + "persistCurrentValue": false + }, + "test2": { + "description": "A custom variable", + "defaultValue": "3", + "persistCurrentValue": true + } + } +} \ No newline at end of file diff --git a/companion/test/Upgrade/v2tov3/db.v3.json b/companion/test/Upgrade/v2tov3/db.v3.json new file mode 100644 index 000000000..3f0bab92e --- /dev/null +++ b/companion/test/Upgrade/v2tov3/db.v3.json @@ -0,0 +1,8010 @@ +{ + "custom_variables": { + "test1": { + "description": "A custom variable", + "defaultValue": "5", + "persistCurrentValue": false + }, + "test2": { + "description": "A custom variable", + "defaultValue": "3", + "persistCurrentValue": true + } + }, + "controls": { + "bank:1-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-2": { + "style": { + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "SyCJfW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "HkN_f-7AC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-3": { + "style": { + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "ryPYfWQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "ByePFMWQA0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-4": { + "style": { + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "BJQcfWQRA", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "BkxQ9GZ7RR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-5": { + "style": { + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "BJZsG-7CR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "BJgbiGWmCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-10": { + "style": { + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "H1EhG-70C", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-11": { + "style": { + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "SJp3z-QAA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-12": { + "style": { + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "SJ7CzbQCA", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-13": { + "style": { + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "ryqAMbQC0", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-18": { + "style": { + "text": "TO 7", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "H15rmb7RC", + "label": "bitfocus-companion:set_page", + "instance": "internal", + "action": "set_page", + "options": { + "controller": "self", + "page": "7" + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-20": { + "style": { + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "B1U17ZX00", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:1-21": { + "style": { + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "ryYx7bQAR", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-2": { + "style": { + "text": "BLACK", + "size": "18", + "color": 16777215, + "bgcolor": 0, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "displayM", + "options": { + "mode": "BLACK" + }, + "id": "B1Z4VdDDR0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "up": [] + } + } + }, + "feedbacks": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "BLACK" + }, + "id": "SJGEVuwv0C", + "instance_id": "SkQQuDPAA" + } + ] + }, + "bank:2-3": { + "style": { + "text": "TIMER", + "size": "18", + "color": 16777215, + "bgcolor": 0, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "displayM", + "options": { + "mode": "TIMER" + }, + "id": "BkZL4OvDAA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "up": [] + } + } + }, + "feedbacks": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TIMER" + }, + "id": "SyM84_PwCC", + "instance_id": "SkQQuDPAA" + } + ] + }, + "bank:2-4": { + "style": { + "text": "CLOCK", + "size": "18", + "color": 16777215, + "bgcolor": 0, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "displayM", + "options": { + "mode": "CLOCK" + }, + "id": "SyZ_V_wP00", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "up": [] + } + } + }, + "feedbacks": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "CLOCK" + }, + "id": "rkf_NuPP00", + "instance_id": "SkQQuDPAA" + } + ] + }, + "bank:2-5": { + "style": { + "text": "TEST", + "size": "18", + "color": 16777215, + "bgcolor": 0, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "displayM", + "options": { + "mode": "TEST" + }, + "id": "rkbYVOvwRR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:displayM" + } + ], + "up": [] + } + } + }, + "feedbacks": [ + { + "type": "mode_color", + "options": { + "bg": 255, + "fg": 16777215, + "mode": "TEST" + }, + "id": "SJMKEdDwAR", + "instance_id": "SkQQuDPAA" + } + ] + }, + "bank:2-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-10": { + "style": { + "text": "GO", + "size": "24", + "color": "16777215", + "bgcolor": 65280, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "go", + "id": "rye-HuPw0R", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:go" + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-11": { + "style": { + "text": "PAUSE", + "size": "18", + "color": 0, + "bgcolor": 16776960, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "pause", + "id": "Hyx7SdwPA0", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:pause" + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-12": { + "style": { + "text": "RESET", + "size": "18", + "color": 16777215, + "bgcolor": 255, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "reset", + "id": "SyxEHdDPCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:reset" + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-18": { + "style": { + "text": "SET\\n5 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "resetT", + "options": { + "time": "5" + }, + "id": "r1xLrdvwCA", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-19": { + "style": { + "text": "SET\\n10 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "resetT", + "options": { + "time": "10" + }, + "id": "rye_SuDv0C", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:2-20": { + "style": { + "text": "SET\\n15 MIN", + "size": "18", + "color": "16777215", + "bgcolor": 255, + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "action": "resetT", + "options": { + "time": "15" + }, + "id": "rJetr_vwCR", + "instance": "SkQQuDPAA", + "label": "SkQQuDPAA:resetT" + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:3-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:3-2": { + "style": { + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [ + { + "id": "2mrnQVNQV", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": "1", + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ] + }, + "bank:3-3": { + "style": { + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [ + { + "id": "LZSNnLfl2", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 2, + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ] + }, + "bank:3-4": { + "style": { + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [ + { + "id": "sTGxRCfgw", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 3, + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ] + }, + "bank:3-5": { + "style": { + "text": "", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [ + { + "id": "G4EQHsB2T", + "type": "sample", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 4, + "labels": [ + "name", + "frequency", + "txType", + "txPowerLevel" + ], + "icons": [ + "battery", + "locks", + "rf", + "audio", + "encryption", + "quality" + ], + "barlevel": 2 + }, + "style": {} + } + ] + }, + "bank:3-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:3-10": { + "style": { + "text": "$(shure-wx:ch_1_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": true, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [], + "rotate_left": [ + { + "id": "WMuuQK_TA", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": "1", + "gain": 1 + }, + "delay": 0 + } + ], + "rotate_right": [ + { + "id": "Aa323-NLE", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": "1", + "gain": 1 + }, + "delay": 0 + } + ] + } + } + }, + "feedbacks": [] + }, + "bank:3-11": { + "style": { + "text": "$(shure-wx:ch_2_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": true, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [], + "rotate_left": [ + { + "id": "UWo3wr55G", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": 2, + "gain": 1 + }, + "delay": 0 + } + ], + "rotate_right": [ + { + "id": "gIYFjwqgEQ", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": 2, + "gain": 1 + }, + "delay": 0 + } + ] + } + } + }, + "feedbacks": [] + }, + "bank:3-12": { + "style": { + "text": "$(shure-wx:ch_3_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": true, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [], + "rotate_left": [ + { + "id": "T4pz3FGF0", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": 3, + "gain": 1 + }, + "delay": 0 + } + ], + "rotate_right": [ + { + "id": "iBAa7LmIly", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": 3, + "gain": 1 + }, + "delay": 0 + } + ] + } + } + }, + "feedbacks": [] + }, + "bank:3-13": { + "style": { + "text": "$(shure-wx:ch_4_audio_gain) ", + "size": "auto", + "alignment": "center:center", + "pngalignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": true, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [], + "rotate_left": [ + { + "id": "G9c2ffMcO", + "label": "CUBzwfGYP:channel_decreasegain", + "instance": "CUBzwfGYP", + "action": "channel_decreasegain", + "options": { + "channel": 4, + "gain": 1 + }, + "delay": 0 + } + ], + "rotate_right": [ + { + "id": "KDSZaWjN-O", + "label": "CUBzwfGYP:channel_increasegain", + "instance": "CUBzwfGYP", + "action": "channel_increasegain", + "options": { + "channel": 4, + "gain": 1 + }, + "delay": 0 + } + ] + } + } + }, + "feedbacks": [] + }, + "bank:3-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:4-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:4-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:4-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:5-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:5-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:5-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:6-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:6-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:6-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-2": { + "style": { + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "H1tV7bQCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "rylYNmbQ0R", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-3": { + "style": { + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "HkZt4mW7RC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "BJzKE7-XCR", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-4": { + "style": { + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "SJmFV7Z7R0", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "r1EY47bmAC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-5": { + "style": { + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": true, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "BJrY4XZX00", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "up": [] + } + }, + "1": { + "action_sets": { + "down": [ + { + "id": "ByIYVQ-mCC", + "label": "rJDPWbmC0:program", + "instance": "rJDPWbmC0", + "action": "program", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-10": { + "style": { + "text": "Input 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "rywt47-QAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": 1, + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-11": { + "style": { + "text": "Input 2", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "rJOtVQZXRC", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "2", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-12": { + "style": { + "text": "Input 3", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "SkKYNXZmAR", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "3", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-13": { + "style": { + "text": "Input 4", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "rJ5KEQ-70R", + "label": "rJDPWbmC0:preview", + "instance": "rJDPWbmC0", + "action": "preview", + "options": { + "input": "4", + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-18": { + "style": { + "text": "TO 1", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 0, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "r1W_7ZXRR", + "label": "bitfocus-companion:set_page", + "instance": "internal", + "action": "set_page", + "options": { + "controller": "self", + "page": "1" + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-20": { + "style": { + "text": "Cut", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "SJjFEQb70R", + "label": "rJDPWbmC0:cut", + "instance": "rJDPWbmC0", + "action": "cut", + "options": { + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:7-21": { + "style": { + "text": "Auto", + "size": "auto", + "alignment": "center:center", + "color": 16777215, + "bgcolor": 13369344, + "latch": false, + "show_topbar": "default" + }, + "options": { + "relativeDelay": false, + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "button", + "steps": { + "0": { + "action_sets": { + "down": [ + { + "id": "Hk3F4XWQ00", + "label": "rJDPWbmC0:auto", + "instance": "rJDPWbmC0", + "action": "auto", + "options": { + "mixeffect": 0 + } + } + ], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:8-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:8-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:8-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:9-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:9-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:9-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:10-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:10-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:10-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:11-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:11-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:11-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:12-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:12-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:12-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:13-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:13-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:13-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:14-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:14-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:14-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:15-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:15-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:15-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:16-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:16-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:16-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:17-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:17-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:17-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:18-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:18-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:18-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:19-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:19-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:19-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:20-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:20-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:20-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:21-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:21-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:21-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:22-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:22-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:22-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:23-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:23-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:23-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:24-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:24-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:24-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:25-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:25-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:25-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:26-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:26-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:26-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:27-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:27-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:27-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:28-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:28-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:28-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:29-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:29-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:29-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:30-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:30-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:30-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:31-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:31-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:31-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:32-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:32-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:32-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:33-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:33-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:33-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:34-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:34-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:34-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:35-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:35-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:35-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:36-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:36-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:36-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:37-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:37-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:37-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:38-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:38-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:38-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:39-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:39-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:39-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:40-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:40-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:40-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:41-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:41-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:41-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:42-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:42-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:42-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:43-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:43-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:43-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:44-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:44-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:44-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:45-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:45-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:45-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:46-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:46-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:46-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:47-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:47-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:47-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:48-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:48-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:48-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:49-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:49-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:49-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:50-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:50-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:50-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:51-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:51-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:51-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:52-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:52-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:52-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:53-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:53-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:53-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:54-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:54-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:54-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:55-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:55-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:55-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:56-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:56-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:56-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:57-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:57-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:57-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:58-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:58-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:58-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:59-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:59-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:59-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:60-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:60-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:60-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:61-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:61-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:61-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:62-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:62-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:62-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:63-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:63-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:63-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:64-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:64-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:64-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:65-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:65-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:65-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:66-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:66-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:66-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:67-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:67-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:67-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:68-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:68-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:68-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:69-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:69-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:69-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:70-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:70-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:70-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:71-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:71-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:71-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:72-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:72-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:72-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:73-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:73-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:73-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:74-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:74-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:74-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:75-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:75-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:75-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:76-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:76-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:76-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:77-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:77-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:77-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:78-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:78-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:78-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:79-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:79-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:79-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:80-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:80-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:80-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:81-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:81-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:81-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:82-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:82-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:82-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:83-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:83-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:83-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:84-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:84-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:84-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:85-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:85-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:85-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:86-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:86-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:86-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:87-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:87-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:87-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:88-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:88-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:88-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:89-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:89-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:89-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:90-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:90-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:90-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:91-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:91-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:91-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:92-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:92-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:92-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:93-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:93-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:93-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:94-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:94-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:94-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:95-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:95-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:95-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:96-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:96-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:96-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:97-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:97-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:97-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:98-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:98-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:98-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:99-1": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pageup", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:99-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "bank:99-17": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagedown", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "feedbacks": [] + }, + "trigger:1": { + "type": "trigger", + "options": { + "name": "ch1 off", + "enabled": true, + "sortOrder": 0, + "relativeDelay": false + }, + "action_sets": { + "0": [ + { + "id": "ygG48-DI2", + "label": "bitfocus-companion:button_pressrelease", + "instance": "internal", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 18 + }, + "delay": 0 + } + ] + }, + "condition": [ + { + "id": "aue_2DMsn", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": "1" + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "KiU0BPUfMU-cYjM0xozCZ", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + }, + "trigger:2": { + "type": "trigger", + "options": { + "name": "ch2 off", + "enabled": true, + "sortOrder": 1, + "relativeDelay": false + }, + "action_sets": { + "0": [ + { + "id": "viJx8eXsz", + "label": "bitfocus-companion:button_pressrelease", + "instance": "internal", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 19 + }, + "delay": 0 + } + ] + }, + "condition": [ + { + "id": "6MqZzuLiF7", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 2 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "eO9OJTkrh2RhxmvZBa2dW", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + }, + "trigger:3": { + "type": "trigger", + "options": { + "name": "ch3 off", + "enabled": true, + "sortOrder": 2, + "relativeDelay": false + }, + "action_sets": { + "0": [ + { + "id": "snrIRJa57", + "label": "bitfocus-companion:button_pressrelease", + "instance": "internal", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 20 + }, + "delay": 0 + } + ] + }, + "condition": [ + { + "id": "dmEr4_iWKY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 3 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "Ta3miKFDORmM2S_ZnJ_rd", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + }, + "trigger:4": { + "type": "trigger", + "options": { + "name": "ch4 off", + "enabled": true, + "sortOrder": 3, + "relativeDelay": false + }, + "action_sets": { + "0": [ + { + "id": "6-R51HKMl", + "label": "bitfocus-companion:button_pressrelease", + "instance": "internal", + "action": "button_pressrelease", + "options": { + "page": 3, + "bank": 21 + }, + "delay": 0 + } + ] + }, + "condition": [ + { + "id": "XFGSRo6TaY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 4 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "zqerXNog5XmOmcsL7eOvW", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + }, + "trigger:5": { + "type": "trigger", + "options": { + "name": "instances OK", + "enabled": false, + "sortOrder": 4, + "relativeDelay": false + }, + "action_sets": { + "0": [ + { + "id": "V996dYQmN", + "label": "bitfocus-companion:exec", + "instance": "internal", + "action": "exec", + "options": { + "timeout": 5000, + "targetVariable": "", + "path": "/test/path.sh" + }, + "delay": 0 + } + ] + }, + "condition": [ + { + "id": "02M4Y1Npt", + "type": "variable_value", + "instance_id": "internal", + "options": { + "variable": "internal:instance_oks", + "op": "eq", + "value": "3" + } + } + ], + "events": [ + { + "id": "xkNlWpOuSIlArXKrqiJM3", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + } + }, + "deviceconfig": { + "emulator": { + "page": 1, + "config": { + "brightness": 100, + "rotation": 0, + "use_last_page": true, + "page": 1, + "xOffset": 0, + "yOffset": 0 + } + } + }, + "instance": { + "rJDPWbmC0": { + "instance_type": "bmd-atem", + "label": "atem", + "enabled": true, + "config": { + "host": "127.0.0.1", + "modelID": "0" + }, + "lastUpgradeIndex": 3, + "sortOrder": 0 + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "enabled": true, + "config": { + "host": "127.0.0.1" + }, + "sortOrder": 1 + }, + "CUBzwfGYP": { + "instance_type": "shure-wireless", + "label": "shure-wx", + "config": { + "product": "Axient Digital (AD)", + "port": 2202, + "modelID": "ad4q", + "meteringOn": true, + "meteringInterval": 5000, + "host": "127.0.0.1" + }, + "lastUpgradeIndex": 0, + "sortOrder": 2 + } + }, + "page": { + "1": { + "name": "ATEM 1" + }, + "2": { + "name": "TIMER" + }, + "3": { + "name": "AXIENT" + }, + "4": { + "name": "PAGE" + }, + "5": { + "name": "PAGE" + }, + "6": { + "name": "PAGE" + }, + "7": { + "name": "ATEM 2" + }, + "8": { + "name": "PAGE" + }, + "9": { + "name": "PAGE" + }, + "10": { + "name": "PAGE" + }, + "11": { + "name": "PAGE" + }, + "12": { + "name": "PAGE" + }, + "13": { + "name": "PAGE" + }, + "14": { + "name": "PAGE" + }, + "15": { + "name": "PAGE" + }, + "16": { + "name": "PAGE" + }, + "17": { + "name": "PAGE" + }, + "18": { + "name": "PAGE" + }, + "19": { + "name": "PAGE" + }, + "20": { + "name": "PAGE" + }, + "21": { + "name": "PAGE" + }, + "22": { + "name": "PAGE" + }, + "23": { + "name": "PAGE" + }, + "24": { + "name": "PAGE" + }, + "25": { + "name": "PAGE" + }, + "26": { + "name": "PAGE" + }, + "27": { + "name": "PAGE" + }, + "28": { + "name": "PAGE" + }, + "29": { + "name": "PAGE" + }, + "30": { + "name": "PAGE" + }, + "31": { + "name": "PAGE" + }, + "32": { + "name": "PAGE" + }, + "33": { + "name": "PAGE" + }, + "34": { + "name": "PAGE" + }, + "35": { + "name": "PAGE" + }, + "36": { + "name": "PAGE" + }, + "37": { + "name": "PAGE" + }, + "38": { + "name": "PAGE" + }, + "39": { + "name": "PAGE" + }, + "40": { + "name": "PAGE" + }, + "41": { + "name": "PAGE" + }, + "42": { + "name": "PAGE" + }, + "43": { + "name": "PAGE" + }, + "44": { + "name": "PAGE" + }, + "45": { + "name": "PAGE" + }, + "46": { + "name": "PAGE" + }, + "47": { + "name": "PAGE" + }, + "48": { + "name": "PAGE" + }, + "49": { + "name": "PAGE" + }, + "50": { + "name": "PAGE" + }, + "51": { + "name": "PAGE" + }, + "52": { + "name": "PAGE" + }, + "53": { + "name": "PAGE" + }, + "54": { + "name": "PAGE" + }, + "55": { + "name": "PAGE" + }, + "56": { + "name": "PAGE" + }, + "57": { + "name": "PAGE" + }, + "58": { + "name": "PAGE" + }, + "59": { + "name": "PAGE" + }, + "60": { + "name": "PAGE" + }, + "61": { + "name": "PAGE" + }, + "62": { + "name": "PAGE" + }, + "63": { + "name": "PAGE" + }, + "64": { + "name": "PAGE" + }, + "65": { + "name": "PAGE" + }, + "66": { + "name": "PAGE" + }, + "67": { + "name": "PAGE" + }, + "68": { + "name": "PAGE" + }, + "69": { + "name": "PAGE" + }, + "70": { + "name": "PAGE" + }, + "71": { + "name": "PAGE" + }, + "72": { + "name": "PAGE" + }, + "73": { + "name": "PAGE" + }, + "74": { + "name": "PAGE" + }, + "75": { + "name": "PAGE" + }, + "76": { + "name": "PAGE" + }, + "77": { + "name": "PAGE" + }, + "78": { + "name": "PAGE" + }, + "79": { + "name": "PAGE" + }, + "80": { + "name": "PAGE" + }, + "81": { + "name": "PAGE" + }, + "82": { + "name": "PAGE" + }, + "83": { + "name": "PAGE" + }, + "84": { + "name": "PAGE" + }, + "85": { + "name": "PAGE" + }, + "86": { + "name": "PAGE" + }, + "87": { + "name": "PAGE" + }, + "88": { + "name": "PAGE" + }, + "89": { + "name": "PAGE" + }, + "90": { + "name": "PAGE" + }, + "91": { + "name": "PAGE" + }, + "92": { + "name": "PAGE" + }, + "93": { + "name": "PAGE" + }, + "94": { + "name": "PAGE" + }, + "95": { + "name": "PAGE" + }, + "96": { + "name": "PAGE" + }, + "97": { + "name": "PAGE" + }, + "98": { + "name": "PAGE" + }, + "99": { + "name": "PAGE" + } + }, + "page_config_version": 3, + "userconfig": { + "page_direction_flipped": false, + "artnet_enabled": false, + "artnet_universe": "1", + "artnet_channel": "1", + "emulator_control_enable": false, + "rosstalk_enabled": false, + "tcp_enabled": true, + "tcp_listen_port": 51234, + "udp_enabled": true, + "udp_listen_port": 51235, + "osc_enabled": true, + "osc_listen_port": 12321, + "emberplus_enabled": true, + "xkeys_enable": false, + "setup_wizard": 22, + "page_plusminus": false, + "remove_topbar": false, + "elgato_plugin_enable": false, + "loupedeck_enable": false, + "pin_enable": false, + "link_lockouts": false, + "pin": "", + "pin_timeout": 0, + "https_enabled": false, + "https_port": 8443, + "https_cert_type": "self", + "https_self_cn": "127.0.0.1", + "https_self_expiry": 365, + "https_self_cert": "", + "https_self_cert_created": "", + "https_self_cert_cn": "", + "https_self_cert_expiry": "", + "https_self_cert_private": "", + "https_self_cert_public": "", + "https_ext_private_key": "", + "https_ext_certificate": "", + "https_ext_chain": "", + "admin_lockout": false, + "admin_timeout": 5, + "admin_password": "" + } +} \ No newline at end of file diff --git a/companion/test/v2tov3-upgradeStartup.test.ts b/companion/test/v2tov3-upgradeStartup.test.ts deleted file mode 100644 index 30ce5efd4..000000000 --- a/companion/test/v2tov3-upgradeStartup.test.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { describe, it, expect } from 'vitest' -import { DataStoreBase, DatabaseDefault } from '../lib/Data/StoreBase.js' -import LogController from '../lib/Log/Controller.js' -import v2tov3 from '../lib/Data/Upgrades/v2tov3.js' -import { createTables } from '../lib/Data/Schema/v1.js' - -function CreateDataDatabase() { - const db = new DataDatabase() - console.log('Got: ') - console.log(db.store) - - return db -} - -class DataDatabase extends DataStoreBase { - static Defaults: DatabaseDefault = { - main: { - page_config_version: 3, - }, - } - constructor() { - super(':memory:', '', 'main', 'Data/Database') - this.startSQLite(undefined) - } - protected create(): void { - createTables(this.store, this.defaultTable, this.logger) - } - protected loadDefaults(): void { - for (const [key, value] of Object.entries(DataDatabase.Defaults)) { - for (const [key2, value2] of Object.entries(value)) { - this.setTableKey(key, key2, value2) - } - } - - this.isFirstRun = true - } - protected migrateFileToSqlite(): void {} -} - -describe('upgrade', () => { - it('empty', () => { - const db = CreateDataDatabase() - v2tov3.upgradeStartup(db, LogController.createLogger('test-logger')) - expect(db.getTable('main')).toEqual({ - bank_rotate_left_actions: {}, - bank_rotate_right_actions: {}, - controls: {}, - page_config_version: 3, - }) - }) -})