diff --git a/companion/lib/Cloud/Controller.ts b/companion/lib/Cloud/Controller.ts index 320036f95..d4c927150 100644 --- a/companion/lib/Cloud/Controller.ts +++ b/companion/lib/Cloud/Controller.ts @@ -6,12 +6,23 @@ import { xyToOldBankIndex } from '@companion-app/shared/ControlId.js' import { delay } from '../Resources/Util.js' import type { ControlLocation } from '@companion-app/shared/Model/Common.js' import type { Registry } from '../Registry.js' -import type { CloudDatabase } from '../Data/CloudDatabase.js' import type { DataCache } from '../Data/Cache.js' import type { ClientSocket } from '../UI/Handler.js' import type { ImageResult } from '../Graphics/ImageResult.js' +import nodeMachineId from 'node-machine-id' const CLOUD_URL = 'https://api.bitfocus.io/v1' +const CLOUD_TABLE: string = 'cloud' + +function generateMachineId() { + try { + return nodeMachineId.machineIdSync(true) + } catch (e) { + // The nodeMachineId call can fail if the machine has stricter security that blocks regedit + // If that happens, fallback to a uuid, which while not stable, is better than nothing + return v4() + } +} /** * The class that manages the Bitfocus Cloud functionality @@ -80,16 +91,14 @@ export class CloudController extends CoreBase { canActivate: false, } - readonly clouddb: CloudDatabase readonly cache: DataCache - constructor(registry: Registry, clouddb: CloudDatabase, cache: DataCache) { + constructor(registry: Registry, cache: DataCache) { super(registry, 'Cloud/Controller') - this.clouddb = clouddb this.cache = cache - this.data = this.clouddb.getKey('auth', { + this.data = this.db.getTableKey(CLOUD_TABLE, 'auth', { token: '', user: '', connections: {}, @@ -97,13 +106,13 @@ export class CloudController extends CoreBase { }) this.companionId = registry.appInfo.machineId - const uuid = this.clouddb.getKey('uuid', undefined) + const uuid = this.db.getTableKey(CLOUD_TABLE, 'uuid', generateMachineId()) this.#setState({ uuid }) - const regions = this.cache.getKey('cloud_servers', undefined) + const regions = this.cache.getKey('cloud_servers', {}) if (regions !== undefined) { - for (const region of regions) { + for (const region of Object.values(regions)) { if (region.id && region.label && region.hostname) { CloudController.availableRegions[region.id] = { host: region.hostname, name: region.label } } @@ -313,7 +322,7 @@ export class CloudController extends CoreBase { async #handleCloudRegenerateUUID(_client: ClientSocket): Promise { const newUuid = v4() this.#setState({ uuid: newUuid }) - this.clouddb.setKey('uuid', newUuid) + this.db.setTableKey(CLOUD_TABLE, 'uuid', newUuid) this.#setState({ cloudActive: false }) await delay(1000) @@ -376,7 +385,7 @@ export class CloudController extends CoreBase { if (responseObject.token !== undefined) { this.data.token = responseObject.token this.data.user = email - this.clouddb.setKey('auth', this.data) + this.db.setTableKey(CLOUD_TABLE, 'auth', this.data) this.#setState({ authenticated: true, authenticating: false, authenticatedAs: email, error: null }) this.#readConnections(this.data.connections) } else { @@ -399,7 +408,7 @@ export class CloudController extends CoreBase { this.data.token = '' this.data.connections = {} this.data.cloudActive = false - this.clouddb.setKey('auth', this.data) + this.db.setTableKey(CLOUD_TABLE, 'auth', this.data) this.#setState({ authenticated: false, @@ -438,7 +447,7 @@ export class CloudController extends CoreBase { if (result.token) { this.data.token = result.token - this.clouddb.setKey('auth', this.data) + this.db.setTableKey(CLOUD_TABLE, 'auth', this.data) this.#setState({ authenticated: true, authenticatedAs: result.customer?.email, @@ -550,7 +559,7 @@ export class CloudController extends CoreBase { this.data.connections[region] = enabled - this.clouddb.setKey('auth', this.data) + this.db.setTableKey(CLOUD_TABLE, 'auth', this.data) } /** @@ -576,7 +585,7 @@ export class CloudController extends CoreBase { if (oldState.cloudActive !== newState.cloudActive) { this.data.cloudActive = newState.cloudActive - this.clouddb.setKey('auth', this.data) + this.db.setTableKey(CLOUD_TABLE, 'auth', this.data) if (newState.authenticated) { for (let region in this.#regionInstances) { diff --git a/companion/lib/Controls/ControlBase.ts b/companion/lib/Controls/ControlBase.ts index 1b5b68ded..f1bd1ba8b 100644 --- a/companion/lib/Controls/ControlBase.ts +++ b/companion/lib/Controls/ControlBase.ts @@ -73,7 +73,7 @@ export abstract class ControlBase extends CoreBase { const newJson = this.toJSON(true) // Save to db - this.db.setKey(['controls', this.controlId], newJson as any) + this.db.setTableKey('controls', this.controlId, newJson as any) // Now broadcast to any interested clients const roomName = ControlConfigRoom(this.controlId) diff --git a/companion/lib/Controls/Controller.ts b/companion/lib/Controls/Controller.ts index 18f2fe471..8e309689a 100644 --- a/companion/lib/Controls/Controller.ts +++ b/companion/lib/Controls/Controller.ts @@ -738,7 +738,7 @@ export class ControlsController extends CoreBase { this.#controls.delete(controlId) - this.db.setKey(['controls', controlId], undefined) + this.db.deleteTableKey('controls', controlId) return true } @@ -1049,7 +1049,7 @@ export class ControlsController extends CoreBase { */ init(): void { // Init all the control classes - const config: Record = this.db.getKey('controls', {}) + const config: Record = this.db.getTable('controls') for (const [controlId, controlObj] of Object.entries(config)) { if (controlObj && controlObj.type) { const inst = this.#createClassForControl(controlId, 'all', controlObj, false) @@ -1130,7 +1130,7 @@ export class ControlsController extends CoreBase { control.destroy() this.#controls.delete(controlId) - this.db.setKey(['controls', controlId], undefined) + this.db.deleteTableKey('controls', controlId) } const location = this.page.getLocationOfControlId(controlId) diff --git a/companion/lib/Data/Cache.ts b/companion/lib/Data/Cache.ts index d05c405e6..1af16573e 100644 --- a/companion/lib/Data/Cache.ts +++ b/companion/lib/Data/Cache.ts @@ -1,4 +1,5 @@ -import { DataStoreBase } from './StoreBase.js' +import { DatabaseDefault, DataStoreBase } from './StoreBase.js' +import { DataLegacyCache } from './Legacy/Cache.js' /** * The class that manages the applications's disk cache @@ -24,18 +25,62 @@ export class DataCache extends DataStoreBase { /** * The stored defaults for a new cache */ - private static Defaults: object = {} - /** - * The default minimum interval in ms to save to disk (30000 ms) - */ - private static SaveInterval: number = 30000 + static Defaults: DatabaseDefault = { + main: { + cloud_servers: {}, + }, + } /** * @param configDir - the root config directory */ constructor(configDir: string) { - super(configDir, 'datacache', DataCache.SaveInterval, DataCache.Defaults, 'Data/Cache') + super(configDir, 'cache', 'main', 'Data/Cache') + + this.startSQLite() + } + + /** + * Create the database tables + */ + protected create(): void { + if (this.store) { + const create = this.store.prepare( + `CREATE TABLE IF NOT EXISTS ${this.defaultTable} (id STRING UNIQUE, value STRING);` + ) + try { + create.run() + } catch (e) { + this.logger.warn(`Error creating table ${this.defaultTable}`) + } + } + } + + /** + * Save the defaults since a file could not be found/loaded/parsed + */ + protected loadDefaults(): void { + for (const [key, value] of Object.entries(DataCache.Defaults)) { + for (const [key2, value2] of Object.entries(value)) { + this.setTableKey(key, key2, value2) + } + } + + this.isFirstRun = true + } + + /** + * Skip loading migrating the old DB to SQLite + */ + protected migrateFileToSqlite(): void { + this.create() + + const legacyDB = new DataLegacyCache(this.cfgDir) + + const data = legacyDB.getAll() - this.loadSync() + for (const [key, value] of Object.entries(data)) { + this.setKey(key, value) + } } } diff --git a/companion/lib/Data/Database.ts b/companion/lib/Data/Database.ts index 6df73203f..ce52ed324 100644 --- a/companion/lib/Data/Database.ts +++ b/companion/lib/Data/Database.ts @@ -1,5 +1,8 @@ -import { DataStoreBase } from './StoreBase.js' +import { DatabaseDefault, DataStoreBase } from './StoreBase.js' +import { DataLegacyDatabase } from './Legacy/Database.js' import { upgradeStartup } from './Upgrade.js' +import { createTables as createTablesV1 } from './Schema/v1.js' +import { createTables as createTablesV5 } from './Schema/v5.js' /** * The class that manages the applications's main database @@ -25,22 +28,55 @@ export class DataDatabase extends DataStoreBase { /** * The stored defaults for a new db */ - static Defaults: object = { - page_config_version: 3, + static Defaults: DatabaseDefault = { + main: { + page_config_version: 5, + }, } - /** - * The default minimum interval in ms to save to disk (4000 ms) - */ - private static SaveInterval: number = 4000 /** * @param configDir - the root config directory */ constructor(configDir: string) { - super(configDir, 'db', DataDatabase.SaveInterval, DataDatabase.Defaults, 'Data/Database') + super(configDir, 'db', 'main', 'Data/Database') - this.loadSync() + this.startSQLite() upgradeStartup(this) } + + /** + * Create the database tables + */ + protected create(): void { + createTablesV5(this.store, this.defaultTable, this.logger) + } + + /** + * Save the defaults since a file could not be found/loaded/parsed + */ + 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 + } + + /** + * Load the old file driver and migrate to SQLite + */ + protected migrateFileToSqlite(): void { + createTablesV1(this.store, this.defaultTable, this.logger) + + const legacyDB = new DataLegacyDatabase(this.cfgDir) + + const data = legacyDB.getAll() + + for (const [key, value] of Object.entries(data)) { + this.setKey(key, value) + } + } } diff --git a/companion/lib/Data/ImportExport.ts b/companion/lib/Data/ImportExport.ts index 50434c378..74c76d4b5 100644 --- a/companion/lib/Data/ImportExport.ts +++ b/companion/lib/Data/ImportExport.ts @@ -434,14 +434,6 @@ export class DataImportExport extends CoreBase { archive.append(out, { name: 'log.csv' }) } - try { - const _db = this.db.getAll() - const out = JSON.stringify(_db) - archive.append(out, { name: 'db.ram' }) - } catch (e) { - this.logger.debug(`Support bundle append db: ${e}`) - } - try { const payload = this.registry.ui.update.compilePayload() let out = JSON.stringify(payload) @@ -520,6 +512,7 @@ export class DataImportExport extends CoreBase { if (object.instances) { for (const inst of Object.values(object.instances)) { if (inst) { + /** @ts-ignore */ inst.lastUpgradeIndex = inst.lastUpgradeIndex ?? -1 } } @@ -583,6 +576,7 @@ export class DataImportExport extends CoreBase { for (const [id, trigger] of Object.entries(object.triggers)) { clientObject.triggers[id] = { + /** @ts-ignore */ name: trigger.options.name, } } diff --git a/companion/lib/Data/Legacy/Cache.ts b/companion/lib/Data/Legacy/Cache.ts new file mode 100644 index 000000000..632ce3714 --- /dev/null +++ b/companion/lib/Data/Legacy/Cache.ts @@ -0,0 +1,32 @@ +import { DataLegacyStoreBase } from './StoreBase.js' + +/** + * The class that manages the applications's disk cache + * + * @author Håkon Nessjøen + * @author Keith Rocheck + * @author William Viker + * @author Julian Waller + * @since 2.3.0 + * @copyright 2022 Bitfocus AS + * @license + * This program is free software. + * You should have received a copy of the MIT licence as well as the Bitfocus + * Individual Contributor License Agreement for Companion along with + * this program. + * + * You can be released from the requirements of the license by purchasing + * a commercial license. Buying such a license is mandatory as soon as you + * develop commercial activities involving the Companion software without + * disclosing the source code of your own applications. + */ +export class DataLegacyCache extends DataLegacyStoreBase { + /** + * @param configDir - the root config directory + */ + constructor(configDir: string) { + super(configDir, 'datacache', 'Data/Legacy/Cache') + + this.loadSync() + } +} diff --git a/companion/lib/Data/CloudDatabase.ts b/companion/lib/Data/Legacy/CloudDatabase.ts similarity index 50% rename from companion/lib/Data/CloudDatabase.ts rename to companion/lib/Data/Legacy/CloudDatabase.ts index b8ac0b284..5eab8afef 100644 --- a/companion/lib/Data/CloudDatabase.ts +++ b/companion/lib/Data/Legacy/CloudDatabase.ts @@ -1,16 +1,4 @@ -import { v4 } from 'uuid' -import { DataStoreBase } from './StoreBase.js' -import nodeMachineId from 'node-machine-id' - -function generateMachineId() { - try { - return nodeMachineId.machineIdSync(true) - } catch (e) { - // The nodeMachineId call can fail if the machine has stricter security that blocks regedit - // If that happens, fallback to a uuid, which while not stable, is better than nothing - return v4() - } -} +import { DataLegacyStoreBase } from './StoreBase.js' /** * The class that manages the applications's cloud config database @@ -32,30 +20,12 @@ function generateMachineId() { * develop commercial activities involving the Companion software without * disclosing the source code of your own applications. */ -export class CloudDatabase extends DataStoreBase { - /** - * The stored defaults for a new db - */ - private static Defaults: object = { - uuid: generateMachineId(), - auth: { - token: '', - user: '', - connections: {}, - cloudActive: false, - }, - } - - /** - * The default minimum interval in ms to save to disk (4000 ms) - */ - private static SaveInterval: number = 4000 - +export class DataLegacyCloudDatabase extends DataLegacyStoreBase { /** * @param configDir - the root config directory */ constructor(configDir: string) { - super(configDir, 'cloud', CloudDatabase.SaveInterval, CloudDatabase.Defaults, 'Data/CloudDatabase') + super(configDir, 'cloud', 'Data/Legacy/CloudDatabase') this.loadSync() } diff --git a/companion/lib/Data/Legacy/Database.ts b/companion/lib/Data/Legacy/Database.ts new file mode 100644 index 000000000..84df71849 --- /dev/null +++ b/companion/lib/Data/Legacy/Database.ts @@ -0,0 +1,32 @@ +import { DataLegacyStoreBase } from './StoreBase.js' + +/** + * The class that manages the applications's main database + * + * @author Håkon Nessjøen + * @author Keith Rocheck + * @author William Viker + * @author Julian Waller + * @since 1.0.4 + * @copyright 2022 Bitfocus AS + * @license + * This program is free software. + * You should have received a copy of the MIT licence as well as the Bitfocus + * Individual Contributor License Agreement for Companion along with + * this program. + * + * You can be released from the requirements of the license by purchasing + * a commercial license. Buying such a license is mandatory as soon as you + * develop commercial activities involving the Companion software without + * disclosing the source code of your own applications. + */ +export class DataLegacyDatabase extends DataLegacyStoreBase { + /** + * @param configDir - the root config directory + */ + constructor(configDir: string) { + super(configDir, 'db', 'Data/Legacy/Database') + + this.loadSync() + } +} diff --git a/companion/lib/Data/Legacy/StoreBase.ts b/companion/lib/Data/Legacy/StoreBase.ts new file mode 100644 index 000000000..e7b2253f7 --- /dev/null +++ b/companion/lib/Data/Legacy/StoreBase.ts @@ -0,0 +1,169 @@ +import fs from 'fs-extra' +import path from 'path' +import { cloneDeep } from 'lodash-es' +import LogController, { Logger } from '../../Log/Controller.js' + +/** + * Abstract class to be extended by the flat file DB classes. + * See {@link DataCache} and {@link DataDatabase} + * + * @author Håkon Nessjøen + * @author Keith Rocheck + * @author William Viker + * @author Julian Waller + * @since 2.3.0 + * @copyright 2022 Bitfocus AS + * @license + * This program is free software. + * You should have received a copy of the MIT licence as well as the Bitfocus + * Individual Contributor License Agreement for Companion along with + * this program. + * + * You can be released from the requirements of the license by purchasing + * a commercial license. Buying such a license is mandatory as soon as you + * develop commercial activities involving the Companion software without + * disclosing the source code of your own applications. + */ +export class DataLegacyStoreBase { + protected readonly logger: Logger + + /** + * The full backup file path + */ + private readonly cfgBakFile: string = '' + /** + * The full corrupt file path + */ + private readonly cfgCorruptFile: string = '' + /** + * The config directory + */ + private readonly cfgDir: string = '' + /** + * The full main file path + */ + private readonly cfgFile: string = '' + /** + * The name to use for the file and logging + */ + private readonly name: string = '' + + /** + * The flat file DB in RAM + */ + store: Record = {} + + /** + * This needs to be called in the extending class + * using super(registry, name, debug). + * @param configDir - the root config directory + * @param name - the name of the flat file + * @param debug - module path to be used in the debugger + */ + constructor(configDir: string, name: string, debug: string) { + this.logger = LogController.createLogger(debug) + + this.cfgDir = configDir + this.name = name + + this.cfgFile = path.join(this.cfgDir, this.name) + this.cfgBakFile = path.join(this.cfgDir, this.name + '.bak') + this.cfgCorruptFile = path.join(this.cfgDir, this.name + '.corrupt') + } + + /** + * Get the entire database + * @param clone - true if a clone is needed instead of a link + * @returns the database + */ + getAll(clone = false): any { + let out + this.logger.silly(`${this.name}_all`) + + if (clone === true) { + out = cloneDeep(this.store) + } else { + out = this.store + } + + return out + } + + /** + * Get a value from the database + * @param key - the key to be retrieved + * @param defaultValue - the default value to use if the key doesn't exist + * @param clone - true if a clone is needed instead of a link + */ + getKey(key: string, defaultValue?: any, clone = false): any { + let out + this.logger.silly(`${this.name}_get(${key})`) + + if (this.store[key] === undefined && defaultValue !== undefined) { + this.store[key] = defaultValue + } + + if (clone === true) { + out = cloneDeep(this.store[key]) + } else { + out = this.store[key] + } + + return out + } + + /** + * Attempt to load the database from disk + * @access protected + */ + protected loadSync(): void { + if (fs.existsSync(this.cfgFile)) { + this.logger.silly(this.cfgFile, 'exists. trying to read') + + try { + let data = fs.readFileSync(this.cfgFile, 'utf8') + + if (data.trim().length > 0 || data.startsWith('\0')) { + this.store = JSON.parse(data) + this.logger.silly('parsed JSON') + } else { + this.logger.debug(`${this.name} was empty. Attempting to recover the configuration.`) + this.loadBackupSync() + } + } catch (e) { + try { + fs.copyFileSync(this.cfgFile, this.cfgCorruptFile) + this.logger.debug(`${this.name} could not be parsed. A copy has been saved to ${this.cfgCorruptFile}.`) + fs.rmSync(this.cfgFile) + } catch (err) {} + + this.loadBackupSync() + } + } else { + this.logger.debug(`${this.name} is missing. Attempting to recover the configuration.`) + this.loadBackupSync() + } + } + + /** + * Attempt to load the backup file from disk as a recovery + */ + protected loadBackupSync(): void { + if (fs.existsSync(this.cfgBakFile)) { + this.logger.silly(this.cfgBakFile, 'exists. trying to read') + let data = fs.readFileSync(this.cfgBakFile, 'utf8') + + try { + if (data.trim().length > 0 || data.startsWith('\0')) { + this.store = JSON.parse(data) + this.logger.silly('parsed JSON') + this.logger.debug(`${this.name}.bak has been used to recover the configuration.`) + } else { + this.logger.debug(`${this.name}.bak was empty. Creating a new db.`) + } + } catch (e) { + this.logger.debug(`${this.name}.bak Could not load database backup file`) + } + } + } +} diff --git a/companion/lib/Data/Schema/v1.ts b/companion/lib/Data/Schema/v1.ts new file mode 100644 index 000000000..c603dcf28 --- /dev/null +++ b/companion/lib/Data/Schema/v1.ts @@ -0,0 +1,13 @@ +import { Database as SQLiteDB } from 'better-sqlite3' +import { Logger } from '../../Log/Controller.js' + +export function createTables(store: SQLiteDB | undefined, defaultTable: string, logger: Logger) { + if (store) { + try { + const create = store.prepare(`CREATE TABLE IF NOT EXISTS ${defaultTable} (id STRING UNIQUE, value STRING);`) + create.run() + } catch (e) { + logger.warn(`Error creating table ${defaultTable}`) + } + } +} diff --git a/companion/lib/Data/Schema/v5.ts b/companion/lib/Data/Schema/v5.ts new file mode 100644 index 000000000..ceb16786d --- /dev/null +++ b/companion/lib/Data/Schema/v5.ts @@ -0,0 +1,17 @@ +import { Database as SQLiteDB } from 'better-sqlite3' +import { Logger } from '../../Log/Controller.js' + +export function createTables(store: SQLiteDB | undefined, defaultTable: string, logger: Logger) { + if (store) { + try { + const main = store.prepare(`CREATE TABLE IF NOT EXISTS ${defaultTable} (id STRING UNIQUE, value STRING);`) + main.run() + const controls = store.prepare(`CREATE TABLE IF NOT EXISTS controls (id STRING UNIQUE, value STRING);`) + controls.run() + const cloud = store.prepare(`CREATE TABLE IF NOT EXISTS cloud (id STRING UNIQUE, value STRING);`) + cloud.run() + } catch (e) { + logger.warn(`Error creating tables`, e) + } + } +} diff --git a/companion/lib/Data/StoreBase.ts b/companion/lib/Data/StoreBase.ts index 44c9bafa7..7e9e26f2c 100644 --- a/companion/lib/Data/StoreBase.ts +++ b/companion/lib/Data/StoreBase.ts @@ -1,11 +1,20 @@ import fs from 'fs-extra' import path from 'path' -import { cloneDeep } from 'lodash-es' +import Database, { Database as SQLiteDB, Statement } from 'better-sqlite3' import LogController, { Logger } from '../Log/Controller.js' -import { showErrorMessage } from '../Resources/Util.js' +import { showErrorMessage, showFatalError } from '../Resources/Util.js' + +export type DatabaseDefault = Record + +enum DatabaseStartupState { + Normal = 0, + Reset = 1, + RAM = 2, + Fatal = 3, +} /** - * Abstract class to be extended by the flat file DB classes. + * Abstract class to be extended by the DB classes. * See {@link DataCache} and {@link DataDatabase} * * @author Håkon Nessjøen @@ -25,9 +34,16 @@ import { showErrorMessage } from '../Resources/Util.js' * develop commercial activities involving the Companion software without * disclosing the source code of your own applications. */ -export class DataStoreBase { +export abstract class DataStoreBase { protected readonly logger: Logger - + /** + * The time to use for the save interval + */ + private backupCycle: NodeJS.Timeout | undefined + /** + * The interval to fire a backup to disk when dirty + */ + private readonly backupInterval: number = 60000 /** * The full backup file path */ @@ -39,28 +55,28 @@ export class DataStoreBase { /** * The config directory */ - private readonly cfgDir: string = '' + public readonly cfgDir: string /** * The full main file path */ private readonly cfgFile: string = '' /** - * The full temporary file path + * The full main legacy file path */ - private readonly cfgTmpFile: string = '' + private readonly cfgLegacyFile: string = '' /** - * The stored defaults for a new store + * The default table to dump keys when one isn't specified */ - private readonly defaults: object = {} + protected readonly defaultTable: string /** - * Flag to tell the saveInternal there's - * changes to save to disk + * Flag to tell the backupInternal there's + * changes to backup to disk */ private dirty = false /** * Flag if this database was created fresh on this run */ - private isFirstRun = false + protected isFirstRun = false /** * Timestamp of last save to disk */ @@ -68,376 +84,432 @@ export class DataStoreBase { /** * The name to use for the file and logging */ - private readonly name: string = '' - - /** - * The time to use for the save interval - */ - private saveCycle: NodeJS.Timeout | undefined - + protected readonly name: string = '' /** - * The interval to fire a save to disk when dirty + * The startup state of the database */ - private readonly saveInterval: number - + protected startupState: DatabaseStartupState = DatabaseStartupState.Normal /** - * Semaphore while the store is saving to disk + * Saved queries */ - private saving = false - + private statementCache: Record = {} /** - * The flat file DB in RAM + * The SQLite database */ - store: Record = {} + public store: SQLiteDB /** * This needs to be called in the extending class * using super(registry, name, saveInterval, defaults, debug). * @param configDir - the root config directory * @param name - the name of the flat file - * @param saveInterval - minimum interval in ms to save to disk - * @param defaults - the default data to use when making a new file + * @param defaultTable - the default table for data * @param debug - module path to be used in the debugger */ - constructor(configDir: string, name: string, saveInterval: number, defaults: object, debug: string) { + constructor(configDir: string, name: string, defaultTable: string, debug: string) { this.logger = LogController.createLogger(debug) this.cfgDir = configDir this.name = name - this.saveInterval = saveInterval - this.defaults = defaults + this.defaultTable = defaultTable - this.cfgFile = path.join(this.cfgDir, this.name) - this.cfgBakFile = path.join(this.cfgDir, this.name + '.bak') - this.cfgCorruptFile = path.join(this.cfgDir, this.name + '.corrupt') - this.cfgTmpFile = path.join(this.cfgDir, this.name + '.tmp') + if (configDir != ':memory:') { + this.cfgFile = path.join(this.cfgDir, this.name + '.sqlite') + this.cfgBakFile = path.join(this.cfgDir, this.name + '.bak') + this.cfgCorruptFile = path.join(this.cfgDir, this.name + '.corrupt') + this.cfgLegacyFile = path.join(this.cfgDir, this.name) + } } /** - * Delete a key/value pair - * @param key - the key to be delete + * Create the database tables */ - deleteKey(key: string): void { - this.logger.silly(`${this.name}_del (${key})`) - if (key !== undefined) { - delete this.store[key] - this.setDirty() - } - } + protected abstract create(): void /** - * Save the database to file making a `FILE.bak` version then moving it into place - * @param withBackup - can be set to false if the current file should not be moved to `FILE.bak` + * Close the file because we're existing */ - protected async doSave(withBackup = true): Promise { - const jsonSave = JSON.stringify(this.store) - this.dirty = false - this.lastsave = Date.now() + public close(): void { + this.store.close() + } - if (withBackup) { - try { - const file = await fs.readFile(this.cfgFile, 'utf8') + /** + * Delete a key/value pair from the default table + * @param key - the key to be delete + */ + public deleteKey(key: string): void { + this.deleteTableKey(this.defaultTable, key) + } - if (file.trim().length > 0) { - JSON.parse(file) // just want to see if a parse error is thrown so we don't back up a corrupted db + /** + * Delete a key/value pair from a table + * @param table - the table to delete from + * @param key - the key to be delete + */ + public deleteTableKey(table: string, key: string): void { + if (table.length > 0 && key.length > 0) { + let query: Statement + const cacheKey = `delete-${table}` - try { - await fs.copy(this.cfgFile, this.cfgBakFile) - this.logger.silly(`${this.name}_save: backup written`) - } catch (err) { - this.logger.silly(`${this.name}_save: Error making backup copy: ${err}`) - } - } - } catch (err) { - this.logger.silly(`${this.name}_save: Error checking db file for backup: ${err}`) + if (this.statementCache[cacheKey]) { + query = this.statementCache[cacheKey] + } else { + query = this.store.prepare(`DELETE FROM ${table} WHERE id = @id`) + this.statementCache[cacheKey] } - } - try { - await fs.writeFile(this.cfgTmpFile, jsonSave) - } catch (err) { - this.logger.silly(`${this.name}_save: Error saving: ${err}`) - throw 'Error saving: ' + err - } + this.logger.silly(`Delete key: ${table} - ${key}`) - this.logger.silly(`${this.name}_save: written`) + try { + query.run({ id: key }) + } catch (e: any) { + this.logger.warn(`Error deleting ${table} - ${key}: ${e.message}`) + } - try { - await fs.rename(this.cfgTmpFile, this.cfgFile) - } catch (err) { - this.logger.silly(`${this.name}_save: Error renaming ${this.name}.tmp: ` + err) - throw `Error renaming ${this.name}.tmp: ` + err + this.setDirty() } - - this.logger.silly(`${this.name}_save: renamed`) } /** - * Get the entire database - * @param clone - true if a clone is needed instead of a link - * @returns the database + * @returns the 'is first run' flag */ - getAll(clone = false): Record { - let out - this.logger.silly(`${this.name}_all`) - - if (clone === true) { - out = cloneDeep(this.store) - } else { - out = this.store - } - - return out + public getIsFirstRun(): boolean { + return this.isFirstRun } /** - * @returns the directory of the flat file + * Get a value from the default table + * @param key - the to be retrieved + * @param defaultValue - the default value to use if the key doens't exist + * @returns the value */ - getCfgDir(): string { - return this.cfgDir + public getKey(key: string, defaultValue?: any): any { + return this.getTableKey(this.defaultTable, key, defaultValue) } /** - * @returns the flat file + * Get all rows from a table + * @param table - the table to get from + * @returns the rows */ - getCfgFile(): string { - return this.cfgFile - } + public getTable(table: string): any { + let out = {} - /** - * @returns the 'is first run' flag - */ - getIsFirstRun(): boolean { - return this.isFirstRun - } + if (table.length > 0) { + const query = this.store.prepare(`SELECT id, value FROM ${table}`) + this.logger.silly(`Get table: ${table}`) - /** - * @returns JSON of the database - */ - getJSON(): string | null { - try { - return JSON.stringify(this.store) - } catch (e) { - this.logger.silly(`JSON error: ${e}`) - return null + try { + const rows = query.all() + + if (rows.length > 0) { + for (const record of Object.values(rows)) { + try { + /** @ts-ignore */ + out[record.id] = JSON.parse(record.value) + } catch (e) { + /** @ts-ignore */ + out[record.id] = record.value + } + } + } + } catch (e) { + this.logger.warn(`Error getting ${table}`, e) + } } + + return out } /** - * Get a value from the database + * Get a value from a table + * @param table - the table to get from * @param key - the key to be retrieved * @param defaultValue - the default value to use if the key doesn't exist - * @param clone - true if a clone is needed instead of a link + * @returns the value */ - getKey(key: string, defaultValue?: any, clone = false): any { + public getTableKey(table: string, key: string, defaultValue?: any): any { let out - this.logger.silly(`${this.name}_get(${key})`) - if (this.store[key] === undefined && defaultValue !== undefined) { - this.store[key] = defaultValue - this.setDirty() - } + if (table.length > 0 && key.length > 0) { + let query: Statement + const cacheKey = `get-${table}` - if (clone === true) { - out = cloneDeep(this.store[key]) - } else { - out = this.store[key] - } + if (this.statementCache[cacheKey]) { + query = this.statementCache[cacheKey] + } else { + query = this.store.prepare(`SELECT value FROM ${table} WHERE id = @id`) + this.statementCache[cacheKey] + } + this.logger.silly(`Get table key: ${table} - ${key}`) + + try { + const row = query.get({ id: key }) + /** @ts-ignore */ + if (row && row.value) { + try { + /** @ts-ignore */ + out = JSON.parse(row.value) + } catch (e) { + /** @ts-ignore */ + out = row.value + } + } else { + this.logger.silly(`Get table key: ${table} - ${key} failover`) + this.setTableKey(table, key, defaultValue) + out = defaultValue + } + } catch (e: any) { + this.logger.warn(`Error getting ${table} - ${key}: ${e.message}`) + } + } return out } /** - * Checks if the database has a value + * Checks if the main table has a value * @param key - the key to be checked */ - hasKey(key: string): boolean { - return this.store[key] !== undefined + public hasKey(key: string): boolean { + let row + + const query = this.store.prepare(`SELECT id FROM ${this.defaultTable} WHERE id = @id`) + row = query.get({ id: key }) + + return !!row } /** - * Attempt to load the database from disk - * @access protected + * Import raw data into a table + * @param table - the table to import to + * @param data - the data */ - protected loadSync(): void { - if (fs.existsSync(this.cfgFile)) { - this.logger.silly(this.cfgFile, 'exists. trying to read') - - try { - let data = fs.readFileSync(this.cfgFile, 'utf8') - - if (data.trim().length > 0 || data.startsWith('\0')) { - this.store = JSON.parse(data) - this.logger.silly('parsed JSON') - } else { - this.logger.warn(`${this.name} was empty. Attempting to recover the configuration.`) - this.loadBackupSync() - } - } catch (e) { - try { - fs.copyFileSync(this.cfgFile, this.cfgCorruptFile) - this.logger.error(`${this.name} could not be parsed. A copy has been saved to ${this.cfgCorruptFile}.`) - fs.rmSync(this.cfgFile) - } catch (err) { - this.logger.silly(`${this.name}_load`, `Error making or deleting corrupted backup: ${err}`) - } - - this.loadBackupSync() + public importTable(table: string, data: any) { + if (typeof data === 'object') { + for (const [key, value] of Object.entries(data)) { + this.setTableKey(table, key, value) } - } else if (fs.existsSync(this.cfgBakFile)) { - this.logger.warn(`${this.name} is missing. Attempting to recover the configuration.`) - this.loadBackupSync() - } else { - this.logger.silly(this.cfgFile, `doesn't exist. loading defaults`, this.defaults) - this.loadDefaults() } - - this.#setSaveCycle() } /** - * Attempt to load the backup file from disk as a recovery + * Save the defaults since a file could not be found/loaded/parsed */ - protected loadBackupSync(): void { - if (fs.existsSync(this.cfgBakFile)) { - this.logger.silly(this.cfgBakFile, 'exists. trying to read') - let data = fs.readFileSync(this.cfgBakFile, 'utf8') + protected abstract loadDefaults(): void - try { - if (data.trim().length > 0 || data.startsWith('\0')) { - this.store = JSON.parse(data) - this.logger.silly('parsed JSON') - this.logger.warn(`${this.name}.bak has been used to recover the configuration.`) - this.save(false) - } else { - this.logger.warn(`${this.name} was empty. Creating a new db.`) - this.loadDefaults() - } - } catch (e) { - showErrorMessage('Error starting companion', 'Could not load database backup file. Resetting configuration') - - console.error('Could not load database backup file') - this.loadDefaults() - } - } else { - showErrorMessage('Error starting companion', 'Could not load database backup file. Resetting configuration') + /** + * Load the old file driver and migrate to SQLite + */ + protected abstract migrateFileToSqlite(): void - console.error('Could not load database file') - this.loadDefaults() - } + /** + * Save a backup of the db + */ + private saveBackup(): void { + this.store + ?.backup(`${this.cfgBakFile}`) + .then(() => { + this.dirty = false + this.logger.debug('backup complete') + }) + .catch((err) => { + this.logger.warn('backup failed', err.message) + }) } /** - * Save the defaults since a file could not be found/loaded/parses + * Setup the save cycle interval */ - protected loadDefaults(): void { - this.store = cloneDeep(this.defaults) - this.isFirstRun = true - this.save() + private setBackupCycle(): void { + if (this.backupCycle) return + + this.backupCycle = setInterval(() => { + // See if the database is dirty and needs to be backed up + if (Date.now() - this.lastsave > this.backupInterval && this.dirty) { + this.saveBackup() + } + }, this.backupInterval) } /** - * Save the database to file - * @param withBackup - can be set to `false` if the current file should not be moved to `FILE.bak` + * Register that there are changes in the database that need to be saved as soon as possible */ - save(withBackup = true): void { - if (this.saving === false) { - this.logger.silly(`${this.name}_save: begin`) - this.saving = true + protected setDirty(): void { + this.dirty = true + } - this.doSave(withBackup) - .catch((err) => { - try { - this.logger.error(err) - } catch (err2) { - this.logger.silly(`${this.name}_save: Error reporting save failure: ${err2}`) - } - }) - .then(() => { - // This will run even if the catch caught an error - this.saving = false - }) - } + /** + * Save/update a key/value pair to the default table + * @param key - the key to save under + * @param value - the object to save + */ + public setKey(key: string, value: any): void { + this.setTableKey(this.defaultTable, key, value) } /** - * Execute a save if the database is dirty + * Save/update a key/value pair to a table + * @param table - the table to save in + * @param key - the key to save under + * @param value - the object to save */ - saveImmediate(): void { - if (this.dirty === true) { - this.save() + public setTableKey(table: string, key: string, value: any): void { + if (table.length > 0 && key.length > 0 && value) { + if (typeof value === 'object') { + value = JSON.stringify(value) + } + + let query: Statement + const cacheKey = `set-${table}` + + if (this.statementCache[cacheKey]) { + query = this.statementCache[cacheKey] + } else { + query = this.store.prepare( + `INSERT INTO ${table} (id, value) VALUES (@id, @value) ON CONFLICT(id) DO UPDATE SET value = @value` + ) + this.statementCache[cacheKey] + } + + this.logger.silly(`Set table key ${table} - ${key} - ${value}`) + + try { + query.run({ id: key, value: value }) + } catch (e: any) { + this.logger.warn(`Error updating ${table} - ${key}: ${e.message}`) + } + + this.setDirty() } } /** - * Register that there are changes in the database that need to be saved as soon as possible + * Update the startup state to a new state if that new state is higher + * @param newState - the new state */ - protected setDirty(): void { - this.dirty = true + protected setStartupState(newState: DatabaseStartupState): void { + this.startupState = this.startupState > newState ? this.startupState : newState } /** - * Save/update a key/value pair to the database - * @param key - the key to save under - * @param value - the object to save - * @access public - */ - setKey(key: number | string | string[], value: any): void { - this.logger.silly(`${this.name}_set(${key}, ${value})`) - - if (key !== undefined) { - if (Array.isArray(key)) { - if (key.length > 0) { - const keyStr = key.join(':') - const lastK = key.pop() - - // Find or create the parent object - let dbObj = this.store - for (const k of key) { - if (!dbObj || typeof dbObj !== 'object') throw new Error(`Unable to set db path: ${keyStr}`) - if (!dbObj[k]) dbObj[k] = {} - dbObj = dbObj[k] + * Attempt to load the database from disk + * @access protected + */ + protected startSQLite(): void { + if (this.cfgDir == ':memory:') { + this.store = new Database(this.cfgDir) + this.create() + this.loadDefaults() + } else { + if (fs.existsSync(this.cfgFile)) { + this.logger.silly(this.cfgFile, 'exists. trying to read') + + try { + this.store = new Database(this.cfgFile) + } catch (e) { + try { + fs.moveSync(this.cfgFile, this.cfgCorruptFile) + this.logger.error(`${this.name} could not be parsed. A copy has been saved to ${this.cfgCorruptFile}.`) + } catch (err) { + this.logger.silly(`${this.name}_load`, `Error making or deleting corrupted backup: ${err}`) } - // @ts-ignore - dbObj[lastK] = value - this.setDirty() + this.startSQLiteWithBackup() + } + } else if (fs.existsSync(this.cfgBakFile)) { + this.logger.warn(`${this.name} is missing. Attempting to recover the configuration.`) + this.startSQLiteWithBackup() + } else if (fs.existsSync(this.cfgLegacyFile)) { + try { + this.store = new Database(this.cfgFile) + this.logger.info(`Legacy ${this.cfgLegacyFile} exists. Attempting migration to SQLite.`) + this.migrateFileToSqlite() + } catch (e: any) { + this.setStartupState(DatabaseStartupState.Reset) + this.logger.error(e.message) + this.startSQLiteWithDefaults() } } else { - this.store[key] = value - this.setDirty() + this.logger.silly(this.cfgFile, `doesn't exist. loading defaults`) + this.startSQLiteWithDefaults() } } - } - // /** - // * Save/update multiple key/value pairs to the database - // * @access public - // */ - // setKeys(keyvalueobj) { - // this.logger.silly(`${this.name}_set_multiple:`) + if (!this.store) { + try { + this.store = new Database(':memory:') + this.setStartupState(DatabaseStartupState.RAM) + this.create() + this.loadDefaults() + } catch (e: any) { + this.setStartupState(DatabaseStartupState.Fatal) + } + } - // if (keyvalueobj !== undefined && typeof keyvalueobj == 'object' && keyvalueobj.length > 0) { - // for (let key in keyvalueobj) { - // this.logger.silly(`${this.name}_set(${key}, ${keyvalueobj[key]})`) - // this.store[key] = keyvalueobj[key] - // } + switch (this.startupState) { + case DatabaseStartupState.Fatal: + showFatalError('Error starting companion', `Could not create a functional database(${this.name}). Exiting...`) + console.error(`Could not create/load database ${this.name}. Exiting...`) + break + case DatabaseStartupState.RAM: + showErrorMessage( + 'Error starting companion', + `Could not write to database ${this.name}. Companion is running in RAM and will not be saved upon exiting.` + ) + console.error(`Could not create/load database ${this.name}. Running in RAM`) + break + case DatabaseStartupState.Reset: + showErrorMessage('Error starting companion', `Could not load database ${this.name}. Resetting configuration.`) + console.error(`Could not load database ${this.name}.`) + break + } - // this.setDirty() - // } - // } + this.setBackupCycle() + } /** - * Setup the save cycle interval + * Attempt to load the backup file from disk as a recovery */ - #setSaveCycle(): void { - if (this.saveCycle) return + private startSQLiteWithBackup(): void { + if (fs.existsSync(this.cfgBakFile)) { + this.logger.silly(this.cfgBakFile, 'exists. trying to read') + try { + fs.copyFileSync(this.cfgBakFile, this.cfgFile) + this.store = new Database(this.cfgFile) + } catch (e: any) { + this.setStartupState(DatabaseStartupState.Reset) + this.logger.error(e.message) + + try { + fs.rmSync(this.cfgFile) + } catch (e) {} - this.saveCycle = setInterval(() => { - // See if the database is dirty and needs to be saved - if (Date.now() - this.lastsave > this.saveInterval && this.dirty) { - this.save() + this.startSQLiteWithDefaults() } - }, this.saveInterval) + } else { + this.setStartupState(DatabaseStartupState.Reset) + this.startSQLiteWithDefaults() + } + } + + /** + * Attempt to start a fresh DB and load the defaults + */ + private startSQLiteWithDefaults(): void { + try { + if (fs.existsSync(this.cfgFile)) { + fs.rmSync(this.cfgFile) + } + } catch (e: any) { + } finally { + try { + this.store = new Database(this.cfgFile) + this.create() + this.loadDefaults() + } catch (e: any) { + this.logger.error(e.message) + } + } } } diff --git a/companion/lib/Data/Upgrade.ts b/companion/lib/Data/Upgrade.ts index fd5a50392..39b9418d3 100644 --- a/companion/lib/Data/Upgrade.ts +++ b/companion/lib/Data/Upgrade.ts @@ -1,9 +1,9 @@ import LogController from '../Log/Controller.js' -import fs from 'fs-extra' import v1tov2 from './Upgrades/v1tov2.js' import v2tov3 from './Upgrades/v2tov3.js' import v3tov4 from './Upgrades/v3tov4.js' +import v4tov5 from './Upgrades/v4tov5.js' import { showFatalError } from '../Resources/Util.js' import type { DataDatabase } from './Database.js' import type { SomeExportv4 } from '@companion-app/shared/Model/ExportModel.js' @@ -14,6 +14,7 @@ const allUpgrades = [ v1tov2, // 15 to 32 key v2tov3, // v3.0 v3tov4, // v3.2 + v4tov5, // v3.5 ] const targetVersion = allUpgrades.length + 1 @@ -37,28 +38,12 @@ export function upgradeStartup(db: DataDatabase): void { } else { logger.info(`Upgrading db from version ${currentVersion} to ${targetVersion}`) - const saveUpgradeCopy = (db: DataDatabase, i: number) => { - try { - let jsonSave = db.getJSON() - - if (jsonSave) { - fs.writeFileSync(`${db.getCfgFile()}.v${i}`, jsonSave) - } - } catch (err) { - logger.warn(`db_save: Error saving upgrade copy: ${err}`) - } - } - // run the scripts for (let i = currentVersion; i < targetVersion; i++) { - saveUpgradeCopy(db, i) allUpgrades[i - 1].upgradeStartup(db, logger) } - db.setKey('page_config_version', targetVersion) - - // force a save - db.saveImmediate() + //db.setKey('page_config_version', targetVersion) } } diff --git a/companion/lib/Data/Upgrades/v1tov2.ts b/companion/lib/Data/Upgrades/v1tov2.ts index faa99b9df..9f6bb686f 100644 --- a/companion/lib/Data/Upgrades/v1tov2.ts +++ b/companion/lib/Data/Upgrades/v1tov2.ts @@ -1,11 +1,11 @@ import { LEGACY_MAX_BUTTONS, LEGACY_PAGE_COUNT } from '../../Util/Constants.js' -import type { DataDatabase } from '../Database.js' +import type { DataStoreBase } from '../StoreBase.js' import type { Logger } from '../../Log/Controller.js' /** * do the database upgrades to convert from the v1 to the v2 format */ -function convertDatabase15To32(db: DataDatabase, _logger: Logger): void { +function convertDatabase15To32(db: DataStoreBase, _logger: Logger): void { const oldBankConfig = db.getKey('bank', {}) const oldActions = db.getKey('bank_actions', {}) const oldReleaseActions = db.getKey('bank_release_actions', {}) @@ -26,6 +26,13 @@ function convertDatabase15To32(db: DataDatabase, _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 7acf67ea9..7e3994b9b 100644 --- a/companion/lib/Data/Upgrades/v2tov3.ts +++ b/companion/lib/Data/Upgrades/v2tov3.ts @@ -3,7 +3,7 @@ import { CreateTriggerControlId } from '@companion-app/shared/ControlId.js' import { cloneDeep } from 'lodash-es' import { nanoid } from 'nanoid' import { LEGACY_MAX_BUTTONS, LEGACY_PAGE_COUNT } from '../../Util/Constants.js' -import type { DataDatabase } from '../Database.js' +import type { DataStoreBase } from '../StoreBase.js' import type { Logger } from '../../Log/Controller.js' function convertInstanceToV3(obj: any): any { @@ -26,7 +26,7 @@ function convertInstanceToV3(obj: any): any { } } -function convertInstancesToV3(db: DataDatabase) { +function convertInstancesToV3(db: DataStoreBase) { if (db.hasKey('instance')) { const instances = db.getKey('instance') // Delete the old internal module, as it is truly internal now @@ -46,13 +46,14 @@ function CreateBankControlIdOld(page: number, bank: number): string { return `bank:${page}-${bank}` } -function convertToControls(db: DataDatabase): void { +function convertToControls(db: DataStoreBase): void { if (!db.hasKey('controls')) { const oldBankConfig = db.getKey('bank', {}) const oldActions = db.getKey('bank_actions', {}) const oldReleaseActions = db.getKey('bank_release_actions', {}) const oldRotateLeftActions = db.getKey('bank_rotate_left_actions', {}) const oldRotateRightActions = db.getKey('bank_rotate_right_actions', {}) + const oldDeviceonfig = db.getKey('deviceconfig', {}) const newSteps: any = {} @@ -95,10 +96,20 @@ function convertToControls(db: DataDatabase): void { } } + if (oldDeviceonfig['emulator']) { + oldDeviceonfig['emulator:emulator'] = oldDeviceonfig['emulator'] + oldDeviceonfig['emulator'] = undefined + } + 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('deviceconfig', oldDeviceonfig) + + db.setKey('page_config_version', 3) } // patch v3 pre https://github.com/bitfocus/companion/pull/2187 @@ -287,7 +298,7 @@ function convertTriggerToControl(logger: Logger, entry: any, index: number): any return control } -function convertSchedulerToControls(db: DataDatabase, logger: Logger) { +function convertSchedulerToControls(db: DataStoreBase, logger: Logger) { if (db.hasKey('scheduler')) { let controls = db.getKey('controls') let scheduler = db.getKey('scheduler') @@ -312,7 +323,7 @@ function convertSchedulerToControls(db: DataDatabase, logger: Logger) { } } -function convertEmulatorToV3(db: DataDatabase): void { +function convertEmulatorToV3(db: DataStoreBase): void { if (db.hasKey('userconfig')) { const userconfig = db.getKey('userconfig') @@ -330,7 +341,7 @@ function convertEmulatorToV3(db: DataDatabase): void { } } -function convertSurfacesToV3(db: DataDatabase) { +function convertSurfacesToV3(db: DataStoreBase) { const devices = db.getKey('deviceconfig') if (!devices) return @@ -354,7 +365,7 @@ function convertSurfacesToV3(db: DataDatabase) { /** * do the database upgrades to convert from the v2 to the v3 format */ -function convertDatabaseToV3(db: DataDatabase, logger: Logger): void { +function convertDatabaseToV3(db: DataStoreBase, logger: Logger): void { convertInstancesToV3(db) convertToControls(db) diff --git a/companion/lib/Data/Upgrades/v3tov4.ts b/companion/lib/Data/Upgrades/v3tov4.ts index 1070e3426..d59c6e710 100644 --- a/companion/lib/Data/Upgrades/v3tov4.ts +++ b/companion/lib/Data/Upgrades/v3tov4.ts @@ -1,7 +1,7 @@ import { cloneDeep } from 'lodash-es' import { oldBankIndexToXY } from '@companion-app/shared/ControlId.js' import { nanoid } from 'nanoid' -import type { DataDatabase } from '../Database.js' +import type { DataStoreBase } from '../StoreBase.js' import type { Logger } from '../../Log/Controller.js' import { TriggerModel } from '@companion-app/shared/Model/TriggerModel.js' @@ -12,7 +12,7 @@ function CreateBankControlIdOld(page: string | number, bank: number): string { return `bank:${page}-${bank}` } -function addControlIdsToPages(db: DataDatabase): void { +function addControlIdsToPages(db: DataStoreBase): void { const controls = db.getKey('controls', {}) const pages = db.getKey('page', {}) @@ -34,12 +34,15 @@ function addControlIdsToPages(db: DataDatabase): void { } } } + + db.setKey('controls', controls) + db.setKey('page', pages) } /** * do the database upgrades to convert from the v3 to the v4 format */ -function convertDatabaseToV4(db: DataDatabase, _logger: Logger) { +function convertDatabaseToV4(db: DataStoreBase, _logger: Logger) { addControlIdsToPages(db) // If xkeys was previously enabled, then preserve the old layout @@ -47,6 +50,10 @@ function convertDatabaseToV4(db: DataDatabase, _logger: Logger) { if (userconfig.xkeys_enable && userconfig.xkeys_legacy_layout === undefined) { userconfig.xkeys_legacy_layout = true } + + db.setKey('surface-groups', {}) + + db.setKey('page_config_version', 4) } /** diff --git a/companion/lib/Data/Upgrades/v4tov5.ts b/companion/lib/Data/Upgrades/v4tov5.ts new file mode 100644 index 000000000..7d00f1304 --- /dev/null +++ b/companion/lib/Data/Upgrades/v4tov5.ts @@ -0,0 +1,53 @@ +import { DataLegacyCloudDatabase } from '../Legacy/CloudDatabase.js' +import type { DataStoreBase } from '../StoreBase.js' +import type { Logger } from '../../Log/Controller.js' + +/** + * do the database upgrades to convert from the v4 to the v5 format + */ +function convertDatabaseToV5(db: DataStoreBase, _logger: Logger) { + if (db.store) { + try { + const controls = db.store.prepare(`CREATE TABLE IF NOT EXISTS controls (id STRING UNIQUE, value STRING);`) + controls.run() + const cloud = db.store.prepare(`CREATE TABLE IF NOT EXISTS cloud (id STRING UNIQUE, value STRING);`) + cloud.run() + } catch (e) { + _logger.warn(`Error creating tables`, e) + } + + const batchInsert = function (table: string, heap: any) { + if (heap) { + for (const [key, value] of Object.entries(heap)) { + db.setTableKey(table, key, value) + } + } + } + + // Move controls to their new table + const controls = db.getKey('controls') + batchInsert('controls', controls) + db.deleteKey('controls') + + // Migrate the legacy cloud DB to its new table + const clouddb = new DataLegacyCloudDatabase(db.cfgDir) + const cloud = clouddb.getAll() + batchInsert('cloud', cloud) + + // Move surface-groups to match others + const surfaces = db.getKey('surface-groups', {}) + db.setKey('surface_groups', surfaces) + db.deleteKey('surface-groups') + + db.setKey('page_config_version', 5) + } +} + +function convertImportToV5(obj: any) { + return obj +} + +export default { + upgradeStartup: convertDatabaseToV5, + upgradeImport: convertImportToV5, +} diff --git a/companion/lib/Registry.ts b/companion/lib/Registry.ts index 845c2b857..afd55c8ad 100644 --- a/companion/lib/Registry.ts +++ b/companion/lib/Registry.ts @@ -8,7 +8,6 @@ import { GraphicsController } from './Graphics/Controller.js' import { GraphicsPreview } from './Graphics/Preview.js' import { DataController } from './Data/Controller.js' import { DataDatabase } from './Data/Database.js' -import { CloudDatabase } from './Data/CloudDatabase.js' import { DataUserConfig } from './Data/UserConfig.js' import { InstanceController } from './Instance/Controller.js' import { InternalController } from './Internal/Controller.js' @@ -72,10 +71,8 @@ export interface RegistryEvents { */ export class Registry extends EventEmitter { /** - * The cloud database + * The cloud controller */ - clouddb: CloudDatabase - cloud: CloudController /** * The core controls controller @@ -188,7 +185,6 @@ export class Registry extends EventEmitter { this.ui = new UIController(this) this.io = this.ui.io this.db = new DataDatabase(this.appInfo.configDir) - this.clouddb = new CloudDatabase(this.appInfo.configDir) this.data = new DataController(this) this.userconfig = this.data.userconfig LogController.init(this.appInfo, this.ui.io) @@ -200,7 +196,7 @@ export class Registry extends EventEmitter { this.surfaces = new SurfaceController(this) this.instance = new InstanceController(this) this.services = new ServiceController(this) - this.cloud = new CloudController(this, this.clouddb, this.data.cache) + this.cloud = new CloudController(this, this.data.cache) this.internalModule = new InternalController(this) this.variables.values.on('variables_changed', (all_changed_variables_set) => { @@ -274,8 +270,8 @@ export class Registry extends EventEmitter { this.#logger.info('somewhere, the system wants to exit. kthxbai') // Save the db to disk - this.db.save() - this.data.cache.save() + this.db.close() + this.data.cache.close() try { this.surfaces.quit() diff --git a/companion/lib/Surface/Controller.ts b/companion/lib/Surface/Controller.ts index c81fd9d7b..59776902b 100644 --- a/companion/lib/Surface/Controller.ts +++ b/companion/lib/Surface/Controller.ts @@ -129,7 +129,7 @@ export class SurfaceController extends CoreBase { setImmediate(() => { // Setup groups - const groupsConfigs = this.db.getKey('surface-groups', {}) + const groupsConfigs = this.db.getKey('surface_groups', {}) for (const groupId of Object.keys(groupsConfigs)) { const newGroup = new SurfaceGroup( this, @@ -747,7 +747,7 @@ export class SurfaceController extends CoreBase { async reset(): Promise { // Each active handler will re-add itself when doing the save as part of its own reset this.db.setKey('deviceconfig', {}) - this.db.setKey('surface-groups', {}) + this.db.setKey('surface_groups', {}) this.#outboundController.reset() // Wait for the surfaces to disconnect before clearing their config @@ -1102,7 +1102,7 @@ export class SurfaceController extends CoreBase { } exportAllGroups(clone = true): any { - const obj = this.db.getKey('surface-groups', {}) || {} + const obj = this.db.getKey('surface_groups', {}) || {} return clone ? cloneDeep(obj) : obj } diff --git a/companion/lib/Surface/Group.ts b/companion/lib/Surface/Group.ts index 412646497..90c948cf2 100644 --- a/companion/lib/Surface/Group.ts +++ b/companion/lib/Surface/Group.ts @@ -113,7 +113,7 @@ export class SurfaceGroup { this.#isAutoGroup = true } else { - this.groupConfig = this.#db.getKey('surface-groups', {})[this.groupId] || {} + this.groupConfig = this.#db.getKey('surface_groups', {})[this.groupId] || {} } // Apply missing defaults this.groupConfig = { @@ -166,9 +166,9 @@ export class SurfaceGroup { * Delete this group from the config */ forgetConfig(): void { - const groupsConfig = this.#db.getKey('surface-groups', {}) + const groupsConfig = this.#db.getKey('surface_groups', {}) delete groupsConfig[this.groupId] - this.#db.setKey('surface-groups', groupsConfig) + this.#db.setKey('surface_groups', groupsConfig) } /** @@ -383,9 +383,9 @@ export class SurfaceGroup { const surface = this.surfaceHandlers[0] surface.saveGroupConfig(this.groupConfig) } else { - const groupsConfig = this.#db.getKey('surface-groups', {}) + const groupsConfig = this.#db.getKey('surface_groups', {}) groupsConfig[this.groupId] = this.groupConfig - this.#db.setKey('surface-groups', groupsConfig) + this.#db.setKey('surface_groups', groupsConfig) } } } diff --git a/companion/lib/main.ts b/companion/lib/main.ts index 2f56ea8b1..65f231b34 100755 --- a/companion/lib/main.ts +++ b/companion/lib/main.ts @@ -143,12 +143,20 @@ program.command('start', { isDefault: true, hidden: true }).action(() => { } // copy an older db if needed - if (configDir !== rootConfigDir && !fs.existsSync(path.join(configDir, 'db'))) { + if ( + configDir !== rootConfigDir && + !fs.existsSync(path.join(configDir, 'db')) && + !fs.existsSync(path.join(configDir, 'db.sqlite')) + ) { // try and import the non-develop copy. we only need to take `db` for this for (let i = ConfigReleaseDirs.length - 1; i--; i >= 0) { const previousDbPath = i > 0 ? path.join(rootConfigDir, ConfigReleaseDirs[i], 'db') : path.join(rootConfigDir, 'db') - if (fs.existsSync(previousDbPath)) { + if (fs.existsSync(previousDbPath + '.sqlite')) { + // Found the one to copy + fs.copyFileSync(previousDbPath + '.sqlite', path.join(configDir, 'db.sqlite')) + break + } else if (fs.existsSync(previousDbPath)) { // Found the one to copy fs.copyFileSync(previousDbPath, path.join(configDir, 'db')) break diff --git a/companion/package.json b/companion/package.json index 3a9288bb8..da9ca39e0 100644 --- a/companion/package.json +++ b/companion/package.json @@ -29,6 +29,7 @@ "devDependencies": { "@sentry/webpack-plugin": "^2.22.4", "@types/archiver": "^6.0.2", + "@types/better-sqlite3": "^7.6.11", "@types/cors": "^2.8.17", "@types/ejson": "^2.2.2", "@types/express": "^4.17.21", @@ -57,6 +58,7 @@ "@napi-rs/canvas": "^0.1.55", "@sentry/node": "^8.30.0", "archiver": "^7.0.1", + "better-sqlite3": "^11.3.0", "body-parser": "^1.20.3", "bufferutil": "^4.0.8", "colord": "^2.9.3", diff --git a/companion/test/Upgrade/v1tov2-upgradeStartup.test.ts b/companion/test/Upgrade/v1tov2-upgradeStartup.test.ts new file mode 100644 index 000000000..d63312639 --- /dev/null +++ b/companion/test/Upgrade/v1tov2-upgradeStartup.test.ts @@ -0,0 +1,39 @@ +import { describe, it, expect } from 'vitest' +import { DataStoreBase } 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 { + 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..3dbffa567 --- /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" + } + ] + } + } +} diff --git a/companion/test/Upgrade/v1tov2/db.v2.json b/companion/test/Upgrade/v1tov2/db.v2.json new file mode 100644 index 000000000..8736af313 --- /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" + } +} diff --git a/companion/test/Upgrade/v1tov5-upgradeStartup.test.ts b/companion/test/Upgrade/v1tov5-upgradeStartup.test.ts new file mode 100644 index 000000000..1825f7b15 --- /dev/null +++ b/companion/test/Upgrade/v1tov5-upgradeStartup.test.ts @@ -0,0 +1,48 @@ +import { describe, it, expect } from 'vitest' +import { DataStoreBase } from '../../lib/Data/StoreBase.js' +import LogController from '../../lib/Log/Controller.js' +import v1tov2 from '../../lib/Data/Upgrades/v1tov2.js' +import v2tov3 from '../../lib/Data/Upgrades/v2tov3.js' +import v3tov4 from '../../lib/Data/Upgrades/v3tov4.js' +import v4tov5 from '../../lib/Data/Upgrades/v4tov5.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/v1tov5/db.v1.json', 'utf8') + data = JSON.parse(data) + + db.importTable('main', data) + + return db +} + +class DataDatabase extends DataStoreBase { + 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', () => { + const db = CreateDataDatabase() + v1tov2.upgradeStartup(db, LogController.createLogger('test-logger')) + v2tov3.upgradeStartup(db, LogController.createLogger('test-logger')) + v3tov4.upgradeStartup(db, LogController.createLogger('test-logger')) + v4tov5.upgradeStartup(db, LogController.createLogger('test-logger')) + let data = fs.readFileSync('./companion/test/Upgrade/v1tov5/db.v5.json', 'utf8') + data = JSON.parse(data) + it('main', () => { + expect(db.getTable('main')).toEqual(data['main']) + }) + it('controls', () => { + expect(db.getTable('controls')).toEqual(data['controls']) + }) +}) diff --git a/companion/test/Upgrade/v1tov5/db.v1.json b/companion/test/Upgrade/v1tov5/db.v1.json new file mode 100644 index 000000000..3dbffa567 --- /dev/null +++ b/companion/test/Upgrade/v1tov5/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" + } + ] + } + } +} diff --git a/companion/test/Upgrade/v1tov5/db.v5.json b/companion/test/Upgrade/v1tov5/db.v5.json new file mode 100644 index 000000000..e85c2eb1b --- /dev/null +++ b/companion/test/Upgrade/v1tov5/db.v5.json @@ -0,0 +1,8413 @@ +{ + "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-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "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": [] + } + }, + "main": { + "deviceconfig": { + "emulator:emulator": { + "page": 1 + } + }, + "instance": { + "rJDPWbmC0": { + "instance_type": "atem", + "label": "atem", + "enabled": true, + "config": { + "host": "127.0.0.1" + }, + "sortOrder": 0 + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "enabled": true, + "config": { + "host": "127.0.0.1" + }, + "sortOrder": 1 + } + }, + "page": { + "1": { + "name": "ATEM 1", + "controls": { + "0": { + "0": "bank:1-1", + "1": "bank:1-2", + "2": "bank:1-3", + "3": "bank:1-4", + "4": "bank:1-5" + }, + "1": { + "0": "bank:1-9", + "1": "bank:1-10", + "2": "bank:1-11", + "3": "bank:1-12", + "4": "bank:1-13" + }, + "2": { + "0": "bank:1-17", + "1": "bank:1-18", + "3": "bank:1-20", + "4": "bank:1-21" + } + } + }, + "2": { + "name": "TIMER", + "controls": { + "0": { + "0": "bank:2-1", + "1": "bank:2-2", + "2": "bank:2-3", + "3": "bank:2-4", + "4": "bank:2-5" + }, + "1": { + "0": "bank:2-9", + "1": "bank:2-10", + "2": "bank:2-11", + "3": "bank:2-12" + }, + "2": { + "0": "bank:2-17", + "1": "bank:2-18", + "2": "bank:2-19", + "3": "bank:2-20" + } + } + }, + "3": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:3-1" + }, + "1": { + "0": "bank:3-9" + }, + "2": { + "0": "bank:3-17" + } + } + }, + "4": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:4-1" + }, + "1": { + "0": "bank:4-9" + }, + "2": { + "0": "bank:4-17" + } + } + }, + "5": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:5-1" + }, + "1": { + "0": "bank:5-9" + }, + "2": { + "0": "bank:5-17" + } + } + }, + "6": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:6-1" + }, + "1": { + "0": "bank:6-9" + }, + "2": { + "0": "bank:6-17" + } + } + }, + "7": { + "name": "ATEM 2", + "controls": { + "0": { + "0": "bank:7-1", + "1": "bank:7-2", + "2": "bank:7-3", + "3": "bank:7-4", + "4": "bank:7-5" + }, + "1": { + "0": "bank:7-9", + "1": "bank:7-10", + "2": "bank:7-11", + "3": "bank:7-12", + "4": "bank:7-13" + }, + "2": { + "0": "bank:7-17", + "1": "bank:7-18", + "3": "bank:7-20", + "4": "bank:7-21" + } + } + }, + "8": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:8-1" + }, + "1": { + "0": "bank:8-9" + }, + "2": { + "0": "bank:8-17" + } + } + }, + "9": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:9-1" + }, + "1": { + "0": "bank:9-9" + }, + "2": { + "0": "bank:9-17" + } + } + }, + "10": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:10-1" + }, + "1": { + "0": "bank:10-9" + }, + "2": { + "0": "bank:10-17" + } + } + }, + "11": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:11-1" + }, + "1": { + "0": "bank:11-9" + }, + "2": { + "0": "bank:11-17" + } + } + }, + "12": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:12-1" + }, + "1": { + "0": "bank:12-9" + }, + "2": { + "0": "bank:12-17" + } + } + }, + "13": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:13-1" + }, + "1": { + "0": "bank:13-9" + }, + "2": { + "0": "bank:13-17" + } + } + }, + "14": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:14-1" + }, + "1": { + "0": "bank:14-9" + }, + "2": { + "0": "bank:14-17" + } + } + }, + "15": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:15-1" + }, + "1": { + "0": "bank:15-9" + }, + "2": { + "0": "bank:15-17" + } + } + }, + "16": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:16-1" + }, + "1": { + "0": "bank:16-9" + }, + "2": { + "0": "bank:16-17" + } + } + }, + "17": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:17-1" + }, + "1": { + "0": "bank:17-9" + }, + "2": { + "0": "bank:17-17" + } + } + }, + "18": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:18-1" + }, + "1": { + "0": "bank:18-9" + }, + "2": { + "0": "bank:18-17" + } + } + }, + "19": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:19-1" + }, + "1": { + "0": "bank:19-9" + }, + "2": { + "0": "bank:19-17" + } + } + }, + "20": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:20-1" + }, + "1": { + "0": "bank:20-9" + }, + "2": { + "0": "bank:20-17" + } + } + }, + "21": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:21-1" + }, + "1": { + "0": "bank:21-9" + }, + "2": { + "0": "bank:21-17" + } + } + }, + "22": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:22-1" + }, + "1": { + "0": "bank:22-9" + }, + "2": { + "0": "bank:22-17" + } + } + }, + "23": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:23-1" + }, + "1": { + "0": "bank:23-9" + }, + "2": { + "0": "bank:23-17" + } + } + }, + "24": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:24-1" + }, + "1": { + "0": "bank:24-9" + }, + "2": { + "0": "bank:24-17" + } + } + }, + "25": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:25-1" + }, + "1": { + "0": "bank:25-9" + }, + "2": { + "0": "bank:25-17" + } + } + }, + "26": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:26-1" + }, + "1": { + "0": "bank:26-9" + }, + "2": { + "0": "bank:26-17" + } + } + }, + "27": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:27-1" + }, + "1": { + "0": "bank:27-9" + }, + "2": { + "0": "bank:27-17" + } + } + }, + "28": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:28-1" + }, + "1": { + "0": "bank:28-9" + }, + "2": { + "0": "bank:28-17" + } + } + }, + "29": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:29-1" + }, + "1": { + "0": "bank:29-9" + }, + "2": { + "0": "bank:29-17" + } + } + }, + "30": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:30-1" + }, + "1": { + "0": "bank:30-9" + }, + "2": { + "0": "bank:30-17" + } + } + }, + "31": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:31-1" + }, + "1": { + "0": "bank:31-9" + }, + "2": { + "0": "bank:31-17" + } + } + }, + "32": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:32-1" + }, + "1": { + "0": "bank:32-9" + }, + "2": { + "0": "bank:32-17" + } + } + }, + "33": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:33-1" + }, + "1": { + "0": "bank:33-9" + }, + "2": { + "0": "bank:33-17" + } + } + }, + "34": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:34-1" + }, + "1": { + "0": "bank:34-9" + }, + "2": { + "0": "bank:34-17" + } + } + }, + "35": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:35-1" + }, + "1": { + "0": "bank:35-9" + }, + "2": { + "0": "bank:35-17" + } + } + }, + "36": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:36-1" + }, + "1": { + "0": "bank:36-9" + }, + "2": { + "0": "bank:36-17" + } + } + }, + "37": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:37-1" + }, + "1": { + "0": "bank:37-9" + }, + "2": { + "0": "bank:37-17" + } + } + }, + "38": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:38-1" + }, + "1": { + "0": "bank:38-9" + }, + "2": { + "0": "bank:38-17" + } + } + }, + "39": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:39-1" + }, + "1": { + "0": "bank:39-9" + }, + "2": { + "0": "bank:39-17" + } + } + }, + "40": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:40-1" + }, + "1": { + "0": "bank:40-9" + }, + "2": { + "0": "bank:40-17" + } + } + }, + "41": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:41-1" + }, + "1": { + "0": "bank:41-9" + }, + "2": { + "0": "bank:41-17" + } + } + }, + "42": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:42-1" + }, + "1": { + "0": "bank:42-9" + }, + "2": { + "0": "bank:42-17" + } + } + }, + "43": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:43-1" + }, + "1": { + "0": "bank:43-9" + }, + "2": { + "0": "bank:43-17" + } + } + }, + "44": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:44-1" + }, + "1": { + "0": "bank:44-9" + }, + "2": { + "0": "bank:44-17" + } + } + }, + "45": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:45-1" + }, + "1": { + "0": "bank:45-9" + }, + "2": { + "0": "bank:45-17" + } + } + }, + "46": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:46-1" + }, + "1": { + "0": "bank:46-9" + }, + "2": { + "0": "bank:46-17" + } + } + }, + "47": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:47-1" + }, + "1": { + "0": "bank:47-9" + }, + "2": { + "0": "bank:47-17" + } + } + }, + "48": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:48-1" + }, + "1": { + "0": "bank:48-9" + }, + "2": { + "0": "bank:48-17" + } + } + }, + "49": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:49-1" + }, + "1": { + "0": "bank:49-9" + }, + "2": { + "0": "bank:49-17" + } + } + }, + "50": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:50-1" + }, + "1": { + "0": "bank:50-9" + }, + "2": { + "0": "bank:50-17" + } + } + }, + "51": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:51-1" + }, + "1": { + "0": "bank:51-9" + }, + "2": { + "0": "bank:51-17" + } + } + }, + "52": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:52-1" + }, + "1": { + "0": "bank:52-9" + }, + "2": { + "0": "bank:52-17" + } + } + }, + "53": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:53-1" + }, + "1": { + "0": "bank:53-9" + }, + "2": { + "0": "bank:53-17" + } + } + }, + "54": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:54-1" + }, + "1": { + "0": "bank:54-9" + }, + "2": { + "0": "bank:54-17" + } + } + }, + "55": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:55-1" + }, + "1": { + "0": "bank:55-9" + }, + "2": { + "0": "bank:55-17" + } + } + }, + "56": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:56-1" + }, + "1": { + "0": "bank:56-9" + }, + "2": { + "0": "bank:56-17" + } + } + }, + "57": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:57-1" + }, + "1": { + "0": "bank:57-9" + }, + "2": { + "0": "bank:57-17" + } + } + }, + "58": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:58-1" + }, + "1": { + "0": "bank:58-9" + }, + "2": { + "0": "bank:58-17" + } + } + }, + "59": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:59-1" + }, + "1": { + "0": "bank:59-9" + }, + "2": { + "0": "bank:59-17" + } + } + }, + "60": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:60-1" + }, + "1": { + "0": "bank:60-9" + }, + "2": { + "0": "bank:60-17" + } + } + }, + "61": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:61-1" + }, + "1": { + "0": "bank:61-9" + }, + "2": { + "0": "bank:61-17" + } + } + }, + "62": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:62-1" + }, + "1": { + "0": "bank:62-9" + }, + "2": { + "0": "bank:62-17" + } + } + }, + "63": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:63-1" + }, + "1": { + "0": "bank:63-9" + }, + "2": { + "0": "bank:63-17" + } + } + }, + "64": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:64-1" + }, + "1": { + "0": "bank:64-9" + }, + "2": { + "0": "bank:64-17" + } + } + }, + "65": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:65-1" + }, + "1": { + "0": "bank:65-9" + }, + "2": { + "0": "bank:65-17" + } + } + }, + "66": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:66-1" + }, + "1": { + "0": "bank:66-9" + }, + "2": { + "0": "bank:66-17" + } + } + }, + "67": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:67-1" + }, + "1": { + "0": "bank:67-9" + }, + "2": { + "0": "bank:67-17" + } + } + }, + "68": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:68-1" + }, + "1": { + "0": "bank:68-9" + }, + "2": { + "0": "bank:68-17" + } + } + }, + "69": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:69-1" + }, + "1": { + "0": "bank:69-9" + }, + "2": { + "0": "bank:69-17" + } + } + }, + "70": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:70-1" + }, + "1": { + "0": "bank:70-9" + }, + "2": { + "0": "bank:70-17" + } + } + }, + "71": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:71-1" + }, + "1": { + "0": "bank:71-9" + }, + "2": { + "0": "bank:71-17" + } + } + }, + "72": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:72-1" + }, + "1": { + "0": "bank:72-9" + }, + "2": { + "0": "bank:72-17" + } + } + }, + "73": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:73-1" + }, + "1": { + "0": "bank:73-9" + }, + "2": { + "0": "bank:73-17" + } + } + }, + "74": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:74-1" + }, + "1": { + "0": "bank:74-9" + }, + "2": { + "0": "bank:74-17" + } + } + }, + "75": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:75-1" + }, + "1": { + "0": "bank:75-9" + }, + "2": { + "0": "bank:75-17" + } + } + }, + "76": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:76-1" + }, + "1": { + "0": "bank:76-9" + }, + "2": { + "0": "bank:76-17" + } + } + }, + "77": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:77-1" + }, + "1": { + "0": "bank:77-9" + }, + "2": { + "0": "bank:77-17" + } + } + }, + "78": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:78-1" + }, + "1": { + "0": "bank:78-9" + }, + "2": { + "0": "bank:78-17" + } + } + }, + "79": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:79-1" + }, + "1": { + "0": "bank:79-9" + }, + "2": { + "0": "bank:79-17" + } + } + }, + "80": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:80-1" + }, + "1": { + "0": "bank:80-9" + }, + "2": { + "0": "bank:80-17" + } + } + }, + "81": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:81-1" + }, + "1": { + "0": "bank:81-9" + }, + "2": { + "0": "bank:81-17" + } + } + }, + "82": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:82-1" + }, + "1": { + "0": "bank:82-9" + }, + "2": { + "0": "bank:82-17" + } + } + }, + "83": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:83-1" + }, + "1": { + "0": "bank:83-9" + }, + "2": { + "0": "bank:83-17" + } + } + }, + "84": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:84-1" + }, + "1": { + "0": "bank:84-9" + }, + "2": { + "0": "bank:84-17" + } + } + }, + "85": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:85-1" + }, + "1": { + "0": "bank:85-9" + }, + "2": { + "0": "bank:85-17" + } + } + }, + "86": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:86-1" + }, + "1": { + "0": "bank:86-9" + }, + "2": { + "0": "bank:86-17" + } + } + }, + "87": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:87-1" + }, + "1": { + "0": "bank:87-9" + }, + "2": { + "0": "bank:87-17" + } + } + }, + "88": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:88-1" + }, + "1": { + "0": "bank:88-9" + }, + "2": { + "0": "bank:88-17" + } + } + }, + "89": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:89-1" + }, + "1": { + "0": "bank:89-9" + }, + "2": { + "0": "bank:89-17" + } + } + }, + "90": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:90-1" + }, + "1": { + "0": "bank:90-9" + }, + "2": { + "0": "bank:90-17" + } + } + }, + "91": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:91-1" + }, + "1": { + "0": "bank:91-9" + }, + "2": { + "0": "bank:91-17" + } + } + }, + "92": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:92-1" + }, + "1": { + "0": "bank:92-9" + }, + "2": { + "0": "bank:92-17" + } + } + }, + "93": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:93-1" + }, + "1": { + "0": "bank:93-9" + }, + "2": { + "0": "bank:93-17" + } + } + }, + "94": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:94-1" + }, + "1": { + "0": "bank:94-9" + }, + "2": { + "0": "bank:94-17" + } + } + }, + "95": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:95-1" + }, + "1": { + "0": "bank:95-9" + }, + "2": { + "0": "bank:95-17" + } + } + }, + "96": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:96-1" + }, + "1": { + "0": "bank:96-9" + }, + "2": { + "0": "bank:96-17" + } + } + }, + "97": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:97-1" + }, + "1": { + "0": "bank:97-9" + }, + "2": { + "0": "bank:97-17" + } + } + }, + "98": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:98-1" + }, + "1": { + "0": "bank:98-9" + }, + "2": { + "0": "bank:98-17" + } + } + }, + "99": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:99-1" + }, + "1": { + "0": "bank:99-9" + }, + "2": { + "0": "bank:99-17" + } + } + } + }, + "page_config_version": 5, + "userconfig": { + "page_direction_flipped": false, + "artnet_enabled": false, + "artnet_universe": "1", + "artnet_channel": "1" + }, + "surface_groups": {} + } +} diff --git a/companion/test/Upgrade/v2tov3-upgradeStartup.test.ts b/companion/test/Upgrade/v2tov3-upgradeStartup.test.ts new file mode 100644 index 000000000..ee08a5db6 --- /dev/null +++ b/companion/test/Upgrade/v2tov3-upgradeStartup.test.ts @@ -0,0 +1,45 @@ +import { describe, it, expect, vi } from 'vitest' +import { DataStoreBase } 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' + +let nano = 0 + +vi.mock('nanoid', () => { + return { nanoid: () => '' + ++nano } +}) + +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 { + 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..c8c1c7895 --- /dev/null +++ b/companion/test/Upgrade/v2tov3/db.v2.json @@ -0,0 +1,12380 @@ +{ + "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 + } + } +} diff --git a/companion/test/Upgrade/v2tov3/db.v3.json b/companion/test/Upgrade/v2tov3/db.v3.json new file mode 100644 index 000000000..5f62cdf1e --- /dev/null +++ b/companion/test/Upgrade/v2tov3/db.v3.json @@ -0,0 +1,7962 @@ +{ + "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": "1", + "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": "2", + "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": "3", + "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": "4", + "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": "5", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + } + }, + "deviceconfig": { + "emulator: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": "" + } +} diff --git a/companion/test/Upgrade/v3tov4-upgradeStartup.test.ts b/companion/test/Upgrade/v3tov4-upgradeStartup.test.ts new file mode 100644 index 000000000..187266791 --- /dev/null +++ b/companion/test/Upgrade/v3tov4-upgradeStartup.test.ts @@ -0,0 +1,39 @@ +import { describe, it, expect } from 'vitest' +import { DataStoreBase } from '../../lib/Data/StoreBase.js' +import LogController from '../../lib/Log/Controller.js' +import v3tov4 from '../../lib/Data/Upgrades/v3tov4.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/v3tov4/db.v3.json', 'utf8') + data = JSON.parse(data) + + db.importTable('main', data) + + return db +} + +class DataDatabase extends DataStoreBase { + 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() + v3tov4.upgradeStartup(db, LogController.createLogger('test-logger')) + let data = fs.readFileSync('./companion/test/Upgrade/v3tov4/db.v4.json', 'utf8') + data = JSON.parse(data) + expect(db.getTable('main')).toEqual(data) + }) +}) diff --git a/companion/test/Upgrade/v3tov4/db.v3.json b/companion/test/Upgrade/v3tov4/db.v3.json new file mode 100644 index 000000000..e77a4d1a3 --- /dev/null +++ b/companion/test/Upgrade/v3tov4/db.v3.json @@ -0,0 +1,7979 @@ +{ + "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, + "force": true + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "aue_2DMsn", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": "1" + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "1", + "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, + "force": true + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "6MqZzuLiF7", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 2 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "2", + "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, + "force": true + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "dmEr4_iWKY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 3 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "3", + "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, + "force": true + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "XFGSRo6TaY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 4 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "4", + "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": "5", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + } + }, + "deviceconfig": { + "emulator:emulator": { + "page": 1, + "config": { + "brightness": 100, + "rotation": 0, + "use_last_page": true, + "page": 1, + "xOffset": 0, + "yOffset": 0 + }, + "type": "Emulator", + "integrationType": "emulator" + } + }, + "instance": { + "rJDPWbmC0": { + "instance_type": "bmd-atem", + "label": "atem", + "enabled": true, + "config": { + "host": "127.0.0.1", + "modelID": "0" + }, + "lastUpgradeIndex": 4, + "sortOrder": 0, + "isFirstInit": false + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "enabled": true, + "config": { + "host": "127.0.0.1" + }, + "sortOrder": 1, + "lastUpgradeIndex": 0, + "isFirstInit": false + }, + "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", + "variableFormat": "units" + }, + "lastUpgradeIndex": 0, + "sortOrder": 2, + "isFirstInit": false + } + }, + "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": 30, + "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": "", + "usb_hotplug": false, + "contour_shuttle_enable": false + } +} diff --git a/companion/test/Upgrade/v3tov4/db.v4.json b/companion/test/Upgrade/v3tov4/db.v4.json new file mode 100644 index 000000000..8c106aaa2 --- /dev/null +++ b/companion/test/Upgrade/v3tov4/db.v4.json @@ -0,0 +1,9109 @@ +{ + "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": { + "force": true, + "page": 3, + "bank": 18 + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "aue_2DMsn", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": "1" + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "1", + "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": { + "force": true, + "page": 3, + "bank": 19 + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "6MqZzuLiF7", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 2 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "2", + "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": { + "force": true, + "page": 3, + "bank": 20 + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "dmEr4_iWKY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 3 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "3", + "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": { + "force": true, + "page": 3, + "bank": 21 + }, + "delay": 0, + "actionId": "button_pressrelease" + } + ] + }, + "condition": [ + { + "id": "XFGSRo6TaY", + "type": "transmitter_turned_off", + "instance_id": "CUBzwfGYP", + "options": { + "channel": 4 + }, + "style": { + "color": 16777215, + "bgcolor": 128 + } + } + ], + "events": [ + { + "id": "4", + "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": "5", + "type": "condition_true", + "enabled": true, + "options": {} + } + ] + } + }, + "deviceconfig": { + "emulator:emulator": { + "config": { + "brightness": 100, + "rotation": 0, + "xOffset": 0, + "yOffset": 0, + "page": 1, + "use_last_page": true + }, + "type": "Emulator", + "integrationType": "emulator", + "page": 1 + } + }, + "instance": { + "rJDPWbmC0": { + "instance_type": "bmd-atem", + "label": "atem", + "enabled": true, + "config": { + "host": "127.0.0.1", + "modelID": "0" + }, + "lastUpgradeIndex": 4, + "sortOrder": 0, + "isFirstInit": false + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "enabled": true, + "config": { + "host": "127.0.0.1" + }, + "sortOrder": 1, + "lastUpgradeIndex": 0, + "isFirstInit": false + }, + "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", + "variableFormat": "units" + }, + "lastUpgradeIndex": 0, + "sortOrder": 2, + "isFirstInit": false + } + }, + "page": { + "1": { + "name": "ATEM 1", + "controls": { + "0": { + "0": "bank:1-1", + "1": "bank:1-2", + "2": "bank:1-3", + "3": "bank:1-4", + "4": "bank:1-5" + }, + "1": { + "0": "bank:1-9", + "1": "bank:1-10", + "2": "bank:1-11", + "3": "bank:1-12", + "4": "bank:1-13" + }, + "2": { + "0": "bank:1-17", + "1": "bank:1-18", + "3": "bank:1-20", + "4": "bank:1-21" + } + } + }, + "2": { + "name": "TIMER", + "controls": { + "0": { + "0": "bank:2-1", + "1": "bank:2-2", + "2": "bank:2-3", + "3": "bank:2-4", + "4": "bank:2-5" + }, + "1": { + "0": "bank:2-9", + "1": "bank:2-10", + "2": "bank:2-11", + "3": "bank:2-12" + }, + "2": { + "0": "bank:2-17", + "1": "bank:2-18", + "2": "bank:2-19", + "3": "bank:2-20" + } + } + }, + "3": { + "name": "AXIENT", + "controls": { + "0": { + "0": "bank:3-1", + "1": "bank:3-2", + "2": "bank:3-3", + "3": "bank:3-4", + "4": "bank:3-5" + }, + "1": { + "0": "bank:3-9", + "1": "bank:3-10", + "2": "bank:3-11", + "3": "bank:3-12", + "4": "bank:3-13" + }, + "2": { + "0": "bank:3-17" + } + } + }, + "4": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:4-1" + }, + "1": { + "0": "bank:4-9" + }, + "2": { + "0": "bank:4-17" + } + } + }, + "5": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:5-1" + }, + "1": { + "0": "bank:5-9" + }, + "2": { + "0": "bank:5-17" + } + } + }, + "6": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:6-1" + }, + "1": { + "0": "bank:6-9" + }, + "2": { + "0": "bank:6-17" + } + } + }, + "7": { + "name": "ATEM 2", + "controls": { + "0": { + "0": "bank:7-1", + "1": "bank:7-2", + "2": "bank:7-3", + "3": "bank:7-4", + "4": "bank:7-5" + }, + "1": { + "0": "bank:7-9", + "1": "bank:7-10", + "2": "bank:7-11", + "3": "bank:7-12", + "4": "bank:7-13" + }, + "2": { + "0": "bank:7-17", + "1": "bank:7-18", + "3": "bank:7-20", + "4": "bank:7-21" + } + } + }, + "8": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:8-1" + }, + "1": { + "0": "bank:8-9" + }, + "2": { + "0": "bank:8-17" + } + } + }, + "9": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:9-1" + }, + "1": { + "0": "bank:9-9" + }, + "2": { + "0": "bank:9-17" + } + } + }, + "10": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:10-1" + }, + "1": { + "0": "bank:10-9" + }, + "2": { + "0": "bank:10-17" + } + } + }, + "11": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:11-1" + }, + "1": { + "0": "bank:11-9" + }, + "2": { + "0": "bank:11-17" + } + } + }, + "12": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:12-1" + }, + "1": { + "0": "bank:12-9" + }, + "2": { + "0": "bank:12-17" + } + } + }, + "13": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:13-1" + }, + "1": { + "0": "bank:13-9" + }, + "2": { + "0": "bank:13-17" + } + } + }, + "14": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:14-1" + }, + "1": { + "0": "bank:14-9" + }, + "2": { + "0": "bank:14-17" + } + } + }, + "15": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:15-1" + }, + "1": { + "0": "bank:15-9" + }, + "2": { + "0": "bank:15-17" + } + } + }, + "16": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:16-1" + }, + "1": { + "0": "bank:16-9" + }, + "2": { + "0": "bank:16-17" + } + } + }, + "17": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:17-1" + }, + "1": { + "0": "bank:17-9" + }, + "2": { + "0": "bank:17-17" + } + } + }, + "18": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:18-1" + }, + "1": { + "0": "bank:18-9" + }, + "2": { + "0": "bank:18-17" + } + } + }, + "19": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:19-1" + }, + "1": { + "0": "bank:19-9" + }, + "2": { + "0": "bank:19-17" + } + } + }, + "20": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:20-1" + }, + "1": { + "0": "bank:20-9" + }, + "2": { + "0": "bank:20-17" + } + } + }, + "21": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:21-1" + }, + "1": { + "0": "bank:21-9" + }, + "2": { + "0": "bank:21-17" + } + } + }, + "22": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:22-1" + }, + "1": { + "0": "bank:22-9" + }, + "2": { + "0": "bank:22-17" + } + } + }, + "23": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:23-1" + }, + "1": { + "0": "bank:23-9" + }, + "2": { + "0": "bank:23-17" + } + } + }, + "24": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:24-1" + }, + "1": { + "0": "bank:24-9" + }, + "2": { + "0": "bank:24-17" + } + } + }, + "25": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:25-1" + }, + "1": { + "0": "bank:25-9" + }, + "2": { + "0": "bank:25-17" + } + } + }, + "26": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:26-1" + }, + "1": { + "0": "bank:26-9" + }, + "2": { + "0": "bank:26-17" + } + } + }, + "27": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:27-1" + }, + "1": { + "0": "bank:27-9" + }, + "2": { + "0": "bank:27-17" + } + } + }, + "28": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:28-1" + }, + "1": { + "0": "bank:28-9" + }, + "2": { + "0": "bank:28-17" + } + } + }, + "29": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:29-1" + }, + "1": { + "0": "bank:29-9" + }, + "2": { + "0": "bank:29-17" + } + } + }, + "30": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:30-1" + }, + "1": { + "0": "bank:30-9" + }, + "2": { + "0": "bank:30-17" + } + } + }, + "31": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:31-1" + }, + "1": { + "0": "bank:31-9" + }, + "2": { + "0": "bank:31-17" + } + } + }, + "32": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:32-1" + }, + "1": { + "0": "bank:32-9" + }, + "2": { + "0": "bank:32-17" + } + } + }, + "33": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:33-1" + }, + "1": { + "0": "bank:33-9" + }, + "2": { + "0": "bank:33-17" + } + } + }, + "34": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:34-1" + }, + "1": { + "0": "bank:34-9" + }, + "2": { + "0": "bank:34-17" + } + } + }, + "35": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:35-1" + }, + "1": { + "0": "bank:35-9" + }, + "2": { + "0": "bank:35-17" + } + } + }, + "36": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:36-1" + }, + "1": { + "0": "bank:36-9" + }, + "2": { + "0": "bank:36-17" + } + } + }, + "37": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:37-1" + }, + "1": { + "0": "bank:37-9" + }, + "2": { + "0": "bank:37-17" + } + } + }, + "38": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:38-1" + }, + "1": { + "0": "bank:38-9" + }, + "2": { + "0": "bank:38-17" + } + } + }, + "39": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:39-1" + }, + "1": { + "0": "bank:39-9" + }, + "2": { + "0": "bank:39-17" + } + } + }, + "40": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:40-1" + }, + "1": { + "0": "bank:40-9" + }, + "2": { + "0": "bank:40-17" + } + } + }, + "41": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:41-1" + }, + "1": { + "0": "bank:41-9" + }, + "2": { + "0": "bank:41-17" + } + } + }, + "42": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:42-1" + }, + "1": { + "0": "bank:42-9" + }, + "2": { + "0": "bank:42-17" + } + } + }, + "43": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:43-1" + }, + "1": { + "0": "bank:43-9" + }, + "2": { + "0": "bank:43-17" + } + } + }, + "44": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:44-1" + }, + "1": { + "0": "bank:44-9" + }, + "2": { + "0": "bank:44-17" + } + } + }, + "45": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:45-1" + }, + "1": { + "0": "bank:45-9" + }, + "2": { + "0": "bank:45-17" + } + } + }, + "46": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:46-1" + }, + "1": { + "0": "bank:46-9" + }, + "2": { + "0": "bank:46-17" + } + } + }, + "47": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:47-1" + }, + "1": { + "0": "bank:47-9" + }, + "2": { + "0": "bank:47-17" + } + } + }, + "48": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:48-1" + }, + "1": { + "0": "bank:48-9" + }, + "2": { + "0": "bank:48-17" + } + } + }, + "49": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:49-1" + }, + "1": { + "0": "bank:49-9" + }, + "2": { + "0": "bank:49-17" + } + } + }, + "50": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:50-1" + }, + "1": { + "0": "bank:50-9" + }, + "2": { + "0": "bank:50-17" + } + } + }, + "51": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:51-1" + }, + "1": { + "0": "bank:51-9" + }, + "2": { + "0": "bank:51-17" + } + } + }, + "52": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:52-1" + }, + "1": { + "0": "bank:52-9" + }, + "2": { + "0": "bank:52-17" + } + } + }, + "53": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:53-1" + }, + "1": { + "0": "bank:53-9" + }, + "2": { + "0": "bank:53-17" + } + } + }, + "54": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:54-1" + }, + "1": { + "0": "bank:54-9" + }, + "2": { + "0": "bank:54-17" + } + } + }, + "55": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:55-1" + }, + "1": { + "0": "bank:55-9" + }, + "2": { + "0": "bank:55-17" + } + } + }, + "56": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:56-1" + }, + "1": { + "0": "bank:56-9" + }, + "2": { + "0": "bank:56-17" + } + } + }, + "57": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:57-1" + }, + "1": { + "0": "bank:57-9" + }, + "2": { + "0": "bank:57-17" + } + } + }, + "58": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:58-1" + }, + "1": { + "0": "bank:58-9" + }, + "2": { + "0": "bank:58-17" + } + } + }, + "59": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:59-1" + }, + "1": { + "0": "bank:59-9" + }, + "2": { + "0": "bank:59-17" + } + } + }, + "60": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:60-1" + }, + "1": { + "0": "bank:60-9" + }, + "2": { + "0": "bank:60-17" + } + } + }, + "61": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:61-1" + }, + "1": { + "0": "bank:61-9" + }, + "2": { + "0": "bank:61-17" + } + } + }, + "62": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:62-1" + }, + "1": { + "0": "bank:62-9" + }, + "2": { + "0": "bank:62-17" + } + } + }, + "63": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:63-1" + }, + "1": { + "0": "bank:63-9" + }, + "2": { + "0": "bank:63-17" + } + } + }, + "64": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:64-1" + }, + "1": { + "0": "bank:64-9" + }, + "2": { + "0": "bank:64-17" + } + } + }, + "65": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:65-1" + }, + "1": { + "0": "bank:65-9" + }, + "2": { + "0": "bank:65-17" + } + } + }, + "66": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:66-1" + }, + "1": { + "0": "bank:66-9" + }, + "2": { + "0": "bank:66-17" + } + } + }, + "67": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:67-1" + }, + "1": { + "0": "bank:67-9" + }, + "2": { + "0": "bank:67-17" + } + } + }, + "68": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:68-1" + }, + "1": { + "0": "bank:68-9" + }, + "2": { + "0": "bank:68-17" + } + } + }, + "69": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:69-1" + }, + "1": { + "0": "bank:69-9" + }, + "2": { + "0": "bank:69-17" + } + } + }, + "70": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:70-1" + }, + "1": { + "0": "bank:70-9" + }, + "2": { + "0": "bank:70-17" + } + } + }, + "71": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:71-1" + }, + "1": { + "0": "bank:71-9" + }, + "2": { + "0": "bank:71-17" + } + } + }, + "72": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:72-1" + }, + "1": { + "0": "bank:72-9" + }, + "2": { + "0": "bank:72-17" + } + } + }, + "73": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:73-1" + }, + "1": { + "0": "bank:73-9" + }, + "2": { + "0": "bank:73-17" + } + } + }, + "74": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:74-1" + }, + "1": { + "0": "bank:74-9" + }, + "2": { + "0": "bank:74-17" + } + } + }, + "75": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:75-1" + }, + "1": { + "0": "bank:75-9" + }, + "2": { + "0": "bank:75-17" + } + } + }, + "76": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:76-1" + }, + "1": { + "0": "bank:76-9" + }, + "2": { + "0": "bank:76-17" + } + } + }, + "77": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:77-1" + }, + "1": { + "0": "bank:77-9" + }, + "2": { + "0": "bank:77-17" + } + } + }, + "78": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:78-1" + }, + "1": { + "0": "bank:78-9" + }, + "2": { + "0": "bank:78-17" + } + } + }, + "79": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:79-1" + }, + "1": { + "0": "bank:79-9" + }, + "2": { + "0": "bank:79-17" + } + } + }, + "80": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:80-1" + }, + "1": { + "0": "bank:80-9" + }, + "2": { + "0": "bank:80-17" + } + } + }, + "81": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:81-1" + }, + "1": { + "0": "bank:81-9" + }, + "2": { + "0": "bank:81-17" + } + } + }, + "82": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:82-1" + }, + "1": { + "0": "bank:82-9" + }, + "2": { + "0": "bank:82-17" + } + } + }, + "83": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:83-1" + }, + "1": { + "0": "bank:83-9" + }, + "2": { + "0": "bank:83-17" + } + } + }, + "84": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:84-1" + }, + "1": { + "0": "bank:84-9" + }, + "2": { + "0": "bank:84-17" + } + } + }, + "85": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:85-1" + }, + "1": { + "0": "bank:85-9" + }, + "2": { + "0": "bank:85-17" + } + } + }, + "86": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:86-1" + }, + "1": { + "0": "bank:86-9" + }, + "2": { + "0": "bank:86-17" + } + } + }, + "87": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:87-1" + }, + "1": { + "0": "bank:87-9" + }, + "2": { + "0": "bank:87-17" + } + } + }, + "88": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:88-1" + }, + "1": { + "0": "bank:88-9" + }, + "2": { + "0": "bank:88-17" + } + } + }, + "89": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:89-1" + }, + "1": { + "0": "bank:89-9" + }, + "2": { + "0": "bank:89-17" + } + } + }, + "90": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:90-1" + }, + "1": { + "0": "bank:90-9" + }, + "2": { + "0": "bank:90-17" + } + } + }, + "91": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:91-1" + }, + "1": { + "0": "bank:91-9" + }, + "2": { + "0": "bank:91-17" + } + } + }, + "92": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:92-1" + }, + "1": { + "0": "bank:92-9" + }, + "2": { + "0": "bank:92-17" + } + } + }, + "93": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:93-1" + }, + "1": { + "0": "bank:93-9" + }, + "2": { + "0": "bank:93-17" + } + } + }, + "94": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:94-1" + }, + "1": { + "0": "bank:94-9" + }, + "2": { + "0": "bank:94-17" + } + } + }, + "95": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:95-1" + }, + "1": { + "0": "bank:95-9" + }, + "2": { + "0": "bank:95-17" + } + } + }, + "96": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:96-1" + }, + "1": { + "0": "bank:96-9" + }, + "2": { + "0": "bank:96-17" + } + } + }, + "97": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:97-1" + }, + "1": { + "0": "bank:97-9" + }, + "2": { + "0": "bank:97-17" + } + } + }, + "98": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:98-1" + }, + "1": { + "0": "bank:98-9" + }, + "2": { + "0": "bank:98-17" + } + } + }, + "99": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:99-1" + }, + "1": { + "0": "bank:99-9" + }, + "2": { + "0": "bank:99-17" + } + } + } + }, + "page_config_version": 4, + "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": 30, + "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": "", + "usb_hotplug": false, + "contour_shuttle_enable": false + }, + "surface-groups": {} +} diff --git a/companion/test/Upgrade/v4tov5-upgradeStartup.test.ts b/companion/test/Upgrade/v4tov5-upgradeStartup.test.ts new file mode 100644 index 000000000..a21a34abd --- /dev/null +++ b/companion/test/Upgrade/v4tov5-upgradeStartup.test.ts @@ -0,0 +1,42 @@ +import { describe, it, expect } from 'vitest' +import { DataStoreBase } from '../../lib/Data/StoreBase.js' +import LogController from '../../lib/Log/Controller.js' +import v4tov5 from '../../lib/Data/Upgrades/v4tov5.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/v4tov5/db.v4.json', 'utf8') + data = JSON.parse(data) + + db.importTable('main', data) + + return db +} + +class DataDatabase extends DataStoreBase { + 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', () => { + const db = CreateDataDatabase() + let data = fs.readFileSync('./companion/test/Upgrade/v4tov5/db.v5.json', 'utf8') + data = JSON.parse(data) + v4tov5.upgradeStartup(db, LogController.createLogger('test-logger')) + it('main', () => { + expect(db.getTable('main')).toEqual(data['main']) + }) + it('controls', () => { + expect(db.getTable('controls')).toEqual(data['controls']) + }) +}) diff --git a/companion/test/Upgrade/v4tov5/db.v4.json b/companion/test/Upgrade/v4tov5/db.v4.json new file mode 100644 index 000000000..e269b6904 --- /dev/null +++ b/companion/test/Upgrade/v4tov5/db.v4.json @@ -0,0 +1,3590 @@ +{ + "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-9": { + "style": { "show_topbar": "default" }, + "options": { "rotaryActions": false, "stepAutoProgress": true }, + "type": "pagenum", + "steps": { "0": { "action_sets": { "down": [], "up": [] } } }, + "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": [] + } + }, + "deviceconfig": { + "emulator:emulator": { + "type": "Emulator", + "integrationType": "emulator", + "gridSize": { "columns": 8, "rows": 4 }, + "config": { + "brightness": 100, + "rotation": 0, + "never_lock": false, + "xOffset": 0, + "yOffset": 0, + "groupId": null, + "emulator_control_enable": false, + "emulator_prompt_fullscreen": false, + "emulator_columns": 8, + "emulator_rows": 4 + }, + "groupConfig": { "name": "Auto group", "last_page": 1, "startup_page": 1, "use_last_page": true, "page": 1 } + } + }, + "instance": { + "rJDPWbmC0": { + "instance_type": "bmd-atem", + "label": "atem", + "enabled": true, + "config": { "host": "127.0.0.1" }, + "sortOrder": 0, + "lastUpgradeIndex": 6, + "isFirstInit": false + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "enabled": true, + "config": { "host": "127.0.0.1" }, + "sortOrder": 1, + "lastUpgradeIndex": 0, + "isFirstInit": false + } + }, + "page": { + "1": { + "name": "ATEM 1", + "controls": { + "0": { "0": "bank:1-1", "1": "bank:1-2", "2": "bank:1-3", "3": "bank:1-4", "4": "bank:1-5" }, + "1": { "0": "bank:1-9", "1": "bank:1-10", "2": "bank:1-11", "3": "bank:1-12", "4": "bank:1-13" }, + "2": { "0": "bank:1-17", "1": "bank:1-18", "3": "bank:1-20", "4": "bank:1-21" } + } + }, + "2": { + "name": "TIMER", + "controls": { + "0": { "0": "bank:2-1", "1": "bank:2-2", "2": "bank:2-3", "3": "bank:2-4", "4": "bank:2-5" }, + "1": { "0": "bank:2-9", "1": "bank:2-10", "2": "bank:2-11", "3": "bank:2-12" }, + "2": { "0": "bank:2-17", "1": "bank:2-18", "2": "bank:2-19", "3": "bank:2-20" } + } + }, + "3": { + "name": "PAGE", + "controls": { "0": { "0": "bank:3-1" }, "1": { "0": "bank:3-9" }, "2": { "0": "bank:3-17" } } + }, + "4": { + "name": "PAGE", + "controls": { "0": { "0": "bank:4-1" }, "1": { "0": "bank:4-9" }, "2": { "0": "bank:4-17" } } + }, + "5": { + "name": "PAGE", + "controls": { "0": { "0": "bank:5-1" }, "1": { "0": "bank:5-9" }, "2": { "0": "bank:5-17" } } + }, + "6": { + "name": "PAGE", + "controls": { "0": { "0": "bank:6-1" }, "1": { "0": "bank:6-9" }, "2": { "0": "bank:6-17" } } + }, + "7": { + "name": "ATEM 2", + "controls": { + "0": { "0": "bank:7-1", "1": "bank:7-2", "2": "bank:7-3", "3": "bank:7-4", "4": "bank:7-5" }, + "1": { "0": "bank:7-9", "1": "bank:7-10", "2": "bank:7-11", "3": "bank:7-12", "4": "bank:7-13" }, + "2": { "0": "bank:7-17", "1": "bank:7-18", "3": "bank:7-20", "4": "bank:7-21" } + } + }, + "8": { + "name": "PAGE", + "controls": { "0": { "0": "bank:8-1" }, "1": { "0": "bank:8-9" }, "2": { "0": "bank:8-17" } } + }, + "9": { + "name": "PAGE", + "controls": { "0": { "0": "bank:9-1" }, "1": { "0": "bank:9-9" }, "2": { "0": "bank:9-17" } } + }, + "10": { + "name": "PAGE", + "controls": { "0": { "0": "bank:10-1" }, "1": { "0": "bank:10-9" }, "2": { "0": "bank:10-17" } } + }, + "11": { + "name": "PAGE", + "controls": { "0": { "0": "bank:11-1" }, "1": { "0": "bank:11-9" }, "2": { "0": "bank:11-17" } } + }, + "12": { + "name": "PAGE", + "controls": { "0": { "0": "bank:12-1" }, "1": { "0": "bank:12-9" }, "2": { "0": "bank:12-17" } } + }, + "13": { + "name": "PAGE", + "controls": { "0": { "0": "bank:13-1" }, "1": { "0": "bank:13-9" }, "2": { "0": "bank:13-17" } } + }, + "14": { + "name": "PAGE", + "controls": { "0": { "0": "bank:14-1" }, "1": { "0": "bank:14-9" }, "2": { "0": "bank:14-17" } } + }, + "15": { + "name": "PAGE", + "controls": { "0": { "0": "bank:15-1" }, "1": { "0": "bank:15-9" }, "2": { "0": "bank:15-17" } } + }, + "16": { + "name": "PAGE", + "controls": { "0": { "0": "bank:16-1" }, "1": { "0": "bank:16-9" }, "2": { "0": "bank:16-17" } } + }, + "17": { + "name": "PAGE", + "controls": { "0": { "0": "bank:17-1" }, "1": { "0": "bank:17-9" }, "2": { "0": "bank:17-17" } } + }, + "18": { + "name": "PAGE", + "controls": { "0": { "0": "bank:18-1" }, "1": { "0": "bank:18-9" }, "2": { "0": "bank:18-17" } } + }, + "19": { + "name": "PAGE", + "controls": { "0": { "0": "bank:19-1" }, "1": { "0": "bank:19-9" }, "2": { "0": "bank:19-17" } } + }, + "20": { + "name": "PAGE", + "controls": { "0": { "0": "bank:20-1" }, "1": { "0": "bank:20-9" }, "2": { "0": "bank:20-17" } } + }, + "21": { + "name": "PAGE", + "controls": { "0": { "0": "bank:21-1" }, "1": { "0": "bank:21-9" }, "2": { "0": "bank:21-17" } } + }, + "22": { + "name": "PAGE", + "controls": { "0": { "0": "bank:22-1" }, "1": { "0": "bank:22-9" }, "2": { "0": "bank:22-17" } } + }, + "23": { + "name": "PAGE", + "controls": { "0": { "0": "bank:23-1" }, "1": { "0": "bank:23-9" }, "2": { "0": "bank:23-17" } } + }, + "24": { + "name": "PAGE", + "controls": { "0": { "0": "bank:24-1" }, "1": { "0": "bank:24-9" }, "2": { "0": "bank:24-17" } } + }, + "25": { + "name": "PAGE", + "controls": { "0": { "0": "bank:25-1" }, "1": { "0": "bank:25-9" }, "2": { "0": "bank:25-17" } } + }, + "26": { + "name": "PAGE", + "controls": { "0": { "0": "bank:26-1" }, "1": { "0": "bank:26-9" }, "2": { "0": "bank:26-17" } } + }, + "27": { + "name": "PAGE", + "controls": { "0": { "0": "bank:27-1" }, "1": { "0": "bank:27-9" }, "2": { "0": "bank:27-17" } } + }, + "28": { + "name": "PAGE", + "controls": { "0": { "0": "bank:28-1" }, "1": { "0": "bank:28-9" }, "2": { "0": "bank:28-17" } } + }, + "29": { + "name": "PAGE", + "controls": { "0": { "0": "bank:29-1" }, "1": { "0": "bank:29-9" }, "2": { "0": "bank:29-17" } } + }, + "30": { + "name": "PAGE", + "controls": { "0": { "0": "bank:30-1" }, "1": { "0": "bank:30-9" }, "2": { "0": "bank:30-17" } } + }, + "31": { + "name": "PAGE", + "controls": { "0": { "0": "bank:31-1" }, "1": { "0": "bank:31-9" }, "2": { "0": "bank:31-17" } } + }, + "32": { + "name": "PAGE", + "controls": { "0": { "0": "bank:32-1" }, "1": { "0": "bank:32-9" }, "2": { "0": "bank:32-17" } } + }, + "33": { + "name": "PAGE", + "controls": { "0": { "0": "bank:33-1" }, "1": { "0": "bank:33-9" }, "2": { "0": "bank:33-17" } } + }, + "34": { + "name": "PAGE", + "controls": { "0": { "0": "bank:34-1" }, "1": { "0": "bank:34-9" }, "2": { "0": "bank:34-17" } } + }, + "35": { + "name": "PAGE", + "controls": { "0": { "0": "bank:35-1" }, "1": { "0": "bank:35-9" }, "2": { "0": "bank:35-17" } } + }, + "36": { + "name": "PAGE", + "controls": { "0": { "0": "bank:36-1" }, "1": { "0": "bank:36-9" }, "2": { "0": "bank:36-17" } } + }, + "37": { + "name": "PAGE", + "controls": { "0": { "0": "bank:37-1" }, "1": { "0": "bank:37-9" }, "2": { "0": "bank:37-17" } } + }, + "38": { + "name": "PAGE", + "controls": { "0": { "0": "bank:38-1" }, "1": { "0": "bank:38-9" }, "2": { "0": "bank:38-17" } } + }, + "39": { + "name": "PAGE", + "controls": { "0": { "0": "bank:39-1" }, "1": { "0": "bank:39-9" }, "2": { "0": "bank:39-17" } } + }, + "40": { + "name": "PAGE", + "controls": { "0": { "0": "bank:40-1" }, "1": { "0": "bank:40-9" }, "2": { "0": "bank:40-17" } } + }, + "41": { + "name": "PAGE", + "controls": { "0": { "0": "bank:41-1" }, "1": { "0": "bank:41-9" }, "2": { "0": "bank:41-17" } } + }, + "42": { + "name": "PAGE", + "controls": { "0": { "0": "bank:42-1" }, "1": { "0": "bank:42-9" }, "2": { "0": "bank:42-17" } } + }, + "43": { + "name": "PAGE", + "controls": { "0": { "0": "bank:43-1" }, "1": { "0": "bank:43-9" }, "2": { "0": "bank:43-17" } } + }, + "44": { + "name": "PAGE", + "controls": { "0": { "0": "bank:44-1" }, "1": { "0": "bank:44-9" }, "2": { "0": "bank:44-17" } } + }, + "45": { + "name": "PAGE", + "controls": { "0": { "0": "bank:45-1" }, "1": { "0": "bank:45-9" }, "2": { "0": "bank:45-17" } } + }, + "46": { + "name": "PAGE", + "controls": { "0": { "0": "bank:46-1" }, "1": { "0": "bank:46-9" }, "2": { "0": "bank:46-17" } } + }, + "47": { + "name": "PAGE", + "controls": { "0": { "0": "bank:47-1" }, "1": { "0": "bank:47-9" }, "2": { "0": "bank:47-17" } } + }, + "48": { + "name": "PAGE", + "controls": { "0": { "0": "bank:48-1" }, "1": { "0": "bank:48-9" }, "2": { "0": "bank:48-17" } } + }, + "49": { + "name": "PAGE", + "controls": { "0": { "0": "bank:49-1" }, "1": { "0": "bank:49-9" }, "2": { "0": "bank:49-17" } } + }, + "50": { + "name": "PAGE", + "controls": { "0": { "0": "bank:50-1" }, "1": { "0": "bank:50-9" }, "2": { "0": "bank:50-17" } } + }, + "51": { + "name": "PAGE", + "controls": { "0": { "0": "bank:51-1" }, "1": { "0": "bank:51-9" }, "2": { "0": "bank:51-17" } } + }, + "52": { + "name": "PAGE", + "controls": { "0": { "0": "bank:52-1" }, "1": { "0": "bank:52-9" }, "2": { "0": "bank:52-17" } } + }, + "53": { + "name": "PAGE", + "controls": { "0": { "0": "bank:53-1" }, "1": { "0": "bank:53-9" }, "2": { "0": "bank:53-17" } } + }, + "54": { + "name": "PAGE", + "controls": { "0": { "0": "bank:54-1" }, "1": { "0": "bank:54-9" }, "2": { "0": "bank:54-17" } } + }, + "55": { + "name": "PAGE", + "controls": { "0": { "0": "bank:55-1" }, "1": { "0": "bank:55-9" }, "2": { "0": "bank:55-17" } } + }, + "56": { + "name": "PAGE", + "controls": { "0": { "0": "bank:56-1" }, "1": { "0": "bank:56-9" }, "2": { "0": "bank:56-17" } } + }, + "57": { + "name": "PAGE", + "controls": { "0": { "0": "bank:57-1" }, "1": { "0": "bank:57-9" }, "2": { "0": "bank:57-17" } } + }, + "58": { + "name": "PAGE", + "controls": { "0": { "0": "bank:58-1" }, "1": { "0": "bank:58-9" }, "2": { "0": "bank:58-17" } } + }, + "59": { + "name": "PAGE", + "controls": { "0": { "0": "bank:59-1" }, "1": { "0": "bank:59-9" }, "2": { "0": "bank:59-17" } } + }, + "60": { + "name": "PAGE", + "controls": { "0": { "0": "bank:60-1" }, "1": { "0": "bank:60-9" }, "2": { "0": "bank:60-17" } } + }, + "61": { + "name": "PAGE", + "controls": { "0": { "0": "bank:61-1" }, "1": { "0": "bank:61-9" }, "2": { "0": "bank:61-17" } } + }, + "62": { + "name": "PAGE", + "controls": { "0": { "0": "bank:62-1" }, "1": { "0": "bank:62-9" }, "2": { "0": "bank:62-17" } } + }, + "63": { + "name": "PAGE", + "controls": { "0": { "0": "bank:63-1" }, "1": { "0": "bank:63-9" }, "2": { "0": "bank:63-17" } } + }, + "64": { + "name": "PAGE", + "controls": { "0": { "0": "bank:64-1" }, "1": { "0": "bank:64-9" }, "2": { "0": "bank:64-17" } } + }, + "65": { + "name": "PAGE", + "controls": { "0": { "0": "bank:65-1" }, "1": { "0": "bank:65-9" }, "2": { "0": "bank:65-17" } } + }, + "66": { + "name": "PAGE", + "controls": { "0": { "0": "bank:66-1" }, "1": { "0": "bank:66-9" }, "2": { "0": "bank:66-17" } } + }, + "67": { + "name": "PAGE", + "controls": { "0": { "0": "bank:67-1" }, "1": { "0": "bank:67-9" }, "2": { "0": "bank:67-17" } } + }, + "68": { + "name": "PAGE", + "controls": { "0": { "0": "bank:68-1" }, "1": { "0": "bank:68-9" }, "2": { "0": "bank:68-17" } } + }, + "69": { + "name": "PAGE", + "controls": { "0": { "0": "bank:69-1" }, "1": { "0": "bank:69-9" }, "2": { "0": "bank:69-17" } } + }, + "70": { + "name": "PAGE", + "controls": { "0": { "0": "bank:70-1" }, "1": { "0": "bank:70-9" }, "2": { "0": "bank:70-17" } } + }, + "71": { + "name": "PAGE", + "controls": { "0": { "0": "bank:71-1" }, "1": { "0": "bank:71-9" }, "2": { "0": "bank:71-17" } } + }, + "72": { + "name": "PAGE", + "controls": { "0": { "0": "bank:72-1" }, "1": { "0": "bank:72-9" }, "2": { "0": "bank:72-17" } } + }, + "73": { + "name": "PAGE", + "controls": { "0": { "0": "bank:73-1" }, "1": { "0": "bank:73-9" }, "2": { "0": "bank:73-17" } } + }, + "74": { + "name": "PAGE", + "controls": { "0": { "0": "bank:74-1" }, "1": { "0": "bank:74-9" }, "2": { "0": "bank:74-17" } } + }, + "75": { + "name": "PAGE", + "controls": { "0": { "0": "bank:75-1" }, "1": { "0": "bank:75-9" }, "2": { "0": "bank:75-17" } } + }, + "76": { + "name": "PAGE", + "controls": { "0": { "0": "bank:76-1" }, "1": { "0": "bank:76-9" }, "2": { "0": "bank:76-17" } } + }, + "77": { + "name": "PAGE", + "controls": { "0": { "0": "bank:77-1" }, "1": { "0": "bank:77-9" }, "2": { "0": "bank:77-17" } } + }, + "78": { + "name": "PAGE", + "controls": { "0": { "0": "bank:78-1" }, "1": { "0": "bank:78-9" }, "2": { "0": "bank:78-17" } } + }, + "79": { + "name": "PAGE", + "controls": { "0": { "0": "bank:79-1" }, "1": { "0": "bank:79-9" }, "2": { "0": "bank:79-17" } } + }, + "80": { + "name": "PAGE", + "controls": { "0": { "0": "bank:80-1" }, "1": { "0": "bank:80-9" }, "2": { "0": "bank:80-17" } } + }, + "81": { + "name": "PAGE", + "controls": { "0": { "0": "bank:81-1" }, "1": { "0": "bank:81-9" }, "2": { "0": "bank:81-17" } } + }, + "82": { + "name": "PAGE", + "controls": { "0": { "0": "bank:82-1" }, "1": { "0": "bank:82-9" }, "2": { "0": "bank:82-17" } } + }, + "83": { + "name": "PAGE", + "controls": { "0": { "0": "bank:83-1" }, "1": { "0": "bank:83-9" }, "2": { "0": "bank:83-17" } } + }, + "84": { + "name": "PAGE", + "controls": { "0": { "0": "bank:84-1" }, "1": { "0": "bank:84-9" }, "2": { "0": "bank:84-17" } } + }, + "85": { + "name": "PAGE", + "controls": { "0": { "0": "bank:85-1" }, "1": { "0": "bank:85-9" }, "2": { "0": "bank:85-17" } } + }, + "86": { + "name": "PAGE", + "controls": { "0": { "0": "bank:86-1" }, "1": { "0": "bank:86-9" }, "2": { "0": "bank:86-17" } } + }, + "87": { + "name": "PAGE", + "controls": { "0": { "0": "bank:87-1" }, "1": { "0": "bank:87-9" }, "2": { "0": "bank:87-17" } } + }, + "88": { + "name": "PAGE", + "controls": { "0": { "0": "bank:88-1" }, "1": { "0": "bank:88-9" }, "2": { "0": "bank:88-17" } } + }, + "89": { + "name": "PAGE", + "controls": { "0": { "0": "bank:89-1" }, "1": { "0": "bank:89-9" }, "2": { "0": "bank:89-17" } } + }, + "90": { + "name": "PAGE", + "controls": { "0": { "0": "bank:90-1" }, "1": { "0": "bank:90-9" }, "2": { "0": "bank:90-17" } } + }, + "91": { + "name": "PAGE", + "controls": { "0": { "0": "bank:91-1" }, "1": { "0": "bank:91-9" }, "2": { "0": "bank:91-17" } } + }, + "92": { + "name": "PAGE", + "controls": { "0": { "0": "bank:92-1" }, "1": { "0": "bank:92-9" }, "2": { "0": "bank:92-17" } } + }, + "93": { + "name": "PAGE", + "controls": { "0": { "0": "bank:93-1" }, "1": { "0": "bank:93-9" }, "2": { "0": "bank:93-17" } } + }, + "94": { + "name": "PAGE", + "controls": { "0": { "0": "bank:94-1" }, "1": { "0": "bank:94-9" }, "2": { "0": "bank:94-17" } } + }, + "95": { + "name": "PAGE", + "controls": { "0": { "0": "bank:95-1" }, "1": { "0": "bank:95-9" }, "2": { "0": "bank:95-17" } } + }, + "96": { + "name": "PAGE", + "controls": { "0": { "0": "bank:96-1" }, "1": { "0": "bank:96-9" }, "2": { "0": "bank:96-17" } } + }, + "97": { + "name": "PAGE", + "controls": { "0": { "0": "bank:97-1" }, "1": { "0": "bank:97-9" }, "2": { "0": "bank:97-17" } } + }, + "98": { + "name": "PAGE", + "controls": { "0": { "0": "bank:98-1" }, "1": { "0": "bank:98-9" }, "2": { "0": "bank:98-17" } } + }, + "99": { + "name": "PAGE", + "controls": { "0": { "0": "bank:99-1" }, "1": { "0": "bank:99-9" }, "2": { "0": "bank:99-17" } } + } + }, + "page_config_version": 4, + "userconfig": { + "page_direction_flipped": false, + "artnet_enabled": false, + "artnet_universe": "1", + "artnet_channel": "1", + "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, + "usb_hotplug": false, + "osc_legacy_api_enabled": true, + "tcp_legacy_api_enabled": true, + "udp_legacy_api_enabled": true, + "http_api_enabled": true, + "http_legacy_api_enabled": true, + "setup_wizard": 30, + "page_plusminus": false, + "remove_topbar": false, + "xkeys_legacy_layout": false, + "elgato_plugin_enable": false, + "loupedeck_enable": false, + "contour_shuttle_enable": false, + "pin_enable": false, + "link_lockouts": false, + "pin": "", + "pin_timeout": 0, + "rosstalk_enabled": false, + "videohub_panel_enabled": false, + "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": "", + "gridSize": { "minColumn": 0, "maxColumn": 7, "minRow": 0, "maxRow": 3 }, + "gridSizeInlineGrow": false, + "vec_footpedal_enable": false, + "blackmagic_controller_enable": false, + "mystrix_enable": false, + "installName": "", + "discoveryEnabled": true + }, + "surface-groups": {}, + "custom_variables": {}, + "outbound_surfaces": {} +} diff --git a/companion/test/Upgrade/v4tov5/db.v5.json b/companion/test/Upgrade/v4tov5/db.v5.json new file mode 100644 index 000000000..e51741461 --- /dev/null +++ b/companion/test/Upgrade/v4tov5/db.v5.json @@ -0,0 +1,8499 @@ +{ + "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-9": { + "style": { + "show_topbar": "default" + }, + "options": { + "rotaryActions": false, + "stepAutoProgress": true + }, + "type": "pagenum", + "steps": { + "0": { + "action_sets": { + "down": [], + "up": [] + } + } + }, + "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": [] + } + }, + "main": { + "deviceconfig": { + "emulator:emulator": { + "type": "Emulator", + "integrationType": "emulator", + "gridSize": { + "columns": 8, + "rows": 4 + }, + "config": { + "brightness": 100, + "rotation": 0, + "never_lock": false, + "xOffset": 0, + "yOffset": 0, + "groupId": null, + "emulator_control_enable": false, + "emulator_prompt_fullscreen": false, + "emulator_columns": 8, + "emulator_rows": 4 + }, + "groupConfig": { + "name": "Auto group", + "last_page": 1, + "startup_page": 1, + "use_last_page": true, + "page": 1 + } + } + }, + "instance": { + "rJDPWbmC0": { + "instance_type": "bmd-atem", + "label": "atem", + "enabled": true, + "config": { + "host": "127.0.0.1" + }, + "sortOrder": 0, + "lastUpgradeIndex": 6, + "isFirstInit": false + }, + "SkQQuDPAA": { + "instance_type": "irisdown-countdowntimer", + "label": "countdown", + "enabled": true, + "config": { + "host": "127.0.0.1" + }, + "sortOrder": 1, + "lastUpgradeIndex": 0, + "isFirstInit": false + } + }, + "page": { + "1": { + "name": "ATEM 1", + "controls": { + "0": { + "0": "bank:1-1", + "1": "bank:1-2", + "2": "bank:1-3", + "3": "bank:1-4", + "4": "bank:1-5" + }, + "1": { + "0": "bank:1-9", + "1": "bank:1-10", + "2": "bank:1-11", + "3": "bank:1-12", + "4": "bank:1-13" + }, + "2": { + "0": "bank:1-17", + "1": "bank:1-18", + "3": "bank:1-20", + "4": "bank:1-21" + } + } + }, + "2": { + "name": "TIMER", + "controls": { + "0": { + "0": "bank:2-1", + "1": "bank:2-2", + "2": "bank:2-3", + "3": "bank:2-4", + "4": "bank:2-5" + }, + "1": { + "0": "bank:2-9", + "1": "bank:2-10", + "2": "bank:2-11", + "3": "bank:2-12" + }, + "2": { + "0": "bank:2-17", + "1": "bank:2-18", + "2": "bank:2-19", + "3": "bank:2-20" + } + } + }, + "3": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:3-1" + }, + "1": { + "0": "bank:3-9" + }, + "2": { + "0": "bank:3-17" + } + } + }, + "4": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:4-1" + }, + "1": { + "0": "bank:4-9" + }, + "2": { + "0": "bank:4-17" + } + } + }, + "5": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:5-1" + }, + "1": { + "0": "bank:5-9" + }, + "2": { + "0": "bank:5-17" + } + } + }, + "6": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:6-1" + }, + "1": { + "0": "bank:6-9" + }, + "2": { + "0": "bank:6-17" + } + } + }, + "7": { + "name": "ATEM 2", + "controls": { + "0": { + "0": "bank:7-1", + "1": "bank:7-2", + "2": "bank:7-3", + "3": "bank:7-4", + "4": "bank:7-5" + }, + "1": { + "0": "bank:7-9", + "1": "bank:7-10", + "2": "bank:7-11", + "3": "bank:7-12", + "4": "bank:7-13" + }, + "2": { + "0": "bank:7-17", + "1": "bank:7-18", + "3": "bank:7-20", + "4": "bank:7-21" + } + } + }, + "8": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:8-1" + }, + "1": { + "0": "bank:8-9" + }, + "2": { + "0": "bank:8-17" + } + } + }, + "9": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:9-1" + }, + "1": { + "0": "bank:9-9" + }, + "2": { + "0": "bank:9-17" + } + } + }, + "10": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:10-1" + }, + "1": { + "0": "bank:10-9" + }, + "2": { + "0": "bank:10-17" + } + } + }, + "11": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:11-1" + }, + "1": { + "0": "bank:11-9" + }, + "2": { + "0": "bank:11-17" + } + } + }, + "12": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:12-1" + }, + "1": { + "0": "bank:12-9" + }, + "2": { + "0": "bank:12-17" + } + } + }, + "13": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:13-1" + }, + "1": { + "0": "bank:13-9" + }, + "2": { + "0": "bank:13-17" + } + } + }, + "14": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:14-1" + }, + "1": { + "0": "bank:14-9" + }, + "2": { + "0": "bank:14-17" + } + } + }, + "15": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:15-1" + }, + "1": { + "0": "bank:15-9" + }, + "2": { + "0": "bank:15-17" + } + } + }, + "16": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:16-1" + }, + "1": { + "0": "bank:16-9" + }, + "2": { + "0": "bank:16-17" + } + } + }, + "17": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:17-1" + }, + "1": { + "0": "bank:17-9" + }, + "2": { + "0": "bank:17-17" + } + } + }, + "18": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:18-1" + }, + "1": { + "0": "bank:18-9" + }, + "2": { + "0": "bank:18-17" + } + } + }, + "19": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:19-1" + }, + "1": { + "0": "bank:19-9" + }, + "2": { + "0": "bank:19-17" + } + } + }, + "20": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:20-1" + }, + "1": { + "0": "bank:20-9" + }, + "2": { + "0": "bank:20-17" + } + } + }, + "21": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:21-1" + }, + "1": { + "0": "bank:21-9" + }, + "2": { + "0": "bank:21-17" + } + } + }, + "22": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:22-1" + }, + "1": { + "0": "bank:22-9" + }, + "2": { + "0": "bank:22-17" + } + } + }, + "23": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:23-1" + }, + "1": { + "0": "bank:23-9" + }, + "2": { + "0": "bank:23-17" + } + } + }, + "24": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:24-1" + }, + "1": { + "0": "bank:24-9" + }, + "2": { + "0": "bank:24-17" + } + } + }, + "25": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:25-1" + }, + "1": { + "0": "bank:25-9" + }, + "2": { + "0": "bank:25-17" + } + } + }, + "26": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:26-1" + }, + "1": { + "0": "bank:26-9" + }, + "2": { + "0": "bank:26-17" + } + } + }, + "27": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:27-1" + }, + "1": { + "0": "bank:27-9" + }, + "2": { + "0": "bank:27-17" + } + } + }, + "28": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:28-1" + }, + "1": { + "0": "bank:28-9" + }, + "2": { + "0": "bank:28-17" + } + } + }, + "29": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:29-1" + }, + "1": { + "0": "bank:29-9" + }, + "2": { + "0": "bank:29-17" + } + } + }, + "30": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:30-1" + }, + "1": { + "0": "bank:30-9" + }, + "2": { + "0": "bank:30-17" + } + } + }, + "31": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:31-1" + }, + "1": { + "0": "bank:31-9" + }, + "2": { + "0": "bank:31-17" + } + } + }, + "32": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:32-1" + }, + "1": { + "0": "bank:32-9" + }, + "2": { + "0": "bank:32-17" + } + } + }, + "33": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:33-1" + }, + "1": { + "0": "bank:33-9" + }, + "2": { + "0": "bank:33-17" + } + } + }, + "34": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:34-1" + }, + "1": { + "0": "bank:34-9" + }, + "2": { + "0": "bank:34-17" + } + } + }, + "35": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:35-1" + }, + "1": { + "0": "bank:35-9" + }, + "2": { + "0": "bank:35-17" + } + } + }, + "36": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:36-1" + }, + "1": { + "0": "bank:36-9" + }, + "2": { + "0": "bank:36-17" + } + } + }, + "37": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:37-1" + }, + "1": { + "0": "bank:37-9" + }, + "2": { + "0": "bank:37-17" + } + } + }, + "38": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:38-1" + }, + "1": { + "0": "bank:38-9" + }, + "2": { + "0": "bank:38-17" + } + } + }, + "39": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:39-1" + }, + "1": { + "0": "bank:39-9" + }, + "2": { + "0": "bank:39-17" + } + } + }, + "40": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:40-1" + }, + "1": { + "0": "bank:40-9" + }, + "2": { + "0": "bank:40-17" + } + } + }, + "41": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:41-1" + }, + "1": { + "0": "bank:41-9" + }, + "2": { + "0": "bank:41-17" + } + } + }, + "42": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:42-1" + }, + "1": { + "0": "bank:42-9" + }, + "2": { + "0": "bank:42-17" + } + } + }, + "43": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:43-1" + }, + "1": { + "0": "bank:43-9" + }, + "2": { + "0": "bank:43-17" + } + } + }, + "44": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:44-1" + }, + "1": { + "0": "bank:44-9" + }, + "2": { + "0": "bank:44-17" + } + } + }, + "45": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:45-1" + }, + "1": { + "0": "bank:45-9" + }, + "2": { + "0": "bank:45-17" + } + } + }, + "46": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:46-1" + }, + "1": { + "0": "bank:46-9" + }, + "2": { + "0": "bank:46-17" + } + } + }, + "47": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:47-1" + }, + "1": { + "0": "bank:47-9" + }, + "2": { + "0": "bank:47-17" + } + } + }, + "48": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:48-1" + }, + "1": { + "0": "bank:48-9" + }, + "2": { + "0": "bank:48-17" + } + } + }, + "49": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:49-1" + }, + "1": { + "0": "bank:49-9" + }, + "2": { + "0": "bank:49-17" + } + } + }, + "50": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:50-1" + }, + "1": { + "0": "bank:50-9" + }, + "2": { + "0": "bank:50-17" + } + } + }, + "51": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:51-1" + }, + "1": { + "0": "bank:51-9" + }, + "2": { + "0": "bank:51-17" + } + } + }, + "52": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:52-1" + }, + "1": { + "0": "bank:52-9" + }, + "2": { + "0": "bank:52-17" + } + } + }, + "53": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:53-1" + }, + "1": { + "0": "bank:53-9" + }, + "2": { + "0": "bank:53-17" + } + } + }, + "54": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:54-1" + }, + "1": { + "0": "bank:54-9" + }, + "2": { + "0": "bank:54-17" + } + } + }, + "55": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:55-1" + }, + "1": { + "0": "bank:55-9" + }, + "2": { + "0": "bank:55-17" + } + } + }, + "56": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:56-1" + }, + "1": { + "0": "bank:56-9" + }, + "2": { + "0": "bank:56-17" + } + } + }, + "57": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:57-1" + }, + "1": { + "0": "bank:57-9" + }, + "2": { + "0": "bank:57-17" + } + } + }, + "58": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:58-1" + }, + "1": { + "0": "bank:58-9" + }, + "2": { + "0": "bank:58-17" + } + } + }, + "59": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:59-1" + }, + "1": { + "0": "bank:59-9" + }, + "2": { + "0": "bank:59-17" + } + } + }, + "60": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:60-1" + }, + "1": { + "0": "bank:60-9" + }, + "2": { + "0": "bank:60-17" + } + } + }, + "61": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:61-1" + }, + "1": { + "0": "bank:61-9" + }, + "2": { + "0": "bank:61-17" + } + } + }, + "62": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:62-1" + }, + "1": { + "0": "bank:62-9" + }, + "2": { + "0": "bank:62-17" + } + } + }, + "63": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:63-1" + }, + "1": { + "0": "bank:63-9" + }, + "2": { + "0": "bank:63-17" + } + } + }, + "64": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:64-1" + }, + "1": { + "0": "bank:64-9" + }, + "2": { + "0": "bank:64-17" + } + } + }, + "65": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:65-1" + }, + "1": { + "0": "bank:65-9" + }, + "2": { + "0": "bank:65-17" + } + } + }, + "66": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:66-1" + }, + "1": { + "0": "bank:66-9" + }, + "2": { + "0": "bank:66-17" + } + } + }, + "67": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:67-1" + }, + "1": { + "0": "bank:67-9" + }, + "2": { + "0": "bank:67-17" + } + } + }, + "68": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:68-1" + }, + "1": { + "0": "bank:68-9" + }, + "2": { + "0": "bank:68-17" + } + } + }, + "69": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:69-1" + }, + "1": { + "0": "bank:69-9" + }, + "2": { + "0": "bank:69-17" + } + } + }, + "70": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:70-1" + }, + "1": { + "0": "bank:70-9" + }, + "2": { + "0": "bank:70-17" + } + } + }, + "71": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:71-1" + }, + "1": { + "0": "bank:71-9" + }, + "2": { + "0": "bank:71-17" + } + } + }, + "72": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:72-1" + }, + "1": { + "0": "bank:72-9" + }, + "2": { + "0": "bank:72-17" + } + } + }, + "73": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:73-1" + }, + "1": { + "0": "bank:73-9" + }, + "2": { + "0": "bank:73-17" + } + } + }, + "74": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:74-1" + }, + "1": { + "0": "bank:74-9" + }, + "2": { + "0": "bank:74-17" + } + } + }, + "75": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:75-1" + }, + "1": { + "0": "bank:75-9" + }, + "2": { + "0": "bank:75-17" + } + } + }, + "76": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:76-1" + }, + "1": { + "0": "bank:76-9" + }, + "2": { + "0": "bank:76-17" + } + } + }, + "77": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:77-1" + }, + "1": { + "0": "bank:77-9" + }, + "2": { + "0": "bank:77-17" + } + } + }, + "78": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:78-1" + }, + "1": { + "0": "bank:78-9" + }, + "2": { + "0": "bank:78-17" + } + } + }, + "79": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:79-1" + }, + "1": { + "0": "bank:79-9" + }, + "2": { + "0": "bank:79-17" + } + } + }, + "80": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:80-1" + }, + "1": { + "0": "bank:80-9" + }, + "2": { + "0": "bank:80-17" + } + } + }, + "81": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:81-1" + }, + "1": { + "0": "bank:81-9" + }, + "2": { + "0": "bank:81-17" + } + } + }, + "82": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:82-1" + }, + "1": { + "0": "bank:82-9" + }, + "2": { + "0": "bank:82-17" + } + } + }, + "83": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:83-1" + }, + "1": { + "0": "bank:83-9" + }, + "2": { + "0": "bank:83-17" + } + } + }, + "84": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:84-1" + }, + "1": { + "0": "bank:84-9" + }, + "2": { + "0": "bank:84-17" + } + } + }, + "85": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:85-1" + }, + "1": { + "0": "bank:85-9" + }, + "2": { + "0": "bank:85-17" + } + } + }, + "86": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:86-1" + }, + "1": { + "0": "bank:86-9" + }, + "2": { + "0": "bank:86-17" + } + } + }, + "87": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:87-1" + }, + "1": { + "0": "bank:87-9" + }, + "2": { + "0": "bank:87-17" + } + } + }, + "88": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:88-1" + }, + "1": { + "0": "bank:88-9" + }, + "2": { + "0": "bank:88-17" + } + } + }, + "89": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:89-1" + }, + "1": { + "0": "bank:89-9" + }, + "2": { + "0": "bank:89-17" + } + } + }, + "90": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:90-1" + }, + "1": { + "0": "bank:90-9" + }, + "2": { + "0": "bank:90-17" + } + } + }, + "91": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:91-1" + }, + "1": { + "0": "bank:91-9" + }, + "2": { + "0": "bank:91-17" + } + } + }, + "92": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:92-1" + }, + "1": { + "0": "bank:92-9" + }, + "2": { + "0": "bank:92-17" + } + } + }, + "93": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:93-1" + }, + "1": { + "0": "bank:93-9" + }, + "2": { + "0": "bank:93-17" + } + } + }, + "94": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:94-1" + }, + "1": { + "0": "bank:94-9" + }, + "2": { + "0": "bank:94-17" + } + } + }, + "95": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:95-1" + }, + "1": { + "0": "bank:95-9" + }, + "2": { + "0": "bank:95-17" + } + } + }, + "96": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:96-1" + }, + "1": { + "0": "bank:96-9" + }, + "2": { + "0": "bank:96-17" + } + } + }, + "97": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:97-1" + }, + "1": { + "0": "bank:97-9" + }, + "2": { + "0": "bank:97-17" + } + } + }, + "98": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:98-1" + }, + "1": { + "0": "bank:98-9" + }, + "2": { + "0": "bank:98-17" + } + } + }, + "99": { + "name": "PAGE", + "controls": { + "0": { + "0": "bank:99-1" + }, + "1": { + "0": "bank:99-9" + }, + "2": { + "0": "bank:99-17" + } + } + } + }, + "page_config_version": 5, + "userconfig": { + "page_direction_flipped": false, + "artnet_enabled": false, + "artnet_universe": "1", + "artnet_channel": "1", + "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, + "usb_hotplug": false, + "osc_legacy_api_enabled": true, + "tcp_legacy_api_enabled": true, + "udp_legacy_api_enabled": true, + "http_api_enabled": true, + "http_legacy_api_enabled": true, + "setup_wizard": 30, + "page_plusminus": false, + "remove_topbar": false, + "xkeys_legacy_layout": false, + "elgato_plugin_enable": false, + "loupedeck_enable": false, + "contour_shuttle_enable": false, + "pin_enable": false, + "link_lockouts": false, + "pin": "", + "pin_timeout": 0, + "rosstalk_enabled": false, + "videohub_panel_enabled": false, + "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": "", + "gridSize": { + "minColumn": 0, + "maxColumn": 7, + "minRow": 0, + "maxRow": 3 + }, + "gridSizeInlineGrow": false, + "vec_footpedal_enable": false, + "blackmagic_controller_enable": false, + "mystrix_enable": false, + "installName": "", + "discoveryEnabled": true + }, + "surface_groups": {}, + "custom_variables": {}, + "outbound_surfaces": {} + } +} diff --git a/companion/test/v2tov3-upgradeStartup.test.ts b/companion/test/v2tov3-upgradeStartup.test.ts deleted file mode 100644 index 30faa1ad2..000000000 --- a/companion/test/v2tov3-upgradeStartup.test.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { describe, it, expect } from 'vitest' -import { DataStoreBase } from '../lib/Data/StoreBase.js' -import { DataDatabase } from '../lib/Data/Database.js' -import LogController from '../lib/Log/Controller.js' -import v2tov3 from '../lib/Data/Upgrades/v2tov3.js' -import { cloneDeep } from 'lodash-es' - -function CreateDataDatabase(dbContents: any) { - const db = new DataStoreBase('test/config/empty/', 'db', 4000, DataDatabase.Defaults, 'Data/Database') - // Bypass loading data properly and just set it to our test data - db.store = cloneDeep(dbContents) - console.log('Got: ') - console.log(db.store) - - return db -} - -describe('upgrade', () => { - it('empty', () => { - const db = CreateDataDatabase(DataDatabase.Defaults) - v2tov3.upgradeStartup(db, LogController.createLogger('test-logger')) - expect(db.store).toEqual({ - bank_rotate_left_actions: {}, - bank_rotate_right_actions: {}, - controls: {}, - page_config_version: 3, - }) - }) -}) diff --git a/yarn.lock b/yarn.lock index 08da2080f..1fc605c13 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4406,6 +4406,15 @@ __metadata: languageName: node linkType: hard +"@types/better-sqlite3@npm:^7.6.11": + version: 7.6.11 + resolution: "@types/better-sqlite3@npm:7.6.11" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/6a7b8e5765f872404242ff9626edf4b4dd7974047144ba7254a59f4f1c196d05f8001323d0b526e8bbb3842bf541e341d74ca0164e50bd38fceaf3ef5d2a673d + languageName: node + linkType: hard + "@types/body-parser@npm:*": version: 1.19.5 resolution: "@types/body-parser@npm:1.19.5" @@ -6008,6 +6017,17 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"better-sqlite3@npm:^11.3.0": + version: 11.3.0 + resolution: "better-sqlite3@npm:11.3.0" + dependencies: + bindings: "npm:^1.5.0" + node-gyp: "npm:latest" + prebuild-install: "npm:^7.1.1" + checksum: 10c0/9adc99683300699581da5d7288e4a261b7d4381fd99c762fc6a0e9b1e1e226009c1333b46b10c1c453c356b20cb8be037a4616b1e717b3d1a00bd8493bec506e + languageName: node + linkType: hard + "binary-extensions@npm:^2.0.0": version: 2.2.0 resolution: "binary-extensions@npm:2.2.0" @@ -6015,6 +6035,15 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"bindings@npm:^1.5.0": + version: 1.5.0 + resolution: "bindings@npm:1.5.0" + dependencies: + file-uri-to-path: "npm:1.0.0" + checksum: 10c0/3dab2491b4bb24124252a91e656803eac24292473e56554e35bbfe3cc1875332cfa77600c3bac7564049dc95075bf6fcc63a4609920ff2d64d0fe405fcf0d4ba + languageName: node + linkType: hard + "bl@npm:^1.2.1": version: 1.2.3 resolution: "bl@npm:1.2.3" @@ -6025,6 +6054,17 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"bl@npm:^4.0.3": + version: 4.1.0 + resolution: "bl@npm:4.1.0" + dependencies: + buffer: "npm:^5.5.0" + inherits: "npm:^2.0.4" + readable-stream: "npm:^3.4.0" + checksum: 10c0/02847e1d2cb089c9dc6958add42e3cdeaf07d13f575973963335ac0fdece563a50ac770ac4c8fa06492d2dd276f6cc3b7f08c7cd9c7a7ad0f8d388b2a28def5f + languageName: node + linkType: hard + "bluebird-lst@npm:^1.0.9": version: 1.0.9 resolution: "bluebird-lst@npm:1.0.9" @@ -6165,7 +6205,7 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard -"buffer@npm:^5.1.0, buffer@npm:^5.2.1": +"buffer@npm:^5.1.0, buffer@npm:^5.2.1, buffer@npm:^5.5.0": version: 5.7.1 resolution: "buffer@npm:5.7.1" dependencies: @@ -6423,6 +6463,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"chownr@npm:^1.1.1": + version: 1.1.4 + resolution: "chownr@npm:1.1.4" + checksum: 10c0/ed57952a84cc0c802af900cf7136de643d3aba2eecb59d29344bc2f3f9bf703a301b9d84cdc71f82c3ffc9ccde831b0d92f5b45f91727d6c9da62f23aef9d9db + languageName: node + linkType: hard + "chownr@npm:^2.0.0": version: 2.0.0 resolution: "chownr@npm:2.0.0" @@ -6705,6 +6752,7 @@ asn1@evs-broadcast/node-asn1: "@sentry/node": "npm:^8.30.0" "@sentry/webpack-plugin": "npm:^2.22.4" "@types/archiver": "npm:^6.0.2" + "@types/better-sqlite3": "npm:^7.6.11" "@types/cors": "npm:^2.8.17" "@types/ejson": "npm:^2.2.2" "@types/express": "npm:^4.17.21" @@ -6716,6 +6764,7 @@ asn1@evs-broadcast/node-asn1: "@types/uuid": "npm:^10.0.0" "@types/ws": "npm:^8.5.12" archiver: "npm:^7.0.1" + better-sqlite3: "npm:^11.3.0" body-parser: "npm:^1.20.3" bufferutil: "npm:^4.0.8" colord: "npm:^2.9.3" @@ -7257,6 +7306,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"detect-libc@npm:^2.0.0": + version: 2.0.3 + resolution: "detect-libc@npm:2.0.3" + checksum: 10c0/88095bda8f90220c95f162bf92cad70bd0e424913e655c20578600e35b91edc261af27531cf160a331e185c0ced93944bc7e09939143225f56312d7fd800fdb7 + languageName: node + linkType: hard + "detect-node@npm:^2.0.4": version: 2.1.0 resolution: "detect-node@npm:2.1.0" @@ -7627,7 +7683,7 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard -"end-of-stream@npm:^1.1.0": +"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1": version: 1.4.4 resolution: "end-of-stream@npm:1.4.4" dependencies: @@ -7990,6 +8046,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"expand-template@npm:^2.0.3": + version: 2.0.3 + resolution: "expand-template@npm:2.0.3" + checksum: 10c0/1c9e7afe9acadf9d373301d27f6a47b34e89b3391b1ef38b7471d381812537ef2457e620ae7f819d2642ce9c43b189b3583813ec395e2938319abe356a9b2f51 + languageName: node + linkType: hard + "exponential-backoff@npm:^3.1.1": version: 3.1.1 resolution: "exponential-backoff@npm:3.1.1" @@ -8195,6 +8258,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"file-uri-to-path@npm:1.0.0": + version: 1.0.0 + resolution: "file-uri-to-path@npm:1.0.0" + checksum: 10c0/3b545e3a341d322d368e880e1c204ef55f1d45cdea65f7efc6c6ce9e0c4d22d802d5629320eb779d006fe59624ac17b0e848d83cc5af7cd101f206cb704f5519 + languageName: node + linkType: hard + "filelist@npm:^1.0.4": version: 1.0.4 resolution: "filelist@npm:1.0.4" @@ -8367,6 +8437,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"fs-constants@npm:^1.0.0": + version: 1.0.0 + resolution: "fs-constants@npm:1.0.0" + checksum: 10c0/a0cde99085f0872f4d244e83e03a46aa387b74f5a5af750896c6b05e9077fac00e9932fdf5aef84f2f16634cd473c63037d7a512576da7d5c2b9163d1909f3a8 + languageName: node + linkType: hard + "fs-extra@npm:^10.0.0, fs-extra@npm:^10.1.0": version: 10.1.0 resolution: "fs-extra@npm:10.1.0" @@ -8546,6 +8623,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"github-from-package@npm:0.0.0": + version: 0.0.0 + resolution: "github-from-package@npm:0.0.0" + checksum: 10c0/737ee3f52d0a27e26332cde85b533c21fcdc0b09fb716c3f8e522cfaa9c600d4a631dec9fcde179ec9d47cca89017b7848ed4d6ae6b6b78f936c06825b1fcc12 + languageName: node + linkType: hard + "glob-parent@npm:~5.1.2": version: 5.1.2 resolution: "glob-parent@npm:5.1.2" @@ -9010,7 +9094,7 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:~2.0.3": +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 @@ -10557,7 +10641,7 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard -"minimist@npm:^1.2.0, minimist@npm:^1.2.6": +"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.6": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 @@ -10655,6 +10739,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"mkdirp-classic@npm:^0.5.2, mkdirp-classic@npm:^0.5.3": + version: 0.5.3 + resolution: "mkdirp-classic@npm:0.5.3" + checksum: 10c0/95371d831d196960ddc3833cc6907e6b8f67ac5501a6582f47dfae5eb0f092e9f8ce88e0d83afcae95d6e2b61a01741ba03714eeafb6f7a6e9dcc158ac85b168 + languageName: node + linkType: hard + "mkdirp@npm:^1.0.3": version: 1.0.4 resolution: "mkdirp@npm:1.0.4" @@ -10772,6 +10863,13 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"napi-build-utils@npm:^1.0.1": + version: 1.0.2 + resolution: "napi-build-utils@npm:1.0.2" + checksum: 10c0/37fd2cd0ff2ad20073ce78d83fd718a740d568b225924e753ae51cb69d68f330c80544d487e5e5bd18e28702ed2ca469c2424ad948becd1862c1b0209542b2e9 + languageName: node + linkType: hard + "negotiator@npm:0.6.3, negotiator@npm:^0.6.3": version: 0.6.3 resolution: "negotiator@npm:0.6.3" @@ -10786,6 +10884,15 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"node-abi@npm:^3.3.0": + version: 3.68.0 + resolution: "node-abi@npm:3.68.0" + dependencies: + semver: "npm:^7.3.5" + checksum: 10c0/0f20cdb1216485ef399f581fe8fad300f1321cc66e08a7e2e7c6c6a1d89006799c464943e45dae19ec39ba581f6417dff4af21324a09c1e74a4e2fc1bceb0f83 + languageName: node + linkType: hard + "node-addon-api@npm:7.0.0": version: 7.0.0 resolution: "node-addon-api@npm:7.0.0" @@ -11526,6 +11633,28 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"prebuild-install@npm:^7.1.1": + version: 7.1.2 + resolution: "prebuild-install@npm:7.1.2" + dependencies: + detect-libc: "npm:^2.0.0" + expand-template: "npm:^2.0.3" + github-from-package: "npm:0.0.0" + minimist: "npm:^1.2.3" + mkdirp-classic: "npm:^0.5.3" + napi-build-utils: "npm:^1.0.1" + node-abi: "npm:^3.3.0" + pump: "npm:^3.0.0" + rc: "npm:^1.2.7" + simple-get: "npm:^4.0.0" + tar-fs: "npm:^2.0.0" + tunnel-agent: "npm:^0.6.0" + bin: + prebuild-install: bin.js + checksum: 10c0/e64868ba9ef2068fd7264f5b03e5298a901e02a450acdb1f56258d88c09dea601eefdb3d1dfdff8513fdd230a92961712be0676192626a3b4d01ba154d48bdd3 + languageName: node + linkType: hard + "prettier@npm:^3.3.3": version: 3.3.3 resolution: "prettier@npm:3.3.3" @@ -12107,7 +12236,7 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard -"readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0": +"readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0": version: 3.6.2 resolution: "readable-stream@npm:3.6.2" dependencies: @@ -12850,6 +12979,24 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"simple-concat@npm:^1.0.0": + version: 1.0.1 + resolution: "simple-concat@npm:1.0.1" + checksum: 10c0/62f7508e674414008910b5397c1811941d457dfa0db4fd5aa7fa0409eb02c3609608dfcd7508cace75b3a0bf67a2a77990711e32cd213d2c76f4fd12ee86d776 + languageName: node + linkType: hard + +"simple-get@npm:^4.0.0": + version: 4.0.1 + resolution: "simple-get@npm:4.0.1" + dependencies: + decompress-response: "npm:^6.0.0" + once: "npm:^1.3.1" + simple-concat: "npm:^1.0.0" + checksum: 10c0/b0649a581dbca741babb960423248899203165769747142033479a7dc5e77d7b0fced0253c731cd57cf21e31e4d77c9157c3069f4448d558ebc96cf9e1eebcf0 + languageName: node + linkType: hard + "simple-swizzle@npm:^0.2.2": version: 0.2.2 resolution: "simple-swizzle@npm:0.2.2" @@ -13379,6 +13526,31 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"tar-fs@npm:^2.0.0": + version: 2.1.1 + resolution: "tar-fs@npm:2.1.1" + dependencies: + chownr: "npm:^1.1.1" + mkdirp-classic: "npm:^0.5.2" + pump: "npm:^3.0.0" + tar-stream: "npm:^2.1.4" + checksum: 10c0/871d26a934bfb7beeae4c4d8a09689f530b565f79bd0cf489823ff0efa3705da01278160da10bb006d1a793fa0425cf316cec029b32a9159eacbeaff4965fb6d + languageName: node + linkType: hard + +"tar-stream@npm:^2.1.4": + version: 2.2.0 + resolution: "tar-stream@npm:2.2.0" + dependencies: + bl: "npm:^4.0.3" + end-of-stream: "npm:^1.4.1" + fs-constants: "npm:^1.0.0" + inherits: "npm:^2.0.3" + readable-stream: "npm:^3.1.1" + checksum: 10c0/2f4c910b3ee7196502e1ff015a7ba321ec6ea837667220d7bcb8d0852d51cb04b87f7ae471008a6fb8f5b1a1b5078f62f3a82d30c706f20ada1238ac797e7692 + languageName: node + linkType: hard + "tar-stream@npm:^3.0.0": version: 3.1.7 resolution: "tar-stream@npm:3.1.7" @@ -13673,6 +13845,15 @@ asn1@evs-broadcast/node-asn1: languageName: node linkType: hard +"tunnel-agent@npm:^0.6.0": + version: 0.6.0 + resolution: "tunnel-agent@npm:0.6.0" + dependencies: + safe-buffer: "npm:^5.0.1" + checksum: 10c0/4c7a1b813e7beae66fdbf567a65ec6d46313643753d0beefb3c7973d66fcec3a1e7f39759f0a0b4465883499c6dc8b0750ab8b287399af2e583823e40410a17a + languageName: node + linkType: hard + "type-fest@npm:^0.13.1": version: 0.13.1 resolution: "type-fest@npm:0.13.1"